
    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_4315b5c8402d711735084903.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.093262;font-style:normal;font-weight:normal;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_27ca1b595a385d1ba4f1c129.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00000;src:url('chunks/assets/font_ca404c8b6f0580744483e637.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:0.969000;font-style: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.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m2_c00000{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m1_c00000{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls5_c00000{letter-spacing:0.010800px;}
.ls6_c00000{letter-spacing:0.012000px;}
.ls1_c00000{letter-spacing:0.014400px;}
.ls3_c00000{letter-spacing:0.021600px;}
.ls4_c00000{letter-spacing:0.032400px;}
.ls0_c00000{letter-spacing:0.043200px;}
.ls2_c00000{letter-spacing:0.062352px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:0.000000px;}
.fc2_c00000{color:transparent;}
.fc1_c00000{color:rgb(32,31,30);}
.fc0_c00000{color:rgb(0,0,0);}
.fs0_c00000{font-size:72.000000px;}
.fs2_c00000{font-size:108.000000px;}
.fs1_c00000{font-size:155.880000px;}
.y0_c00000{bottom:0.000000px;}
.y9_c00000{bottom:41.865000px;}
.y8_c00000{bottom:161.868450px;}
.y7_c00000{bottom:228.747450px;}
.y6_c00000{bottom:262.308450px;}
.y5_c00000{bottom:307.749450px;}
.y4_c00000{bottom:378.300450px;}
.y3_c00000{bottom:1078.500450px;}
.y2_c00000{bottom:1169.400450px;}
.y1_c00000{bottom:1193.340450px;}
.h4_c00000{height:51.264000px;}
.h1_c00000{height:63.175781px;}
.h3_c00000{height:95.923828px;}
.h2_c00000{height:136.775566px;}
.h0_c00000{height:1263.000000px;}
.w1_c00000{width:892.500000px;}
.w0_c00000{width:892.830000px;}
.x0_c00000{left:0.000000px;}
.x2_c00000{left:17.640000px;}
.x9_c00000{left:96.286500px;}
.x1_c00000{left:127.620000px;}
.x3_c00000{left:147.690000px;}
.x7_c00000{left:325.528304px;}
.x6_c00000{left:333.004271px;}
.x4_c00000{left:343.530000px;}
.x5_c00000{left:376.105783px;}
.x8_c00000{left:380.963812px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls5_c00000{letter-spacing:0.009600pt;}
.ls6_c00000{letter-spacing:0.010667pt;}
.ls1_c00000{letter-spacing:0.012800pt;}
.ls3_c00000{letter-spacing:0.019200pt;}
.ls4_c00000{letter-spacing:0.028800pt;}
.ls0_c00000{letter-spacing:0.038400pt;}
.ls2_c00000{letter-spacing:0.055424pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.fs0_c00000{font-size:64.000000pt;}
.fs2_c00000{font-size:96.000000pt;}
.fs1_c00000{font-size:138.560000pt;}
.y0_c00000{bottom:0.000000pt;}
.y9_c00000{bottom:37.213333pt;}
.y8_c00000{bottom:143.883067pt;}
.y7_c00000{bottom:203.331067pt;}
.y6_c00000{bottom:233.163067pt;}
.y5_c00000{bottom:273.555067pt;}
.y4_c00000{bottom:336.267067pt;}
.y3_c00000{bottom:958.667067pt;}
.y2_c00000{bottom:1039.467067pt;}
.y1_c00000{bottom:1060.747067pt;}
.h4_c00000{height:45.568000pt;}
.h1_c00000{height:56.156250pt;}
.h3_c00000{height:85.265625pt;}
.h2_c00000{height:121.578281pt;}
.h0_c00000{height:1122.666667pt;}
.w1_c00000{width:793.333333pt;}
.w0_c00000{width:793.626667pt;}
.x0_c00000{left:0.000000pt;}
.x2_c00000{left:15.680000pt;}
.x9_c00000{left:85.588000pt;}
.x1_c00000{left:113.440000pt;}
.x3_c00000{left:131.280000pt;}
.x7_c00000{left:289.358492pt;}
.x6_c00000{left:296.003796pt;}
.x4_c00000{left:305.360000pt;}
.x5_c00000{left:334.316252pt;}
.x8_c00000{left:338.634500pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_24381baa558097ad3845ec30.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.093262;font-style:normal;font-weight:normal;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_b719680faf1618475dea737e.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls5_c00002{letter-spacing:-3.059784px;}
.ls6_c00002{letter-spacing:-0.093600px;}
.ls4_c00002{letter-spacing:0.000000px;}
.ls3_c00002{letter-spacing:0.014400px;}
.ls0_c00002{letter-spacing:0.021600px;}
.ls1_c00002{letter-spacing:0.043200px;}
.ls2_c00002{letter-spacing:0.057600px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:-165.060216px;}
.ws1_c00002{word-spacing:0.000000px;}
._0_c00002{margin-left:-13.197420px;}
._1_c00002{margin-left:-5.127660px;}
._2_c00002{margin-left:-1.015200px;}
.fc1_c00002{color:rgb(255,255,255);}
.fc0_c00002{color:rgb(0,0,0);}
.fs0_c00002{font-size:72.000000px;}
.fs1_c00002{font-size:168.120000px;}
.y0_c00002{bottom:0.000000px;}
.y3_c00002{bottom:57.360450px;}
.y2_c00002{bottom:78.060450px;}
.y8_c00002{bottom:959.700450px;}
.y7_c00002{bottom:1002.720450px;}
.y6_c00002{bottom:1045.740450px;}
.y5_c00002{bottom:1088.850450px;}
.y4_c00002{bottom:1116.750450px;}
.y1_c00002{bottom:1193.340450px;}
.h1_c00002{height:63.175781px;}
.h2_c00002{height:114.925781px;}
.h0_c00002{height:1263.000000px;}
.w1_c00002{width:892.500000px;}
.w0_c00002{width:892.830000px;}
.x0_c00002{left:0.000000px;}
.x2_c00002{left:127.620000px;}
.x1_c00002{left:765.450000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls5_c00002{letter-spacing:-2.719808pt;}
.ls6_c00002{letter-spacing:-0.083200pt;}
.ls4_c00002{letter-spacing:0.000000pt;}
.ls3_c00002{letter-spacing:0.012800pt;}
.ls0_c00002{letter-spacing:0.019200pt;}
.ls1_c00002{letter-spacing:0.038400pt;}
.ls2_c00002{letter-spacing:0.051200pt;}
.ws0_c00002{word-spacing:-146.720192pt;}
.ws1_c00002{word-spacing:0.000000pt;}
._0_c00002{margin-left:-11.731040pt;}
._1_c00002{margin-left:-4.557920pt;}
._2_c00002{margin-left:-0.902400pt;}
.fs0_c00002{font-size:64.000000pt;}
.fs1_c00002{font-size:149.440000pt;}
.y0_c00002{bottom:0.000000pt;}
.y3_c00002{bottom:50.987067pt;}
.y2_c00002{bottom:69.387067pt;}
.y8_c00002{bottom:853.067067pt;}
.y7_c00002{bottom:891.307067pt;}
.y6_c00002{bottom:929.547067pt;}
.y5_c00002{bottom:967.867067pt;}
.y4_c00002{bottom:992.667067pt;}
.y1_c00002{bottom:1060.747067pt;}
.h1_c00002{height:56.156250pt;}
.h2_c00002{height:102.156250pt;}
.h0_c00002{height:1122.666667pt;}
.w1_c00002{width:793.333333pt;}
.w0_c00002{width:793.626667pt;}
.x0_c00002{left:0.000000pt;}
.x2_c00002{left:113.440000pt;}
.x1_c00002{left:680.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_130dc0302ad232bfb8e3f8b0.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.093262;font-style:normal;font-weight:normal;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_3673e284b04455ce07c9ecce.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_2556a1f1f3f5e65351fde3a0.woff2')format("woff");}.ff3_c00003{font-family:ff3_c00003;line-height:1.095703;font-style: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;}
.ls8_c00003{letter-spacing:-3.059784px;}
.lsc_c00003{letter-spacing:-0.021600px;}
.lsa_c00003{letter-spacing:-0.014400px;}
.lsb_c00003{letter-spacing:-0.007200px;}
.ls7_c00003{letter-spacing:0.000000px;}
.ls3_c00003{letter-spacing:0.007200px;}
.ls6_c00003{letter-spacing:0.014400px;}
.ls4_c00003{letter-spacing:0.021600px;}
.ls5_c00003{letter-spacing:0.043200px;}
.ls0_c00003{letter-spacing:0.050400px;}
.ls1_c00003{letter-spacing:0.057600px;}
.ls2_c00003{letter-spacing:0.072000px;}
.ls9_c00003{letter-spacing:3.240000px;}
.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;}
}
.ws9_c00003{word-spacing:-0.201600px;}
.wse_c00003{word-spacing:-0.180000px;}
.ws1_c00003{word-spacing:-0.165600px;}
.ws5_c00003{word-spacing:-0.151200px;}
.wsb_c00003{word-spacing:-0.115200px;}
.ws2_c00003{word-spacing:-0.093600px;}
.ws6_c00003{word-spacing:-0.086400px;}
.wsd_c00003{word-spacing:-0.043200px;}
.ws8_c00003{word-spacing:-0.021600px;}
.wsa_c00003{word-spacing:-0.014400px;}
.ws3_c00003{word-spacing:-0.007200px;}
.ws0_c00003{word-spacing:0.000000px;}
.ws7_c00003{word-spacing:0.007200px;}
.ws4_c00003{word-spacing:0.014400px;}
.wsc_c00003{word-spacing:0.021600px;}
._0_c00003{margin-left:-3.398400px;}
._1_c00003{margin-left:-2.318400px;}
._2_c00003{margin-left:-1.267200px;}
.fc0_c00003{color:rgb(0,0,0);}
.fs2_c00003{font-size:60.120000px;}
.fs0_c00003{font-size:72.000000px;}
.fs1_c00003{font-size:168.120000px;}
.y0_c00003{bottom:0.000000px;}
.y3_c00003{bottom:57.360450px;}
.y2_c00003{bottom:78.060450px;}
.y25_c00003{bottom:347.430450px;}
.y24_c00003{bottom:368.130450px;}
.y23_c00003{bottom:388.830450px;}
.y22_c00003{bottom:409.530450px;}
.y21_c00003{bottom:430.230450px;}
.y20_c00003{bottom:450.930450px;}
.y1f_c00003{bottom:471.630450px;}
.y1e_c00003{bottom:492.330450px;}
.y1d_c00003{bottom:513.030450px;}
.y1c_c00003{bottom:533.730450px;}
.y1b_c00003{bottom:554.430450px;}
.y1a_c00003{bottom:575.130450px;}
.y19_c00003{bottom:595.830450px;}
.y18_c00003{bottom:616.530450px;}
.y17_c00003{bottom:637.230450px;}
.y16_c00003{bottom:657.930450px;}
.y15_c00003{bottom:678.630450px;}
.y14_c00003{bottom:699.330450px;}
.y13_c00003{bottom:720.030450px;}
.y12_c00003{bottom:740.730450px;}
.y11_c00003{bottom:761.430450px;}
.y10_c00003{bottom:782.130450px;}
.yf_c00003{bottom:802.830450px;}
.ye_c00003{bottom:823.530450px;}
.yd_c00003{bottom:844.140450px;}
.yc_c00003{bottom:864.840450px;}
.yb_c00003{bottom:885.540450px;}
.ya_c00003{bottom:906.240450px;}
.y9_c00003{bottom:949.350450px;}
.y8_c00003{bottom:992.370450px;}
.y7_c00003{bottom:1023.510450px;}
.y6_c00003{bottom:1054.560450px;}
.y5_c00003{bottom:1088.850450px;}
.y4_c00003{bottom:1116.750450px;}
.y1_c00003{bottom:1193.340450px;}
.h1_c00003{height:63.175781px;}
.h3_c00003{height:63.351562px;}
.h2_c00003{height:114.925781px;}
.h0_c00003{height:1263.000000px;}
.w1_c00003{width:892.500000px;}
.w0_c00003{width:892.830000px;}
.x0_c00003{left:0.000000px;}
.x1_c00003{left:127.620000px;}
.x4_c00003{left:333.270000px;}
.x8_c00003{left:339.480000px;}
.x6_c00003{left:340.830000px;}
.xc_c00003{left:342.270000px;}
.xd_c00003{left:345.060000px;}
.x12_c00003{left:350.730000px;}
.x14_c00003{left:353.790000px;}
.xb_c00003{left:357.030000px;}
.x11_c00003{left:360.720000px;}
.x7_c00003{left:363.960000px;}
.xa_c00003{left:365.040000px;}
.x13_c00003{left:367.020000px;}
.x3_c00003{left:371.520000px;}
.x9_c00003{left:374.490000px;}
.xf_c00003{left:376.740000px;}
.x5_c00003{left:378.540000px;}
.x10_c00003{left:381.510000px;}
.xe_c00003{left:389.520000px;}
.x2_c00003{left:765.450000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls8_c00003{letter-spacing:-2.719808pt;}
.lsc_c00003{letter-spacing:-0.019200pt;}
.lsa_c00003{letter-spacing:-0.012800pt;}
.lsb_c00003{letter-spacing:-0.006400pt;}
.ls7_c00003{letter-spacing:0.000000pt;}
.ls3_c00003{letter-spacing:0.006400pt;}
.ls6_c00003{letter-spacing:0.012800pt;}
.ls4_c00003{letter-spacing:0.019200pt;}
.ls5_c00003{letter-spacing:0.038400pt;}
.ls0_c00003{letter-spacing:0.044800pt;}
.ls1_c00003{letter-spacing:0.051200pt;}
.ls2_c00003{letter-spacing:0.064000pt;}
.ls9_c00003{letter-spacing:2.880000pt;}
.ws9_c00003{word-spacing:-0.179200pt;}
.wse_c00003{word-spacing:-0.160000pt;}
.ws1_c00003{word-spacing:-0.147200pt;}
.ws5_c00003{word-spacing:-0.134400pt;}
.wsb_c00003{word-spacing:-0.102400pt;}
.ws2_c00003{word-spacing:-0.083200pt;}
.ws6_c00003{word-spacing:-0.076800pt;}
.wsd_c00003{word-spacing:-0.038400pt;}
.ws8_c00003{word-spacing:-0.019200pt;}
.wsa_c00003{word-spacing:-0.012800pt;}
.ws3_c00003{word-spacing:-0.006400pt;}
.ws0_c00003{word-spacing:0.000000pt;}
.ws7_c00003{word-spacing:0.006400pt;}
.ws4_c00003{word-spacing:0.012800pt;}
.wsc_c00003{word-spacing:0.019200pt;}
._0_c00003{margin-left:-3.020800pt;}
._1_c00003{margin-left:-2.060800pt;}
._2_c00003{margin-left:-1.126400pt;}
.fs2_c00003{font-size:53.440000pt;}
.fs0_c00003{font-size:64.000000pt;}
.fs1_c00003{font-size:149.440000pt;}
.y0_c00003{bottom:0.000000pt;}
.y3_c00003{bottom:50.987067pt;}
.y2_c00003{bottom:69.387067pt;}
.y25_c00003{bottom:308.827067pt;}
.y24_c00003{bottom:327.227067pt;}
.y23_c00003{bottom:345.627067pt;}
.y22_c00003{bottom:364.027067pt;}
.y21_c00003{bottom:382.427067pt;}
.y20_c00003{bottom:400.827067pt;}
.y1f_c00003{bottom:419.227067pt;}
.y1e_c00003{bottom:437.627067pt;}
.y1d_c00003{bottom:456.027067pt;}
.y1c_c00003{bottom:474.427067pt;}
.y1b_c00003{bottom:492.827067pt;}
.y1a_c00003{bottom:511.227067pt;}
.y19_c00003{bottom:529.627067pt;}
.y18_c00003{bottom:548.027067pt;}
.y17_c00003{bottom:566.427067pt;}
.y16_c00003{bottom:584.827067pt;}
.y15_c00003{bottom:603.227067pt;}
.y14_c00003{bottom:621.627067pt;}
.y13_c00003{bottom:640.027067pt;}
.y12_c00003{bottom:658.427067pt;}
.y11_c00003{bottom:676.827067pt;}
.y10_c00003{bottom:695.227067pt;}
.yf_c00003{bottom:713.627067pt;}
.ye_c00003{bottom:732.027067pt;}
.yd_c00003{bottom:750.347067pt;}
.yc_c00003{bottom:768.747067pt;}
.yb_c00003{bottom:787.147067pt;}
.ya_c00003{bottom:805.547067pt;}
.y9_c00003{bottom:843.867067pt;}
.y8_c00003{bottom:882.107067pt;}
.y7_c00003{bottom:909.787067pt;}
.y6_c00003{bottom:937.387067pt;}
.y5_c00003{bottom:967.867067pt;}
.y4_c00003{bottom:992.667067pt;}
.y1_c00003{bottom:1060.747067pt;}
.h1_c00003{height:56.156250pt;}
.h3_c00003{height:56.312500pt;}
.h2_c00003{height:102.156250pt;}
.h0_c00003{height:1122.666667pt;}
.w1_c00003{width:793.333333pt;}
.w0_c00003{width:793.626667pt;}
.x0_c00003{left:0.000000pt;}
.x1_c00003{left:113.440000pt;}
.x4_c00003{left:296.240000pt;}
.x8_c00003{left:301.760000pt;}
.x6_c00003{left:302.960000pt;}
.xc_c00003{left:304.240000pt;}
.xd_c00003{left:306.720000pt;}
.x12_c00003{left:311.760000pt;}
.x14_c00003{left:314.480000pt;}
.xb_c00003{left:317.360000pt;}
.x11_c00003{left:320.640000pt;}
.x7_c00003{left:323.520000pt;}
.xa_c00003{left:324.480000pt;}
.x13_c00003{left:326.240000pt;}
.x3_c00003{left:330.240000pt;}
.x9_c00003{left:332.880000pt;}
.xf_c00003{left:334.880000pt;}
.x5_c00003{left:336.480000pt;}
.x10_c00003{left:339.120000pt;}
.xe_c00003{left:346.240000pt;}
.x2_c00003{left:680.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_010c039a2a1aba1979135d8e.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.093262;font-style:normal;font-weight:normal;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_8b20fe9c0fbf5844def005dd.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00004{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.lsb_c00004{letter-spacing:-3.143844px;}
.ls10_c00004{letter-spacing:-0.180000px;}
.ls14_c00004{letter-spacing:-0.151200px;}
.ls13_c00004{letter-spacing:-0.050400px;}
.ls12_c00004{letter-spacing:-0.021600px;}
.ls11_c00004{letter-spacing:-0.014400px;}
.lsd_c00004{letter-spacing:-0.007200px;}
.lsa_c00004{letter-spacing:0.000000px;}
.ls4_c00004{letter-spacing:0.007200px;}
.ls6_c00004{letter-spacing:0.014400px;}
.ls0_c00004{letter-spacing:0.021600px;}
.ls7_c00004{letter-spacing:0.028800px;}
.ls2_c00004{letter-spacing:0.036000px;}
.ls1_c00004{letter-spacing:0.043200px;}
.ls8_c00004{letter-spacing:0.050400px;}
.ls5_c00004{letter-spacing:0.057600px;}
.ls9_c00004{letter-spacing:0.064800px;}
.ls3_c00004{letter-spacing:0.072000px;}
.lsc_c00004{letter-spacing:0.172800px;}
.lsf_c00004{letter-spacing:11.160000px;}
.lse_c00004{letter-spacing:16.560000px;}
.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;}
}
.ws0_c00004{word-spacing:-164.976156px;}
.ws1_c00004{word-spacing:0.000000px;}
._c_c00004{margin-left:-17.452800px;}
._b_c00004{margin-left:-16.372800px;}
._d_c00004{margin-left:-11.318400px;}
._e_c00004{margin-left:-10.180800px;}
._1_c00004{margin-left:-5.043600px;}
._10_c00004{margin-left:-3.999600px;}
._f_c00004{margin-left:-2.894400px;}
._0_c00004{margin-left:-1.630764px;}
._6_c00004{width:1.051200px;}
._8_c00004{width:4.420800px;}
._7_c00004{width:5.745600px;}
._9_c00004{width:9.050544px;}
._5_c00004{width:10.097964px;}
._4_c00004{width:11.131200px;}
._2_c00004{width:13.435200px;}
._3_c00004{width:14.738400px;}
._a_c00004{width:16.524000px;}
._12_c00004{width:19.047492px;}
._11_c00004{width:20.260800px;}
.fc0_c00004{color:rgb(0,0,0);}
.fs0_c00004{font-size:72.000000px;}
.fs1_c00004{font-size:168.120000px;}
.y0_c00004{bottom:0.000000px;}
.y3_c00004{bottom:57.360450px;}
.y2_c00004{bottom:78.060450px;}
.y1f_c00004{bottom:131.340450px;}
.y1e_c00004{bottom:162.390450px;}
.y1d_c00004{bottom:193.440450px;}
.y1c_c00004{bottom:245.460450px;}
.y1b_c00004{bottom:276.600450px;}
.y1a_c00004{bottom:328.530450px;}
.y19_c00004{bottom:380.550450px;}
.y18_c00004{bottom:411.690450px;}
.y17_c00004{bottom:442.740450px;}
.y16_c00004{bottom:494.670450px;}
.y15_c00004{bottom:546.780450px;}
.y14_c00004{bottom:577.920450px;}
.y13_c00004{bottom:608.970450px;}
.y12_c00004{bottom:640.020450px;}
.y11_c00004{bottom:691.950450px;}
.y10_c00004{bottom:723.090450px;}
.yf_c00004{bottom:754.140450px;}
.ye_c00004{bottom:785.190450px;}
.yd_c00004{bottom:837.120450px;}
.yc_c00004{bottom:868.260450px;}
.yb_c00004{bottom:899.310450px;}
.ya_c00004{bottom:930.360450px;}
.y9_c00004{bottom:961.410450px;}
.y8_c00004{bottom:992.460450px;}
.y7_c00004{bottom:1023.510450px;}
.y6_c00004{bottom:1054.560450px;}
.y5_c00004{bottom:1088.850450px;}
.y4_c00004{bottom:1116.750450px;}
.y1_c00004{bottom:1193.340450px;}
.h1_c00004{height:63.175781px;}
.h2_c00004{height:114.925781px;}
.h0_c00004{height:1263.000000px;}
.w1_c00004{width:892.500000px;}
.w0_c00004{width:892.830000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:127.620000px;}
.x2_c00004{left:765.450000px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.lsb_c00004{letter-spacing:-2.794528pt;}
.ls10_c00004{letter-spacing:-0.160000pt;}
.ls14_c00004{letter-spacing:-0.134400pt;}
.ls13_c00004{letter-spacing:-0.044800pt;}
.ls12_c00004{letter-spacing:-0.019200pt;}
.ls11_c00004{letter-spacing:-0.012800pt;}
.lsd_c00004{letter-spacing:-0.006400pt;}
.lsa_c00004{letter-spacing:0.000000pt;}
.ls4_c00004{letter-spacing:0.006400pt;}
.ls6_c00004{letter-spacing:0.012800pt;}
.ls0_c00004{letter-spacing:0.019200pt;}
.ls7_c00004{letter-spacing:0.025600pt;}
.ls2_c00004{letter-spacing:0.032000pt;}
.ls1_c00004{letter-spacing:0.038400pt;}
.ls8_c00004{letter-spacing:0.044800pt;}
.ls5_c00004{letter-spacing:0.051200pt;}
.ls9_c00004{letter-spacing:0.057600pt;}
.ls3_c00004{letter-spacing:0.064000pt;}
.lsc_c00004{letter-spacing:0.153600pt;}
.lsf_c00004{letter-spacing:9.920000pt;}
.lse_c00004{letter-spacing:14.720000pt;}
.ws0_c00004{word-spacing:-146.645472pt;}
.ws1_c00004{word-spacing:0.000000pt;}
._c_c00004{margin-left:-15.513600pt;}
._b_c00004{margin-left:-14.553600pt;}
._d_c00004{margin-left:-10.060800pt;}
._e_c00004{margin-left:-9.049600pt;}
._1_c00004{margin-left:-4.483200pt;}
._10_c00004{margin-left:-3.555200pt;}
._f_c00004{margin-left:-2.572800pt;}
._0_c00004{margin-left:-1.449568pt;}
._6_c00004{width:0.934400pt;}
._8_c00004{width:3.929600pt;}
._7_c00004{width:5.107200pt;}
._9_c00004{width:8.044928pt;}
._5_c00004{width:8.975968pt;}
._4_c00004{width:9.894400pt;}
._2_c00004{width:11.942400pt;}
._3_c00004{width:13.100800pt;}
._a_c00004{width:14.688000pt;}
._12_c00004{width:16.931104pt;}
._11_c00004{width:18.009600pt;}
.fs0_c00004{font-size:64.000000pt;}
.fs1_c00004{font-size:149.440000pt;}
.y0_c00004{bottom:0.000000pt;}
.y3_c00004{bottom:50.987067pt;}
.y2_c00004{bottom:69.387067pt;}
.y1f_c00004{bottom:116.747067pt;}
.y1e_c00004{bottom:144.347067pt;}
.y1d_c00004{bottom:171.947067pt;}
.y1c_c00004{bottom:218.187067pt;}
.y1b_c00004{bottom:245.867067pt;}
.y1a_c00004{bottom:292.027067pt;}
.y19_c00004{bottom:338.267067pt;}
.y18_c00004{bottom:365.947067pt;}
.y17_c00004{bottom:393.547067pt;}
.y16_c00004{bottom:439.707067pt;}
.y15_c00004{bottom:486.027067pt;}
.y14_c00004{bottom:513.707067pt;}
.y13_c00004{bottom:541.307067pt;}
.y12_c00004{bottom:568.907067pt;}
.y11_c00004{bottom:615.067067pt;}
.y10_c00004{bottom:642.747067pt;}
.yf_c00004{bottom:670.347067pt;}
.ye_c00004{bottom:697.947067pt;}
.yd_c00004{bottom:744.107067pt;}
.yc_c00004{bottom:771.787067pt;}
.yb_c00004{bottom:799.387067pt;}
.ya_c00004{bottom:826.987067pt;}
.y9_c00004{bottom:854.587067pt;}
.y8_c00004{bottom:882.187067pt;}
.y7_c00004{bottom:909.787067pt;}
.y6_c00004{bottom:937.387067pt;}
.y5_c00004{bottom:967.867067pt;}
.y4_c00004{bottom:992.667067pt;}
.y1_c00004{bottom:1060.747067pt;}
.h1_c00004{height:56.156250pt;}
.h2_c00004{height:102.156250pt;}
.h0_c00004{height:1122.666667pt;}
.w1_c00004{width:793.333333pt;}
.w0_c00004{width:793.626667pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:113.440000pt;}
.x2_c00004{left:680.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_f55959c1e0fa37e1b180a0cc.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls6_c00005{letter-spacing:-0.021600px;}
.ls7_c00005{letter-spacing:-0.007200px;}
.ls5_c00005{letter-spacing:0.000000px;}
.ls3_c00005{letter-spacing:0.014400px;}
.ls4_c00005{letter-spacing:0.021600px;}
.ls1_c00005{letter-spacing:0.028800px;}
.ls0_c00005{letter-spacing:0.043200px;}
.ls2_c00005{letter-spacing:0.057600px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00005{word-spacing:0.000000px;}
._4_c00005{margin-left:-1.173600px;}
._0_c00005{width:8.035200px;}
._1_c00005{width:9.230400px;}
._3_c00005{width:12.024000px;}
._2_c00005{width:13.262400px;}
.fc0_c00005{color:rgb(0,0,0);}
.fs0_c00005{font-size:72.000000px;}
.y0_c00005{bottom:0.000000px;}
.y3_c00005{bottom:57.360450px;}
.y2_c00005{bottom:78.060450px;}
.y1c_c00005{bottom:112.980450px;}
.y1b_c00005{bottom:156.000450px;}
.y1a_c00005{bottom:199.020450px;}
.y19_c00005{bottom:242.040450px;}
.y18_c00005{bottom:285.150450px;}
.y17_c00005{bottom:328.170450px;}
.y16_c00005{bottom:371.190450px;}
.y15_c00005{bottom:414.300450px;}
.y14_c00005{bottom:457.320450px;}
.y13_c00005{bottom:500.340450px;}
.y12_c00005{bottom:543.450450px;}
.y11_c00005{bottom:586.470450px;}
.y10_c00005{bottom:629.490450px;}
.yf_c00005{bottom:672.510450px;}
.ye_c00005{bottom:715.620450px;}
.yd_c00005{bottom:758.640450px;}
.yc_c00005{bottom:801.660450px;}
.yb_c00005{bottom:844.770450px;}
.ya_c00005{bottom:887.790450px;}
.y9_c00005{bottom:930.810450px;}
.y8_c00005{bottom:973.920450px;}
.y7_c00005{bottom:1025.940450px;}
.y6_c00005{bottom:1057.080450px;}
.y5_c00005{bottom:1109.010450px;}
.y4_c00005{bottom:1140.150450px;}
.y1_c00005{bottom:1193.340450px;}
.h1_c00005{height:63.175781px;}
.h0_c00005{height:1263.000000px;}
.w1_c00005{width:892.500000px;}
.w0_c00005{width:892.830000px;}
.x0_c00005{left:0.000000px;}
.x2_c00005{left:127.620000px;}
.x1_c00005{left:765.450000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls6_c00005{letter-spacing:-0.019200pt;}
.ls7_c00005{letter-spacing:-0.006400pt;}
.ls5_c00005{letter-spacing:0.000000pt;}
.ls3_c00005{letter-spacing:0.012800pt;}
.ls4_c00005{letter-spacing:0.019200pt;}
.ls1_c00005{letter-spacing:0.025600pt;}
.ls0_c00005{letter-spacing:0.038400pt;}
.ls2_c00005{letter-spacing:0.051200pt;}
.ws0_c00005{word-spacing:0.000000pt;}
._4_c00005{margin-left:-1.043200pt;}
._0_c00005{width:7.142400pt;}
._1_c00005{width:8.204800pt;}
._3_c00005{width:10.688000pt;}
._2_c00005{width:11.788800pt;}
.fs0_c00005{font-size:64.000000pt;}
.y0_c00005{bottom:0.000000pt;}
.y3_c00005{bottom:50.987067pt;}
.y2_c00005{bottom:69.387067pt;}
.y1c_c00005{bottom:100.427067pt;}
.y1b_c00005{bottom:138.667067pt;}
.y1a_c00005{bottom:176.907067pt;}
.y19_c00005{bottom:215.147067pt;}
.y18_c00005{bottom:253.467067pt;}
.y17_c00005{bottom:291.707067pt;}
.y16_c00005{bottom:329.947067pt;}
.y15_c00005{bottom:368.267067pt;}
.y14_c00005{bottom:406.507067pt;}
.y13_c00005{bottom:444.747067pt;}
.y12_c00005{bottom:483.067067pt;}
.y11_c00005{bottom:521.307067pt;}
.y10_c00005{bottom:559.547067pt;}
.yf_c00005{bottom:597.787067pt;}
.ye_c00005{bottom:636.107067pt;}
.yd_c00005{bottom:674.347067pt;}
.yc_c00005{bottom:712.587067pt;}
.yb_c00005{bottom:750.907067pt;}
.ya_c00005{bottom:789.147067pt;}
.y9_c00005{bottom:827.387067pt;}
.y8_c00005{bottom:865.707067pt;}
.y7_c00005{bottom:911.947067pt;}
.y6_c00005{bottom:939.627067pt;}
.y5_c00005{bottom:985.787067pt;}
.y4_c00005{bottom:1013.467067pt;}
.y1_c00005{bottom:1060.747067pt;}
.h1_c00005{height:56.156250pt;}
.h0_c00005{height:1122.666667pt;}
.w1_c00005{width:793.333333pt;}
.w0_c00005{width:793.626667pt;}
.x0_c00005{left:0.000000pt;}
.x2_c00005{left:113.440000pt;}
.x1_c00005{left:680.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_938176b7eb5b20af514b2ff6.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.093262;font-style:normal;font-weight:normal;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_0b60da56eaad8aeaabc1ba17.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.104004;font-style:normal;font-weight:normal;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_733d199f6d5df62e1b46c879.woff2')format("woff");}.ff3_c00006{font-family:ff3_c00006;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00006;src:url('chunks/assets/font_46510435bdc3e8e2ce8a724f.woff2')format("woff");}.ff4_c00006{font-family:ff4_c00006;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00006;src:url('chunks/assets/font_0c45cc5efda72993a69c08f7.woff2')format("woff");}.ff5_c00006{font-family:ff5_c00006;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1d_c00006{letter-spacing:-0.078156px;}
.ls16_c00006{letter-spacing:-0.066132px;}
.ls15_c00006{letter-spacing:-0.060120px;}
.ls17_c00006{letter-spacing:-0.054108px;}
.ls11_c00006{letter-spacing:-0.052704px;}
.ls13_c00006{letter-spacing:-0.048096px;}
.ls14_c00006{letter-spacing:-0.042084px;}
.ls10_c00006{letter-spacing:-0.039528px;}
.ls12_c00006{letter-spacing:-0.036072px;}
.ls19_c00006{letter-spacing:-0.032940px;}
.ls1b_c00006{letter-spacing:-0.030060px;}
.lsf_c00006{letter-spacing:-0.028800px;}
.ls18_c00006{letter-spacing:-0.019764px;}
.ls1c_c00006{letter-spacing:-0.018036px;}
.ls1a_c00006{letter-spacing:-0.012024px;}
.lse_c00006{letter-spacing:-0.010800px;}
.lsd_c00006{letter-spacing:0.000000px;}
.ls2_c00006{letter-spacing:0.007200px;}
.lsb_c00006{letter-spacing:0.013176px;}
.ls5_c00006{letter-spacing:0.024048px;}
.ls6_c00006{letter-spacing:0.030060px;}
.ls8_c00006{letter-spacing:0.032940px;}
.lsc_c00006{letter-spacing:0.036072px;}
.ls9_c00006{letter-spacing:0.039528px;}
.ls7_c00006{letter-spacing:0.042084px;}
.ls4_c00006{letter-spacing:0.052704px;}
.lsa_c00006{letter-spacing:0.054108px;}
.ls3_c00006{letter-spacing:0.086400px;}
.ls0_c00006{letter-spacing:0.122400px;}
.ls1_c00006{letter-spacing:0.144000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00006{word-spacing:-72.086400px;}
.ws3_c00006{word-spacing:-72.007200px;}
.ws0_c00006{word-spacing:-71.971200px;}
.ws5_c00006{word-spacing:-65.932704px;}
.ws16_c00006{word-spacing:-65.919528px;}
.ws11_c00006{word-spacing:-65.912940px;}
.ws21_c00006{word-spacing:-65.893176px;}
.ws20_c00006{word-spacing:-65.880000px;}
.ws17_c00006{word-spacing:-65.860236px;}
.ws13_c00006{word-spacing:-65.847060px;}
.ws6_c00006{word-spacing:-65.840472px;}
.ws7_c00006{word-spacing:-65.827296px;}
.ws19_c00006{word-spacing:-60.174108px;}
.ws10_c00006{word-spacing:-60.162084px;}
.ws26_c00006{word-spacing:-60.156072px;}
.wsd_c00006{word-spacing:-60.150060px;}
.wsb_c00006{word-spacing:-60.144048px;}
.ws1e_c00006{word-spacing:-60.120000px;}
.ws14_c00006{word-spacing:-60.107976px;}
.ws1f_c00006{word-spacing:-60.101964px;}
.ws1c_c00006{word-spacing:-60.089940px;}
.ws8_c00006{word-spacing:-60.083928px;}
.wsa_c00006{word-spacing:-60.077916px;}
.ws9_c00006{word-spacing:-60.071904px;}
.wsf_c00006{word-spacing:-60.065892px;}
.wsc_c00006{word-spacing:-60.059880px;}
.wse_c00006{word-spacing:-60.053868px;}
.ws2a_c00006{word-spacing:-60.041844px;}
.ws1_c00006{word-spacing:-56.124000px;}
.ws2_c00006{word-spacing:-54.367200px;}
.ws12_c00006{word-spacing:-50.852772px;}
.ws2b_c00006{word-spacing:-49.508820px;}
.ws27_c00006{word-spacing:-49.160124px;}
.ws28_c00006{word-spacing:-48.414636px;}
.ws1a_c00006{word-spacing:-48.041892px;}
.ws15_c00006{word-spacing:-48.029868px;}
.ws1d_c00006{word-spacing:-47.717244px;}
.ws1b_c00006{word-spacing:-47.693196px;}
.ws22_c00006{word-spacing:-47.122056px;}
.ws25_c00006{word-spacing:-46.977768px;}
.ws29_c00006{word-spacing:-45.919656px;}
.ws24_c00006{word-spacing:-45.534888px;}
.ws18_c00006{word-spacing:-45.162144px;}
.ws23_c00006{word-spacing:-44.134092px;}
.ws2c_c00006{word-spacing:0.000000px;}
._7_c00006{margin-left:-13.508964px;}
._8_c00006{margin-left:-10.863684px;}
._4_c00006{margin-left:-8.488944px;}
._a_c00006{margin-left:-7.112196px;}
._b_c00006{margin-left:-5.168628px;}
._2_c00006{margin-left:-3.485052px;}
._6_c00006{margin-left:-2.194380px;}
._3_c00006{margin-left:-1.046088px;}
._5_c00006{width:1.088172px;}
._0_c00006{width:4.406400px;}
._1_c00006{width:7.200684px;}
._9_c00006{width:8.723412px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs3_c00006{font-size:60.120000px;}
.fs2_c00006{font-size:65.880000px;}
.fs0_c00006{font-size:72.000000px;}
.fs1_c00006{font-size:108.000000px;}
.y0_c00006{bottom:0.000000px;}
.y3_c00006{bottom:57.360450px;}
.y2_c00006{bottom:78.060450px;}
.y33_c00006{bottom:130.260450px;}
.y32_c00006{bottom:149.970450px;}
.y31_c00006{bottom:169.770450px;}
.y30_c00006{bottom:189.480450px;}
.y2f_c00006{bottom:209.280600px;}
.y2e_c00006{bottom:228.990450px;}
.y2d_c00006{bottom:248.790450px;}
.y2c_c00006{bottom:268.590450px;}
.y2b_c00006{bottom:288.300450px;}
.y2a_c00006{bottom:308.100450px;}
.y29_c00006{bottom:327.810450px;}
.y28_c00006{bottom:347.610450px;}
.y27_c00006{bottom:367.320450px;}
.y26_c00006{bottom:387.120450px;}
.y25_c00006{bottom:406.830450px;}
.y24_c00006{bottom:426.630450px;}
.y23_c00006{bottom:446.430600px;}
.y22_c00006{bottom:466.140450px;}
.y21_c00006{bottom:485.940600px;}
.y20_c00006{bottom:506.189883px;}
.y1f_c00006{bottom:536.430450px;}
.y1e_c00006{bottom:556.140450px;}
.y1d_c00006{bottom:575.940450px;}
.y1c_c00006{bottom:595.650450px;}
.y1b_c00006{bottom:615.450450px;}
.y1a_c00006{bottom:635.250450px;}
.y19_c00006{bottom:654.960450px;}
.y18_c00006{bottom:674.760450px;}
.y17_c00006{bottom:694.470450px;}
.y16_c00006{bottom:714.270450px;}
.y15_c00006{bottom:733.980450px;}
.y14_c00006{bottom:753.780450px;}
.y13_c00006{bottom:773.490450px;}
.y12_c00006{bottom:793.830468px;}
.y11_c00006{bottom:823.980450px;}
.y10_c00006{bottom:843.780450px;}
.yf_c00006{bottom:864.120468px;}
.ye_c00006{bottom:894.270450px;}
.yd_c00006{bottom:914.070450px;}
.yc_c00006{bottom:933.780450px;}
.yb_c00006{bottom:953.580450px;}
.ya_c00006{bottom:973.290600px;}
.y9_c00006{bottom:993.090450px;}
.y8_c00006{bottom:1012.800450px;}
.y7_c00006{bottom:1033.140036px;}
.y6_c00006{bottom:1064.370450px;}
.y5_c00006{bottom:1097.130450px;}
.y4_c00006{bottom:1131.600450px;}
.y1_c00006{bottom:1193.340450px;}
.h4_c00006{height:54.331699px;}
.h3_c00006{height:59.378906px;}
.h1_c00006{height:63.175781px;}
.h2_c00006{height:95.923828px;}
.h0_c00006{height:1263.000000px;}
.w1_c00006{width:892.500000px;}
.w0_c00006{width:892.830000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:127.620000px;}
.x3_c00006{left:145.619841px;}
.x4_c00006{left:163.620000px;}
.x5_c00006{left:181.620000px;}
.x6_c00006{left:199.620000px;}
.x2_c00006{left:765.450000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls1d_c00006{letter-spacing:-0.069472pt;}
.ls16_c00006{letter-spacing:-0.058784pt;}
.ls15_c00006{letter-spacing:-0.053440pt;}
.ls17_c00006{letter-spacing:-0.048096pt;}
.ls11_c00006{letter-spacing:-0.046848pt;}
.ls13_c00006{letter-spacing:-0.042752pt;}
.ls14_c00006{letter-spacing:-0.037408pt;}
.ls10_c00006{letter-spacing:-0.035136pt;}
.ls12_c00006{letter-spacing:-0.032064pt;}
.ls19_c00006{letter-spacing:-0.029280pt;}
.ls1b_c00006{letter-spacing:-0.026720pt;}
.lsf_c00006{letter-spacing:-0.025600pt;}
.ls18_c00006{letter-spacing:-0.017568pt;}
.ls1c_c00006{letter-spacing:-0.016032pt;}
.ls1a_c00006{letter-spacing:-0.010688pt;}
.lse_c00006{letter-spacing:-0.009600pt;}
.lsd_c00006{letter-spacing:0.000000pt;}
.ls2_c00006{letter-spacing:0.006400pt;}
.lsb_c00006{letter-spacing:0.011712pt;}
.ls5_c00006{letter-spacing:0.021376pt;}
.ls6_c00006{letter-spacing:0.026720pt;}
.ls8_c00006{letter-spacing:0.029280pt;}
.lsc_c00006{letter-spacing:0.032064pt;}
.ls9_c00006{letter-spacing:0.035136pt;}
.ls7_c00006{letter-spacing:0.037408pt;}
.ls4_c00006{letter-spacing:0.046848pt;}
.lsa_c00006{letter-spacing:0.048096pt;}
.ls3_c00006{letter-spacing:0.076800pt;}
.ls0_c00006{letter-spacing:0.108800pt;}
.ls1_c00006{letter-spacing:0.128000pt;}
.ws4_c00006{word-spacing:-64.076800pt;}
.ws3_c00006{word-spacing:-64.006400pt;}
.ws0_c00006{word-spacing:-63.974400pt;}
.ws5_c00006{word-spacing:-58.606848pt;}
.ws16_c00006{word-spacing:-58.595136pt;}
.ws11_c00006{word-spacing:-58.589280pt;}
.ws21_c00006{word-spacing:-58.571712pt;}
.ws20_c00006{word-spacing:-58.560000pt;}
.ws17_c00006{word-spacing:-58.542432pt;}
.ws13_c00006{word-spacing:-58.530720pt;}
.ws6_c00006{word-spacing:-58.524864pt;}
.ws7_c00006{word-spacing:-58.513152pt;}
.ws19_c00006{word-spacing:-53.488096pt;}
.ws10_c00006{word-spacing:-53.477408pt;}
.ws26_c00006{word-spacing:-53.472064pt;}
.wsd_c00006{word-spacing:-53.466720pt;}
.wsb_c00006{word-spacing:-53.461376pt;}
.ws1e_c00006{word-spacing:-53.440000pt;}
.ws14_c00006{word-spacing:-53.429312pt;}
.ws1f_c00006{word-spacing:-53.423968pt;}
.ws1c_c00006{word-spacing:-53.413280pt;}
.ws8_c00006{word-spacing:-53.407936pt;}
.wsa_c00006{word-spacing:-53.402592pt;}
.ws9_c00006{word-spacing:-53.397248pt;}
.wsf_c00006{word-spacing:-53.391904pt;}
.wsc_c00006{word-spacing:-53.386560pt;}
.wse_c00006{word-spacing:-53.381216pt;}
.ws2a_c00006{word-spacing:-53.370528pt;}
.ws1_c00006{word-spacing:-49.888000pt;}
.ws2_c00006{word-spacing:-48.326400pt;}
.ws12_c00006{word-spacing:-45.202464pt;}
.ws2b_c00006{word-spacing:-44.007840pt;}
.ws27_c00006{word-spacing:-43.697888pt;}
.ws28_c00006{word-spacing:-43.035232pt;}
.ws1a_c00006{word-spacing:-42.703904pt;}
.ws15_c00006{word-spacing:-42.693216pt;}
.ws1d_c00006{word-spacing:-42.415328pt;}
.ws1b_c00006{word-spacing:-42.393952pt;}
.ws22_c00006{word-spacing:-41.886272pt;}
.ws25_c00006{word-spacing:-41.758016pt;}
.ws29_c00006{word-spacing:-40.817472pt;}
.ws24_c00006{word-spacing:-40.475456pt;}
.ws18_c00006{word-spacing:-40.144128pt;}
.ws23_c00006{word-spacing:-39.230304pt;}
.ws2c_c00006{word-spacing:0.000000pt;}
._7_c00006{margin-left:-12.007968pt;}
._8_c00006{margin-left:-9.656608pt;}
._4_c00006{margin-left:-7.545728pt;}
._a_c00006{margin-left:-6.321952pt;}
._b_c00006{margin-left:-4.594336pt;}
._2_c00006{margin-left:-3.097824pt;}
._6_c00006{margin-left:-1.950560pt;}
._3_c00006{margin-left:-0.929856pt;}
._5_c00006{width:0.967264pt;}
._0_c00006{width:3.916800pt;}
._1_c00006{width:6.400608pt;}
._9_c00006{width:7.754144pt;}
.fs3_c00006{font-size:53.440000pt;}
.fs2_c00006{font-size:58.560000pt;}
.fs0_c00006{font-size:64.000000pt;}
.fs1_c00006{font-size:96.000000pt;}
.y0_c00006{bottom:0.000000pt;}
.y3_c00006{bottom:50.987067pt;}
.y2_c00006{bottom:69.387067pt;}
.y33_c00006{bottom:115.787067pt;}
.y32_c00006{bottom:133.307067pt;}
.y31_c00006{bottom:150.907067pt;}
.y30_c00006{bottom:168.427067pt;}
.y2f_c00006{bottom:186.027200pt;}
.y2e_c00006{bottom:203.547067pt;}
.y2d_c00006{bottom:221.147067pt;}
.y2c_c00006{bottom:238.747067pt;}
.y2b_c00006{bottom:256.267067pt;}
.y2a_c00006{bottom:273.867067pt;}
.y29_c00006{bottom:291.387067pt;}
.y28_c00006{bottom:308.987067pt;}
.y27_c00006{bottom:326.507067pt;}
.y26_c00006{bottom:344.107067pt;}
.y25_c00006{bottom:361.627067pt;}
.y24_c00006{bottom:379.227067pt;}
.y23_c00006{bottom:396.827200pt;}
.y22_c00006{bottom:414.347067pt;}
.y21_c00006{bottom:431.947200pt;}
.y20_c00006{bottom:449.946563pt;}
.y1f_c00006{bottom:476.827067pt;}
.y1e_c00006{bottom:494.347067pt;}
.y1d_c00006{bottom:511.947067pt;}
.y1c_c00006{bottom:529.467067pt;}
.y1b_c00006{bottom:547.067067pt;}
.y1a_c00006{bottom:564.667067pt;}
.y19_c00006{bottom:582.187067pt;}
.y18_c00006{bottom:599.787067pt;}
.y17_c00006{bottom:617.307067pt;}
.y16_c00006{bottom:634.907067pt;}
.y15_c00006{bottom:652.427067pt;}
.y14_c00006{bottom:670.027067pt;}
.y13_c00006{bottom:687.547067pt;}
.y12_c00006{bottom:705.627083pt;}
.y11_c00006{bottom:732.427067pt;}
.y10_c00006{bottom:750.027067pt;}
.yf_c00006{bottom:768.107083pt;}
.ye_c00006{bottom:794.907067pt;}
.yd_c00006{bottom:812.507067pt;}
.yc_c00006{bottom:830.027067pt;}
.yb_c00006{bottom:847.627067pt;}
.ya_c00006{bottom:865.147200pt;}
.y9_c00006{bottom:882.747067pt;}
.y8_c00006{bottom:900.267067pt;}
.y7_c00006{bottom:918.346699pt;}
.y6_c00006{bottom:946.107067pt;}
.y5_c00006{bottom:975.227067pt;}
.y4_c00006{bottom:1005.867067pt;}
.y1_c00006{bottom:1060.747067pt;}
.h4_c00006{height:48.294844pt;}
.h3_c00006{height:52.781250pt;}
.h1_c00006{height:56.156250pt;}
.h2_c00006{height:85.265625pt;}
.h0_c00006{height:1122.666667pt;}
.w1_c00006{width:793.333333pt;}
.w0_c00006{width:793.626667pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:113.440000pt;}
.x3_c00006{left:129.439859pt;}
.x4_c00006{left:145.440000pt;}
.x5_c00006{left:161.440000pt;}
.x6_c00006{left:177.440000pt;}
.x2_c00006{left:680.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_938176b7eb5b20af514b2ff6.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.093262;font-style:normal;font-weight:normal;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_2f7f40e3fa5c25cebaad7ad0.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_6c9bed440f8c00c2ecf083cb.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00007;src:url('chunks/assets/font_29d71d1a2c5732f9e4e27422.woff2')format("woff");}.ff4_c00007{font-family:ff4_c00007;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1a_c00007{letter-spacing:-0.114228px;}
.ls19_c00007{letter-spacing:-0.072144px;}
.ls21_c00007{letter-spacing:-0.066132px;}
.ls15_c00007{letter-spacing:-0.060120px;}
.ls16_c00007{letter-spacing:-0.054108px;}
.ls24_c00007{letter-spacing:-0.052704px;}
.ls1b_c00007{letter-spacing:-0.050400px;}
.ls14_c00007{letter-spacing:-0.048096px;}
.ls1e_c00007{letter-spacing:-0.042084px;}
.ls1f_c00007{letter-spacing:-0.039528px;}
.ls17_c00007{letter-spacing:-0.036072px;}
.ls22_c00007{letter-spacing:-0.032940px;}
.ls18_c00007{letter-spacing:-0.030060px;}
.ls1d_c00007{letter-spacing:-0.026352px;}
.ls20_c00007{letter-spacing:-0.019764px;}
.ls23_c00007{letter-spacing:-0.014400px;}
.ls1c_c00007{letter-spacing:-0.006588px;}
.ls13_c00007{letter-spacing:0.000000px;}
.lsa_c00007{letter-spacing:0.013176px;}
.ls6_c00007{letter-spacing:0.014400px;}
.ls0_c00007{letter-spacing:0.018036px;}
.lsf_c00007{letter-spacing:0.019764px;}
.ls8_c00007{letter-spacing:0.028800px;}
.lsc_c00007{letter-spacing:0.030060px;}
.lsb_c00007{letter-spacing:0.032940px;}
.lsd_c00007{letter-spacing:0.036072px;}
.ls5_c00007{letter-spacing:0.039528px;}
.ls9_c00007{letter-spacing:0.046116px;}
.ls12_c00007{letter-spacing:0.052704px;}
.ls2_c00007{letter-spacing:0.054108px;}
.lse_c00007{letter-spacing:0.059292px;}
.ls11_c00007{letter-spacing:0.064800px;}
.ls4_c00007{letter-spacing:0.072000px;}
.ls1_c00007{letter-spacing:0.072144px;}
.ls10_c00007{letter-spacing:0.086400px;}
.ls7_c00007{letter-spacing:0.108000px;}
.ls3_c00007{letter-spacing:0.129600px;}
.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;}
}
.wsc_c00007{word-spacing:-72.129600px;}
.ws14_c00007{word-spacing:-72.108000px;}
.ws13_c00007{word-spacing:-72.014400px;}
.wsa_c00007{word-spacing:-72.000000px;}
.ws26_c00007{word-spacing:-71.985600px;}
.wsb_c00007{word-spacing:-71.949600px;}
.ws23_c00007{word-spacing:-65.939292px;}
.ws29_c00007{word-spacing:-65.932704px;}
.ws16_c00007{word-spacing:-65.926116px;}
.wse_c00007{word-spacing:-65.919528px;}
.ws1c_c00007{word-spacing:-65.912940px;}
.ws24_c00007{word-spacing:-65.899764px;}
.ws1a_c00007{word-spacing:-65.893176px;}
.ws2a_c00007{word-spacing:-65.873412px;}
.ws1b_c00007{word-spacing:-65.860236px;}
.ws10_c00007{word-spacing:-65.853648px;}
.ws25_c00007{word-spacing:-65.847060px;}
.ws2c_c00007{word-spacing:-65.827296px;}
.ws7_c00007{word-spacing:-60.192144px;}
.ws8_c00007{word-spacing:-60.174108px;}
.ws22_c00007{word-spacing:-60.156072px;}
.ws20_c00007{word-spacing:-60.150060px;}
.ws4_c00007{word-spacing:-60.138036px;}
.ws5_c00007{word-spacing:-60.089940px;}
.ws3_c00007{word-spacing:-60.083928px;}
.ws11_c00007{word-spacing:-60.077916px;}
.ws0_c00007{word-spacing:-60.071904px;}
.ws2_c00007{word-spacing:-60.065892px;}
.ws1_c00007{word-spacing:-60.059880px;}
.ws21_c00007{word-spacing:-60.053868px;}
.ws9_c00007{word-spacing:-60.005772px;}
.ws27_c00007{word-spacing:-56.412000px;}
.wsd_c00007{word-spacing:-55.303200px;}
.ws28_c00007{word-spacing:-55.288800px;}
.ws15_c00007{word-spacing:-55.216800px;}
.ws2b_c00007{word-spacing:-52.229664px;}
.wsf_c00007{word-spacing:-51.241464px;}
.ws19_c00007{word-spacing:-50.921640px;}
.ws17_c00007{word-spacing:-50.483844px;}
.ws1d_c00007{word-spacing:-50.121504px;}
.ws12_c00007{word-spacing:-48.652380px;}
.ws18_c00007{word-spacing:-48.053916px;}
.ws1e_c00007{word-spacing:-45.510840px;}
.ws6_c00007{word-spacing:-45.126072px;}
.ws1f_c00007{word-spacing:-44.909640px;}
.ws2d_c00007{word-spacing:0.000000px;}
._d_c00007{margin-left:-14.697828px;}
._7_c00007{margin-left:-13.320000px;}
._6_c00007{margin-left:-10.947852px;}
._4_c00007{margin-left:-8.585136px;}
._9_c00007{margin-left:-5.224284px;}
._1_c00007{margin-left:-4.172328px;}
._c_c00007{margin-left:-2.651292px;}
._0_c00007{margin-left:-1.232460px;}
._a_c00007{width:1.218780px;}
._2_c00007{width:3.384756px;}
._3_c00007{width:4.436856px;}
._5_c00007{width:5.945868px;}
._b_c00007{width:7.813368px;}
._8_c00007{width:9.401076px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs1_c00007{font-size:60.120000px;}
.fs2_c00007{font-size:65.880000px;}
.fs0_c00007{font-size:72.000000px;}
.y0_c00007{bottom:0.000000px;}
.y3_c00007{bottom:57.360450px;}
.y2_c00007{bottom:78.060450px;}
.y2c_c00007{bottom:127.197957px;}
.y2b_c00007{bottom:157.888155px;}
.y2a_c00007{bottom:188.668938px;}
.y29_c00007{bottom:219.359136px;}
.y28_c00007{bottom:250.139919px;}
.y27_c00007{bottom:280.830117px;}
.y26_c00007{bottom:311.610900px;}
.y25_c00007{bottom:342.301098px;}
.y24_c00007{bottom:373.620450px;}
.y23_c00007{bottom:405.750897px;}
.y22_c00007{bottom:436.530033px;}
.y21_c00007{bottom:466.770600px;}
.y20_c00007{bottom:486.480450px;}
.y1f_c00007{bottom:506.280600px;}
.y1e_c00007{bottom:525.990450px;}
.y1d_c00007{bottom:545.790450px;}
.y1c_c00007{bottom:566.039883px;}
.y1b_c00007{bottom:596.280450px;}
.y1a_c00007{bottom:615.990450px;}
.y19_c00007{bottom:636.329487px;}
.y18_c00007{bottom:667.019685px;}
.y17_c00007{bottom:697.800468px;}
.y16_c00007{bottom:727.950450px;}
.y15_c00007{bottom:747.750450px;}
.y14_c00007{bottom:768.090036px;}
.y13_c00007{bottom:799.320450px;}
.y12_c00007{bottom:831.540468px;}
.y11_c00007{bottom:861.690450px;}
.y10_c00007{bottom:881.490450px;}
.yf_c00007{bottom:901.741098px;}
.ye_c00007{bottom:933.060450px;}
.yd_c00007{bottom:964.649928px;}
.yc_c00007{bottom:984.450450px;}
.yb_c00007{bottom:1004.160450px;}
.ya_c00007{bottom:1023.960450px;}
.y9_c00007{bottom:1043.670450px;}
.y8_c00007{bottom:1063.470450px;}
.y7_c00007{bottom:1083.180450px;}
.y6_c00007{bottom:1102.980450px;}
.y5_c00007{bottom:1122.780450px;}
.y4_c00007{bottom:1142.490450px;}
.y1_c00007{bottom:1193.340450px;}
.h3_c00007{height:49.581387px;}
.h2_c00007{height:54.331699px;}
.h4_c00007{height:54.333787px;}
.h5_c00007{height:59.378906px;}
.h1_c00007{height:63.175781px;}
.h0_c00007{height:1263.000000px;}
.w1_c00007{width:892.500000px;}
.w0_c00007{width:892.830000px;}
.x0_c00007{left:0.000000px;}
.x2_c00007{left:127.620000px;}
.x5_c00007{left:145.619841px;}
.x6_c00007{left:163.620000px;}
.x4_c00007{left:181.620000px;}
.x3_c00007{left:199.620000px;}
.x1_c00007{left:765.450000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls1a_c00007{letter-spacing:-0.101536pt;}
.ls19_c00007{letter-spacing:-0.064128pt;}
.ls21_c00007{letter-spacing:-0.058784pt;}
.ls15_c00007{letter-spacing:-0.053440pt;}
.ls16_c00007{letter-spacing:-0.048096pt;}
.ls24_c00007{letter-spacing:-0.046848pt;}
.ls1b_c00007{letter-spacing:-0.044800pt;}
.ls14_c00007{letter-spacing:-0.042752pt;}
.ls1e_c00007{letter-spacing:-0.037408pt;}
.ls1f_c00007{letter-spacing:-0.035136pt;}
.ls17_c00007{letter-spacing:-0.032064pt;}
.ls22_c00007{letter-spacing:-0.029280pt;}
.ls18_c00007{letter-spacing:-0.026720pt;}
.ls1d_c00007{letter-spacing:-0.023424pt;}
.ls20_c00007{letter-spacing:-0.017568pt;}
.ls23_c00007{letter-spacing:-0.012800pt;}
.ls1c_c00007{letter-spacing:-0.005856pt;}
.ls13_c00007{letter-spacing:0.000000pt;}
.lsa_c00007{letter-spacing:0.011712pt;}
.ls6_c00007{letter-spacing:0.012800pt;}
.ls0_c00007{letter-spacing:0.016032pt;}
.lsf_c00007{letter-spacing:0.017568pt;}
.ls8_c00007{letter-spacing:0.025600pt;}
.lsc_c00007{letter-spacing:0.026720pt;}
.lsb_c00007{letter-spacing:0.029280pt;}
.lsd_c00007{letter-spacing:0.032064pt;}
.ls5_c00007{letter-spacing:0.035136pt;}
.ls9_c00007{letter-spacing:0.040992pt;}
.ls12_c00007{letter-spacing:0.046848pt;}
.ls2_c00007{letter-spacing:0.048096pt;}
.lse_c00007{letter-spacing:0.052704pt;}
.ls11_c00007{letter-spacing:0.057600pt;}
.ls4_c00007{letter-spacing:0.064000pt;}
.ls1_c00007{letter-spacing:0.064128pt;}
.ls10_c00007{letter-spacing:0.076800pt;}
.ls7_c00007{letter-spacing:0.096000pt;}
.ls3_c00007{letter-spacing:0.115200pt;}
.wsc_c00007{word-spacing:-64.115200pt;}
.ws14_c00007{word-spacing:-64.096000pt;}
.ws13_c00007{word-spacing:-64.012800pt;}
.wsa_c00007{word-spacing:-64.000000pt;}
.ws26_c00007{word-spacing:-63.987200pt;}
.wsb_c00007{word-spacing:-63.955200pt;}
.ws23_c00007{word-spacing:-58.612704pt;}
.ws29_c00007{word-spacing:-58.606848pt;}
.ws16_c00007{word-spacing:-58.600992pt;}
.wse_c00007{word-spacing:-58.595136pt;}
.ws1c_c00007{word-spacing:-58.589280pt;}
.ws24_c00007{word-spacing:-58.577568pt;}
.ws1a_c00007{word-spacing:-58.571712pt;}
.ws2a_c00007{word-spacing:-58.554144pt;}
.ws1b_c00007{word-spacing:-58.542432pt;}
.ws10_c00007{word-spacing:-58.536576pt;}
.ws25_c00007{word-spacing:-58.530720pt;}
.ws2c_c00007{word-spacing:-58.513152pt;}
.ws7_c00007{word-spacing:-53.504128pt;}
.ws8_c00007{word-spacing:-53.488096pt;}
.ws22_c00007{word-spacing:-53.472064pt;}
.ws20_c00007{word-spacing:-53.466720pt;}
.ws4_c00007{word-spacing:-53.456032pt;}
.ws5_c00007{word-spacing:-53.413280pt;}
.ws3_c00007{word-spacing:-53.407936pt;}
.ws11_c00007{word-spacing:-53.402592pt;}
.ws0_c00007{word-spacing:-53.397248pt;}
.ws2_c00007{word-spacing:-53.391904pt;}
.ws1_c00007{word-spacing:-53.386560pt;}
.ws21_c00007{word-spacing:-53.381216pt;}
.ws9_c00007{word-spacing:-53.338464pt;}
.ws27_c00007{word-spacing:-50.144000pt;}
.wsd_c00007{word-spacing:-49.158400pt;}
.ws28_c00007{word-spacing:-49.145600pt;}
.ws15_c00007{word-spacing:-49.081600pt;}
.ws2b_c00007{word-spacing:-46.426368pt;}
.wsf_c00007{word-spacing:-45.547968pt;}
.ws19_c00007{word-spacing:-45.263680pt;}
.ws17_c00007{word-spacing:-44.874528pt;}
.ws1d_c00007{word-spacing:-44.552448pt;}
.ws12_c00007{word-spacing:-43.246560pt;}
.ws18_c00007{word-spacing:-42.714592pt;}
.ws1e_c00007{word-spacing:-40.454080pt;}
.ws6_c00007{word-spacing:-40.112064pt;}
.ws1f_c00007{word-spacing:-39.919680pt;}
.ws2d_c00007{word-spacing:0.000000pt;}
._d_c00007{margin-left:-13.064736pt;}
._7_c00007{margin-left:-11.840000pt;}
._6_c00007{margin-left:-9.731424pt;}
._4_c00007{margin-left:-7.631232pt;}
._9_c00007{margin-left:-4.643808pt;}
._1_c00007{margin-left:-3.708736pt;}
._c_c00007{margin-left:-2.356704pt;}
._0_c00007{margin-left:-1.095520pt;}
._a_c00007{width:1.083360pt;}
._2_c00007{width:3.008672pt;}
._3_c00007{width:3.943872pt;}
._5_c00007{width:5.285216pt;}
._b_c00007{width:6.945216pt;}
._8_c00007{width:8.356512pt;}
.fs1_c00007{font-size:53.440000pt;}
.fs2_c00007{font-size:58.560000pt;}
.fs0_c00007{font-size:64.000000pt;}
.y0_c00007{bottom:0.000000pt;}
.y3_c00007{bottom:50.987067pt;}
.y2_c00007{bottom:69.387067pt;}
.y2c_c00007{bottom:113.064851pt;}
.y2b_c00007{bottom:140.345027pt;}
.y2a_c00007{bottom:167.705723pt;}
.y29_c00007{bottom:194.985899pt;}
.y28_c00007{bottom:222.346595pt;}
.y27_c00007{bottom:249.626771pt;}
.y26_c00007{bottom:276.987467pt;}
.y25_c00007{bottom:304.267643pt;}
.y24_c00007{bottom:332.107067pt;}
.y23_c00007{bottom:360.667464pt;}
.y22_c00007{bottom:388.026696pt;}
.y21_c00007{bottom:414.907200pt;}
.y20_c00007{bottom:432.427067pt;}
.y1f_c00007{bottom:450.027200pt;}
.y1e_c00007{bottom:467.547067pt;}
.y1d_c00007{bottom:485.147067pt;}
.y1c_c00007{bottom:503.146563pt;}
.y1b_c00007{bottom:530.027067pt;}
.y1a_c00007{bottom:547.547067pt;}
.y19_c00007{bottom:565.626211pt;}
.y18_c00007{bottom:592.906387pt;}
.y17_c00007{bottom:620.267083pt;}
.y16_c00007{bottom:647.067067pt;}
.y15_c00007{bottom:664.667067pt;}
.y14_c00007{bottom:682.746699pt;}
.y13_c00007{bottom:710.507067pt;}
.y12_c00007{bottom:739.147083pt;}
.y11_c00007{bottom:765.947067pt;}
.y10_c00007{bottom:783.547067pt;}
.yf_c00007{bottom:801.547643pt;}
.ye_c00007{bottom:829.387067pt;}
.yd_c00007{bottom:857.466603pt;}
.yc_c00007{bottom:875.067067pt;}
.yb_c00007{bottom:892.587067pt;}
.ya_c00007{bottom:910.187067pt;}
.y9_c00007{bottom:927.707067pt;}
.y8_c00007{bottom:945.307067pt;}
.y7_c00007{bottom:962.827067pt;}
.y6_c00007{bottom:980.427067pt;}
.y5_c00007{bottom:998.027067pt;}
.y4_c00007{bottom:1015.547067pt;}
.y1_c00007{bottom:1060.747067pt;}
.h3_c00007{height:44.072344pt;}
.h2_c00007{height:48.294844pt;}
.h4_c00007{height:48.296700pt;}
.h5_c00007{height:52.781250pt;}
.h1_c00007{height:56.156250pt;}
.h0_c00007{height:1122.666667pt;}
.w1_c00007{width:793.333333pt;}
.w0_c00007{width:793.626667pt;}
.x0_c00007{left:0.000000pt;}
.x2_c00007{left:113.440000pt;}
.x5_c00007{left:129.439859pt;}
.x6_c00007{left:145.440000pt;}
.x4_c00007{left:161.440000pt;}
.x3_c00007{left:177.440000pt;}
.x1_c00007{left:680.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_938176b7eb5b20af514b2ff6.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.093262;font-style:normal;font-weight:normal;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_6c052b92e6d6896d391ca117.woff2')format("woff");}.ff2_c00008{font-family:ff2_c00008;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00008;src:url('chunks/assets/font_5ef67bd471715b1fa2b3114a.woff2')format("woff");}.ff3_c00008{font-family:ff3_c00008;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00008;src:url('chunks/assets/font_6ba4bcdfc3ff1d7ba28dfbe2.woff2')format("woff");}.ff4_c00008{font-family:ff4_c00008;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls15_c00008{letter-spacing:-0.060120px;}
.ls17_c00008{letter-spacing:-0.054108px;}
.ls16_c00008{letter-spacing:-0.048096px;}
.lsc_c00008{letter-spacing:-0.046116px;}
.ls12_c00008{letter-spacing:-0.039528px;}
.ls11_c00008{letter-spacing:-0.032940px;}
.ls14_c00008{letter-spacing:-0.028800px;}
.lsd_c00008{letter-spacing:-0.026352px;}
.ls10_c00008{letter-spacing:-0.021600px;}
.lsf_c00008{letter-spacing:-0.019764px;}
.ls18_c00008{letter-spacing:-0.013176px;}
.ls13_c00008{letter-spacing:-0.007200px;}
.lse_c00008{letter-spacing:-0.006588px;}
.lsb_c00008{letter-spacing:0.000000px;}
.ls7_c00008{letter-spacing:0.006588px;}
.ls0_c00008{letter-spacing:0.014400px;}
.ls9_c00008{letter-spacing:0.021600px;}
.ls6_c00008{letter-spacing:0.026352px;}
.lsa_c00008{letter-spacing:0.043200px;}
.ls2_c00008{letter-spacing:0.050400px;}
.ls5_c00008{letter-spacing:0.059292px;}
.ls4_c00008{letter-spacing:0.064800px;}
.ls8_c00008{letter-spacing:0.072000px;}
.ls1_c00008{letter-spacing:0.115200px;}
.ls3_c00008{letter-spacing:0.122400px;}
.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;}
}
.ws8_c00008{word-spacing:-72.122400px;}
.ws3_c00008{word-spacing:-72.115200px;}
.ws1e_c00008{word-spacing:-72.021600px;}
.ws2_c00008{word-spacing:-72.014400px;}
.wsf_c00008{word-spacing:-71.992800px;}
.ws7_c00008{word-spacing:-71.978400px;}
.ws13_c00008{word-spacing:-71.971200px;}
.wsa_c00008{word-spacing:-65.939292px;}
.wsd_c00008{word-spacing:-65.906352px;}
.ws11_c00008{word-spacing:-65.886588px;}
.ws12_c00008{word-spacing:-65.873412px;}
.ws6_c00008{word-spacing:-65.860236px;}
.ws1_c00008{word-spacing:-65.853648px;}
.wsc_c00008{word-spacing:-65.847060px;}
.wse_c00008{word-spacing:-65.840472px;}
.ws1a_c00008{word-spacing:-65.833884px;}
.ws17_c00008{word-spacing:-60.071904px;}
.ws19_c00008{word-spacing:-60.065892px;}
.ws18_c00008{word-spacing:-60.059880px;}
.ws10_c00008{word-spacing:-57.564000px;}
.ws20_c00008{word-spacing:-55.892592px;}
.ws14_c00008{word-spacing:-55.303200px;}
.ws9_c00008{word-spacing:-55.288800px;}
.ws4_c00008{word-spacing:-55.260000px;}
.ws22_c00008{word-spacing:-55.245600px;}
.ws5_c00008{word-spacing:-53.758080px;}
.ws15_c00008{word-spacing:-50.839596px;}
.ws0_c00008{word-spacing:-50.800068px;}
.wsb_c00008{word-spacing:-50.174208px;}
.ws21_c00008{word-spacing:-49.403412px;}
.ws1d_c00008{word-spacing:-49.124052px;}
.ws1f_c00008{word-spacing:-49.067424px;}
.ws16_c00008{word-spacing:-48.751308px;}
.ws1b_c00008{word-spacing:-46.593000px;}
.ws1c_c00008{word-spacing:-45.162144px;}
.ws23_c00008{word-spacing:0.000000px;}
._3_c00008{margin-left:-14.594400px;}
._9_c00008{margin-left:-10.896552px;}
._5_c00008{margin-left:-7.171200px;}
._4_c00008{margin-left:-5.514156px;}
._1_c00008{margin-left:-4.275612px;}
._6_c00008{margin-left:-2.878956px;}
._2_c00008{margin-left:-1.000800px;}
._0_c00008{width:1.014552px;}
._8_c00008{width:4.100184px;}
._7_c00008{width:6.732936px;}
._a_c00008{width:9.809532px;}
.fc0_c00008{color:rgb(0,0,0);}
.fs2_c00008{font-size:60.120000px;}
.fs1_c00008{font-size:65.880000px;}
.fs0_c00008{font-size:72.000000px;}
.y0_c00008{bottom:0.000000px;}
.y3_c00008{bottom:57.360450px;}
.y2_c00008{bottom:78.060450px;}
.y28_c00008{bottom:132.960450px;}
.y27_c00008{bottom:167.250450px;}
.y26_c00008{bottom:190.560450px;}
.y25_c00008{bottom:222.688272px;}
.y24_c00008{bottom:253.469055px;}
.y23_c00008{bottom:284.159253px;}
.y22_c00008{bottom:314.940036px;}
.y21_c00008{bottom:346.170450px;}
.y20_c00008{bottom:377.850450px;}
.y1f_c00008{bottom:397.560450px;}
.y1e_c00008{bottom:417.360600px;}
.y1d_c00008{bottom:437.609835px;}
.y1c_c00008{bottom:468.390618px;}
.y1b_c00008{bottom:498.540600px;}
.y1a_c00008{bottom:518.880036px;}
.y19_c00008{bottom:550.110450px;}
.y18_c00008{bottom:581.790450px;}
.y17_c00008{bottom:601.500450px;}
.y16_c00008{bottom:621.300450px;}
.y15_c00008{bottom:641.640036px;}
.y14_c00008{bottom:672.870450px;}
.y13_c00008{bottom:704.550450px;}
.y12_c00008{bottom:724.260450px;}
.y11_c00008{bottom:744.060450px;}
.y10_c00008{bottom:764.311098px;}
.yf_c00008{bottom:795.630450px;}
.ye_c00008{bottom:827.759253px;}
.yd_c00008{bottom:858.540036px;}
.yc_c00008{bottom:889.770450px;}
.yb_c00008{bottom:921.989919px;}
.ya_c00008{bottom:952.680117px;}
.y9_c00008{bottom:983.460900px;}
.y8_c00008{bottom:1014.151098px;}
.y7_c00008{bottom:1045.470450px;}
.y6_c00008{bottom:1077.601098px;}
.y5_c00008{bottom:1108.920450px;}
.y4_c00008{bottom:1141.050450px;}
.y1_c00008{bottom:1193.340450px;}
.h2_c00008{height:54.331699px;}
.h3_c00008{height:59.378906px;}
.h1_c00008{height:63.175781px;}
.h0_c00008{height:1263.000000px;}
.w1_c00008{width:892.500000px;}
.w0_c00008{width:892.830000px;}
.x0_c00008{left:0.000000px;}
.x1_c00008{left:127.620000px;}
.x3_c00008{left:145.620000px;}
.x4_c00008{left:163.620000px;}
.x2_c00008{left:765.450000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls15_c00008{letter-spacing:-0.053440pt;}
.ls17_c00008{letter-spacing:-0.048096pt;}
.ls16_c00008{letter-spacing:-0.042752pt;}
.lsc_c00008{letter-spacing:-0.040992pt;}
.ls12_c00008{letter-spacing:-0.035136pt;}
.ls11_c00008{letter-spacing:-0.029280pt;}
.ls14_c00008{letter-spacing:-0.025600pt;}
.lsd_c00008{letter-spacing:-0.023424pt;}
.ls10_c00008{letter-spacing:-0.019200pt;}
.lsf_c00008{letter-spacing:-0.017568pt;}
.ls18_c00008{letter-spacing:-0.011712pt;}
.ls13_c00008{letter-spacing:-0.006400pt;}
.lse_c00008{letter-spacing:-0.005856pt;}
.lsb_c00008{letter-spacing:0.000000pt;}
.ls7_c00008{letter-spacing:0.005856pt;}
.ls0_c00008{letter-spacing:0.012800pt;}
.ls9_c00008{letter-spacing:0.019200pt;}
.ls6_c00008{letter-spacing:0.023424pt;}
.lsa_c00008{letter-spacing:0.038400pt;}
.ls2_c00008{letter-spacing:0.044800pt;}
.ls5_c00008{letter-spacing:0.052704pt;}
.ls4_c00008{letter-spacing:0.057600pt;}
.ls8_c00008{letter-spacing:0.064000pt;}
.ls1_c00008{letter-spacing:0.102400pt;}
.ls3_c00008{letter-spacing:0.108800pt;}
.ws8_c00008{word-spacing:-64.108800pt;}
.ws3_c00008{word-spacing:-64.102400pt;}
.ws1e_c00008{word-spacing:-64.019200pt;}
.ws2_c00008{word-spacing:-64.012800pt;}
.wsf_c00008{word-spacing:-63.993600pt;}
.ws7_c00008{word-spacing:-63.980800pt;}
.ws13_c00008{word-spacing:-63.974400pt;}
.wsa_c00008{word-spacing:-58.612704pt;}
.wsd_c00008{word-spacing:-58.583424pt;}
.ws11_c00008{word-spacing:-58.565856pt;}
.ws12_c00008{word-spacing:-58.554144pt;}
.ws6_c00008{word-spacing:-58.542432pt;}
.ws1_c00008{word-spacing:-58.536576pt;}
.wsc_c00008{word-spacing:-58.530720pt;}
.wse_c00008{word-spacing:-58.524864pt;}
.ws1a_c00008{word-spacing:-58.519008pt;}
.ws17_c00008{word-spacing:-53.397248pt;}
.ws19_c00008{word-spacing:-53.391904pt;}
.ws18_c00008{word-spacing:-53.386560pt;}
.ws10_c00008{word-spacing:-51.168000pt;}
.ws20_c00008{word-spacing:-49.682304pt;}
.ws14_c00008{word-spacing:-49.158400pt;}
.ws9_c00008{word-spacing:-49.145600pt;}
.ws4_c00008{word-spacing:-49.120000pt;}
.ws22_c00008{word-spacing:-49.107200pt;}
.ws5_c00008{word-spacing:-47.784960pt;}
.ws15_c00008{word-spacing:-45.190752pt;}
.ws0_c00008{word-spacing:-45.155616pt;}
.wsb_c00008{word-spacing:-44.599296pt;}
.ws21_c00008{word-spacing:-43.914144pt;}
.ws1d_c00008{word-spacing:-43.665824pt;}
.ws1f_c00008{word-spacing:-43.615488pt;}
.ws16_c00008{word-spacing:-43.334496pt;}
.ws1b_c00008{word-spacing:-41.416000pt;}
.ws1c_c00008{word-spacing:-40.144128pt;}
.ws23_c00008{word-spacing:0.000000pt;}
._3_c00008{margin-left:-12.972800pt;}
._9_c00008{margin-left:-9.685824pt;}
._5_c00008{margin-left:-6.374400pt;}
._4_c00008{margin-left:-4.901472pt;}
._1_c00008{margin-left:-3.800544pt;}
._6_c00008{margin-left:-2.559072pt;}
._2_c00008{margin-left:-0.889600pt;}
._0_c00008{width:0.901824pt;}
._8_c00008{width:3.644608pt;}
._7_c00008{width:5.984832pt;}
._a_c00008{width:8.719584pt;}
.fs2_c00008{font-size:53.440000pt;}
.fs1_c00008{font-size:58.560000pt;}
.fs0_c00008{font-size:64.000000pt;}
.y0_c00008{bottom:0.000000pt;}
.y3_c00008{bottom:50.987067pt;}
.y2_c00008{bottom:69.387067pt;}
.y28_c00008{bottom:118.187067pt;}
.y27_c00008{bottom:148.667067pt;}
.y26_c00008{bottom:169.387067pt;}
.y25_c00008{bottom:197.945131pt;}
.y24_c00008{bottom:225.305827pt;}
.y23_c00008{bottom:252.586003pt;}
.y22_c00008{bottom:279.946699pt;}
.y21_c00008{bottom:307.707067pt;}
.y20_c00008{bottom:335.867067pt;}
.y1f_c00008{bottom:353.387067pt;}
.y1e_c00008{bottom:370.987200pt;}
.y1d_c00008{bottom:388.986520pt;}
.y1c_c00008{bottom:416.347216pt;}
.y1b_c00008{bottom:443.147200pt;}
.y1a_c00008{bottom:461.226699pt;}
.y19_c00008{bottom:488.987067pt;}
.y18_c00008{bottom:517.147067pt;}
.y17_c00008{bottom:534.667067pt;}
.y16_c00008{bottom:552.267067pt;}
.y15_c00008{bottom:570.346699pt;}
.y14_c00008{bottom:598.107067pt;}
.y13_c00008{bottom:626.267067pt;}
.y12_c00008{bottom:643.787067pt;}
.y11_c00008{bottom:661.387067pt;}
.y10_c00008{bottom:679.387643pt;}
.yf_c00008{bottom:707.227067pt;}
.ye_c00008{bottom:735.786003pt;}
.yd_c00008{bottom:763.146699pt;}
.yc_c00008{bottom:790.907067pt;}
.yb_c00008{bottom:819.546595pt;}
.ya_c00008{bottom:846.826771pt;}
.y9_c00008{bottom:874.187467pt;}
.y8_c00008{bottom:901.467643pt;}
.y7_c00008{bottom:929.307067pt;}
.y6_c00008{bottom:957.867643pt;}
.y5_c00008{bottom:985.707067pt;}
.y4_c00008{bottom:1014.267067pt;}
.y1_c00008{bottom:1060.747067pt;}
.h2_c00008{height:48.294844pt;}
.h3_c00008{height:52.781250pt;}
.h1_c00008{height:56.156250pt;}
.h0_c00008{height:1122.666667pt;}
.w1_c00008{width:793.333333pt;}
.w0_c00008{width:793.626667pt;}
.x0_c00008{left:0.000000pt;}
.x1_c00008{left:113.440000pt;}
.x3_c00008{left:129.440000pt;}
.x4_c00008{left:145.440000pt;}
.x2_c00008{left:680.400000pt;}
}





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





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.095703;font-style:normal;font-weight:normal;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_abb8cb3808bc17796d9c4e14.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.093262;font-style:normal;font-weight:normal;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_b6d9d550196adfa5232d4bb4.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.104004;font-style: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);}
.v2_c00010{vertical-align:-20.880600px;}
.v0_c00010{vertical-align:0.000000px;}
.v1_c00010{vertical-align:27.000000px;}
.lsf_c00010{letter-spacing:-0.102204px;}
.ls15_c00010{letter-spacing:-0.079200px;}
.ls17_c00010{letter-spacing:-0.036072px;}
.ls14_c00010{letter-spacing:-0.028800px;}
.ls11_c00010{letter-spacing:-0.021600px;}
.ls12_c00010{letter-spacing:-0.014400px;}
.ls13_c00010{letter-spacing:-0.007200px;}
.ls16_c00010{letter-spacing:-0.006012px;}
.ls10_c00010{letter-spacing:0.000000px;}
.ls0_c00010{letter-spacing:0.007200px;}
.ls9_c00010{letter-spacing:0.014400px;}
.ls5_c00010{letter-spacing:0.021600px;}
.lsb_c00010{letter-spacing:0.028800px;}
.lsc_c00010{letter-spacing:0.036000px;}
.lsa_c00010{letter-spacing:0.043200px;}
.ls7_c00010{letter-spacing:0.050400px;}
.lsd_c00010{letter-spacing:0.057600px;}
.ls1_c00010{letter-spacing:0.064800px;}
.ls4_c00010{letter-spacing:0.072000px;}
.ls6_c00010{letter-spacing:0.079200px;}
.ls3_c00010{letter-spacing:0.100800px;}
.ls2_c00010{letter-spacing:0.115200px;}
.ls8_c00010{letter-spacing:0.180000px;}
.lse_c00010{letter-spacing:0.180360px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00010{word-spacing:-15.210360px;}
.ws1_c00010{word-spacing:-14.993928px;}
.ws0_c00010{word-spacing:-9.720000px;}
.ws4_c00010{word-spacing:0.000000px;}
.ws3_c00010{word-spacing:0.192384px;}
.ws5_c00010{word-spacing:17.992800px;}
._a_c00010{margin-left:-17.294400px;}
._6_c00010{margin-left:-3.261600px;}
._10_c00010{margin-left:-2.152800px;}
._3_c00010{margin-left:-1.152000px;}
._0_c00010{width:1.034064px;}
._5_c00010{width:2.882736px;}
._2_c00010{width:4.168800px;}
._1_c00010{width:5.414400px;}
._9_c00010{width:6.415200px;}
._f_c00010{width:9.122400px;}
._8_c00010{width:10.778400px;}
._b_c00010{width:12.304800px;}
._e_c00010{width:14.284800px;}
._7_c00010{width:15.688800px;}
._4_c00010{width:16.977600px;}
._c_c00010{width:27.669600px;}
._d_c00010{width:28.706400px;}
.fc1_c00010{color:rgb(0,0,0);}
.fc0_c00010{color:rgb(32,31,30);}
.fs4_c00010{font-size:38.880000px;}
.fs3_c00010{font-size:47.880000px;}
.fs0_c00010{font-size:60.120000px;}
.fs1_c00010{font-size:72.000000px;}
.fs2_c00010{font-size:108.000000px;}
.y0_c00010{bottom:0.000000px;}
.y5_c00010{bottom:57.360450px;}
.y4_c00010{bottom:78.060450px;}
.y23_c00010{bottom:131.790600px;}
.y22_c00010{bottom:170.400450px;}
.y21_c00010{bottom:201.450450px;}
.y20_c00010{bottom:232.500450px;}
.y1f_c00010{bottom:263.460450px;}
.y1e_c00010{bottom:306.570450px;}
.y1d_c00010{bottom:337.620450px;}
.y1c_c00010{bottom:368.670450px;}
.y1b_c00010{bottom:399.720450px;}
.y1a_c00010{bottom:442.830450px;}
.y19_c00010{bottom:473.880450px;}
.y18_c00010{bottom:504.930450px;}
.y17_c00010{bottom:535.980450px;}
.y16_c00010{bottom:566.940450px;}
.y15_c00010{bottom:597.990450px;}
.y14_c00010{bottom:629.040450px;}
.y13_c00010{bottom:672.060450px;}
.y12_c00010{bottom:703.110450px;}
.y11_c00010{bottom:734.070450px;}
.y10_c00010{bottom:777.180450px;}
.yf_c00010{bottom:808.230450px;}
.ye_c00010{bottom:839.280450px;}
.yd_c00010{bottom:870.330450px;}
.yc_c00010{bottom:901.380450px;}
.yb_c00010{bottom:932.430450px;}
.ya_c00010{bottom:963.480450px;}
.y9_c00010{bottom:994.530450px;}
.y8_c00010{bottom:1025.580450px;}
.y7_c00010{bottom:1059.780450px;}
.y6_c00010{bottom:1084.800450px;}
.y3_c00010{bottom:1132.140450px;}
.y2_c00010{bottom:1165.441023px;}
.y1_c00010{bottom:1196.040600px;}
.h6_c00010{height:34.114922px;}
.h1_c00010{height:52.898555px;}
.h2_c00010{height:63.175781px;}
.h4_c00010{height:63.351562px;}
.h5_c00010{height:69.011895px;}
.h3_c00010{height:95.923828px;}
.h0_c00010{height:1263.000000px;}
.w1_c00010{width:892.500000px;}
.w0_c00010{width:892.830000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:127.620000px;}
.x2_c00010{left:756.450000px;}
@media print{
.v2_c00010{vertical-align:-18.560533pt;}
.v0_c00010{vertical-align:0.000000pt;}
.v1_c00010{vertical-align:24.000000pt;}
.lsf_c00010{letter-spacing:-0.090848pt;}
.ls15_c00010{letter-spacing:-0.070400pt;}
.ls17_c00010{letter-spacing:-0.032064pt;}
.ls14_c00010{letter-spacing:-0.025600pt;}
.ls11_c00010{letter-spacing:-0.019200pt;}
.ls12_c00010{letter-spacing:-0.012800pt;}
.ls13_c00010{letter-spacing:-0.006400pt;}
.ls16_c00010{letter-spacing:-0.005344pt;}
.ls10_c00010{letter-spacing:0.000000pt;}
.ls0_c00010{letter-spacing:0.006400pt;}
.ls9_c00010{letter-spacing:0.012800pt;}
.ls5_c00010{letter-spacing:0.019200pt;}
.lsb_c00010{letter-spacing:0.025600pt;}
.lsc_c00010{letter-spacing:0.032000pt;}
.lsa_c00010{letter-spacing:0.038400pt;}
.ls7_c00010{letter-spacing:0.044800pt;}
.lsd_c00010{letter-spacing:0.051200pt;}
.ls1_c00010{letter-spacing:0.057600pt;}
.ls4_c00010{letter-spacing:0.064000pt;}
.ls6_c00010{letter-spacing:0.070400pt;}
.ls3_c00010{letter-spacing:0.089600pt;}
.ls2_c00010{letter-spacing:0.102400pt;}
.ls8_c00010{letter-spacing:0.160000pt;}
.lse_c00010{letter-spacing:0.160320pt;}
.ws2_c00010{word-spacing:-13.520320pt;}
.ws1_c00010{word-spacing:-13.327936pt;}
.ws0_c00010{word-spacing:-8.640000pt;}
.ws4_c00010{word-spacing:0.000000pt;}
.ws3_c00010{word-spacing:0.171008pt;}
.ws5_c00010{word-spacing:15.993600pt;}
._a_c00010{margin-left:-15.372800pt;}
._6_c00010{margin-left:-2.899200pt;}
._10_c00010{margin-left:-1.913600pt;}
._3_c00010{margin-left:-1.024000pt;}
._0_c00010{width:0.919168pt;}
._5_c00010{width:2.562432pt;}
._2_c00010{width:3.705600pt;}
._1_c00010{width:4.812800pt;}
._9_c00010{width:5.702400pt;}
._f_c00010{width:8.108800pt;}
._8_c00010{width:9.580800pt;}
._b_c00010{width:10.937600pt;}
._e_c00010{width:12.697600pt;}
._7_c00010{width:13.945600pt;}
._4_c00010{width:15.091200pt;}
._c_c00010{width:24.595200pt;}
._d_c00010{width:25.516800pt;}
.fs4_c00010{font-size:34.560000pt;}
.fs3_c00010{font-size:42.560000pt;}
.fs0_c00010{font-size:53.440000pt;}
.fs1_c00010{font-size:64.000000pt;}
.fs2_c00010{font-size:96.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y5_c00010{bottom:50.987067pt;}
.y4_c00010{bottom:69.387067pt;}
.y23_c00010{bottom:117.147200pt;}
.y22_c00010{bottom:151.467067pt;}
.y21_c00010{bottom:179.067067pt;}
.y20_c00010{bottom:206.667067pt;}
.y1f_c00010{bottom:234.187067pt;}
.y1e_c00010{bottom:272.507067pt;}
.y1d_c00010{bottom:300.107067pt;}
.y1c_c00010{bottom:327.707067pt;}
.y1b_c00010{bottom:355.307067pt;}
.y1a_c00010{bottom:393.627067pt;}
.y19_c00010{bottom:421.227067pt;}
.y18_c00010{bottom:448.827067pt;}
.y17_c00010{bottom:476.427067pt;}
.y16_c00010{bottom:503.947067pt;}
.y15_c00010{bottom:531.547067pt;}
.y14_c00010{bottom:559.147067pt;}
.y13_c00010{bottom:597.387067pt;}
.y12_c00010{bottom:624.987067pt;}
.y11_c00010{bottom:652.507067pt;}
.y10_c00010{bottom:690.827067pt;}
.yf_c00010{bottom:718.427067pt;}
.ye_c00010{bottom:746.027067pt;}
.yd_c00010{bottom:773.627067pt;}
.yc_c00010{bottom:801.227067pt;}
.yb_c00010{bottom:828.827067pt;}
.ya_c00010{bottom:856.427067pt;}
.y9_c00010{bottom:884.027067pt;}
.y8_c00010{bottom:911.627067pt;}
.y7_c00010{bottom:942.027067pt;}
.y6_c00010{bottom:964.267067pt;}
.y3_c00010{bottom:1006.347067pt;}
.y2_c00010{bottom:1035.947576pt;}
.y1_c00010{bottom:1063.147200pt;}
.h6_c00010{height:30.324375pt;}
.h1_c00010{height:47.020937pt;}
.h2_c00010{height:56.156250pt;}
.h4_c00010{height:56.312500pt;}
.h5_c00010{height:61.343906pt;}
.h3_c00010{height:85.265625pt;}
.h0_c00010{height:1122.666667pt;}
.w1_c00010{width:793.333333pt;}
.w0_c00010{width:793.626667pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:113.440000pt;}
.x2_c00010{left:672.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_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_90322609ac4539ba342a793b.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.095703;font-style:normal;font-weight:normal;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_f2ab8bd2a8dd15e33f936801.woff2')format("woff");}.ff2_c00011{font-family:ff2_c00011;line-height:1.093262;font-style:normal;font-weight:normal;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_cf8fe65f4b65e5365ecb6195.woff2')format("woff");}.ff3_c00011{font-family:ff3_c00011;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00011{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls17_c00011{letter-spacing:-17.337600px;}
.ls1a_c00011{letter-spacing:-0.309600px;}
.ls19_c00011{letter-spacing:-0.280800px;}
.ls14_c00011{letter-spacing:-0.244800px;}
.ls15_c00011{letter-spacing:-0.050400px;}
.lse_c00011{letter-spacing:-0.048096px;}
.ls16_c00011{letter-spacing:-0.043200px;}
.ls13_c00011{letter-spacing:-0.036000px;}
.ls18_c00011{letter-spacing:-0.028800px;}
.ls12_c00011{letter-spacing:-0.021600px;}
.ls10_c00011{letter-spacing:-0.014400px;}
.ls11_c00011{letter-spacing:-0.007200px;}
.lsf_c00011{letter-spacing:0.000000px;}
.ls6_c00011{letter-spacing:0.007200px;}
.ls2_c00011{letter-spacing:0.014400px;}
.ls3_c00011{letter-spacing:0.021600px;}
.ls7_c00011{letter-spacing:0.028800px;}
.ls1_c00011{letter-spacing:0.036000px;}
.ls0_c00011{letter-spacing:0.043200px;}
.lsa_c00011{letter-spacing:0.050400px;}
.ls9_c00011{letter-spacing:0.057600px;}
.ls4_c00011{letter-spacing:0.064800px;}
.ls5_c00011{letter-spacing:0.072000px;}
.lsb_c00011{letter-spacing:0.079200px;}
.lsc_c00011{letter-spacing:0.086400px;}
.ls8_c00011{letter-spacing:0.115200px;}
.lsd_c00011{letter-spacing:0.129600px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00011{word-spacing:0.000000px;}
.ws0_c00011{word-spacing:0.138276px;}
.ws2_c00011{word-spacing:3.952800px;}
._b_c00011{margin-left:-17.373600px;}
._8_c00011{margin-left:-11.188800px;}
._6_c00011{margin-left:-6.249600px;}
._5_c00011{margin-left:-5.097600px;}
._e_c00011{margin-left:-4.017600px;}
._f_c00011{margin-left:-2.340000px;}
._1_c00011{margin-left:-1.267200px;}
._0_c00011{width:1.396800px;}
._2_c00011{width:3.225600px;}
._c_c00011{width:4.255200px;}
._3_c00011{width:5.292000px;}
._4_c00011{width:6.818400px;}
._12_c00011{width:8.956800px;}
._11_c00011{width:10.195200px;}
._10_c00011{width:11.455200px;}
._7_c00011{width:12.931200px;}
._a_c00011{width:14.112000px;}
._9_c00011{width:15.220800px;}
._13_c00011{width:17.049600px;}
._14_c00011{width:18.360000px;}
._d_c00011{width:25.185600px;}
.fc0_c00011{color:rgb(0,0,0);}
.fs0_c00011{font-size:60.120000px;}
.fs1_c00011{font-size:72.000000px;}
.y0_c00011{bottom:0.000000px;}
.y6_c00011{bottom:57.360450px;}
.y5_c00011{bottom:78.060450px;}
.y24_c00011{bottom:128.010450px;}
.y23_c00011{bottom:158.970450px;}
.y22_c00011{bottom:201.990450px;}
.y21_c00011{bottom:233.040450px;}
.y20_c00011{bottom:264.000450px;}
.y1f_c00011{bottom:307.110450px;}
.y1e_c00011{bottom:338.160450px;}
.y1d_c00011{bottom:381.270450px;}
.y1c_c00011{bottom:412.230450px;}
.y1b_c00011{bottom:455.430450px;}
.y1a_c00011{bottom:486.480450px;}
.y19_c00011{bottom:517.530450px;}
.y18_c00011{bottom:548.490450px;}
.y17_c00011{bottom:591.690450px;}
.y16_c00011{bottom:622.740450px;}
.y15_c00011{bottom:653.700450px;}
.y14_c00011{bottom:696.720450px;}
.y13_c00011{bottom:727.770450px;}
.y12_c00011{bottom:758.820450px;}
.y11_c00011{bottom:789.870450px;}
.y10_c00011{bottom:820.920450px;}
.yf_c00011{bottom:851.880450px;}
.ye_c00011{bottom:894.990450px;}
.yd_c00011{bottom:926.040450px;}
.yc_c00011{bottom:957.090450px;}
.yb_c00011{bottom:988.140450px;}
.ya_c00011{bottom:1019.190450px;}
.y9_c00011{bottom:1050.150450px;}
.y8_c00011{bottom:1093.260450px;}
.y7_c00011{bottom:1124.310450px;}
.y4_c00011{bottom:1144.380657px;}
.y3_c00011{bottom:1161.660648px;}
.y2_c00011{bottom:1178.850459px;}
.y1_c00011{bottom:1196.130450px;}
.h1_c00011{height:52.898555px;}
.h2_c00011{height:63.175781px;}
.h3_c00011{height:63.351562px;}
.h4_c00011{height:63.949219px;}
.h0_c00011{height:1263.000000px;}
.w1_c00011{width:892.500000px;}
.w0_c00011{width:892.830000px;}
.x0_c00011{left:0.000000px;}
.x4_c00011{left:127.620000px;}
.x1_c00011{left:649.620000px;}
.x3_c00011{left:756.450000px;}
.x2_c00011{left:765.450198px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls17_c00011{letter-spacing:-15.411200pt;}
.ls1a_c00011{letter-spacing:-0.275200pt;}
.ls19_c00011{letter-spacing:-0.249600pt;}
.ls14_c00011{letter-spacing:-0.217600pt;}
.ls15_c00011{letter-spacing:-0.044800pt;}
.lse_c00011{letter-spacing:-0.042752pt;}
.ls16_c00011{letter-spacing:-0.038400pt;}
.ls13_c00011{letter-spacing:-0.032000pt;}
.ls18_c00011{letter-spacing:-0.025600pt;}
.ls12_c00011{letter-spacing:-0.019200pt;}
.ls10_c00011{letter-spacing:-0.012800pt;}
.ls11_c00011{letter-spacing:-0.006400pt;}
.lsf_c00011{letter-spacing:0.000000pt;}
.ls6_c00011{letter-spacing:0.006400pt;}
.ls2_c00011{letter-spacing:0.012800pt;}
.ls3_c00011{letter-spacing:0.019200pt;}
.ls7_c00011{letter-spacing:0.025600pt;}
.ls1_c00011{letter-spacing:0.032000pt;}
.ls0_c00011{letter-spacing:0.038400pt;}
.lsa_c00011{letter-spacing:0.044800pt;}
.ls9_c00011{letter-spacing:0.051200pt;}
.ls4_c00011{letter-spacing:0.057600pt;}
.ls5_c00011{letter-spacing:0.064000pt;}
.lsb_c00011{letter-spacing:0.070400pt;}
.lsc_c00011{letter-spacing:0.076800pt;}
.ls8_c00011{letter-spacing:0.102400pt;}
.lsd_c00011{letter-spacing:0.115200pt;}
.ws1_c00011{word-spacing:0.000000pt;}
.ws0_c00011{word-spacing:0.122912pt;}
.ws2_c00011{word-spacing:3.513600pt;}
._b_c00011{margin-left:-15.443200pt;}
._8_c00011{margin-left:-9.945600pt;}
._6_c00011{margin-left:-5.555200pt;}
._5_c00011{margin-left:-4.531200pt;}
._e_c00011{margin-left:-3.571200pt;}
._f_c00011{margin-left:-2.080000pt;}
._1_c00011{margin-left:-1.126400pt;}
._0_c00011{width:1.241600pt;}
._2_c00011{width:2.867200pt;}
._c_c00011{width:3.782400pt;}
._3_c00011{width:4.704000pt;}
._4_c00011{width:6.060800pt;}
._12_c00011{width:7.961600pt;}
._11_c00011{width:9.062400pt;}
._10_c00011{width:10.182400pt;}
._7_c00011{width:11.494400pt;}
._a_c00011{width:12.544000pt;}
._9_c00011{width:13.529600pt;}
._13_c00011{width:15.155200pt;}
._14_c00011{width:16.320000pt;}
._d_c00011{width:22.387200pt;}
.fs0_c00011{font-size:53.440000pt;}
.fs1_c00011{font-size:64.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y6_c00011{bottom:50.987067pt;}
.y5_c00011{bottom:69.387067pt;}
.y24_c00011{bottom:113.787067pt;}
.y23_c00011{bottom:141.307067pt;}
.y22_c00011{bottom:179.547067pt;}
.y21_c00011{bottom:207.147067pt;}
.y20_c00011{bottom:234.667067pt;}
.y1f_c00011{bottom:272.987067pt;}
.y1e_c00011{bottom:300.587067pt;}
.y1d_c00011{bottom:338.907067pt;}
.y1c_c00011{bottom:366.427067pt;}
.y1b_c00011{bottom:404.827067pt;}
.y1a_c00011{bottom:432.427067pt;}
.y19_c00011{bottom:460.027067pt;}
.y18_c00011{bottom:487.547067pt;}
.y17_c00011{bottom:525.947067pt;}
.y16_c00011{bottom:553.547067pt;}
.y15_c00011{bottom:581.067067pt;}
.y14_c00011{bottom:619.307067pt;}
.y13_c00011{bottom:646.907067pt;}
.y12_c00011{bottom:674.507067pt;}
.y11_c00011{bottom:702.107067pt;}
.y10_c00011{bottom:729.707067pt;}
.yf_c00011{bottom:757.227067pt;}
.ye_c00011{bottom:795.547067pt;}
.yd_c00011{bottom:823.147067pt;}
.yc_c00011{bottom:850.747067pt;}
.yb_c00011{bottom:878.347067pt;}
.ya_c00011{bottom:905.947067pt;}
.y9_c00011{bottom:933.467067pt;}
.y8_c00011{bottom:971.787067pt;}
.y7_c00011{bottom:999.387067pt;}
.y4_c00011{bottom:1017.227251pt;}
.y3_c00011{bottom:1032.587243pt;}
.y2_c00011{bottom:1047.867075pt;}
.y1_c00011{bottom:1063.227067pt;}
.h1_c00011{height:47.020937pt;}
.h2_c00011{height:56.156250pt;}
.h3_c00011{height:56.312500pt;}
.h4_c00011{height:56.843750pt;}
.h0_c00011{height:1122.666667pt;}
.w1_c00011{width:793.333333pt;}
.w0_c00011{width:793.626667pt;}
.x0_c00011{left:0.000000pt;}
.x4_c00011{left:113.440000pt;}
.x1_c00011{left:577.440000pt;}
.x3_c00011{left:672.400000pt;}
.x2_c00011{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.095703;font-style:normal;font-weight:normal;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_bf0b6400e2a7857a01338d55.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00012{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls8_c00012{letter-spacing:-0.102204px;}
.lsa_c00012{letter-spacing:-0.007200px;}
.ls9_c00012{letter-spacing:0.000000px;}
.ls0_c00012{letter-spacing:0.007200px;}
.ls6_c00012{letter-spacing:0.014400px;}
.ls4_c00012{letter-spacing:0.021600px;}
.ls1_c00012{letter-spacing:0.028800px;}
.ls2_c00012{letter-spacing:0.036000px;}
.ls3_c00012{letter-spacing:0.043200px;}
.ls5_c00012{letter-spacing:0.072000px;}
.ls7_c00012{letter-spacing:0.086400px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00012{word-spacing:0.000000px;}
.ws0_c00012{word-spacing:0.192384px;}
._5_c00012{margin-left:-3.060000px;}
._4_c00012{margin-left:-1.843200px;}
._0_c00012{width:1.034064px;}
._2_c00012{width:2.620800px;}
._3_c00012{width:3.931200px;}
._7_c00012{width:9.345600px;}
._6_c00012{width:12.578400px;}
._1_c00012{width:19.771200px;}
.fc1_c00012{color:rgb(0,0,0);}
.fc0_c00012{color:rgb(32,31,30);}
.fs0_c00012{font-size:60.120000px;}
.fs1_c00012{font-size:72.000000px;}
.y0_c00012{bottom:0.000000px;}
.y5_c00012{bottom:57.360450px;}
.y4_c00012{bottom:78.060450px;}
.yd_c00012{bottom:882.030450px;}
.yc_c00012{bottom:913.170450px;}
.yb_c00012{bottom:944.220450px;}
.ya_c00012{bottom:975.180450px;}
.y9_c00012{bottom:1018.200450px;}
.y8_c00012{bottom:1049.340450px;}
.y7_c00012{bottom:1080.390450px;}
.y6_c00012{bottom:1111.440450px;}
.y3_c00012{bottom:1132.140450px;}
.y2_c00012{bottom:1165.441023px;}
.y1_c00012{bottom:1196.040600px;}
.h1_c00012{height:52.898555px;}
.h2_c00012{height:63.175781px;}
.h0_c00012{height:1263.000000px;}
.w1_c00012{width:892.500000px;}
.w0_c00012{width:892.830000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:127.620000px;}
.x2_c00012{left:756.450000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls8_c00012{letter-spacing:-0.090848pt;}
.lsa_c00012{letter-spacing:-0.006400pt;}
.ls9_c00012{letter-spacing:0.000000pt;}
.ls0_c00012{letter-spacing:0.006400pt;}
.ls6_c00012{letter-spacing:0.012800pt;}
.ls4_c00012{letter-spacing:0.019200pt;}
.ls1_c00012{letter-spacing:0.025600pt;}
.ls2_c00012{letter-spacing:0.032000pt;}
.ls3_c00012{letter-spacing:0.038400pt;}
.ls5_c00012{letter-spacing:0.064000pt;}
.ls7_c00012{letter-spacing:0.076800pt;}
.ws1_c00012{word-spacing:0.000000pt;}
.ws0_c00012{word-spacing:0.171008pt;}
._5_c00012{margin-left:-2.720000pt;}
._4_c00012{margin-left:-1.638400pt;}
._0_c00012{width:0.919168pt;}
._2_c00012{width:2.329600pt;}
._3_c00012{width:3.494400pt;}
._7_c00012{width:8.307200pt;}
._6_c00012{width:11.180800pt;}
._1_c00012{width:17.574400pt;}
.fs0_c00012{font-size:53.440000pt;}
.fs1_c00012{font-size:64.000000pt;}
.y0_c00012{bottom:0.000000pt;}
.y5_c00012{bottom:50.987067pt;}
.y4_c00012{bottom:69.387067pt;}
.yd_c00012{bottom:784.027067pt;}
.yc_c00012{bottom:811.707067pt;}
.yb_c00012{bottom:839.307067pt;}
.ya_c00012{bottom:866.827067pt;}
.y9_c00012{bottom:905.067067pt;}
.y8_c00012{bottom:932.747067pt;}
.y7_c00012{bottom:960.347067pt;}
.y6_c00012{bottom:987.947067pt;}
.y3_c00012{bottom:1006.347067pt;}
.y2_c00012{bottom:1035.947576pt;}
.y1_c00012{bottom:1063.147200pt;}
.h1_c00012{height:47.020937pt;}
.h2_c00012{height:56.156250pt;}
.h0_c00012{height:1122.666667pt;}
.w1_c00012{width:793.333333pt;}
.w0_c00012{width:793.626667pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:113.440000pt;}
.x2_c00012{left:672.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.095703;font-style:normal;font-weight:normal;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_0ad1edec23f60095edadeddd.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00013{font-family:ff3_c00013;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls0_c00013{letter-spacing:-0.048096px;}
.ls1_c00013{letter-spacing:0.000000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00013{word-spacing:0.000000px;}
.ws0_c00013{word-spacing:0.138276px;}
.fc0_c00013{color:rgb(0,0,0);}
.fs0_c00013{font-size:60.120000px;}
.fs1_c00013{font-size:72.000000px;}
.fs2_c00013{font-size:108.000000px;}
.y0_c00013{bottom:0.000000px;}
.y6_c00013{bottom:57.360450px;}
.y5_c00013{bottom:78.060450px;}
.y1a_c00013{bottom:163.650450px;}
.y19_c00013{bottom:188.569650px;}
.y18_c00013{bottom:240.139650px;}
.y17_c00013{bottom:291.620550px;}
.y16_c00013{bottom:343.101450px;}
.y15_c00013{bottom:394.582350px;}
.y14_c00013{bottom:446.152350px;}
.y13_c00013{bottom:497.633250px;}
.y12_c00013{bottom:549.114150px;}
.y11_c00013{bottom:600.684150px;}
.y10_c00013{bottom:652.165050px;}
.yf_c00013{bottom:703.645950px;}
.ye_c00013{bottom:755.126850px;}
.yd_c00013{bottom:806.696850px;}
.yc_c00013{bottom:858.177750px;}
.yb_c00013{bottom:909.658650px;}
.ya_c00013{bottom:961.228650px;}
.y9_c00013{bottom:1012.709550px;}
.y8_c00013{bottom:1064.190450px;}
.y7_c00013{bottom:1115.760450px;}
.y4_c00013{bottom:1144.380657px;}
.y3_c00013{bottom:1161.660648px;}
.y2_c00013{bottom:1178.850459px;}
.y1_c00013{bottom:1196.130450px;}
.h1_c00013{height:52.898555px;}
.h2_c00013{height:63.175781px;}
.h3_c00013{height:95.923828px;}
.h0_c00013{height:1263.000000px;}
.w1_c00013{width:892.500000px;}
.w0_c00013{width:892.830000px;}
.x0_c00013{left:0.000000px;}
.x4_c00013{left:127.620000px;}
.x1_c00013{left:649.620000px;}
.x3_c00013{left:756.450000px;}
.x2_c00013{left:765.450198px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:-0.042752pt;}
.ls1_c00013{letter-spacing:0.000000pt;}
.ws1_c00013{word-spacing:0.000000pt;}
.ws0_c00013{word-spacing:0.122912pt;}
.fs0_c00013{font-size:53.440000pt;}
.fs1_c00013{font-size:64.000000pt;}
.fs2_c00013{font-size:96.000000pt;}
.y0_c00013{bottom:0.000000pt;}
.y6_c00013{bottom:50.987067pt;}
.y5_c00013{bottom:69.387067pt;}
.y1a_c00013{bottom:145.467067pt;}
.y19_c00013{bottom:167.617467pt;}
.y18_c00013{bottom:213.457467pt;}
.y17_c00013{bottom:259.218267pt;}
.y16_c00013{bottom:304.979067pt;}
.y15_c00013{bottom:350.739867pt;}
.y14_c00013{bottom:396.579867pt;}
.y13_c00013{bottom:442.340667pt;}
.y12_c00013{bottom:488.101467pt;}
.y11_c00013{bottom:533.941467pt;}
.y10_c00013{bottom:579.702267pt;}
.yf_c00013{bottom:625.463067pt;}
.ye_c00013{bottom:671.223867pt;}
.yd_c00013{bottom:717.063867pt;}
.yc_c00013{bottom:762.824667pt;}
.yb_c00013{bottom:808.585467pt;}
.ya_c00013{bottom:854.425467pt;}
.y9_c00013{bottom:900.186267pt;}
.y8_c00013{bottom:945.947067pt;}
.y7_c00013{bottom:991.787067pt;}
.y4_c00013{bottom:1017.227251pt;}
.y3_c00013{bottom:1032.587243pt;}
.y2_c00013{bottom:1047.867075pt;}
.y1_c00013{bottom:1063.227067pt;}
.h1_c00013{height:47.020937pt;}
.h2_c00013{height:56.156250pt;}
.h3_c00013{height:85.265625pt;}
.h0_c00013{height:1122.666667pt;}
.w1_c00013{width:793.333333pt;}
.w0_c00013{width:793.626667pt;}
.x0_c00013{left:0.000000pt;}
.x4_c00013{left:113.440000pt;}
.x1_c00013{left:577.440000pt;}
.x3_c00013{left:672.400000pt;}
.x2_c00013{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27dda4da86851d907e438ddb.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_01e43995e3335ae9c7abcaf5.woff2')format("woff");}.ff2_c00014{font-family:ff2_c00014;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00014;src:url('chunks/assets/font_e88f064cf253e846b518c058.woff2')format("woff");}.ff3_c00014{font-family:ff3_c00014;line-height:1.104004;font-style: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;}
.ls16_c00014{letter-spacing:-2.520000px;}
.ls15_c00014{letter-spacing:-0.360000px;}
.lse_c00014{letter-spacing:-0.102204px;}
.ls12_c00014{letter-spacing:-0.021600px;}
.ls13_c00014{letter-spacing:-0.014400px;}
.ls10_c00014{letter-spacing:-0.010800px;}
.ls14_c00014{letter-spacing:-0.007200px;}
.lsf_c00014{letter-spacing:0.000000px;}
.ls0_c00014{letter-spacing:0.007200px;}
.ls6_c00014{letter-spacing:0.014400px;}
.lsc_c00014{letter-spacing:0.021600px;}
.ls2_c00014{letter-spacing:0.028800px;}
.ls7_c00014{letter-spacing:0.036000px;}
.ls5_c00014{letter-spacing:0.043200px;}
.ls3_c00014{letter-spacing:0.050400px;}
.ls1_c00014{letter-spacing:0.057600px;}
.ls8_c00014{letter-spacing:0.058716px;}
.lsa_c00014{letter-spacing:0.072000px;}
.lsb_c00014{letter-spacing:0.079200px;}
.ls4_c00014{letter-spacing:0.093600px;}
.ls9_c00014{letter-spacing:0.100800px;}
.lsd_c00014{letter-spacing:0.151200px;}
.ls11_c00014{letter-spacing:1.080000px;}
.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;}
}
.ws5_c00014{word-spacing:-1.879200px;}
.ws6_c00014{word-spacing:-1.828800px;}
.ws1_c00014{word-spacing:0.000000px;}
.ws0_c00014{word-spacing:0.192384px;}
.ws2_c00014{word-spacing:1.814400px;}
.ws4_c00014{word-spacing:3.052800px;}
.ws3_c00014{word-spacing:3.160800px;}
._4_c00014{margin-left:-5.184000px;}
._3_c00014{margin-left:-4.017600px;}
._7_c00014{margin-left:-2.908800px;}
._1_c00014{margin-left:-1.780848px;}
._0_c00014{width:1.034064px;}
._2_c00014{width:2.050272px;}
._a_c00014{width:3.303936px;}
._9_c00014{width:4.305600px;}
._8_c00014{width:6.652800px;}
._5_c00014{width:7.970400px;}
._6_c00014{width:9.943200px;}
._b_c00014{width:11.138400px;}
.fc1_c00014{color:rgb(0,0,0);}
.fc0_c00014{color:rgb(32,31,30);}
.fs0_c00014{font-size:60.120000px;}
.fs1_c00014{font-size:72.000000px;}
.fs3_c00014{font-size:83.880000px;}
.fs2_c00014{font-size:108.000000px;}
.y0_c00014{bottom:0.000000px;}
.y5_c00014{bottom:57.360450px;}
.y4_c00014{bottom:78.060450px;}
.y23_c00014{bottom:136.830450px;}
.y22_c00014{bottom:167.790450px;}
.y21_c00014{bottom:198.930450px;}
.y20_c00014{bottom:229.980450px;}
.y1f_c00014{bottom:261.030450px;}
.y1e_c00014{bottom:292.080450px;}
.y1d_c00014{bottom:323.130450px;}
.y1c_c00014{bottom:354.180450px;}
.y1b_c00014{bottom:385.230450px;}
.y1a_c00014{bottom:416.280450px;}
.y19_c00014{bottom:459.210450px;}
.y18_c00014{bottom:490.350450px;}
.y17_c00014{bottom:521.400450px;}
.y16_c00014{bottom:564.330450px;}
.y15_c00014{bottom:595.470450px;}
.y14_c00014{bottom:626.520450px;}
.y13_c00014{bottom:660.810450px;}
.y12_c00014{bottom:694.020450px;}
.y11_c00014{bottom:740.010450px;}
.y10_c00014{bottom:783.120450px;}
.yf_c00014{bottom:814.260450px;}
.ye_c00014{bottom:845.310450px;}
.yd_c00014{bottom:876.360450px;}
.yc_c00014{bottom:907.410450px;}
.yb_c00014{bottom:950.340450px;}
.ya_c00014{bottom:981.480450px;}
.y9_c00014{bottom:1012.530450px;}
.y8_c00014{bottom:1043.580450px;}
.y7_c00014{bottom:1077.780450px;}
.y6_c00014{bottom:1102.800450px;}
.y3_c00014{bottom:1132.140450px;}
.y2_c00014{bottom:1165.441023px;}
.y1_c00014{bottom:1196.040600px;}
.h1_c00014{height:52.898555px;}
.h2_c00014{height:63.175781px;}
.h5_c00014{height:63.351562px;}
.h4_c00014{height:74.500840px;}
.h3_c00014{height:95.923828px;}
.h0_c00014{height:1263.000000px;}
.w1_c00014{width:892.500000px;}
.w0_c00014{width:892.830000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:127.620000px;}
.x2_c00014{left:756.450000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls16_c00014{letter-spacing:-2.240000pt;}
.ls15_c00014{letter-spacing:-0.320000pt;}
.lse_c00014{letter-spacing:-0.090848pt;}
.ls12_c00014{letter-spacing:-0.019200pt;}
.ls13_c00014{letter-spacing:-0.012800pt;}
.ls10_c00014{letter-spacing:-0.009600pt;}
.ls14_c00014{letter-spacing:-0.006400pt;}
.lsf_c00014{letter-spacing:0.000000pt;}
.ls0_c00014{letter-spacing:0.006400pt;}
.ls6_c00014{letter-spacing:0.012800pt;}
.lsc_c00014{letter-spacing:0.019200pt;}
.ls2_c00014{letter-spacing:0.025600pt;}
.ls7_c00014{letter-spacing:0.032000pt;}
.ls5_c00014{letter-spacing:0.038400pt;}
.ls3_c00014{letter-spacing:0.044800pt;}
.ls1_c00014{letter-spacing:0.051200pt;}
.ls8_c00014{letter-spacing:0.052192pt;}
.lsa_c00014{letter-spacing:0.064000pt;}
.lsb_c00014{letter-spacing:0.070400pt;}
.ls4_c00014{letter-spacing:0.083200pt;}
.ls9_c00014{letter-spacing:0.089600pt;}
.lsd_c00014{letter-spacing:0.134400pt;}
.ls11_c00014{letter-spacing:0.960000pt;}
.ws5_c00014{word-spacing:-1.670400pt;}
.ws6_c00014{word-spacing:-1.625600pt;}
.ws1_c00014{word-spacing:0.000000pt;}
.ws0_c00014{word-spacing:0.171008pt;}
.ws2_c00014{word-spacing:1.612800pt;}
.ws4_c00014{word-spacing:2.713600pt;}
.ws3_c00014{word-spacing:2.809600pt;}
._4_c00014{margin-left:-4.608000pt;}
._3_c00014{margin-left:-3.571200pt;}
._7_c00014{margin-left:-2.585600pt;}
._1_c00014{margin-left:-1.582976pt;}
._0_c00014{width:0.919168pt;}
._2_c00014{width:1.822464pt;}
._a_c00014{width:2.936832pt;}
._9_c00014{width:3.827200pt;}
._8_c00014{width:5.913600pt;}
._5_c00014{width:7.084800pt;}
._6_c00014{width:8.838400pt;}
._b_c00014{width:9.900800pt;}
.fs0_c00014{font-size:53.440000pt;}
.fs1_c00014{font-size:64.000000pt;}
.fs3_c00014{font-size:74.560000pt;}
.fs2_c00014{font-size:96.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y5_c00014{bottom:50.987067pt;}
.y4_c00014{bottom:69.387067pt;}
.y23_c00014{bottom:121.627067pt;}
.y22_c00014{bottom:149.147067pt;}
.y21_c00014{bottom:176.827067pt;}
.y20_c00014{bottom:204.427067pt;}
.y1f_c00014{bottom:232.027067pt;}
.y1e_c00014{bottom:259.627067pt;}
.y1d_c00014{bottom:287.227067pt;}
.y1c_c00014{bottom:314.827067pt;}
.y1b_c00014{bottom:342.427067pt;}
.y1a_c00014{bottom:370.027067pt;}
.y19_c00014{bottom:408.187067pt;}
.y18_c00014{bottom:435.867067pt;}
.y17_c00014{bottom:463.467067pt;}
.y16_c00014{bottom:501.627067pt;}
.y15_c00014{bottom:529.307067pt;}
.y14_c00014{bottom:556.907067pt;}
.y13_c00014{bottom:587.387067pt;}
.y12_c00014{bottom:616.907067pt;}
.y11_c00014{bottom:657.787067pt;}
.y10_c00014{bottom:696.107067pt;}
.yf_c00014{bottom:723.787067pt;}
.ye_c00014{bottom:751.387067pt;}
.yd_c00014{bottom:778.987067pt;}
.yc_c00014{bottom:806.587067pt;}
.yb_c00014{bottom:844.747067pt;}
.ya_c00014{bottom:872.427067pt;}
.y9_c00014{bottom:900.027067pt;}
.y8_c00014{bottom:927.627067pt;}
.y7_c00014{bottom:958.027067pt;}
.y6_c00014{bottom:980.267067pt;}
.y3_c00014{bottom:1006.347067pt;}
.y2_c00014{bottom:1035.947576pt;}
.y1_c00014{bottom:1063.147200pt;}
.h1_c00014{height:47.020937pt;}
.h2_c00014{height:56.156250pt;}
.h5_c00014{height:56.312500pt;}
.h4_c00014{height:66.222969pt;}
.h3_c00014{height:85.265625pt;}
.h0_c00014{height:1122.666667pt;}
.w1_c00014{width:793.333333pt;}
.w0_c00014{width:793.626667pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:113.440000pt;}
.x2_c00014{left:672.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_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_4c415c72d50ecd23d773b93d.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_1d1c4ea905a9df5b2edda978.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.093262;font-style: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;}
.lsc_c00015{letter-spacing:-0.048096px;}
.ls10_c00015{letter-spacing:-0.043200px;}
.lsf_c00015{letter-spacing:-0.036000px;}
.ls12_c00015{letter-spacing:-0.028800px;}
.ls11_c00015{letter-spacing:-0.021600px;}
.ls13_c00015{letter-spacing:-0.014400px;}
.lse_c00015{letter-spacing:-0.007200px;}
.lsd_c00015{letter-spacing:0.000000px;}
.ls2_c00015{letter-spacing:0.007200px;}
.ls4_c00015{letter-spacing:0.014400px;}
.ls1_c00015{letter-spacing:0.021600px;}
.ls3_c00015{letter-spacing:0.028800px;}
.ls6_c00015{letter-spacing:0.036000px;}
.ls0_c00015{letter-spacing:0.043200px;}
.ls7_c00015{letter-spacing:0.050400px;}
.ls8_c00015{letter-spacing:0.057600px;}
.lsb_c00015{letter-spacing:0.072000px;}
.ls5_c00015{letter-spacing:0.079200px;}
.ls9_c00015{letter-spacing:0.115200px;}
.lsa_c00015{letter-spacing:0.129600px;}
.ls15_c00015{letter-spacing:2.520000px;}
.ls14_c00015{letter-spacing:10.440000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00015{word-spacing:-18.050400px;}
.ws0_c00015{word-spacing:-17.992800px;}
.ws8_c00015{word-spacing:-2.671200px;}
.ws7_c00015{word-spacing:-2.491200px;}
.ws4_c00015{word-spacing:-1.476000px;}
.ws3_c00015{word-spacing:0.000000px;}
.ws9_c00015{word-spacing:0.007200px;}
.ws2_c00015{word-spacing:0.138276px;}
.ws5_c00015{word-spacing:1.000800px;}
.ws6_c00015{word-spacing:1.101600px;}
._a_c00015{margin-left:-11.620800px;}
._b_c00015{margin-left:-10.281600px;}
._d_c00015{margin-left:-5.342400px;}
._c_c00015{margin-left:-4.334400px;}
._6_c00015{margin-left:-3.232800px;}
._5_c00015{margin-left:-1.771200px;}
._4_c00015{width:1.022400px;}
._0_c00015{width:2.116800px;}
._9_c00015{width:3.801600px;}
._8_c00015{width:5.133600px;}
._7_c00015{width:6.400800px;}
._e_c00015{width:7.502400px;}
._2_c00015{width:9.820800px;}
._3_c00015{width:11.361600px;}
._f_c00015{width:13.060800px;}
._10_c00015{width:16.452000px;}
._1_c00015{width:25.891200px;}
.fc0_c00015{color:rgb(0,0,0);}
.fs0_c00015{font-size:60.120000px;}
.fs1_c00015{font-size:72.000000px;}
.y0_c00015{bottom:0.000000px;}
.y6_c00015{bottom:57.360450px;}
.y5_c00015{bottom:78.060450px;}
.y25_c00015{bottom:144.840450px;}
.y24_c00015{bottom:175.980450px;}
.y23_c00015{bottom:207.030450px;}
.y22_c00015{bottom:238.080450px;}
.y21_c00015{bottom:269.130450px;}
.y20_c00015{bottom:300.180450px;}
.y1f_c00015{bottom:343.110450px;}
.y1e_c00015{bottom:374.250450px;}
.y1d_c00015{bottom:405.300450px;}
.y1c_c00015{bottom:436.350450px;}
.y1b_c00015{bottom:467.400450px;}
.y1a_c00015{bottom:510.330450px;}
.y19_c00015{bottom:541.470450px;}
.y18_c00015{bottom:572.520450px;}
.y17_c00015{bottom:603.570450px;}
.y16_c00015{bottom:646.590450px;}
.y15_c00015{bottom:677.640450px;}
.y14_c00015{bottom:708.690450px;}
.y13_c00015{bottom:739.740450px;}
.y12_c00015{bottom:770.790450px;}
.y11_c00015{bottom:801.840450px;}
.y10_c00015{bottom:832.890450px;}
.yf_c00015{bottom:863.940450px;}
.ye_c00015{bottom:894.990450px;}
.yd_c00015{bottom:926.040600px;}
.yc_c00015{bottom:957.090450px;}
.yb_c00015{bottom:1000.110450px;}
.ya_c00015{bottom:1031.160450px;}
.y9_c00015{bottom:1062.210450px;}
.y8_c00015{bottom:1093.260450px;}
.y7_c00015{bottom:1124.310450px;}
.y4_c00015{bottom:1144.380657px;}
.y3_c00015{bottom:1161.660648px;}
.y2_c00015{bottom:1178.850459px;}
.y1_c00015{bottom:1196.130450px;}
.h1_c00015{height:52.898555px;}
.h2_c00015{height:63.175781px;}
.h3_c00015{height:63.351562px;}
.h0_c00015{height:1263.000000px;}
.w1_c00015{width:892.500000px;}
.w0_c00015{width:892.830000px;}
.x0_c00015{left:0.000000px;}
.x4_c00015{left:127.620000px;}
.x1_c00015{left:649.620000px;}
.x3_c00015{left:756.450000px;}
.x2_c00015{left:765.450198px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.lsc_c00015{letter-spacing:-0.042752pt;}
.ls10_c00015{letter-spacing:-0.038400pt;}
.lsf_c00015{letter-spacing:-0.032000pt;}
.ls12_c00015{letter-spacing:-0.025600pt;}
.ls11_c00015{letter-spacing:-0.019200pt;}
.ls13_c00015{letter-spacing:-0.012800pt;}
.lse_c00015{letter-spacing:-0.006400pt;}
.lsd_c00015{letter-spacing:0.000000pt;}
.ls2_c00015{letter-spacing:0.006400pt;}
.ls4_c00015{letter-spacing:0.012800pt;}
.ls1_c00015{letter-spacing:0.019200pt;}
.ls3_c00015{letter-spacing:0.025600pt;}
.ls6_c00015{letter-spacing:0.032000pt;}
.ls0_c00015{letter-spacing:0.038400pt;}
.ls7_c00015{letter-spacing:0.044800pt;}
.ls8_c00015{letter-spacing:0.051200pt;}
.lsb_c00015{letter-spacing:0.064000pt;}
.ls5_c00015{letter-spacing:0.070400pt;}
.ls9_c00015{letter-spacing:0.102400pt;}
.lsa_c00015{letter-spacing:0.115200pt;}
.ls15_c00015{letter-spacing:2.240000pt;}
.ls14_c00015{letter-spacing:9.280000pt;}
.ws1_c00015{word-spacing:-16.044800pt;}
.ws0_c00015{word-spacing:-15.993600pt;}
.ws8_c00015{word-spacing:-2.374400pt;}
.ws7_c00015{word-spacing:-2.214400pt;}
.ws4_c00015{word-spacing:-1.312000pt;}
.ws3_c00015{word-spacing:0.000000pt;}
.ws9_c00015{word-spacing:0.006400pt;}
.ws2_c00015{word-spacing:0.122912pt;}
.ws5_c00015{word-spacing:0.889600pt;}
.ws6_c00015{word-spacing:0.979200pt;}
._a_c00015{margin-left:-10.329600pt;}
._b_c00015{margin-left:-9.139200pt;}
._d_c00015{margin-left:-4.748800pt;}
._c_c00015{margin-left:-3.852800pt;}
._6_c00015{margin-left:-2.873600pt;}
._5_c00015{margin-left:-1.574400pt;}
._4_c00015{width:0.908800pt;}
._0_c00015{width:1.881600pt;}
._9_c00015{width:3.379200pt;}
._8_c00015{width:4.563200pt;}
._7_c00015{width:5.689600pt;}
._e_c00015{width:6.668800pt;}
._2_c00015{width:8.729600pt;}
._3_c00015{width:10.099200pt;}
._f_c00015{width:11.609600pt;}
._10_c00015{width:14.624000pt;}
._1_c00015{width:23.014400pt;}
.fs0_c00015{font-size:53.440000pt;}
.fs1_c00015{font-size:64.000000pt;}
.y0_c00015{bottom:0.000000pt;}
.y6_c00015{bottom:50.987067pt;}
.y5_c00015{bottom:69.387067pt;}
.y25_c00015{bottom:128.747067pt;}
.y24_c00015{bottom:156.427067pt;}
.y23_c00015{bottom:184.027067pt;}
.y22_c00015{bottom:211.627067pt;}
.y21_c00015{bottom:239.227067pt;}
.y20_c00015{bottom:266.827067pt;}
.y1f_c00015{bottom:304.987067pt;}
.y1e_c00015{bottom:332.667067pt;}
.y1d_c00015{bottom:360.267067pt;}
.y1c_c00015{bottom:387.867067pt;}
.y1b_c00015{bottom:415.467067pt;}
.y1a_c00015{bottom:453.627067pt;}
.y19_c00015{bottom:481.307067pt;}
.y18_c00015{bottom:508.907067pt;}
.y17_c00015{bottom:536.507067pt;}
.y16_c00015{bottom:574.747067pt;}
.y15_c00015{bottom:602.347067pt;}
.y14_c00015{bottom:629.947067pt;}
.y13_c00015{bottom:657.547067pt;}
.y12_c00015{bottom:685.147067pt;}
.y11_c00015{bottom:712.747067pt;}
.y10_c00015{bottom:740.347067pt;}
.yf_c00015{bottom:767.947067pt;}
.ye_c00015{bottom:795.547067pt;}
.yd_c00015{bottom:823.147200pt;}
.yc_c00015{bottom:850.747067pt;}
.yb_c00015{bottom:888.987067pt;}
.ya_c00015{bottom:916.587067pt;}
.y9_c00015{bottom:944.187067pt;}
.y8_c00015{bottom:971.787067pt;}
.y7_c00015{bottom:999.387067pt;}
.y4_c00015{bottom:1017.227251pt;}
.y3_c00015{bottom:1032.587243pt;}
.y2_c00015{bottom:1047.867075pt;}
.y1_c00015{bottom:1063.227067pt;}
.h1_c00015{height:47.020937pt;}
.h2_c00015{height:56.156250pt;}
.h3_c00015{height:56.312500pt;}
.h0_c00015{height:1122.666667pt;}
.w1_c00015{width:793.333333pt;}
.w0_c00015{width:793.626667pt;}
.x0_c00015{left:0.000000pt;}
.x4_c00015{left:113.440000pt;}
.x1_c00015{left:577.440000pt;}
.x3_c00015{left:672.400000pt;}
.x2_c00015{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.095703;font-style:normal;font-weight:normal;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_9ea2ec6984f5be8686c24793.woff2')format("woff");}.ff2_c00016{font-family:ff2_c00016;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls11_c00016{letter-spacing:-0.102204px;}
.ls14_c00016{letter-spacing:-0.057600px;}
.ls1a_c00016{letter-spacing:-0.050400px;}
.ls18_c00016{letter-spacing:-0.043200px;}
.ls17_c00016{letter-spacing:-0.036000px;}
.ls16_c00016{letter-spacing:-0.021600px;}
.ls19_c00016{letter-spacing:-0.014400px;}
.ls15_c00016{letter-spacing:-0.007200px;}
.ls12_c00016{letter-spacing:0.000000px;}
.ls9_c00016{letter-spacing:0.007200px;}
.ls2_c00016{letter-spacing:0.014400px;}
.ls1_c00016{letter-spacing:0.021600px;}
.lsd_c00016{letter-spacing:0.028800px;}
.ls4_c00016{letter-spacing:0.036000px;}
.ls6_c00016{letter-spacing:0.043200px;}
.ls3_c00016{letter-spacing:0.050400px;}
.ls0_c00016{letter-spacing:0.057600px;}
.ls8_c00016{letter-spacing:0.064800px;}
.lse_c00016{letter-spacing:0.072000px;}
.lsa_c00016{letter-spacing:0.079200px;}
.lsc_c00016{letter-spacing:0.086400px;}
.ls5_c00016{letter-spacing:0.093600px;}
.ls10_c00016{letter-spacing:0.100800px;}
.lsf_c00016{letter-spacing:0.108000px;}
.lsb_c00016{letter-spacing:0.122400px;}
.ls7_c00016{letter-spacing:0.446400px;}
.ls13_c00016{letter-spacing:7.560000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00016{word-spacing:-18.093600px;}
.ws2_c00016{word-spacing:-18.064800px;}
.ws0_c00016{word-spacing:-18.043200px;}
.ws4_c00016{word-spacing:0.000000px;}
.ws3_c00016{word-spacing:0.192384px;}
._1_c00016{margin-left:-7.646400px;}
._2_c00016{margin-left:-6.552000px;}
._9_c00016{margin-left:-3.636000px;}
._d_c00016{margin-left:-2.275200px;}
._6_c00016{margin-left:-1.152000px;}
._0_c00016{width:1.034064px;}
._8_c00016{width:2.484000px;}
._c_c00016{width:3.852000px;}
._a_c00016{width:5.709600px;}
._4_c00016{width:6.883200px;}
._3_c00016{width:8.236800px;}
._b_c00016{width:9.345600px;}
._5_c00016{width:12.902400px;}
._10_c00016{width:14.378400px;}
._7_c00016{width:19.396800px;}
._11_c00016{width:20.865600px;}
._12_c00016{width:22.003200px;}
._f_c00016{width:31.680000px;}
._e_c00016{width:32.731200px;}
.fc1_c00016{color:rgb(0,0,0);}
.fc0_c00016{color:rgb(32,31,30);}
.fs0_c00016{font-size:60.120000px;}
.fs1_c00016{font-size:72.000000px;}
.y0_c00016{bottom:0.000000px;}
.y5_c00016{bottom:57.360450px;}
.y4_c00016{bottom:78.060450px;}
.y24_c00016{bottom:131.970450px;}
.y23_c00016{bottom:163.020450px;}
.y22_c00016{bottom:194.070450px;}
.y21_c00016{bottom:225.120450px;}
.y20_c00016{bottom:268.050450px;}
.y1f_c00016{bottom:299.190450px;}
.y1e_c00016{bottom:330.240450px;}
.y1d_c00016{bottom:361.290450px;}
.y1c_c00016{bottom:392.340450px;}
.y1b_c00016{bottom:423.390450px;}
.y1a_c00016{bottom:466.410450px;}
.y19_c00016{bottom:497.550450px;}
.y18_c00016{bottom:528.600450px;}
.y17_c00016{bottom:559.650450px;}
.y16_c00016{bottom:590.700450px;}
.y15_c00016{bottom:621.660450px;}
.y14_c00016{bottom:652.710450px;}
.y13_c00016{bottom:695.730450px;}
.y12_c00016{bottom:726.870450px;}
.y11_c00016{bottom:757.920450px;}
.y10_c00016{bottom:788.970450px;}
.yf_c00016{bottom:820.020450px;}
.ye_c00016{bottom:862.950450px;}
.yd_c00016{bottom:894.090450px;}
.yc_c00016{bottom:925.140450px;}
.yb_c00016{bottom:956.190450px;}
.ya_c00016{bottom:987.240450px;}
.y9_c00016{bottom:1018.290450px;}
.y8_c00016{bottom:1049.340450px;}
.y7_c00016{bottom:1080.390450px;}
.y6_c00016{bottom:1111.440450px;}
.y3_c00016{bottom:1132.140450px;}
.y2_c00016{bottom:1165.441023px;}
.y1_c00016{bottom:1196.040600px;}
.h1_c00016{height:52.898555px;}
.h2_c00016{height:63.175781px;}
.h3_c00016{height:63.351562px;}
.h0_c00016{height:1263.000000px;}
.w1_c00016{width:892.500000px;}
.w0_c00016{width:892.830000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:127.620000px;}
.x2_c00016{left:756.450000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls11_c00016{letter-spacing:-0.090848pt;}
.ls14_c00016{letter-spacing:-0.051200pt;}
.ls1a_c00016{letter-spacing:-0.044800pt;}
.ls18_c00016{letter-spacing:-0.038400pt;}
.ls17_c00016{letter-spacing:-0.032000pt;}
.ls16_c00016{letter-spacing:-0.019200pt;}
.ls19_c00016{letter-spacing:-0.012800pt;}
.ls15_c00016{letter-spacing:-0.006400pt;}
.ls12_c00016{letter-spacing:0.000000pt;}
.ls9_c00016{letter-spacing:0.006400pt;}
.ls2_c00016{letter-spacing:0.012800pt;}
.ls1_c00016{letter-spacing:0.019200pt;}
.lsd_c00016{letter-spacing:0.025600pt;}
.ls4_c00016{letter-spacing:0.032000pt;}
.ls6_c00016{letter-spacing:0.038400pt;}
.ls3_c00016{letter-spacing:0.044800pt;}
.ls0_c00016{letter-spacing:0.051200pt;}
.ls8_c00016{letter-spacing:0.057600pt;}
.lse_c00016{letter-spacing:0.064000pt;}
.lsa_c00016{letter-spacing:0.070400pt;}
.lsc_c00016{letter-spacing:0.076800pt;}
.ls5_c00016{letter-spacing:0.083200pt;}
.ls10_c00016{letter-spacing:0.089600pt;}
.lsf_c00016{letter-spacing:0.096000pt;}
.lsb_c00016{letter-spacing:0.108800pt;}
.ls7_c00016{letter-spacing:0.396800pt;}
.ls13_c00016{letter-spacing:6.720000pt;}
.ws1_c00016{word-spacing:-16.083200pt;}
.ws2_c00016{word-spacing:-16.057600pt;}
.ws0_c00016{word-spacing:-16.038400pt;}
.ws4_c00016{word-spacing:0.000000pt;}
.ws3_c00016{word-spacing:0.171008pt;}
._1_c00016{margin-left:-6.796800pt;}
._2_c00016{margin-left:-5.824000pt;}
._9_c00016{margin-left:-3.232000pt;}
._d_c00016{margin-left:-2.022400pt;}
._6_c00016{margin-left:-1.024000pt;}
._0_c00016{width:0.919168pt;}
._8_c00016{width:2.208000pt;}
._c_c00016{width:3.424000pt;}
._a_c00016{width:5.075200pt;}
._4_c00016{width:6.118400pt;}
._3_c00016{width:7.321600pt;}
._b_c00016{width:8.307200pt;}
._5_c00016{width:11.468800pt;}
._10_c00016{width:12.780800pt;}
._7_c00016{width:17.241600pt;}
._11_c00016{width:18.547200pt;}
._12_c00016{width:19.558400pt;}
._f_c00016{width:28.160000pt;}
._e_c00016{width:29.094400pt;}
.fs0_c00016{font-size:53.440000pt;}
.fs1_c00016{font-size:64.000000pt;}
.y0_c00016{bottom:0.000000pt;}
.y5_c00016{bottom:50.987067pt;}
.y4_c00016{bottom:69.387067pt;}
.y24_c00016{bottom:117.307067pt;}
.y23_c00016{bottom:144.907067pt;}
.y22_c00016{bottom:172.507067pt;}
.y21_c00016{bottom:200.107067pt;}
.y20_c00016{bottom:238.267067pt;}
.y1f_c00016{bottom:265.947067pt;}
.y1e_c00016{bottom:293.547067pt;}
.y1d_c00016{bottom:321.147067pt;}
.y1c_c00016{bottom:348.747067pt;}
.y1b_c00016{bottom:376.347067pt;}
.y1a_c00016{bottom:414.587067pt;}
.y19_c00016{bottom:442.267067pt;}
.y18_c00016{bottom:469.867067pt;}
.y17_c00016{bottom:497.467067pt;}
.y16_c00016{bottom:525.067067pt;}
.y15_c00016{bottom:552.587067pt;}
.y14_c00016{bottom:580.187067pt;}
.y13_c00016{bottom:618.427067pt;}
.y12_c00016{bottom:646.107067pt;}
.y11_c00016{bottom:673.707067pt;}
.y10_c00016{bottom:701.307067pt;}
.yf_c00016{bottom:728.907067pt;}
.ye_c00016{bottom:767.067067pt;}
.yd_c00016{bottom:794.747067pt;}
.yc_c00016{bottom:822.347067pt;}
.yb_c00016{bottom:849.947067pt;}
.ya_c00016{bottom:877.547067pt;}
.y9_c00016{bottom:905.147067pt;}
.y8_c00016{bottom:932.747067pt;}
.y7_c00016{bottom:960.347067pt;}
.y6_c00016{bottom:987.947067pt;}
.y3_c00016{bottom:1006.347067pt;}
.y2_c00016{bottom:1035.947576pt;}
.y1_c00016{bottom:1063.147200pt;}
.h1_c00016{height:47.020937pt;}
.h2_c00016{height:56.156250pt;}
.h3_c00016{height:56.312500pt;}
.h0_c00016{height:1122.666667pt;}
.w1_c00016{width:793.333333pt;}
.w0_c00016{width:793.626667pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:113.440000pt;}
.x2_c00016{left:672.400000pt;}
}





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

.ir_c00017:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00017;src:url('chunks/assets/font_8fa0a799d9963cb3c1efbdfd.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00017;src:url('chunks/assets/font_ea506bf5f664a56cfa7f1f28.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.093262;font-style: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;}
.lsf_c00017{letter-spacing:-0.048096px;}
.ls11_c00017{letter-spacing:-0.043200px;}
.ls16_c00017{letter-spacing:-0.028800px;}
.ls13_c00017{letter-spacing:-0.014400px;}
.ls12_c00017{letter-spacing:-0.007200px;}
.ls10_c00017{letter-spacing:0.000000px;}
.ls5_c00017{letter-spacing:0.007200px;}
.ls3_c00017{letter-spacing:0.014400px;}
.ls7_c00017{letter-spacing:0.021600px;}
.ls4_c00017{letter-spacing:0.028800px;}
.ls6_c00017{letter-spacing:0.036000px;}
.lsd_c00017{letter-spacing:0.043200px;}
.ls8_c00017{letter-spacing:0.050400px;}
.lsc_c00017{letter-spacing:0.057600px;}
.lsa_c00017{letter-spacing:0.064800px;}
.lse_c00017{letter-spacing:0.072000px;}
.ls0_c00017{letter-spacing:0.079200px;}
.ls9_c00017{letter-spacing:0.093600px;}
.lsb_c00017{letter-spacing:0.100800px;}
.ls15_c00017{letter-spacing:0.108000px;}
.ls1_c00017{letter-spacing:0.122400px;}
.ls2_c00017{letter-spacing:0.158400px;}
.ls14_c00017{letter-spacing:2.880000px;}
.ls17_c00017{letter-spacing:13.680000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:-18.021600px;}
.ws3_c00017{word-spacing:-1.065600px;}
.ws2_c00017{word-spacing:0.000000px;}
.ws1_c00017{word-spacing:0.138276px;}
.ws5_c00017{word-spacing:7.372800px;}
.ws4_c00017{word-spacing:13.644000px;}
._e_c00017{margin-left:-14.515200px;}
._d_c00017{margin-left:-13.456800px;}
._1_c00017{margin-left:-3.758400px;}
._2_c00017{margin-left:-2.750400px;}
._0_c00017{margin-left:-1.094400px;}
._4_c00017{width:1.051200px;}
._5_c00017{width:2.268000px;}
._a_c00017{width:3.333600px;}
._3_c00017{width:4.644000px;}
._c_c00017{width:7.315200px;}
._8_c00017{width:9.331200px;}
._9_c00017{width:10.800000px;}
._7_c00017{width:12.916800px;}
._6_c00017{width:14.025600px;}
._b_c00017{width:16.185600px;}
.fc0_c00017{color:rgb(0,0,0);}
.fs0_c00017{font-size:60.120000px;}
.fs1_c00017{font-size:72.000000px;}
.y0_c00017{bottom:0.000000px;}
.y6_c00017{bottom:57.360450px;}
.y5_c00017{bottom:78.060450px;}
.y25_c00017{bottom:132.960450px;}
.y24_c00017{bottom:164.010450px;}
.y23_c00017{bottom:195.060450px;}
.y22_c00017{bottom:237.990450px;}
.y21_c00017{bottom:269.130450px;}
.y20_c00017{bottom:300.180450px;}
.y1f_c00017{bottom:331.230450px;}
.y1e_c00017{bottom:362.280450px;}
.y1d_c00017{bottom:393.330450px;}
.y1c_c00017{bottom:424.290450px;}
.y1b_c00017{bottom:455.430450px;}
.y1a_c00017{bottom:486.480450px;}
.y19_c00017{bottom:529.410450px;}
.y18_c00017{bottom:560.550450px;}
.y17_c00017{bottom:591.600450px;}
.y16_c00017{bottom:622.650450px;}
.y15_c00017{bottom:653.700450px;}
.y14_c00017{bottom:684.750450px;}
.y13_c00017{bottom:715.800450px;}
.y12_c00017{bottom:758.730450px;}
.y11_c00017{bottom:789.870450px;}
.y10_c00017{bottom:820.920450px;}
.yf_c00017{bottom:851.970450px;}
.ye_c00017{bottom:883.020450px;}
.yd_c00017{bottom:925.950450px;}
.yc_c00017{bottom:957.090450px;}
.yb_c00017{bottom:988.140450px;}
.ya_c00017{bottom:1019.190450px;}
.y9_c00017{bottom:1062.120450px;}
.y8_c00017{bottom:1093.260450px;}
.y7_c00017{bottom:1124.310450px;}
.y4_c00017{bottom:1144.380657px;}
.y3_c00017{bottom:1161.660648px;}
.y2_c00017{bottom:1178.850459px;}
.y1_c00017{bottom:1196.130450px;}
.h1_c00017{height:52.898555px;}
.h2_c00017{height:63.175781px;}
.h3_c00017{height:63.351562px;}
.h0_c00017{height:1263.000000px;}
.w1_c00017{width:892.500000px;}
.w0_c00017{width:892.830000px;}
.x0_c00017{left:0.000000px;}
.x4_c00017{left:127.620000px;}
.x1_c00017{left:649.620000px;}
.x3_c00017{left:756.450000px;}
.x2_c00017{left:765.450198px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.lsf_c00017{letter-spacing:-0.042752pt;}
.ls11_c00017{letter-spacing:-0.038400pt;}
.ls16_c00017{letter-spacing:-0.025600pt;}
.ls13_c00017{letter-spacing:-0.012800pt;}
.ls12_c00017{letter-spacing:-0.006400pt;}
.ls10_c00017{letter-spacing:0.000000pt;}
.ls5_c00017{letter-spacing:0.006400pt;}
.ls3_c00017{letter-spacing:0.012800pt;}
.ls7_c00017{letter-spacing:0.019200pt;}
.ls4_c00017{letter-spacing:0.025600pt;}
.ls6_c00017{letter-spacing:0.032000pt;}
.lsd_c00017{letter-spacing:0.038400pt;}
.ls8_c00017{letter-spacing:0.044800pt;}
.lsc_c00017{letter-spacing:0.051200pt;}
.lsa_c00017{letter-spacing:0.057600pt;}
.lse_c00017{letter-spacing:0.064000pt;}
.ls0_c00017{letter-spacing:0.070400pt;}
.ls9_c00017{letter-spacing:0.083200pt;}
.lsb_c00017{letter-spacing:0.089600pt;}
.ls15_c00017{letter-spacing:0.096000pt;}
.ls1_c00017{letter-spacing:0.108800pt;}
.ls2_c00017{letter-spacing:0.140800pt;}
.ls14_c00017{letter-spacing:2.560000pt;}
.ls17_c00017{letter-spacing:12.160000pt;}
.ws0_c00017{word-spacing:-16.019200pt;}
.ws3_c00017{word-spacing:-0.947200pt;}
.ws2_c00017{word-spacing:0.000000pt;}
.ws1_c00017{word-spacing:0.122912pt;}
.ws5_c00017{word-spacing:6.553600pt;}
.ws4_c00017{word-spacing:12.128000pt;}
._e_c00017{margin-left:-12.902400pt;}
._d_c00017{margin-left:-11.961600pt;}
._1_c00017{margin-left:-3.340800pt;}
._2_c00017{margin-left:-2.444800pt;}
._0_c00017{margin-left:-0.972800pt;}
._4_c00017{width:0.934400pt;}
._5_c00017{width:2.016000pt;}
._a_c00017{width:2.963200pt;}
._3_c00017{width:4.128000pt;}
._c_c00017{width:6.502400pt;}
._8_c00017{width:8.294400pt;}
._9_c00017{width:9.600000pt;}
._7_c00017{width:11.481600pt;}
._6_c00017{width:12.467200pt;}
._b_c00017{width:14.387200pt;}
.fs0_c00017{font-size:53.440000pt;}
.fs1_c00017{font-size:64.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y6_c00017{bottom:50.987067pt;}
.y5_c00017{bottom:69.387067pt;}
.y25_c00017{bottom:118.187067pt;}
.y24_c00017{bottom:145.787067pt;}
.y23_c00017{bottom:173.387067pt;}
.y22_c00017{bottom:211.547067pt;}
.y21_c00017{bottom:239.227067pt;}
.y20_c00017{bottom:266.827067pt;}
.y1f_c00017{bottom:294.427067pt;}
.y1e_c00017{bottom:322.027067pt;}
.y1d_c00017{bottom:349.627067pt;}
.y1c_c00017{bottom:377.147067pt;}
.y1b_c00017{bottom:404.827067pt;}
.y1a_c00017{bottom:432.427067pt;}
.y19_c00017{bottom:470.587067pt;}
.y18_c00017{bottom:498.267067pt;}
.y17_c00017{bottom:525.867067pt;}
.y16_c00017{bottom:553.467067pt;}
.y15_c00017{bottom:581.067067pt;}
.y14_c00017{bottom:608.667067pt;}
.y13_c00017{bottom:636.267067pt;}
.y12_c00017{bottom:674.427067pt;}
.y11_c00017{bottom:702.107067pt;}
.y10_c00017{bottom:729.707067pt;}
.yf_c00017{bottom:757.307067pt;}
.ye_c00017{bottom:784.907067pt;}
.yd_c00017{bottom:823.067067pt;}
.yc_c00017{bottom:850.747067pt;}
.yb_c00017{bottom:878.347067pt;}
.ya_c00017{bottom:905.947067pt;}
.y9_c00017{bottom:944.107067pt;}
.y8_c00017{bottom:971.787067pt;}
.y7_c00017{bottom:999.387067pt;}
.y4_c00017{bottom:1017.227251pt;}
.y3_c00017{bottom:1032.587243pt;}
.y2_c00017{bottom:1047.867075pt;}
.y1_c00017{bottom:1063.227067pt;}
.h1_c00017{height:47.020937pt;}
.h2_c00017{height:56.156250pt;}
.h3_c00017{height:56.312500pt;}
.h0_c00017{height:1122.666667pt;}
.w1_c00017{width:793.333333pt;}
.w0_c00017{width:793.626667pt;}
.x0_c00017{left:0.000000pt;}
.x4_c00017{left:113.440000pt;}
.x1_c00017{left:577.440000pt;}
.x3_c00017{left:672.400000pt;}
.x2_c00017{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.095703;font-style:normal;font-weight:normal;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_af32e636da4b35ab9de9418a.woff2')format("woff");}.ff2_c00018{font-family:ff2_c00018;line-height:1.093262;font-style: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;}
.ls13_c00018{letter-spacing:-0.115200px;}
.lsa_c00018{letter-spacing:-0.102204px;}
.lse_c00018{letter-spacing:-0.100800px;}
.lsc_c00018{letter-spacing:-0.050400px;}
.ls10_c00018{letter-spacing:-0.043200px;}
.ls14_c00018{letter-spacing:-0.036000px;}
.ls12_c00018{letter-spacing:-0.028800px;}
.lsd_c00018{letter-spacing:-0.021600px;}
.ls11_c00018{letter-spacing:-0.014400px;}
.lsf_c00018{letter-spacing:-0.007200px;}
.lsb_c00018{letter-spacing:0.000000px;}
.ls4_c00018{letter-spacing:0.007200px;}
.ls6_c00018{letter-spacing:0.014400px;}
.ls5_c00018{letter-spacing:0.021600px;}
.ls0_c00018{letter-spacing:0.028800px;}
.ls7_c00018{letter-spacing:0.036000px;}
.ls1_c00018{letter-spacing:0.043200px;}
.ls2_c00018{letter-spacing:0.050400px;}
.ls8_c00018{letter-spacing:0.057600px;}
.ls3_c00018{letter-spacing:0.064800px;}
.ls9_c00018{letter-spacing:0.072000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00018{word-spacing:0.000000px;}
.ws0_c00018{word-spacing:0.192384px;}
._e_c00018{margin-left:-5.126400px;}
._b_c00018{margin-left:-3.974400px;}
._a_c00018{margin-left:-2.880000px;}
._4_c00018{margin-left:-1.008000px;}
._0_c00018{width:1.034064px;}
._f_c00018{width:2.836800px;}
._3_c00018{width:3.916800px;}
._8_c00018{width:4.982400px;}
._7_c00018{width:6.098400px;}
._6_c00018{width:7.891200px;}
._c_c00018{width:8.942400px;}
._9_c00018{width:11.491200px;}
._1_c00018{width:12.758400px;}
._2_c00018{width:14.270400px;}
._5_c00018{width:16.459200px;}
._d_c00018{width:20.145600px;}
.fc1_c00018{color:rgb(0,0,0);}
.fc0_c00018{color:rgb(32,31,30);}
.fs0_c00018{font-size:60.120000px;}
.fs1_c00018{font-size:72.000000px;}
.y0_c00018{bottom:0.000000px;}
.y5_c00018{bottom:57.360450px;}
.y4_c00018{bottom:78.060450px;}
.y23_c00018{bottom:151.050450px;}
.y22_c00018{bottom:182.100450px;}
.y21_c00018{bottom:213.150450px;}
.y20_c00018{bottom:244.200450px;}
.y1f_c00018{bottom:275.250450px;}
.y1e_c00018{bottom:306.300450px;}
.y1d_c00018{bottom:337.350450px;}
.y1c_c00018{bottom:380.280450px;}
.y1b_c00018{bottom:411.420450px;}
.y1a_c00018{bottom:442.470450px;}
.y19_c00018{bottom:473.520450px;}
.y18_c00018{bottom:504.570450px;}
.y17_c00018{bottom:535.620450px;}
.y16_c00018{bottom:566.670450px;}
.y15_c00018{bottom:597.720450px;}
.y14_c00018{bottom:640.650450px;}
.y13_c00018{bottom:671.790450px;}
.y12_c00018{bottom:702.840450px;}
.y11_c00018{bottom:745.770450px;}
.y10_c00018{bottom:776.910450px;}
.yf_c00018{bottom:807.960450px;}
.ye_c00018{bottom:850.980450px;}
.yd_c00018{bottom:882.120450px;}
.yc_c00018{bottom:913.170450px;}
.yb_c00018{bottom:944.220450px;}
.ya_c00018{bottom:987.150450px;}
.y9_c00018{bottom:1018.290450px;}
.y8_c00018{bottom:1049.340450px;}
.y7_c00018{bottom:1080.390450px;}
.y6_c00018{bottom:1111.440450px;}
.y3_c00018{bottom:1132.140450px;}
.y2_c00018{bottom:1165.441023px;}
.y1_c00018{bottom:1196.040600px;}
.h1_c00018{height:52.898555px;}
.h2_c00018{height:63.175781px;}
.h0_c00018{height:1263.000000px;}
.w1_c00018{width:892.500000px;}
.w0_c00018{width:892.830000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:127.620000px;}
.x2_c00018{left:756.450000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls13_c00018{letter-spacing:-0.102400pt;}
.lsa_c00018{letter-spacing:-0.090848pt;}
.lse_c00018{letter-spacing:-0.089600pt;}
.lsc_c00018{letter-spacing:-0.044800pt;}
.ls10_c00018{letter-spacing:-0.038400pt;}
.ls14_c00018{letter-spacing:-0.032000pt;}
.ls12_c00018{letter-spacing:-0.025600pt;}
.lsd_c00018{letter-spacing:-0.019200pt;}
.ls11_c00018{letter-spacing:-0.012800pt;}
.lsf_c00018{letter-spacing:-0.006400pt;}
.lsb_c00018{letter-spacing:0.000000pt;}
.ls4_c00018{letter-spacing:0.006400pt;}
.ls6_c00018{letter-spacing:0.012800pt;}
.ls5_c00018{letter-spacing:0.019200pt;}
.ls0_c00018{letter-spacing:0.025600pt;}
.ls7_c00018{letter-spacing:0.032000pt;}
.ls1_c00018{letter-spacing:0.038400pt;}
.ls2_c00018{letter-spacing:0.044800pt;}
.ls8_c00018{letter-spacing:0.051200pt;}
.ls3_c00018{letter-spacing:0.057600pt;}
.ls9_c00018{letter-spacing:0.064000pt;}
.ws1_c00018{word-spacing:0.000000pt;}
.ws0_c00018{word-spacing:0.171008pt;}
._e_c00018{margin-left:-4.556800pt;}
._b_c00018{margin-left:-3.532800pt;}
._a_c00018{margin-left:-2.560000pt;}
._4_c00018{margin-left:-0.896000pt;}
._0_c00018{width:0.919168pt;}
._f_c00018{width:2.521600pt;}
._3_c00018{width:3.481600pt;}
._8_c00018{width:4.428800pt;}
._7_c00018{width:5.420800pt;}
._6_c00018{width:7.014400pt;}
._c_c00018{width:7.948800pt;}
._9_c00018{width:10.214400pt;}
._1_c00018{width:11.340800pt;}
._2_c00018{width:12.684800pt;}
._5_c00018{width:14.630400pt;}
._d_c00018{width:17.907200pt;}
.fs0_c00018{font-size:53.440000pt;}
.fs1_c00018{font-size:64.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y5_c00018{bottom:50.987067pt;}
.y4_c00018{bottom:69.387067pt;}
.y23_c00018{bottom:134.267067pt;}
.y22_c00018{bottom:161.867067pt;}
.y21_c00018{bottom:189.467067pt;}
.y20_c00018{bottom:217.067067pt;}
.y1f_c00018{bottom:244.667067pt;}
.y1e_c00018{bottom:272.267067pt;}
.y1d_c00018{bottom:299.867067pt;}
.y1c_c00018{bottom:338.027067pt;}
.y1b_c00018{bottom:365.707067pt;}
.y1a_c00018{bottom:393.307067pt;}
.y19_c00018{bottom:420.907067pt;}
.y18_c00018{bottom:448.507067pt;}
.y17_c00018{bottom:476.107067pt;}
.y16_c00018{bottom:503.707067pt;}
.y15_c00018{bottom:531.307067pt;}
.y14_c00018{bottom:569.467067pt;}
.y13_c00018{bottom:597.147067pt;}
.y12_c00018{bottom:624.747067pt;}
.y11_c00018{bottom:662.907067pt;}
.y10_c00018{bottom:690.587067pt;}
.yf_c00018{bottom:718.187067pt;}
.ye_c00018{bottom:756.427067pt;}
.yd_c00018{bottom:784.107067pt;}
.yc_c00018{bottom:811.707067pt;}
.yb_c00018{bottom:839.307067pt;}
.ya_c00018{bottom:877.467067pt;}
.y9_c00018{bottom:905.147067pt;}
.y8_c00018{bottom:932.747067pt;}
.y7_c00018{bottom:960.347067pt;}
.y6_c00018{bottom:987.947067pt;}
.y3_c00018{bottom:1006.347067pt;}
.y2_c00018{bottom:1035.947576pt;}
.y1_c00018{bottom:1063.147200pt;}
.h1_c00018{height:47.020937pt;}
.h2_c00018{height:56.156250pt;}
.h0_c00018{height:1122.666667pt;}
.w1_c00018{width:793.333333pt;}
.w0_c00018{width:793.626667pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:113.440000pt;}
.x2_c00018{left:672.400000pt;}
}





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

.ir_c00019:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00019;src:url('chunks/assets/font_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.095703;font-style:normal;font-weight:normal;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_4319c8eec785a8ec20ac72fa.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.104004;font-style: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;}
.ls16_c00019{letter-spacing:-0.072000px;}
.ls11_c00019{letter-spacing:-0.057600px;}
.lsf_c00019{letter-spacing:-0.048096px;}
.ls15_c00019{letter-spacing:-0.043200px;}
.ls17_c00019{letter-spacing:-0.028800px;}
.ls12_c00019{letter-spacing:-0.021600px;}
.ls14_c00019{letter-spacing:-0.014400px;}
.ls13_c00019{letter-spacing:-0.007200px;}
.ls10_c00019{letter-spacing:0.000000px;}
.lsb_c00019{letter-spacing:0.007200px;}
.ls7_c00019{letter-spacing:0.014400px;}
.lsa_c00019{letter-spacing:0.021600px;}
.ls2_c00019{letter-spacing:0.028800px;}
.ls0_c00019{letter-spacing:0.036000px;}
.ls4_c00019{letter-spacing:0.043200px;}
.ls9_c00019{letter-spacing:0.050400px;}
.ls6_c00019{letter-spacing:0.057600px;}
.ls5_c00019{letter-spacing:0.064800px;}
.ls1_c00019{letter-spacing:0.072000px;}
.ls3_c00019{letter-spacing:0.079200px;}
.lse_c00019{letter-spacing:0.086400px;}
.lsd_c00019{letter-spacing:0.100800px;}
.ls8_c00019{letter-spacing:0.108000px;}
.lsc_c00019{letter-spacing:0.115200px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00019{word-spacing:0.000000px;}
.ws0_c00019{word-spacing:0.138276px;}
._7_c00019{margin-left:-5.644800px;}
._6_c00019{margin-left:-4.449600px;}
._2_c00019{margin-left:-2.851200px;}
._1_c00019{margin-left:-1.396800px;}
._e_c00019{width:1.425600px;}
._8_c00019{width:2.484000px;}
._9_c00019{width:3.528000px;}
._a_c00019{width:4.924800px;}
._b_c00019{width:6.264000px;}
._0_c00019{width:9.684000px;}
._d_c00019{width:10.764000px;}
._c_c00019{width:11.923200px;}
._4_c00019{width:14.104800px;}
._3_c00019{width:15.444000px;}
._5_c00019{width:16.977600px;}
._f_c00019{width:23.702400px;}
.fc0_c00019{color:rgb(0,0,0);}
.fs0_c00019{font-size:60.120000px;}
.fs1_c00019{font-size:72.000000px;}
.y0_c00019{bottom:0.000000px;}
.y6_c00019{bottom:57.360450px;}
.y5_c00019{bottom:78.060450px;}
.y25_c00019{bottom:132.960450px;}
.y24_c00019{bottom:164.010450px;}
.y23_c00019{bottom:195.060450px;}
.y22_c00019{bottom:237.990450px;}
.y21_c00019{bottom:269.130450px;}
.y20_c00019{bottom:300.180450px;}
.y1f_c00019{bottom:331.230450px;}
.y1e_c00019{bottom:362.280450px;}
.y1d_c00019{bottom:393.330450px;}
.y1c_c00019{bottom:424.380450px;}
.y1b_c00019{bottom:455.430450px;}
.y1a_c00019{bottom:498.360450px;}
.y19_c00019{bottom:529.500450px;}
.y18_c00019{bottom:572.430450px;}
.y17_c00019{bottom:603.570450px;}
.y16_c00019{bottom:634.620450px;}
.y15_c00019{bottom:665.670450px;}
.y14_c00019{bottom:696.720450px;}
.y13_c00019{bottom:727.770450px;}
.y12_c00019{bottom:758.820450px;}
.y11_c00019{bottom:789.870450px;}
.y10_c00019{bottom:820.920450px;}
.yf_c00019{bottom:851.970450px;}
.ye_c00019{bottom:883.020450px;}
.yd_c00019{bottom:914.070450px;}
.yc_c00019{bottom:957.000450px;}
.yb_c00019{bottom:988.140450px;}
.ya_c00019{bottom:1019.190450px;}
.y9_c00019{bottom:1050.240450px;}
.y8_c00019{bottom:1093.170450px;}
.y7_c00019{bottom:1124.310450px;}
.y4_c00019{bottom:1144.380657px;}
.y3_c00019{bottom:1161.660648px;}
.y2_c00019{bottom:1178.850459px;}
.y1_c00019{bottom:1196.130450px;}
.h1_c00019{height:52.898555px;}
.h2_c00019{height:63.175781px;}
.h3_c00019{height:63.949219px;}
.h0_c00019{height:1263.000000px;}
.w1_c00019{width:892.500000px;}
.w0_c00019{width:892.830000px;}
.x0_c00019{left:0.000000px;}
.x4_c00019{left:127.620000px;}
.x1_c00019{left:649.620000px;}
.x3_c00019{left:747.450000px;}
.x2_c00019{left:765.450198px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls16_c00019{letter-spacing:-0.064000pt;}
.ls11_c00019{letter-spacing:-0.051200pt;}
.lsf_c00019{letter-spacing:-0.042752pt;}
.ls15_c00019{letter-spacing:-0.038400pt;}
.ls17_c00019{letter-spacing:-0.025600pt;}
.ls12_c00019{letter-spacing:-0.019200pt;}
.ls14_c00019{letter-spacing:-0.012800pt;}
.ls13_c00019{letter-spacing:-0.006400pt;}
.ls10_c00019{letter-spacing:0.000000pt;}
.lsb_c00019{letter-spacing:0.006400pt;}
.ls7_c00019{letter-spacing:0.012800pt;}
.lsa_c00019{letter-spacing:0.019200pt;}
.ls2_c00019{letter-spacing:0.025600pt;}
.ls0_c00019{letter-spacing:0.032000pt;}
.ls4_c00019{letter-spacing:0.038400pt;}
.ls9_c00019{letter-spacing:0.044800pt;}
.ls6_c00019{letter-spacing:0.051200pt;}
.ls5_c00019{letter-spacing:0.057600pt;}
.ls1_c00019{letter-spacing:0.064000pt;}
.ls3_c00019{letter-spacing:0.070400pt;}
.lse_c00019{letter-spacing:0.076800pt;}
.lsd_c00019{letter-spacing:0.089600pt;}
.ls8_c00019{letter-spacing:0.096000pt;}
.lsc_c00019{letter-spacing:0.102400pt;}
.ws1_c00019{word-spacing:0.000000pt;}
.ws0_c00019{word-spacing:0.122912pt;}
._7_c00019{margin-left:-5.017600pt;}
._6_c00019{margin-left:-3.955200pt;}
._2_c00019{margin-left:-2.534400pt;}
._1_c00019{margin-left:-1.241600pt;}
._e_c00019{width:1.267200pt;}
._8_c00019{width:2.208000pt;}
._9_c00019{width:3.136000pt;}
._a_c00019{width:4.377600pt;}
._b_c00019{width:5.568000pt;}
._0_c00019{width:8.608000pt;}
._d_c00019{width:9.568000pt;}
._c_c00019{width:10.598400pt;}
._4_c00019{width:12.537600pt;}
._3_c00019{width:13.728000pt;}
._5_c00019{width:15.091200pt;}
._f_c00019{width:21.068800pt;}
.fs0_c00019{font-size:53.440000pt;}
.fs1_c00019{font-size:64.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.y6_c00019{bottom:50.987067pt;}
.y5_c00019{bottom:69.387067pt;}
.y25_c00019{bottom:118.187067pt;}
.y24_c00019{bottom:145.787067pt;}
.y23_c00019{bottom:173.387067pt;}
.y22_c00019{bottom:211.547067pt;}
.y21_c00019{bottom:239.227067pt;}
.y20_c00019{bottom:266.827067pt;}
.y1f_c00019{bottom:294.427067pt;}
.y1e_c00019{bottom:322.027067pt;}
.y1d_c00019{bottom:349.627067pt;}
.y1c_c00019{bottom:377.227067pt;}
.y1b_c00019{bottom:404.827067pt;}
.y1a_c00019{bottom:442.987067pt;}
.y19_c00019{bottom:470.667067pt;}
.y18_c00019{bottom:508.827067pt;}
.y17_c00019{bottom:536.507067pt;}
.y16_c00019{bottom:564.107067pt;}
.y15_c00019{bottom:591.707067pt;}
.y14_c00019{bottom:619.307067pt;}
.y13_c00019{bottom:646.907067pt;}
.y12_c00019{bottom:674.507067pt;}
.y11_c00019{bottom:702.107067pt;}
.y10_c00019{bottom:729.707067pt;}
.yf_c00019{bottom:757.307067pt;}
.ye_c00019{bottom:784.907067pt;}
.yd_c00019{bottom:812.507067pt;}
.yc_c00019{bottom:850.667067pt;}
.yb_c00019{bottom:878.347067pt;}
.ya_c00019{bottom:905.947067pt;}
.y9_c00019{bottom:933.547067pt;}
.y8_c00019{bottom:971.707067pt;}
.y7_c00019{bottom:999.387067pt;}
.y4_c00019{bottom:1017.227251pt;}
.y3_c00019{bottom:1032.587243pt;}
.y2_c00019{bottom:1047.867075pt;}
.y1_c00019{bottom:1063.227067pt;}
.h1_c00019{height:47.020937pt;}
.h2_c00019{height:56.156250pt;}
.h3_c00019{height:56.843750pt;}
.h0_c00019{height:1122.666667pt;}
.w1_c00019{width:793.333333pt;}
.w0_c00019{width:793.626667pt;}
.x0_c00019{left:0.000000pt;}
.x4_c00019{left:113.440000pt;}
.x1_c00019{left:577.440000pt;}
.x3_c00019{left:664.400000pt;}
.x2_c00019{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a90412bd638ae6b4ebf1d58.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.095703;font-style:normal;font-weight:normal;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_4287c728c489f19701f64552.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.093262;font-style:normal;font-weight:normal;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_fad872f7dd2c9b12d2859254.woff2')format("woff");}.ff3_c00020{font-family:ff3_c00020;line-height:0.896973;font-style: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;}
.ls16_c00020{letter-spacing:-3.960000px;}
.ls11_c00020{letter-spacing:-1.080000px;}
.lsd_c00020{letter-spacing:-0.102204px;}
.ls15_c00020{letter-spacing:-0.057600px;}
.ls13_c00020{letter-spacing:-0.043200px;}
.ls12_c00020{letter-spacing:-0.036000px;}
.lsf_c00020{letter-spacing:-0.014400px;}
.ls14_c00020{letter-spacing:-0.013176px;}
.ls10_c00020{letter-spacing:-0.007200px;}
.lse_c00020{letter-spacing:0.000000px;}
.ls4_c00020{letter-spacing:0.007200px;}
.ls5_c00020{letter-spacing:0.014400px;}
.ls8_c00020{letter-spacing:0.021600px;}
.ls9_c00020{letter-spacing:0.028800px;}
.ls0_c00020{letter-spacing:0.036000px;}
.ls7_c00020{letter-spacing:0.043200px;}
.ls1_c00020{letter-spacing:0.050400px;}
.ls2_c00020{letter-spacing:0.057600px;}
.ls3_c00020{letter-spacing:0.064800px;}
.lsc_c00020{letter-spacing:0.072000px;}
.ls6_c00020{letter-spacing:0.079200px;}
.lsa_c00020{letter-spacing:0.086400px;}
.lsb_c00020{letter-spacing:0.115200px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00020{word-spacing:-0.007200px;}
.ws1_c00020{word-spacing:0.000000px;}
.ws0_c00020{word-spacing:0.192384px;}
.ws2_c00020{word-spacing:0.273600px;}
._6_c00020{margin-left:-4.233600px;}
._1_c00020{margin-left:-2.556000px;}
._2_c00020{margin-left:-1.296000px;}
._0_c00020{width:1.034064px;}
._3_c00020{width:2.822400px;}
._5_c00020{width:3.931200px;}
._9_c00020{width:4.939200px;}
._4_c00020{width:6.120000px;}
._a_c00020{width:7.524000px;}
._8_c00020{width:8.978400px;}
._7_c00020{width:14.032800px;}
.fc1_c00020{color:rgb(0,0,0);}
.fc0_c00020{color:rgb(32,31,30);}
.fs0_c00020{font-size:60.120000px;}
.fs2_c00020{font-size:65.880000px;}
.fs1_c00020{font-size:72.000000px;}
.y0_c00020{bottom:0.000000px;}
.y5_c00020{bottom:57.360450px;}
.y4_c00020{bottom:78.060450px;}
.y24_c00020{bottom:124.500450px;}
.y23_c00020{bottom:155.550450px;}
.y22_c00020{bottom:198.570450px;}
.y21_c00020{bottom:229.710450px;}
.y20_c00020{bottom:260.760450px;}
.y1f_c00020{bottom:291.810450px;}
.y1e_c00020{bottom:322.860450px;}
.y1d_c00020{bottom:353.910450px;}
.y1c_c00020{bottom:396.840450px;}
.y1b_c00020{bottom:427.980450px;}
.y1a_c00020{bottom:459.030450px;}
.y19_c00020{bottom:490.080450px;}
.y18_c00020{bottom:521.130450px;}
.y17_c00020{bottom:552.180450px;}
.y16_c00020{bottom:586.380450px;}
.y15_c00020{bottom:608.700450px;}
.y14_c00020{bottom:633.990450px;}
.y13_c00020{bottom:677.100450px;}
.y12_c00020{bottom:708.240450px;}
.y11_c00020{bottom:739.290450px;}
.y10_c00020{bottom:770.340450px;}
.yf_c00020{bottom:801.390450px;}
.ye_c00020{bottom:835.680450px;}
.yd_c00020{bottom:857.910450px;}
.yc_c00020{bottom:901.020450px;}
.yb_c00020{bottom:944.130450px;}
.ya_c00020{bottom:975.180450px;}
.y9_c00020{bottom:1006.230450px;}
.y8_c00020{bottom:1037.280450px;}
.y7_c00020{bottom:1080.300450px;}
.y6_c00020{bottom:1111.440450px;}
.y3_c00020{bottom:1132.140450px;}
.y2_c00020{bottom:1165.441023px;}
.y1_c00020{bottom:1196.040600px;}
.h1_c00020{height:52.898555px;}
.h2_c00020{height:63.175781px;}
.h3_c00020{height:63.351562px;}
.h0_c00020{height:1263.000000px;}
.w1_c00020{width:892.500000px;}
.w0_c00020{width:892.830000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:127.620000px;}
.x2_c00020{left:747.450000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls16_c00020{letter-spacing:-3.520000pt;}
.ls11_c00020{letter-spacing:-0.960000pt;}
.lsd_c00020{letter-spacing:-0.090848pt;}
.ls15_c00020{letter-spacing:-0.051200pt;}
.ls13_c00020{letter-spacing:-0.038400pt;}
.ls12_c00020{letter-spacing:-0.032000pt;}
.lsf_c00020{letter-spacing:-0.012800pt;}
.ls14_c00020{letter-spacing:-0.011712pt;}
.ls10_c00020{letter-spacing:-0.006400pt;}
.lse_c00020{letter-spacing:0.000000pt;}
.ls4_c00020{letter-spacing:0.006400pt;}
.ls5_c00020{letter-spacing:0.012800pt;}
.ls8_c00020{letter-spacing:0.019200pt;}
.ls9_c00020{letter-spacing:0.025600pt;}
.ls0_c00020{letter-spacing:0.032000pt;}
.ls7_c00020{letter-spacing:0.038400pt;}
.ls1_c00020{letter-spacing:0.044800pt;}
.ls2_c00020{letter-spacing:0.051200pt;}
.ls3_c00020{letter-spacing:0.057600pt;}
.lsc_c00020{letter-spacing:0.064000pt;}
.ls6_c00020{letter-spacing:0.070400pt;}
.lsa_c00020{letter-spacing:0.076800pt;}
.lsb_c00020{letter-spacing:0.102400pt;}
.ws3_c00020{word-spacing:-0.006400pt;}
.ws1_c00020{word-spacing:0.000000pt;}
.ws0_c00020{word-spacing:0.171008pt;}
.ws2_c00020{word-spacing:0.243200pt;}
._6_c00020{margin-left:-3.763200pt;}
._1_c00020{margin-left:-2.272000pt;}
._2_c00020{margin-left:-1.152000pt;}
._0_c00020{width:0.919168pt;}
._3_c00020{width:2.508800pt;}
._5_c00020{width:3.494400pt;}
._9_c00020{width:4.390400pt;}
._4_c00020{width:5.440000pt;}
._a_c00020{width:6.688000pt;}
._8_c00020{width:7.980800pt;}
._7_c00020{width:12.473600pt;}
.fs0_c00020{font-size:53.440000pt;}
.fs2_c00020{font-size:58.560000pt;}
.fs1_c00020{font-size:64.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y5_c00020{bottom:50.987067pt;}
.y4_c00020{bottom:69.387067pt;}
.y24_c00020{bottom:110.667067pt;}
.y23_c00020{bottom:138.267067pt;}
.y22_c00020{bottom:176.507067pt;}
.y21_c00020{bottom:204.187067pt;}
.y20_c00020{bottom:231.787067pt;}
.y1f_c00020{bottom:259.387067pt;}
.y1e_c00020{bottom:286.987067pt;}
.y1d_c00020{bottom:314.587067pt;}
.y1c_c00020{bottom:352.747067pt;}
.y1b_c00020{bottom:380.427067pt;}
.y1a_c00020{bottom:408.027067pt;}
.y19_c00020{bottom:435.627067pt;}
.y18_c00020{bottom:463.227067pt;}
.y17_c00020{bottom:490.827067pt;}
.y16_c00020{bottom:521.227067pt;}
.y15_c00020{bottom:541.067067pt;}
.y14_c00020{bottom:563.547067pt;}
.y13_c00020{bottom:601.867067pt;}
.y12_c00020{bottom:629.547067pt;}
.y11_c00020{bottom:657.147067pt;}
.y10_c00020{bottom:684.747067pt;}
.yf_c00020{bottom:712.347067pt;}
.ye_c00020{bottom:742.827067pt;}
.yd_c00020{bottom:762.587067pt;}
.yc_c00020{bottom:800.907067pt;}
.yb_c00020{bottom:839.227067pt;}
.ya_c00020{bottom:866.827067pt;}
.y9_c00020{bottom:894.427067pt;}
.y8_c00020{bottom:922.027067pt;}
.y7_c00020{bottom:960.267067pt;}
.y6_c00020{bottom:987.947067pt;}
.y3_c00020{bottom:1006.347067pt;}
.y2_c00020{bottom:1035.947576pt;}
.y1_c00020{bottom:1063.147200pt;}
.h1_c00020{height:47.020937pt;}
.h2_c00020{height:56.156250pt;}
.h3_c00020{height:56.312500pt;}
.h0_c00020{height:1122.666667pt;}
.w1_c00020{width:793.333333pt;}
.w0_c00020{width:793.626667pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:113.440000pt;}
.x2_c00020{left:664.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_622cf6daefe25a41cd20c089.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.093262;font-style: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);}
.v2_c00021{vertical-align:-20.880000px;}
.v0_c00021{vertical-align:0.000000px;}
.v1_c00021{vertical-align:27.000000px;}
.ls14_c00021{letter-spacing:-3.960000px;}
.ls1c_c00021{letter-spacing:-0.096192px;}
.ls13_c00021{letter-spacing:-0.064800px;}
.ls11_c00021{letter-spacing:-0.048096px;}
.ls1a_c00021{letter-spacing:-0.030060px;}
.ls18_c00021{letter-spacing:-0.021600px;}
.ls17_c00021{letter-spacing:-0.014400px;}
.ls15_c00021{letter-spacing:-0.007200px;}
.ls12_c00021{letter-spacing:0.000000px;}
.ls10_c00021{letter-spacing:0.006012px;}
.ls6_c00021{letter-spacing:0.007200px;}
.lsd_c00021{letter-spacing:0.012024px;}
.lsb_c00021{letter-spacing:0.014400px;}
.lse_c00021{letter-spacing:0.018036px;}
.ls2_c00021{letter-spacing:0.021600px;}
.ls3_c00021{letter-spacing:0.028800px;}
.ls0_c00021{letter-spacing:0.036000px;}
.ls1_c00021{letter-spacing:0.043200px;}
.ls5_c00021{letter-spacing:0.050400px;}
.lsa_c00021{letter-spacing:0.057600px;}
.ls9_c00021{letter-spacing:0.064800px;}
.ls19_c00021{letter-spacing:0.066132px;}
.ls7_c00021{letter-spacing:0.072000px;}
.ls4_c00021{letter-spacing:0.079200px;}
.lsf_c00021{letter-spacing:0.090180px;}
.ls1b_c00021{letter-spacing:0.120240px;}
.lsc_c00021{letter-spacing:0.165600px;}
.ls8_c00021{letter-spacing:0.180000px;}
.ls16_c00021{letter-spacing:1.728000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:-9.720000px;}
.ws2_c00021{word-spacing:0.000000px;}
.ws1_c00021{word-spacing:0.138276px;}
._6_c00021{margin-left:-4.521600px;}
._4_c00021{margin-left:-2.563200px;}
._5_c00021{margin-left:-1.468800px;}
._3_c00021{width:1.044000px;}
._9_c00021{width:2.232000px;}
._7_c00021{width:3.441600px;}
._8_c00021{width:4.867200px;}
._b_c00021{width:5.947200px;}
._1_c00021{width:9.072000px;}
._2_c00021{width:10.094400px;}
._a_c00021{width:11.844000px;}
._d_c00021{width:21.254400px;}
._c_c00021{width:22.284000px;}
._f_c00021{width:25.243200px;}
._e_c00021{width:26.287200px;}
._0_c00021{width:29.484000px;}
.fc0_c00021{color:rgb(0,0,0);}
.fs3_c00021{font-size:38.880000px;}
.fs2_c00021{font-size:47.880000px;}
.fs0_c00021{font-size:60.120000px;}
.fs1_c00021{font-size:72.000000px;}
.y0_c00021{bottom:0.000000px;}
.y6_c00021{bottom:57.360450px;}
.y5_c00021{bottom:78.060450px;}
.y27_c00021{bottom:109.920639px;}
.y26_c00021{bottom:132.330450px;}
.y25_c00021{bottom:144.390459px;}
.y24_c00021{bottom:166.890450px;}
.y23_c00021{bottom:179.580450px;}
.y22_c00021{bottom:238.080450px;}
.y21_c00021{bottom:269.130450px;}
.y20_c00021{bottom:312.060450px;}
.y1f_c00021{bottom:343.200450px;}
.y1e_c00021{bottom:374.250450px;}
.y1d_c00021{bottom:405.300450px;}
.y1c_c00021{bottom:436.350450px;}
.y1b_c00021{bottom:467.400450px;}
.y1a_c00021{bottom:498.450450px;}
.y19_c00021{bottom:541.380450px;}
.y18_c00021{bottom:572.520450px;}
.y17_c00021{bottom:603.570450px;}
.y16_c00021{bottom:634.620450px;}
.y15_c00021{bottom:665.670450px;}
.y14_c00021{bottom:696.720450px;}
.y13_c00021{bottom:727.770450px;}
.y12_c00021{bottom:758.820450px;}
.y11_c00021{bottom:801.750450px;}
.y10_c00021{bottom:832.890450px;}
.yf_c00021{bottom:863.940450px;}
.ye_c00021{bottom:894.990450px;}
.yd_c00021{bottom:926.040450px;}
.yc_c00021{bottom:957.090450px;}
.yb_c00021{bottom:988.140450px;}
.ya_c00021{bottom:1031.070450px;}
.y9_c00021{bottom:1062.210450px;}
.y8_c00021{bottom:1093.260450px;}
.y7_c00021{bottom:1124.310450px;}
.y4_c00021{bottom:1144.380657px;}
.y3_c00021{bottom:1161.660648px;}
.y2_c00021{bottom:1178.850459px;}
.y1_c00021{bottom:1196.130450px;}
.h4_c00021{height:34.114922px;}
.h5_c00021{height:52.751777px;}
.h1_c00021{height:52.898555px;}
.h2_c00021{height:63.175781px;}
.h3_c00021{height:69.011895px;}
.h0_c00021{height:1263.000000px;}
.w1_c00021{width:892.500000px;}
.w0_c00021{width:892.830000px;}
.x0_c00021{left:0.000000px;}
.x4_c00021{left:127.620000px;}
.x1_c00021{left:649.620000px;}
.x3_c00021{left:747.450000px;}
.x2_c00021{left:765.450198px;}
@media print{
.v2_c00021{vertical-align:-18.560000pt;}
.v0_c00021{vertical-align:0.000000pt;}
.v1_c00021{vertical-align:24.000000pt;}
.ls14_c00021{letter-spacing:-3.520000pt;}
.ls1c_c00021{letter-spacing:-0.085504pt;}
.ls13_c00021{letter-spacing:-0.057600pt;}
.ls11_c00021{letter-spacing:-0.042752pt;}
.ls1a_c00021{letter-spacing:-0.026720pt;}
.ls18_c00021{letter-spacing:-0.019200pt;}
.ls17_c00021{letter-spacing:-0.012800pt;}
.ls15_c00021{letter-spacing:-0.006400pt;}
.ls12_c00021{letter-spacing:0.000000pt;}
.ls10_c00021{letter-spacing:0.005344pt;}
.ls6_c00021{letter-spacing:0.006400pt;}
.lsd_c00021{letter-spacing:0.010688pt;}
.lsb_c00021{letter-spacing:0.012800pt;}
.lse_c00021{letter-spacing:0.016032pt;}
.ls2_c00021{letter-spacing:0.019200pt;}
.ls3_c00021{letter-spacing:0.025600pt;}
.ls0_c00021{letter-spacing:0.032000pt;}
.ls1_c00021{letter-spacing:0.038400pt;}
.ls5_c00021{letter-spacing:0.044800pt;}
.lsa_c00021{letter-spacing:0.051200pt;}
.ls9_c00021{letter-spacing:0.057600pt;}
.ls19_c00021{letter-spacing:0.058784pt;}
.ls7_c00021{letter-spacing:0.064000pt;}
.ls4_c00021{letter-spacing:0.070400pt;}
.lsf_c00021{letter-spacing:0.080160pt;}
.ls1b_c00021{letter-spacing:0.106880pt;}
.lsc_c00021{letter-spacing:0.147200pt;}
.ls8_c00021{letter-spacing:0.160000pt;}
.ls16_c00021{letter-spacing:1.536000pt;}
.ws0_c00021{word-spacing:-8.640000pt;}
.ws2_c00021{word-spacing:0.000000pt;}
.ws1_c00021{word-spacing:0.122912pt;}
._6_c00021{margin-left:-4.019200pt;}
._4_c00021{margin-left:-2.278400pt;}
._5_c00021{margin-left:-1.305600pt;}
._3_c00021{width:0.928000pt;}
._9_c00021{width:1.984000pt;}
._7_c00021{width:3.059200pt;}
._8_c00021{width:4.326400pt;}
._b_c00021{width:5.286400pt;}
._1_c00021{width:8.064000pt;}
._2_c00021{width:8.972800pt;}
._a_c00021{width:10.528000pt;}
._d_c00021{width:18.892800pt;}
._c_c00021{width:19.808000pt;}
._f_c00021{width:22.438400pt;}
._e_c00021{width:23.366400pt;}
._0_c00021{width:26.208000pt;}
.fs3_c00021{font-size:34.560000pt;}
.fs2_c00021{font-size:42.560000pt;}
.fs0_c00021{font-size:53.440000pt;}
.fs1_c00021{font-size:64.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y6_c00021{bottom:50.987067pt;}
.y5_c00021{bottom:69.387067pt;}
.y27_c00021{bottom:97.707235pt;}
.y26_c00021{bottom:117.627067pt;}
.y25_c00021{bottom:128.347075pt;}
.y24_c00021{bottom:148.347067pt;}
.y23_c00021{bottom:159.627067pt;}
.y22_c00021{bottom:211.627067pt;}
.y21_c00021{bottom:239.227067pt;}
.y20_c00021{bottom:277.387067pt;}
.y1f_c00021{bottom:305.067067pt;}
.y1e_c00021{bottom:332.667067pt;}
.y1d_c00021{bottom:360.267067pt;}
.y1c_c00021{bottom:387.867067pt;}
.y1b_c00021{bottom:415.467067pt;}
.y1a_c00021{bottom:443.067067pt;}
.y19_c00021{bottom:481.227067pt;}
.y18_c00021{bottom:508.907067pt;}
.y17_c00021{bottom:536.507067pt;}
.y16_c00021{bottom:564.107067pt;}
.y15_c00021{bottom:591.707067pt;}
.y14_c00021{bottom:619.307067pt;}
.y13_c00021{bottom:646.907067pt;}
.y12_c00021{bottom:674.507067pt;}
.y11_c00021{bottom:712.667067pt;}
.y10_c00021{bottom:740.347067pt;}
.yf_c00021{bottom:767.947067pt;}
.ye_c00021{bottom:795.547067pt;}
.yd_c00021{bottom:823.147067pt;}
.yc_c00021{bottom:850.747067pt;}
.yb_c00021{bottom:878.347067pt;}
.ya_c00021{bottom:916.507067pt;}
.y9_c00021{bottom:944.187067pt;}
.y8_c00021{bottom:971.787067pt;}
.y7_c00021{bottom:999.387067pt;}
.y4_c00021{bottom:1017.227251pt;}
.y3_c00021{bottom:1032.587243pt;}
.y2_c00021{bottom:1047.867075pt;}
.y1_c00021{bottom:1063.227067pt;}
.h4_c00021{height:30.324375pt;}
.h5_c00021{height:46.890469pt;}
.h1_c00021{height:47.020937pt;}
.h2_c00021{height:56.156250pt;}
.h3_c00021{height:61.343906pt;}
.h0_c00021{height:1122.666667pt;}
.w1_c00021{width:793.333333pt;}
.w0_c00021{width:793.626667pt;}
.x0_c00021{left:0.000000pt;}
.x4_c00021{left:113.440000pt;}
.x1_c00021{left:577.440000pt;}
.x3_c00021{left:664.400000pt;}
.x2_c00021{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0481f833e05cd292c7c88150.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00022;src:url('chunks/assets/font_a57eeacc72c3caa6cd35694f.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.093262;font-style: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;}
.ls13_c00022{letter-spacing:-2.880000px;}
.lsc_c00022{letter-spacing:-0.102204px;}
.lsf_c00022{letter-spacing:-0.043200px;}
.ls14_c00022{letter-spacing:-0.036000px;}
.ls15_c00022{letter-spacing:-0.021600px;}
.ls11_c00022{letter-spacing:-0.014400px;}
.lse_c00022{letter-spacing:-0.007200px;}
.lsd_c00022{letter-spacing:0.000000px;}
.ls4_c00022{letter-spacing:0.007200px;}
.lsa_c00022{letter-spacing:0.014400px;}
.ls5_c00022{letter-spacing:0.021600px;}
.ls0_c00022{letter-spacing:0.028800px;}
.ls1_c00022{letter-spacing:0.036000px;}
.ls7_c00022{letter-spacing:0.043200px;}
.ls2_c00022{letter-spacing:0.050400px;}
.ls8_c00022{letter-spacing:0.057600px;}
.ls6_c00022{letter-spacing:0.064800px;}
.ls9_c00022{letter-spacing:0.072000px;}
.lsb_c00022{letter-spacing:0.086400px;}
.ls3_c00022{letter-spacing:0.108000px;}
.ls10_c00022{letter-spacing:1.440000px;}
.ls16_c00022{letter-spacing:3.240000px;}
.ls12_c00022{letter-spacing:16.920000px;}
.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;}
}
.ws6_c00022{word-spacing:-0.028800px;}
.ws1_c00022{word-spacing:0.000000px;}
.ws0_c00022{word-spacing:0.192384px;}
.ws5_c00022{word-spacing:5.385600px;}
.ws2_c00022{word-spacing:8.488800px;}
.ws3_c00022{word-spacing:8.539200px;}
.ws4_c00022{word-spacing:8.647200px;}
._9_c00022{margin-left:-17.280000px;}
._a_c00022{margin-left:-16.200000px;}
._6_c00022{margin-left:-3.937680px;}
._5_c00022{margin-left:-2.614320px;}
._3_c00022{margin-left:-1.432800px;}
._0_c00022{width:1.034064px;}
._1_c00022{width:2.678400px;}
._2_c00022{width:3.830400px;}
._4_c00022{width:5.349600px;}
._e_c00022{width:7.027200px;}
._7_c00022{width:8.640000px;}
._8_c00022{width:16.358400px;}
._b_c00022{width:19.476000px;}
._c_c00022{width:20.491200px;}
._d_c00022{width:21.600000px;}
.fc1_c00022{color:rgb(0,0,0);}
.fc0_c00022{color:rgb(32,31,30);}
.fs0_c00022{font-size:60.120000px;}
.fs1_c00022{font-size:72.000000px;}
.y0_c00022{bottom:0.000000px;}
.y5_c00022{bottom:57.360450px;}
.y4_c00022{bottom:78.060450px;}
.y24_c00022{bottom:131.970450px;}
.y23_c00022{bottom:163.020450px;}
.y22_c00022{bottom:194.070450px;}
.y21_c00022{bottom:225.120450px;}
.y20_c00022{bottom:268.050450px;}
.y1f_c00022{bottom:299.190450px;}
.y1e_c00022{bottom:330.240450px;}
.y1d_c00022{bottom:361.290450px;}
.y1c_c00022{bottom:392.340450px;}
.y1b_c00022{bottom:423.390450px;}
.y1a_c00022{bottom:466.410450px;}
.y19_c00022{bottom:497.550450px;}
.y18_c00022{bottom:528.600450px;}
.y17_c00022{bottom:559.650450px;}
.y16_c00022{bottom:602.580450px;}
.y15_c00022{bottom:633.720450px;}
.y14_c00022{bottom:664.770450px;}
.y13_c00022{bottom:695.820450px;}
.y12_c00022{bottom:726.870450px;}
.y11_c00022{bottom:757.920450px;}
.y10_c00022{bottom:788.970450px;}
.yf_c00022{bottom:820.020450px;}
.ye_c00022{bottom:862.950450px;}
.yd_c00022{bottom:894.000450px;}
.yc_c00022{bottom:925.140450px;}
.yb_c00022{bottom:956.190450px;}
.ya_c00022{bottom:987.240450px;}
.y9_c00022{bottom:1018.290450px;}
.y8_c00022{bottom:1049.340450px;}
.y7_c00022{bottom:1080.390450px;}
.y6_c00022{bottom:1111.440450px;}
.y3_c00022{bottom:1132.140450px;}
.y2_c00022{bottom:1165.441023px;}
.y1_c00022{bottom:1196.040600px;}
.h1_c00022{height:52.898555px;}
.h2_c00022{height:63.175781px;}
.h3_c00022{height:63.351562px;}
.h0_c00022{height:1263.000000px;}
.w1_c00022{width:892.500000px;}
.w0_c00022{width:892.830000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:127.620000px;}
.x2_c00022{left:747.450000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls13_c00022{letter-spacing:-2.560000pt;}
.lsc_c00022{letter-spacing:-0.090848pt;}
.lsf_c00022{letter-spacing:-0.038400pt;}
.ls14_c00022{letter-spacing:-0.032000pt;}
.ls15_c00022{letter-spacing:-0.019200pt;}
.ls11_c00022{letter-spacing:-0.012800pt;}
.lse_c00022{letter-spacing:-0.006400pt;}
.lsd_c00022{letter-spacing:0.000000pt;}
.ls4_c00022{letter-spacing:0.006400pt;}
.lsa_c00022{letter-spacing:0.012800pt;}
.ls5_c00022{letter-spacing:0.019200pt;}
.ls0_c00022{letter-spacing:0.025600pt;}
.ls1_c00022{letter-spacing:0.032000pt;}
.ls7_c00022{letter-spacing:0.038400pt;}
.ls2_c00022{letter-spacing:0.044800pt;}
.ls8_c00022{letter-spacing:0.051200pt;}
.ls6_c00022{letter-spacing:0.057600pt;}
.ls9_c00022{letter-spacing:0.064000pt;}
.lsb_c00022{letter-spacing:0.076800pt;}
.ls3_c00022{letter-spacing:0.096000pt;}
.ls10_c00022{letter-spacing:1.280000pt;}
.ls16_c00022{letter-spacing:2.880000pt;}
.ls12_c00022{letter-spacing:15.040000pt;}
.ws6_c00022{word-spacing:-0.025600pt;}
.ws1_c00022{word-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.171008pt;}
.ws5_c00022{word-spacing:4.787200pt;}
.ws2_c00022{word-spacing:7.545600pt;}
.ws3_c00022{word-spacing:7.590400pt;}
.ws4_c00022{word-spacing:7.686400pt;}
._9_c00022{margin-left:-15.360000pt;}
._a_c00022{margin-left:-14.400000pt;}
._6_c00022{margin-left:-3.500160pt;}
._5_c00022{margin-left:-2.323840pt;}
._3_c00022{margin-left:-1.273600pt;}
._0_c00022{width:0.919168pt;}
._1_c00022{width:2.380800pt;}
._2_c00022{width:3.404800pt;}
._4_c00022{width:4.755200pt;}
._e_c00022{width:6.246400pt;}
._7_c00022{width:7.680000pt;}
._8_c00022{width:14.540800pt;}
._b_c00022{width:17.312000pt;}
._c_c00022{width:18.214400pt;}
._d_c00022{width:19.200000pt;}
.fs0_c00022{font-size:53.440000pt;}
.fs1_c00022{font-size:64.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y5_c00022{bottom:50.987067pt;}
.y4_c00022{bottom:69.387067pt;}
.y24_c00022{bottom:117.307067pt;}
.y23_c00022{bottom:144.907067pt;}
.y22_c00022{bottom:172.507067pt;}
.y21_c00022{bottom:200.107067pt;}
.y20_c00022{bottom:238.267067pt;}
.y1f_c00022{bottom:265.947067pt;}
.y1e_c00022{bottom:293.547067pt;}
.y1d_c00022{bottom:321.147067pt;}
.y1c_c00022{bottom:348.747067pt;}
.y1b_c00022{bottom:376.347067pt;}
.y1a_c00022{bottom:414.587067pt;}
.y19_c00022{bottom:442.267067pt;}
.y18_c00022{bottom:469.867067pt;}
.y17_c00022{bottom:497.467067pt;}
.y16_c00022{bottom:535.627067pt;}
.y15_c00022{bottom:563.307067pt;}
.y14_c00022{bottom:590.907067pt;}
.y13_c00022{bottom:618.507067pt;}
.y12_c00022{bottom:646.107067pt;}
.y11_c00022{bottom:673.707067pt;}
.y10_c00022{bottom:701.307067pt;}
.yf_c00022{bottom:728.907067pt;}
.ye_c00022{bottom:767.067067pt;}
.yd_c00022{bottom:794.667067pt;}
.yc_c00022{bottom:822.347067pt;}
.yb_c00022{bottom:849.947067pt;}
.ya_c00022{bottom:877.547067pt;}
.y9_c00022{bottom:905.147067pt;}
.y8_c00022{bottom:932.747067pt;}
.y7_c00022{bottom:960.347067pt;}
.y6_c00022{bottom:987.947067pt;}
.y3_c00022{bottom:1006.347067pt;}
.y2_c00022{bottom:1035.947576pt;}
.y1_c00022{bottom:1063.147200pt;}
.h1_c00022{height:47.020937pt;}
.h2_c00022{height:56.156250pt;}
.h3_c00022{height:56.312500pt;}
.h0_c00022{height:1122.666667pt;}
.w1_c00022{width:793.333333pt;}
.w0_c00022{width:793.626667pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:113.440000pt;}
.x2_c00022{left:664.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_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_e0b3cdccfbc3edff826bc586.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.095703;font-style:normal;font-weight:normal;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_bb6049d441b771ca4f024777.woff2')format("woff");}.ff2_c00023{font-family:ff2_c00023;line-height:1.093262;font-style: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;}
.ls13_c00023{letter-spacing:-0.050400px;}
.lse_c00023{letter-spacing:-0.048096px;}
.ls10_c00023{letter-spacing:-0.028800px;}
.ls11_c00023{letter-spacing:-0.021600px;}
.ls15_c00023{letter-spacing:-0.014400px;}
.ls12_c00023{letter-spacing:-0.007200px;}
.lsf_c00023{letter-spacing:0.000000px;}
.ls5_c00023{letter-spacing:0.007200px;}
.lsa_c00023{letter-spacing:0.014400px;}
.ls1_c00023{letter-spacing:0.021600px;}
.ls4_c00023{letter-spacing:0.028800px;}
.ls2_c00023{letter-spacing:0.036000px;}
.ls3_c00023{letter-spacing:0.043200px;}
.ls0_c00023{letter-spacing:0.050400px;}
.ls8_c00023{letter-spacing:0.057600px;}
.lsb_c00023{letter-spacing:0.064800px;}
.ls6_c00023{letter-spacing:0.072000px;}
.ls7_c00023{letter-spacing:0.079200px;}
.lsc_c00023{letter-spacing:0.086400px;}
.lsd_c00023{letter-spacing:0.108000px;}
.ls9_c00023{letter-spacing:0.115200px;}
.ls14_c00023{letter-spacing:8.157600px;}
.ls16_c00023{letter-spacing:12.600000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00023{word-spacing:0.000000px;}
.ws0_c00023{word-spacing:0.138276px;}
.ws2_c00023{word-spacing:9.345600px;}
.ws3_c00023{word-spacing:17.200800px;}
._10_c00023{margin-left:-13.557600px;}
._11_c00023{margin-left:-12.240000px;}
._c_c00023{margin-left:-8.892000px;}
._d_c00023{margin-left:-7.178400px;}
._b_c00023{margin-left:-2.412000px;}
._1_c00023{margin-left:-1.252800px;}
._7_c00023{width:1.389600px;}
._0_c00023{width:2.469600px;}
._2_c00023{width:4.046400px;}
._3_c00023{width:5.450400px;}
._5_c00023{width:6.616800px;}
._6_c00023{width:7.999200px;}
._8_c00023{width:9.669600px;}
._a_c00023{width:11.109600px;}
._e_c00023{width:12.182400px;}
._f_c00023{width:13.320000px;}
._9_c00023{width:16.416000px;}
._4_c00023{width:23.356800px;}
.fc0_c00023{color:rgb(0,0,0);}
.fs0_c00023{font-size:60.120000px;}
.fs1_c00023{font-size:72.000000px;}
.y0_c00023{bottom:0.000000px;}
.y6_c00023{bottom:57.360450px;}
.y5_c00023{bottom:78.060450px;}
.y26_c00023{bottom:113.880450px;}
.y25_c00023{bottom:144.930450px;}
.y24_c00023{bottom:175.980450px;}
.y23_c00023{bottom:207.030450px;}
.y22_c00023{bottom:238.080450px;}
.y21_c00023{bottom:281.010450px;}
.y20_c00023{bottom:312.150450px;}
.y1f_c00023{bottom:343.200450px;}
.y1e_c00023{bottom:386.130450px;}
.y1d_c00023{bottom:417.270450px;}
.y1c_c00023{bottom:448.320450px;}
.y1b_c00023{bottom:479.370450px;}
.y1a_c00023{bottom:510.420450px;}
.y19_c00023{bottom:541.470450px;}
.y18_c00023{bottom:572.520450px;}
.y17_c00023{bottom:603.570450px;}
.y16_c00023{bottom:646.590450px;}
.y15_c00023{bottom:677.640450px;}
.y14_c00023{bottom:708.690450px;}
.y13_c00023{bottom:739.740450px;}
.y12_c00023{bottom:770.790450px;}
.y11_c00023{bottom:801.840450px;}
.y10_c00023{bottom:832.890450px;}
.yf_c00023{bottom:863.940450px;}
.ye_c00023{bottom:894.990450px;}
.yd_c00023{bottom:938.010450px;}
.yc_c00023{bottom:969.150450px;}
.yb_c00023{bottom:1000.200450px;}
.ya_c00023{bottom:1031.160450px;}
.y9_c00023{bottom:1062.210450px;}
.y8_c00023{bottom:1093.260450px;}
.y7_c00023{bottom:1124.310450px;}
.y4_c00023{bottom:1144.380657px;}
.y3_c00023{bottom:1161.660648px;}
.y2_c00023{bottom:1178.850459px;}
.y1_c00023{bottom:1196.130450px;}
.h1_c00023{height:52.898555px;}
.h2_c00023{height:63.175781px;}
.h3_c00023{height:63.351562px;}
.h0_c00023{height:1263.000000px;}
.w1_c00023{width:892.500000px;}
.w0_c00023{width:892.830000px;}
.x0_c00023{left:0.000000px;}
.x4_c00023{left:127.620000px;}
.x1_c00023{left:649.620000px;}
.x3_c00023{left:747.450000px;}
.x2_c00023{left:765.450198px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls13_c00023{letter-spacing:-0.044800pt;}
.lse_c00023{letter-spacing:-0.042752pt;}
.ls10_c00023{letter-spacing:-0.025600pt;}
.ls11_c00023{letter-spacing:-0.019200pt;}
.ls15_c00023{letter-spacing:-0.012800pt;}
.ls12_c00023{letter-spacing:-0.006400pt;}
.lsf_c00023{letter-spacing:0.000000pt;}
.ls5_c00023{letter-spacing:0.006400pt;}
.lsa_c00023{letter-spacing:0.012800pt;}
.ls1_c00023{letter-spacing:0.019200pt;}
.ls4_c00023{letter-spacing:0.025600pt;}
.ls2_c00023{letter-spacing:0.032000pt;}
.ls3_c00023{letter-spacing:0.038400pt;}
.ls0_c00023{letter-spacing:0.044800pt;}
.ls8_c00023{letter-spacing:0.051200pt;}
.lsb_c00023{letter-spacing:0.057600pt;}
.ls6_c00023{letter-spacing:0.064000pt;}
.ls7_c00023{letter-spacing:0.070400pt;}
.lsc_c00023{letter-spacing:0.076800pt;}
.lsd_c00023{letter-spacing:0.096000pt;}
.ls9_c00023{letter-spacing:0.102400pt;}
.ls14_c00023{letter-spacing:7.251200pt;}
.ls16_c00023{letter-spacing:11.200000pt;}
.ws1_c00023{word-spacing:0.000000pt;}
.ws0_c00023{word-spacing:0.122912pt;}
.ws2_c00023{word-spacing:8.307200pt;}
.ws3_c00023{word-spacing:15.289600pt;}
._10_c00023{margin-left:-12.051200pt;}
._11_c00023{margin-left:-10.880000pt;}
._c_c00023{margin-left:-7.904000pt;}
._d_c00023{margin-left:-6.380800pt;}
._b_c00023{margin-left:-2.144000pt;}
._1_c00023{margin-left:-1.113600pt;}
._7_c00023{width:1.235200pt;}
._0_c00023{width:2.195200pt;}
._2_c00023{width:3.596800pt;}
._3_c00023{width:4.844800pt;}
._5_c00023{width:5.881600pt;}
._6_c00023{width:7.110400pt;}
._8_c00023{width:8.595200pt;}
._a_c00023{width:9.875200pt;}
._e_c00023{width:10.828800pt;}
._f_c00023{width:11.840000pt;}
._9_c00023{width:14.592000pt;}
._4_c00023{width:20.761600pt;}
.fs0_c00023{font-size:53.440000pt;}
.fs1_c00023{font-size:64.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y6_c00023{bottom:50.987067pt;}
.y5_c00023{bottom:69.387067pt;}
.y26_c00023{bottom:101.227067pt;}
.y25_c00023{bottom:128.827067pt;}
.y24_c00023{bottom:156.427067pt;}
.y23_c00023{bottom:184.027067pt;}
.y22_c00023{bottom:211.627067pt;}
.y21_c00023{bottom:249.787067pt;}
.y20_c00023{bottom:277.467067pt;}
.y1f_c00023{bottom:305.067067pt;}
.y1e_c00023{bottom:343.227067pt;}
.y1d_c00023{bottom:370.907067pt;}
.y1c_c00023{bottom:398.507067pt;}
.y1b_c00023{bottom:426.107067pt;}
.y1a_c00023{bottom:453.707067pt;}
.y19_c00023{bottom:481.307067pt;}
.y18_c00023{bottom:508.907067pt;}
.y17_c00023{bottom:536.507067pt;}
.y16_c00023{bottom:574.747067pt;}
.y15_c00023{bottom:602.347067pt;}
.y14_c00023{bottom:629.947067pt;}
.y13_c00023{bottom:657.547067pt;}
.y12_c00023{bottom:685.147067pt;}
.y11_c00023{bottom:712.747067pt;}
.y10_c00023{bottom:740.347067pt;}
.yf_c00023{bottom:767.947067pt;}
.ye_c00023{bottom:795.547067pt;}
.yd_c00023{bottom:833.787067pt;}
.yc_c00023{bottom:861.467067pt;}
.yb_c00023{bottom:889.067067pt;}
.ya_c00023{bottom:916.587067pt;}
.y9_c00023{bottom:944.187067pt;}
.y8_c00023{bottom:971.787067pt;}
.y7_c00023{bottom:999.387067pt;}
.y4_c00023{bottom:1017.227251pt;}
.y3_c00023{bottom:1032.587243pt;}
.y2_c00023{bottom:1047.867075pt;}
.y1_c00023{bottom:1063.227067pt;}
.h1_c00023{height:47.020937pt;}
.h2_c00023{height:56.156250pt;}
.h3_c00023{height:56.312500pt;}
.h0_c00023{height:1122.666667pt;}
.w1_c00023{width:793.333333pt;}
.w0_c00023{width:793.626667pt;}
.x0_c00023{left:0.000000pt;}
.x4_c00023{left:113.440000pt;}
.x1_c00023{left:577.440000pt;}
.x3_c00023{left:664.400000pt;}
.x2_c00023{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_767e51e60035f1a277a41819.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.095703;font-style:normal;font-weight:normal;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_721e311774e98cb19ca54478.woff2')format("woff");}.ff2_c00024{font-family:ff2_c00024;line-height:1.093262;font-style: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;}
.ls15_c00024{letter-spacing:-0.115200px;}
.lse_c00024{letter-spacing:-0.102204px;}
.ls11_c00024{letter-spacing:-0.043200px;}
.ls10_c00024{letter-spacing:-0.036000px;}
.ls16_c00024{letter-spacing:-0.028800px;}
.ls13_c00024{letter-spacing:-0.021600px;}
.ls12_c00024{letter-spacing:-0.014400px;}
.ls14_c00024{letter-spacing:-0.007200px;}
.lsf_c00024{letter-spacing:0.000000px;}
.ls2_c00024{letter-spacing:0.007200px;}
.ls3_c00024{letter-spacing:0.014400px;}
.ls7_c00024{letter-spacing:0.021600px;}
.ls1_c00024{letter-spacing:0.028800px;}
.lsa_c00024{letter-spacing:0.036000px;}
.ls6_c00024{letter-spacing:0.043200px;}
.ls0_c00024{letter-spacing:0.050400px;}
.ls5_c00024{letter-spacing:0.057600px;}
.ls8_c00024{letter-spacing:0.064800px;}
.ls4_c00024{letter-spacing:0.072000px;}
.ls9_c00024{letter-spacing:0.079200px;}
.lsc_c00024{letter-spacing:0.086400px;}
.lsb_c00024{letter-spacing:0.093600px;}
.lsd_c00024{letter-spacing:0.136800px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00024{word-spacing:0.000000px;}
.ws0_c00024{word-spacing:0.192384px;}
.ws2_c00024{word-spacing:5.716800px;}
._1_c00024{margin-left:-4.982400px;}
._2_c00024{margin-left:-3.506400px;}
._5_c00024{margin-left:-2.380464px;}
._4_c00024{margin-left:-1.123200px;}
._0_c00024{width:1.034064px;}
._9_c00024{width:2.260800px;}
._8_c00024{width:3.571200px;}
._10_c00024{width:4.600800px;}
._f_c00024{width:5.731200px;}
._7_c00024{width:7.257600px;}
._6_c00024{width:8.589600px;}
._e_c00024{width:10.036800px;}
._11_c00024{width:11.138400px;}
._3_c00024{width:12.211200px;}
._d_c00024{width:16.956000px;}
._c_c00024{width:19.051200px;}
._b_c00024{width:22.939200px;}
._a_c00024{width:24.098400px;}
.fc1_c00024{color:rgb(0,0,0);}
.fc0_c00024{color:rgb(32,31,30);}
.fs0_c00024{font-size:60.120000px;}
.fs1_c00024{font-size:72.000000px;}
.y0_c00024{bottom:0.000000px;}
.y5_c00024{bottom:57.360450px;}
.y4_c00024{bottom:78.060450px;}
.y24_c00024{bottom:131.880450px;}
.y23_c00024{bottom:163.020450px;}
.y22_c00024{bottom:194.070450px;}
.y21_c00024{bottom:225.120450px;}
.y20_c00024{bottom:256.170450px;}
.y1f_c00024{bottom:287.220450px;}
.y1e_c00024{bottom:330.150450px;}
.y1d_c00024{bottom:361.290450px;}
.y1c_c00024{bottom:392.340450px;}
.y1b_c00024{bottom:423.390450px;}
.y1a_c00024{bottom:454.440450px;}
.y19_c00024{bottom:485.490450px;}
.y18_c00024{bottom:516.540450px;}
.y17_c00024{bottom:547.590450px;}
.y16_c00024{bottom:590.610450px;}
.y15_c00024{bottom:621.660450px;}
.y14_c00024{bottom:652.710450px;}
.y13_c00024{bottom:683.760450px;}
.y12_c00024{bottom:714.810450px;}
.y11_c00024{bottom:745.860450px;}
.y10_c00024{bottom:776.910450px;}
.yf_c00024{bottom:819.930450px;}
.ye_c00024{bottom:851.070450px;}
.yd_c00024{bottom:882.120450px;}
.yc_c00024{bottom:925.050450px;}
.yb_c00024{bottom:956.190450px;}
.ya_c00024{bottom:987.240450px;}
.y9_c00024{bottom:1018.290450px;}
.y8_c00024{bottom:1049.340450px;}
.y7_c00024{bottom:1080.390450px;}
.y6_c00024{bottom:1111.440450px;}
.y3_c00024{bottom:1132.140450px;}
.y2_c00024{bottom:1165.441023px;}
.y1_c00024{bottom:1196.040600px;}
.h1_c00024{height:52.898555px;}
.h2_c00024{height:63.175781px;}
.h3_c00024{height:63.351562px;}
.h0_c00024{height:1263.000000px;}
.w1_c00024{width:892.500000px;}
.w0_c00024{width:892.830000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:127.620000px;}
.x2_c00024{left:747.450000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls15_c00024{letter-spacing:-0.102400pt;}
.lse_c00024{letter-spacing:-0.090848pt;}
.ls11_c00024{letter-spacing:-0.038400pt;}
.ls10_c00024{letter-spacing:-0.032000pt;}
.ls16_c00024{letter-spacing:-0.025600pt;}
.ls13_c00024{letter-spacing:-0.019200pt;}
.ls12_c00024{letter-spacing:-0.012800pt;}
.ls14_c00024{letter-spacing:-0.006400pt;}
.lsf_c00024{letter-spacing:0.000000pt;}
.ls2_c00024{letter-spacing:0.006400pt;}
.ls3_c00024{letter-spacing:0.012800pt;}
.ls7_c00024{letter-spacing:0.019200pt;}
.ls1_c00024{letter-spacing:0.025600pt;}
.lsa_c00024{letter-spacing:0.032000pt;}
.ls6_c00024{letter-spacing:0.038400pt;}
.ls0_c00024{letter-spacing:0.044800pt;}
.ls5_c00024{letter-spacing:0.051200pt;}
.ls8_c00024{letter-spacing:0.057600pt;}
.ls4_c00024{letter-spacing:0.064000pt;}
.ls9_c00024{letter-spacing:0.070400pt;}
.lsc_c00024{letter-spacing:0.076800pt;}
.lsb_c00024{letter-spacing:0.083200pt;}
.lsd_c00024{letter-spacing:0.121600pt;}
.ws1_c00024{word-spacing:0.000000pt;}
.ws0_c00024{word-spacing:0.171008pt;}
.ws2_c00024{word-spacing:5.081600pt;}
._1_c00024{margin-left:-4.428800pt;}
._2_c00024{margin-left:-3.116800pt;}
._5_c00024{margin-left:-2.115968pt;}
._4_c00024{margin-left:-0.998400pt;}
._0_c00024{width:0.919168pt;}
._9_c00024{width:2.009600pt;}
._8_c00024{width:3.174400pt;}
._10_c00024{width:4.089600pt;}
._f_c00024{width:5.094400pt;}
._7_c00024{width:6.451200pt;}
._6_c00024{width:7.635200pt;}
._e_c00024{width:8.921600pt;}
._11_c00024{width:9.900800pt;}
._3_c00024{width:10.854400pt;}
._d_c00024{width:15.072000pt;}
._c_c00024{width:16.934400pt;}
._b_c00024{width:20.390400pt;}
._a_c00024{width:21.420800pt;}
.fs0_c00024{font-size:53.440000pt;}
.fs1_c00024{font-size:64.000000pt;}
.y0_c00024{bottom:0.000000pt;}
.y5_c00024{bottom:50.987067pt;}
.y4_c00024{bottom:69.387067pt;}
.y24_c00024{bottom:117.227067pt;}
.y23_c00024{bottom:144.907067pt;}
.y22_c00024{bottom:172.507067pt;}
.y21_c00024{bottom:200.107067pt;}
.y20_c00024{bottom:227.707067pt;}
.y1f_c00024{bottom:255.307067pt;}
.y1e_c00024{bottom:293.467067pt;}
.y1d_c00024{bottom:321.147067pt;}
.y1c_c00024{bottom:348.747067pt;}
.y1b_c00024{bottom:376.347067pt;}
.y1a_c00024{bottom:403.947067pt;}
.y19_c00024{bottom:431.547067pt;}
.y18_c00024{bottom:459.147067pt;}
.y17_c00024{bottom:486.747067pt;}
.y16_c00024{bottom:524.987067pt;}
.y15_c00024{bottom:552.587067pt;}
.y14_c00024{bottom:580.187067pt;}
.y13_c00024{bottom:607.787067pt;}
.y12_c00024{bottom:635.387067pt;}
.y11_c00024{bottom:662.987067pt;}
.y10_c00024{bottom:690.587067pt;}
.yf_c00024{bottom:728.827067pt;}
.ye_c00024{bottom:756.507067pt;}
.yd_c00024{bottom:784.107067pt;}
.yc_c00024{bottom:822.267067pt;}
.yb_c00024{bottom:849.947067pt;}
.ya_c00024{bottom:877.547067pt;}
.y9_c00024{bottom:905.147067pt;}
.y8_c00024{bottom:932.747067pt;}
.y7_c00024{bottom:960.347067pt;}
.y6_c00024{bottom:987.947067pt;}
.y3_c00024{bottom:1006.347067pt;}
.y2_c00024{bottom:1035.947576pt;}
.y1_c00024{bottom:1063.147200pt;}
.h1_c00024{height:47.020937pt;}
.h2_c00024{height:56.156250pt;}
.h3_c00024{height:56.312500pt;}
.h0_c00024{height:1122.666667pt;}
.w1_c00024{width:793.333333pt;}
.w0_c00024{width:793.626667pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:113.440000pt;}
.x2_c00024{left:664.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_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_a16f408a1f65f9c9c0017afa.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_d194cba94b1ffe2d26a9f9c3.woff2')format("woff");}.ff2_c00025{font-family:ff2_c00025;line-height:1.093262;font-style: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;}
.ls12_c00025{letter-spacing:-0.180000px;}
.lsf_c00025{letter-spacing:-0.048096px;}
.ls13_c00025{letter-spacing:-0.043200px;}
.ls15_c00025{letter-spacing:-0.021600px;}
.ls11_c00025{letter-spacing:-0.007200px;}
.ls10_c00025{letter-spacing:0.000000px;}
.ls1_c00025{letter-spacing:0.007200px;}
.ls7_c00025{letter-spacing:0.014400px;}
.lsa_c00025{letter-spacing:0.021600px;}
.ls3_c00025{letter-spacing:0.028800px;}
.ls4_c00025{letter-spacing:0.036000px;}
.ls8_c00025{letter-spacing:0.043200px;}
.ls5_c00025{letter-spacing:0.050400px;}
.ls0_c00025{letter-spacing:0.057600px;}
.ls6_c00025{letter-spacing:0.064800px;}
.lse_c00025{letter-spacing:0.079200px;}
.ls9_c00025{letter-spacing:0.086400px;}
.lsb_c00025{letter-spacing:0.093600px;}
.lsc_c00025{letter-spacing:0.115200px;}
.ls2_c00025{letter-spacing:0.129600px;}
.lsd_c00025{letter-spacing:0.151200px;}
.ls14_c00025{letter-spacing:2.160000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00025{word-spacing:0.000000px;}
.ws0_c00025{word-spacing:0.138276px;}
.ws2_c00025{word-spacing:6.811200px;}
._2_c00025{margin-left:-4.996800px;}
._3_c00025{margin-left:-3.700800px;}
._4_c00025{margin-left:-2.210400px;}
._1_c00025{margin-left:-1.180800px;}
._8_c00025{width:1.274400px;}
._b_c00025{width:2.707200px;}
._5_c00025{width:4.636800px;}
._a_c00025{width:6.076800px;}
._c_c00025{width:7.113600px;}
._7_c00025{width:9.367200px;}
._0_c00025{width:10.742400px;}
._6_c00025{width:12.542400px;}
._9_c00025{width:15.069600px;}
.fc0_c00025{color:rgb(0,0,0);}
.fs0_c00025{font-size:60.120000px;}
.fs1_c00025{font-size:72.000000px;}
.y0_c00025{bottom:0.000000px;}
.y6_c00025{bottom:57.360450px;}
.y5_c00025{bottom:78.060450px;}
.y26_c00025{bottom:137.910450px;}
.y25_c00025{bottom:168.960450px;}
.y24_c00025{bottom:200.010450px;}
.y23_c00025{bottom:231.060450px;}
.y22_c00025{bottom:262.110450px;}
.y21_c00025{bottom:293.070450px;}
.y20_c00025{bottom:324.120450px;}
.y1f_c00025{bottom:355.170450px;}
.y1e_c00025{bottom:386.220450px;}
.y1d_c00025{bottom:417.270450px;}
.y1c_c00025{bottom:448.320450px;}
.y1b_c00025{bottom:479.370450px;}
.y1a_c00025{bottom:510.420450px;}
.y19_c00025{bottom:553.440450px;}
.y18_c00025{bottom:584.580450px;}
.y17_c00025{bottom:615.630450px;}
.y16_c00025{bottom:646.680450px;}
.y15_c00025{bottom:677.640450px;}
.y14_c00025{bottom:708.690450px;}
.y13_c00025{bottom:739.740450px;}
.y12_c00025{bottom:770.790450px;}
.y11_c00025{bottom:813.810450px;}
.y10_c00025{bottom:844.950450px;}
.yf_c00025{bottom:876.000450px;}
.ye_c00025{bottom:907.050450px;}
.yd_c00025{bottom:938.100450px;}
.yc_c00025{bottom:969.150450px;}
.yb_c00025{bottom:1000.200450px;}
.ya_c00025{bottom:1031.160450px;}
.y9_c00025{bottom:1062.210450px;}
.y8_c00025{bottom:1093.260450px;}
.y7_c00025{bottom:1124.310450px;}
.y4_c00025{bottom:1144.380657px;}
.y3_c00025{bottom:1161.660648px;}
.y2_c00025{bottom:1178.850459px;}
.y1_c00025{bottom:1196.130450px;}
.h1_c00025{height:52.898555px;}
.h2_c00025{height:63.175781px;}
.h3_c00025{height:63.351562px;}
.h0_c00025{height:1263.000000px;}
.w1_c00025{width:892.500000px;}
.w0_c00025{width:892.830000px;}
.x0_c00025{left:0.000000px;}
.x4_c00025{left:127.620000px;}
.x1_c00025{left:649.620000px;}
.x3_c00025{left:747.450000px;}
.x2_c00025{left:765.450198px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls12_c00025{letter-spacing:-0.160000pt;}
.lsf_c00025{letter-spacing:-0.042752pt;}
.ls13_c00025{letter-spacing:-0.038400pt;}
.ls15_c00025{letter-spacing:-0.019200pt;}
.ls11_c00025{letter-spacing:-0.006400pt;}
.ls10_c00025{letter-spacing:0.000000pt;}
.ls1_c00025{letter-spacing:0.006400pt;}
.ls7_c00025{letter-spacing:0.012800pt;}
.lsa_c00025{letter-spacing:0.019200pt;}
.ls3_c00025{letter-spacing:0.025600pt;}
.ls4_c00025{letter-spacing:0.032000pt;}
.ls8_c00025{letter-spacing:0.038400pt;}
.ls5_c00025{letter-spacing:0.044800pt;}
.ls0_c00025{letter-spacing:0.051200pt;}
.ls6_c00025{letter-spacing:0.057600pt;}
.lse_c00025{letter-spacing:0.070400pt;}
.ls9_c00025{letter-spacing:0.076800pt;}
.lsb_c00025{letter-spacing:0.083200pt;}
.lsc_c00025{letter-spacing:0.102400pt;}
.ls2_c00025{letter-spacing:0.115200pt;}
.lsd_c00025{letter-spacing:0.134400pt;}
.ls14_c00025{letter-spacing:1.920000pt;}
.ws1_c00025{word-spacing:0.000000pt;}
.ws0_c00025{word-spacing:0.122912pt;}
.ws2_c00025{word-spacing:6.054400pt;}
._2_c00025{margin-left:-4.441600pt;}
._3_c00025{margin-left:-3.289600pt;}
._4_c00025{margin-left:-1.964800pt;}
._1_c00025{margin-left:-1.049600pt;}
._8_c00025{width:1.132800pt;}
._b_c00025{width:2.406400pt;}
._5_c00025{width:4.121600pt;}
._a_c00025{width:5.401600pt;}
._c_c00025{width:6.323200pt;}
._7_c00025{width:8.326400pt;}
._0_c00025{width:9.548800pt;}
._6_c00025{width:11.148800pt;}
._9_c00025{width:13.395200pt;}
.fs0_c00025{font-size:53.440000pt;}
.fs1_c00025{font-size:64.000000pt;}
.y0_c00025{bottom:0.000000pt;}
.y6_c00025{bottom:50.987067pt;}
.y5_c00025{bottom:69.387067pt;}
.y26_c00025{bottom:122.587067pt;}
.y25_c00025{bottom:150.187067pt;}
.y24_c00025{bottom:177.787067pt;}
.y23_c00025{bottom:205.387067pt;}
.y22_c00025{bottom:232.987067pt;}
.y21_c00025{bottom:260.507067pt;}
.y20_c00025{bottom:288.107067pt;}
.y1f_c00025{bottom:315.707067pt;}
.y1e_c00025{bottom:343.307067pt;}
.y1d_c00025{bottom:370.907067pt;}
.y1c_c00025{bottom:398.507067pt;}
.y1b_c00025{bottom:426.107067pt;}
.y1a_c00025{bottom:453.707067pt;}
.y19_c00025{bottom:491.947067pt;}
.y18_c00025{bottom:519.627067pt;}
.y17_c00025{bottom:547.227067pt;}
.y16_c00025{bottom:574.827067pt;}
.y15_c00025{bottom:602.347067pt;}
.y14_c00025{bottom:629.947067pt;}
.y13_c00025{bottom:657.547067pt;}
.y12_c00025{bottom:685.147067pt;}
.y11_c00025{bottom:723.387067pt;}
.y10_c00025{bottom:751.067067pt;}
.yf_c00025{bottom:778.667067pt;}
.ye_c00025{bottom:806.267067pt;}
.yd_c00025{bottom:833.867067pt;}
.yc_c00025{bottom:861.467067pt;}
.yb_c00025{bottom:889.067067pt;}
.ya_c00025{bottom:916.587067pt;}
.y9_c00025{bottom:944.187067pt;}
.y8_c00025{bottom:971.787067pt;}
.y7_c00025{bottom:999.387067pt;}
.y4_c00025{bottom:1017.227251pt;}
.y3_c00025{bottom:1032.587243pt;}
.y2_c00025{bottom:1047.867075pt;}
.y1_c00025{bottom:1063.227067pt;}
.h1_c00025{height:47.020937pt;}
.h2_c00025{height:56.156250pt;}
.h3_c00025{height:56.312500pt;}
.h0_c00025{height:1122.666667pt;}
.w1_c00025{width:793.333333pt;}
.w0_c00025{width:793.626667pt;}
.x0_c00025{left:0.000000pt;}
.x4_c00025{left:113.440000pt;}
.x1_c00025{left:577.440000pt;}
.x3_c00025{left:664.400000pt;}
.x2_c00025{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.095703;font-style:normal;font-weight:normal;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_c994f1f58eecba72f2c079d8.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.093262;font-style: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;}
.ls11_c00026{letter-spacing:-0.102204px;}
.ls19_c00026{letter-spacing:-0.057600px;}
.ls13_c00026{letter-spacing:-0.043200px;}
.ls17_c00026{letter-spacing:-0.036000px;}
.ls16_c00026{letter-spacing:-0.028800px;}
.ls18_c00026{letter-spacing:-0.021600px;}
.ls15_c00026{letter-spacing:-0.014400px;}
.ls14_c00026{letter-spacing:-0.007200px;}
.ls12_c00026{letter-spacing:0.000000px;}
.ls3_c00026{letter-spacing:0.007200px;}
.lsb_c00026{letter-spacing:0.014400px;}
.ls1_c00026{letter-spacing:0.021600px;}
.ls7_c00026{letter-spacing:0.028800px;}
.ls0_c00026{letter-spacing:0.036000px;}
.ls6_c00026{letter-spacing:0.043200px;}
.ls8_c00026{letter-spacing:0.050400px;}
.lsf_c00026{letter-spacing:0.057600px;}
.ls9_c00026{letter-spacing:0.064800px;}
.ls2_c00026{letter-spacing:0.072000px;}
.lsa_c00026{letter-spacing:0.079200px;}
.lsc_c00026{letter-spacing:0.086400px;}
.ls4_c00026{letter-spacing:0.100800px;}
.lsd_c00026{letter-spacing:0.108000px;}
.lse_c00026{letter-spacing:0.122400px;}
.ls10_c00026{letter-spacing:0.129600px;}
.ls5_c00026{letter-spacing:0.158400px;}
.ls1a_c00026{letter-spacing:1.800000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00026{word-spacing:0.000000px;}
.ws0_c00026{word-spacing:0.192384px;}
._c_c00026{margin-left:-3.888000px;}
._a_c00026{margin-left:-2.872800px;}
._7_c00026{margin-left:-1.339200px;}
._0_c00026{width:1.034064px;}
._12_c00026{width:2.865600px;}
._1_c00026{width:5.004000px;}
._f_c00026{width:6.458400px;}
._11_c00026{width:7.545600px;}
._3_c00026{width:9.259200px;}
._2_c00026{width:10.404000px;}
._4_c00026{width:11.505600px;}
._b_c00026{width:12.549600px;}
._10_c00026{width:13.737600px;}
._9_c00026{width:15.746400px;}
._8_c00026{width:16.898400px;}
._6_c00026{width:19.022400px;}
._5_c00026{width:20.152800px;}
._e_c00026{width:37.137600px;}
._d_c00026{width:38.476800px;}
.fc1_c00026{color:rgb(0,0,0);}
.fc0_c00026{color:rgb(32,31,30);}
.fs0_c00026{font-size:60.120000px;}
.fs1_c00026{font-size:72.000000px;}
.y0_c00026{bottom:0.000000px;}
.y5_c00026{bottom:57.360450px;}
.y4_c00026{bottom:78.060450px;}
.y24_c00026{bottom:131.970450px;}
.y23_c00026{bottom:163.020450px;}
.y22_c00026{bottom:194.070450px;}
.y21_c00026{bottom:225.120450px;}
.y20_c00026{bottom:268.050450px;}
.y1f_c00026{bottom:299.190450px;}
.y1e_c00026{bottom:330.240450px;}
.y1d_c00026{bottom:361.290450px;}
.y1c_c00026{bottom:392.340450px;}
.y1b_c00026{bottom:423.390450px;}
.y1a_c00026{bottom:454.440450px;}
.y19_c00026{bottom:485.490450px;}
.y18_c00026{bottom:528.510450px;}
.y17_c00026{bottom:559.650450px;}
.y16_c00026{bottom:590.700450px;}
.y15_c00026{bottom:621.660450px;}
.y14_c00026{bottom:664.680450px;}
.y13_c00026{bottom:695.820450px;}
.y12_c00026{bottom:726.870450px;}
.y11_c00026{bottom:757.920450px;}
.y10_c00026{bottom:788.970450px;}
.yf_c00026{bottom:820.020450px;}
.ye_c00026{bottom:851.070450px;}
.yd_c00026{bottom:894.000450px;}
.yc_c00026{bottom:925.140450px;}
.yb_c00026{bottom:956.190450px;}
.ya_c00026{bottom:987.240450px;}
.y9_c00026{bottom:1018.290450px;}
.y8_c00026{bottom:1049.340450px;}
.y7_c00026{bottom:1080.390450px;}
.y6_c00026{bottom:1111.440450px;}
.y3_c00026{bottom:1132.140450px;}
.y2_c00026{bottom:1165.441023px;}
.y1_c00026{bottom:1196.040600px;}
.h1_c00026{height:52.898555px;}
.h2_c00026{height:63.175781px;}
.h0_c00026{height:1263.000000px;}
.w1_c00026{width:892.500000px;}
.w0_c00026{width:892.830000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:127.620000px;}
.x2_c00026{left:747.450000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls11_c00026{letter-spacing:-0.090848pt;}
.ls19_c00026{letter-spacing:-0.051200pt;}
.ls13_c00026{letter-spacing:-0.038400pt;}
.ls17_c00026{letter-spacing:-0.032000pt;}
.ls16_c00026{letter-spacing:-0.025600pt;}
.ls18_c00026{letter-spacing:-0.019200pt;}
.ls15_c00026{letter-spacing:-0.012800pt;}
.ls14_c00026{letter-spacing:-0.006400pt;}
.ls12_c00026{letter-spacing:0.000000pt;}
.ls3_c00026{letter-spacing:0.006400pt;}
.lsb_c00026{letter-spacing:0.012800pt;}
.ls1_c00026{letter-spacing:0.019200pt;}
.ls7_c00026{letter-spacing:0.025600pt;}
.ls0_c00026{letter-spacing:0.032000pt;}
.ls6_c00026{letter-spacing:0.038400pt;}
.ls8_c00026{letter-spacing:0.044800pt;}
.lsf_c00026{letter-spacing:0.051200pt;}
.ls9_c00026{letter-spacing:0.057600pt;}
.ls2_c00026{letter-spacing:0.064000pt;}
.lsa_c00026{letter-spacing:0.070400pt;}
.lsc_c00026{letter-spacing:0.076800pt;}
.ls4_c00026{letter-spacing:0.089600pt;}
.lsd_c00026{letter-spacing:0.096000pt;}
.lse_c00026{letter-spacing:0.108800pt;}
.ls10_c00026{letter-spacing:0.115200pt;}
.ls5_c00026{letter-spacing:0.140800pt;}
.ls1a_c00026{letter-spacing:1.600000pt;}
.ws1_c00026{word-spacing:0.000000pt;}
.ws0_c00026{word-spacing:0.171008pt;}
._c_c00026{margin-left:-3.456000pt;}
._a_c00026{margin-left:-2.553600pt;}
._7_c00026{margin-left:-1.190400pt;}
._0_c00026{width:0.919168pt;}
._12_c00026{width:2.547200pt;}
._1_c00026{width:4.448000pt;}
._f_c00026{width:5.740800pt;}
._11_c00026{width:6.707200pt;}
._3_c00026{width:8.230400pt;}
._2_c00026{width:9.248000pt;}
._4_c00026{width:10.227200pt;}
._b_c00026{width:11.155200pt;}
._10_c00026{width:12.211200pt;}
._9_c00026{width:13.996800pt;}
._8_c00026{width:15.020800pt;}
._6_c00026{width:16.908800pt;}
._5_c00026{width:17.913600pt;}
._e_c00026{width:33.011200pt;}
._d_c00026{width:34.201600pt;}
.fs0_c00026{font-size:53.440000pt;}
.fs1_c00026{font-size:64.000000pt;}
.y0_c00026{bottom:0.000000pt;}
.y5_c00026{bottom:50.987067pt;}
.y4_c00026{bottom:69.387067pt;}
.y24_c00026{bottom:117.307067pt;}
.y23_c00026{bottom:144.907067pt;}
.y22_c00026{bottom:172.507067pt;}
.y21_c00026{bottom:200.107067pt;}
.y20_c00026{bottom:238.267067pt;}
.y1f_c00026{bottom:265.947067pt;}
.y1e_c00026{bottom:293.547067pt;}
.y1d_c00026{bottom:321.147067pt;}
.y1c_c00026{bottom:348.747067pt;}
.y1b_c00026{bottom:376.347067pt;}
.y1a_c00026{bottom:403.947067pt;}
.y19_c00026{bottom:431.547067pt;}
.y18_c00026{bottom:469.787067pt;}
.y17_c00026{bottom:497.467067pt;}
.y16_c00026{bottom:525.067067pt;}
.y15_c00026{bottom:552.587067pt;}
.y14_c00026{bottom:590.827067pt;}
.y13_c00026{bottom:618.507067pt;}
.y12_c00026{bottom:646.107067pt;}
.y11_c00026{bottom:673.707067pt;}
.y10_c00026{bottom:701.307067pt;}
.yf_c00026{bottom:728.907067pt;}
.ye_c00026{bottom:756.507067pt;}
.yd_c00026{bottom:794.667067pt;}
.yc_c00026{bottom:822.347067pt;}
.yb_c00026{bottom:849.947067pt;}
.ya_c00026{bottom:877.547067pt;}
.y9_c00026{bottom:905.147067pt;}
.y8_c00026{bottom:932.747067pt;}
.y7_c00026{bottom:960.347067pt;}
.y6_c00026{bottom:987.947067pt;}
.y3_c00026{bottom:1006.347067pt;}
.y2_c00026{bottom:1035.947576pt;}
.y1_c00026{bottom:1063.147200pt;}
.h1_c00026{height:47.020937pt;}
.h2_c00026{height:56.156250pt;}
.h0_c00026{height:1122.666667pt;}
.w1_c00026{width:793.333333pt;}
.w0_c00026{width:793.626667pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:113.440000pt;}
.x2_c00026{left:664.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_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_628ad701e870e6b662544b06.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.095703;font-style:normal;font-weight:normal;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_e85071449ea790d0f703e214.woff2')format("woff");}.ff2_c00027{font-family:ff2_c00027;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls14_c00027{letter-spacing:-0.057600px;}
.lsd_c00027{letter-spacing:-0.048096px;}
.lsf_c00027{letter-spacing:-0.043200px;}
.ls11_c00027{letter-spacing:-0.036000px;}
.ls15_c00027{letter-spacing:-0.028800px;}
.ls10_c00027{letter-spacing:-0.014400px;}
.ls16_c00027{letter-spacing:-0.007200px;}
.lse_c00027{letter-spacing:0.000000px;}
.lsa_c00027{letter-spacing:0.007200px;}
.lsc_c00027{letter-spacing:0.014400px;}
.ls0_c00027{letter-spacing:0.021600px;}
.ls7_c00027{letter-spacing:0.028800px;}
.ls2_c00027{letter-spacing:0.036000px;}
.ls5_c00027{letter-spacing:0.043200px;}
.ls3_c00027{letter-spacing:0.050400px;}
.ls9_c00027{letter-spacing:0.057600px;}
.ls1_c00027{letter-spacing:0.064800px;}
.ls4_c00027{letter-spacing:0.079200px;}
.ls6_c00027{letter-spacing:0.100800px;}
.lsb_c00027{letter-spacing:0.108000px;}
.ls12_c00027{letter-spacing:0.115200px;}
.ls8_c00027{letter-spacing:0.136800px;}
.ls13_c00027{letter-spacing:9.720000px;}
.ls17_c00027{letter-spacing:11.253600px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00027{word-spacing:0.000000px;}
.ws0_c00027{word-spacing:0.138276px;}
.ws2_c00027{word-spacing:0.244800px;}
._10_c00027{margin-left:-11.606400px;}
._d_c00027{margin-left:-9.928800px;}
._e_c00027{margin-left:-8.647200px;}
._3_c00027{margin-left:-4.024800px;}
._6_c00027{margin-left:-2.188800px;}
._4_c00027{margin-left:-1.144800px;}
._2_c00027{width:1.468800px;}
._b_c00027{width:2.872800px;}
._5_c00027{width:3.880800px;}
._0_c00027{width:5.018400px;}
._1_c00027{width:6.264000px;}
._c_c00027{width:7.574400px;}
._a_c00027{width:8.704800px;}
._9_c00027{width:10.029600px;}
._f_c00027{width:11.131200px;}
._11_c00027{width:12.211200px;}
._7_c00027{width:19.332000px;}
._8_c00027{width:29.836800px;}
.fc0_c00027{color:rgb(0,0,0);}
.fs0_c00027{font-size:60.120000px;}
.fs1_c00027{font-size:72.000000px;}
.y0_c00027{bottom:0.000000px;}
.y6_c00027{bottom:57.360450px;}
.y5_c00027{bottom:78.060450px;}
.y25_c00027{bottom:131.790450px;}
.y24_c00027{bottom:162.840450px;}
.y23_c00027{bottom:193.890450px;}
.y22_c00027{bottom:228.090450px;}
.y21_c00027{bottom:250.320450px;}
.y20_c00027{bottom:284.790450px;}
.y1f_c00027{bottom:307.020450px;}
.y1e_c00027{bottom:350.130450px;}
.y1d_c00027{bottom:393.240450px;}
.y1c_c00027{bottom:424.380450px;}
.y1b_c00027{bottom:455.430450px;}
.y1a_c00027{bottom:486.480450px;}
.y19_c00027{bottom:517.530450px;}
.y18_c00027{bottom:560.460450px;}
.y17_c00027{bottom:591.600450px;}
.y16_c00027{bottom:622.650450px;}
.y15_c00027{bottom:653.700450px;}
.y14_c00027{bottom:684.750450px;}
.y13_c00027{bottom:727.680450px;}
.y12_c00027{bottom:758.820450px;}
.y11_c00027{bottom:789.870450px;}
.y10_c00027{bottom:820.920450px;}
.yf_c00027{bottom:851.970450px;}
.ye_c00027{bottom:894.900450px;}
.yd_c00027{bottom:926.040450px;}
.yc_c00027{bottom:957.090450px;}
.yb_c00027{bottom:988.140450px;}
.ya_c00027{bottom:1019.190450px;}
.y9_c00027{bottom:1050.240450px;}
.y8_c00027{bottom:1093.170450px;}
.y7_c00027{bottom:1124.310450px;}
.y4_c00027{bottom:1144.380657px;}
.y3_c00027{bottom:1161.660648px;}
.y2_c00027{bottom:1178.850459px;}
.y1_c00027{bottom:1196.130450px;}
.h1_c00027{height:52.898555px;}
.h2_c00027{height:63.175781px;}
.h3_c00027{height:63.351562px;}
.h0_c00027{height:1263.000000px;}
.w1_c00027{width:892.500000px;}
.w0_c00027{width:892.830000px;}
.x0_c00027{left:0.000000px;}
.x4_c00027{left:127.620000px;}
.x1_c00027{left:649.620000px;}
.x3_c00027{left:747.450000px;}
.x2_c00027{left:765.450198px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls14_c00027{letter-spacing:-0.051200pt;}
.lsd_c00027{letter-spacing:-0.042752pt;}
.lsf_c00027{letter-spacing:-0.038400pt;}
.ls11_c00027{letter-spacing:-0.032000pt;}
.ls15_c00027{letter-spacing:-0.025600pt;}
.ls10_c00027{letter-spacing:-0.012800pt;}
.ls16_c00027{letter-spacing:-0.006400pt;}
.lse_c00027{letter-spacing:0.000000pt;}
.lsa_c00027{letter-spacing:0.006400pt;}
.lsc_c00027{letter-spacing:0.012800pt;}
.ls0_c00027{letter-spacing:0.019200pt;}
.ls7_c00027{letter-spacing:0.025600pt;}
.ls2_c00027{letter-spacing:0.032000pt;}
.ls5_c00027{letter-spacing:0.038400pt;}
.ls3_c00027{letter-spacing:0.044800pt;}
.ls9_c00027{letter-spacing:0.051200pt;}
.ls1_c00027{letter-spacing:0.057600pt;}
.ls4_c00027{letter-spacing:0.070400pt;}
.ls6_c00027{letter-spacing:0.089600pt;}
.lsb_c00027{letter-spacing:0.096000pt;}
.ls12_c00027{letter-spacing:0.102400pt;}
.ls8_c00027{letter-spacing:0.121600pt;}
.ls13_c00027{letter-spacing:8.640000pt;}
.ls17_c00027{letter-spacing:10.003200pt;}
.ws1_c00027{word-spacing:0.000000pt;}
.ws0_c00027{word-spacing:0.122912pt;}
.ws2_c00027{word-spacing:0.217600pt;}
._10_c00027{margin-left:-10.316800pt;}
._d_c00027{margin-left:-8.825600pt;}
._e_c00027{margin-left:-7.686400pt;}
._3_c00027{margin-left:-3.577600pt;}
._6_c00027{margin-left:-1.945600pt;}
._4_c00027{margin-left:-1.017600pt;}
._2_c00027{width:1.305600pt;}
._b_c00027{width:2.553600pt;}
._5_c00027{width:3.449600pt;}
._0_c00027{width:4.460800pt;}
._1_c00027{width:5.568000pt;}
._c_c00027{width:6.732800pt;}
._a_c00027{width:7.737600pt;}
._9_c00027{width:8.915200pt;}
._f_c00027{width:9.894400pt;}
._11_c00027{width:10.854400pt;}
._7_c00027{width:17.184000pt;}
._8_c00027{width:26.521600pt;}
.fs0_c00027{font-size:53.440000pt;}
.fs1_c00027{font-size:64.000000pt;}
.y0_c00027{bottom:0.000000pt;}
.y6_c00027{bottom:50.987067pt;}
.y5_c00027{bottom:69.387067pt;}
.y25_c00027{bottom:117.147067pt;}
.y24_c00027{bottom:144.747067pt;}
.y23_c00027{bottom:172.347067pt;}
.y22_c00027{bottom:202.747067pt;}
.y21_c00027{bottom:222.507067pt;}
.y20_c00027{bottom:253.147067pt;}
.y1f_c00027{bottom:272.907067pt;}
.y1e_c00027{bottom:311.227067pt;}
.y1d_c00027{bottom:349.547067pt;}
.y1c_c00027{bottom:377.227067pt;}
.y1b_c00027{bottom:404.827067pt;}
.y1a_c00027{bottom:432.427067pt;}
.y19_c00027{bottom:460.027067pt;}
.y18_c00027{bottom:498.187067pt;}
.y17_c00027{bottom:525.867067pt;}
.y16_c00027{bottom:553.467067pt;}
.y15_c00027{bottom:581.067067pt;}
.y14_c00027{bottom:608.667067pt;}
.y13_c00027{bottom:646.827067pt;}
.y12_c00027{bottom:674.507067pt;}
.y11_c00027{bottom:702.107067pt;}
.y10_c00027{bottom:729.707067pt;}
.yf_c00027{bottom:757.307067pt;}
.ye_c00027{bottom:795.467067pt;}
.yd_c00027{bottom:823.147067pt;}
.yc_c00027{bottom:850.747067pt;}
.yb_c00027{bottom:878.347067pt;}
.ya_c00027{bottom:905.947067pt;}
.y9_c00027{bottom:933.547067pt;}
.y8_c00027{bottom:971.707067pt;}
.y7_c00027{bottom:999.387067pt;}
.y4_c00027{bottom:1017.227251pt;}
.y3_c00027{bottom:1032.587243pt;}
.y2_c00027{bottom:1047.867075pt;}
.y1_c00027{bottom:1063.227067pt;}
.h1_c00027{height:47.020937pt;}
.h2_c00027{height:56.156250pt;}
.h3_c00027{height:56.312500pt;}
.h0_c00027{height:1122.666667pt;}
.w1_c00027{width:793.333333pt;}
.w0_c00027{width:793.626667pt;}
.x0_c00027{left:0.000000pt;}
.x4_c00027{left:113.440000pt;}
.x1_c00027{left:577.440000pt;}
.x3_c00027{left:664.400000pt;}
.x2_c00027{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.095703;font-style:normal;font-weight:normal;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_7cc2313b2e5695e3e92b5786.woff2')format("woff");}.ff2_c00028{font-family:ff2_c00028;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00028{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls14_c00028{letter-spacing:-0.237600px;}
.lsd_c00028{letter-spacing:-0.102204px;}
.ls12_c00028{letter-spacing:-0.043200px;}
.lsf_c00028{letter-spacing:-0.036000px;}
.ls10_c00028{letter-spacing:-0.028800px;}
.ls13_c00028{letter-spacing:-0.021600px;}
.lse_c00028{letter-spacing:0.000000px;}
.ls8_c00028{letter-spacing:0.007200px;}
.ls3_c00028{letter-spacing:0.014400px;}
.ls4_c00028{letter-spacing:0.021600px;}
.ls0_c00028{letter-spacing:0.028800px;}
.ls7_c00028{letter-spacing:0.036000px;}
.ls5_c00028{letter-spacing:0.043200px;}
.lsc_c00028{letter-spacing:0.050400px;}
.ls1_c00028{letter-spacing:0.057600px;}
.ls6_c00028{letter-spacing:0.064800px;}
.lsb_c00028{letter-spacing:0.072000px;}
.ls2_c00028{letter-spacing:0.079200px;}
.lsa_c00028{letter-spacing:0.086400px;}
.ls9_c00028{letter-spacing:0.100800px;}
.ls11_c00028{letter-spacing:12.240000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00028{word-spacing:0.000000px;}
.ws0_c00028{word-spacing:0.192384px;}
._f_c00028{margin-left:-13.464000px;}
._10_c00028{margin-left:-12.240000px;}
._8_c00028{margin-left:-5.745600px;}
._7_c00028{margin-left:-4.384800px;}
._13_c00028{margin-left:-3.330864px;}
._1_c00028{margin-left:-2.217600px;}
._2_c00028{margin-left:-1.051200px;}
._0_c00028{width:1.034064px;}
._4_c00028{width:2.124000px;}
._5_c00028{width:3.160800px;}
._b_c00028{width:4.204800px;}
._14_c00028{width:5.205600px;}
._3_c00028{width:6.436800px;}
._d_c00028{width:7.876800px;}
._9_c00028{width:8.899200px;}
._a_c00028{width:10.252800px;}
._e_c00028{width:12.196800px;}
._c_c00028{width:16.718400px;}
._6_c00028{width:19.785600px;}
._11_c00028{width:37.152000px;}
._12_c00028{width:38.390400px;}
.fc1_c00028{color:rgb(0,0,0);}
.fc0_c00028{color:rgb(32,31,30);}
.fs0_c00028{font-size:60.120000px;}
.fs1_c00028{font-size:72.000000px;}
.y0_c00028{bottom:0.000000px;}
.y5_c00028{bottom:57.360450px;}
.y4_c00028{bottom:78.060450px;}
.y24_c00028{bottom:120.000450px;}
.y23_c00028{bottom:151.050450px;}
.y22_c00028{bottom:182.100450px;}
.y21_c00028{bottom:213.150450px;}
.y20_c00028{bottom:256.080450px;}
.y1f_c00028{bottom:287.220450px;}
.y1e_c00028{bottom:318.270450px;}
.y1d_c00028{bottom:349.320450px;}
.y1c_c00028{bottom:380.370450px;}
.y1b_c00028{bottom:411.420450px;}
.y1a_c00028{bottom:454.350450px;}
.y19_c00028{bottom:485.490450px;}
.y18_c00028{bottom:516.540450px;}
.y17_c00028{bottom:547.590450px;}
.y16_c00028{bottom:578.640450px;}
.y15_c00028{bottom:609.690450px;}
.y14_c00028{bottom:640.740450px;}
.y13_c00028{bottom:671.790450px;}
.y12_c00028{bottom:702.840450px;}
.y11_c00028{bottom:745.770450px;}
.y10_c00028{bottom:776.910450px;}
.yf_c00028{bottom:807.960450px;}
.ye_c00028{bottom:839.010450px;}
.yd_c00028{bottom:882.030450px;}
.yc_c00028{bottom:913.170450px;}
.yb_c00028{bottom:944.220450px;}
.ya_c00028{bottom:975.180450px;}
.y9_c00028{bottom:1006.230450px;}
.y8_c00028{bottom:1049.250450px;}
.y7_c00028{bottom:1080.390450px;}
.y6_c00028{bottom:1111.440450px;}
.y3_c00028{bottom:1132.140450px;}
.y2_c00028{bottom:1165.441023px;}
.y1_c00028{bottom:1196.040600px;}
.h1_c00028{height:52.898555px;}
.h2_c00028{height:63.175781px;}
.h0_c00028{height:1263.000000px;}
.w1_c00028{width:892.500000px;}
.w0_c00028{width:892.830000px;}
.x0_c00028{left:0.000000px;}
.x1_c00028{left:127.620000px;}
.x2_c00028{left:747.450000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls14_c00028{letter-spacing:-0.211200pt;}
.lsd_c00028{letter-spacing:-0.090848pt;}
.ls12_c00028{letter-spacing:-0.038400pt;}
.lsf_c00028{letter-spacing:-0.032000pt;}
.ls10_c00028{letter-spacing:-0.025600pt;}
.ls13_c00028{letter-spacing:-0.019200pt;}
.lse_c00028{letter-spacing:0.000000pt;}
.ls8_c00028{letter-spacing:0.006400pt;}
.ls3_c00028{letter-spacing:0.012800pt;}
.ls4_c00028{letter-spacing:0.019200pt;}
.ls0_c00028{letter-spacing:0.025600pt;}
.ls7_c00028{letter-spacing:0.032000pt;}
.ls5_c00028{letter-spacing:0.038400pt;}
.lsc_c00028{letter-spacing:0.044800pt;}
.ls1_c00028{letter-spacing:0.051200pt;}
.ls6_c00028{letter-spacing:0.057600pt;}
.lsb_c00028{letter-spacing:0.064000pt;}
.ls2_c00028{letter-spacing:0.070400pt;}
.lsa_c00028{letter-spacing:0.076800pt;}
.ls9_c00028{letter-spacing:0.089600pt;}
.ls11_c00028{letter-spacing:10.880000pt;}
.ws1_c00028{word-spacing:0.000000pt;}
.ws0_c00028{word-spacing:0.171008pt;}
._f_c00028{margin-left:-11.968000pt;}
._10_c00028{margin-left:-10.880000pt;}
._8_c00028{margin-left:-5.107200pt;}
._7_c00028{margin-left:-3.897600pt;}
._13_c00028{margin-left:-2.960768pt;}
._1_c00028{margin-left:-1.971200pt;}
._2_c00028{margin-left:-0.934400pt;}
._0_c00028{width:0.919168pt;}
._4_c00028{width:1.888000pt;}
._5_c00028{width:2.809600pt;}
._b_c00028{width:3.737600pt;}
._14_c00028{width:4.627200pt;}
._3_c00028{width:5.721600pt;}
._d_c00028{width:7.001600pt;}
._9_c00028{width:7.910400pt;}
._a_c00028{width:9.113600pt;}
._e_c00028{width:10.841600pt;}
._c_c00028{width:14.860800pt;}
._6_c00028{width:17.587200pt;}
._11_c00028{width:33.024000pt;}
._12_c00028{width:34.124800pt;}
.fs0_c00028{font-size:53.440000pt;}
.fs1_c00028{font-size:64.000000pt;}
.y0_c00028{bottom:0.000000pt;}
.y5_c00028{bottom:50.987067pt;}
.y4_c00028{bottom:69.387067pt;}
.y24_c00028{bottom:106.667067pt;}
.y23_c00028{bottom:134.267067pt;}
.y22_c00028{bottom:161.867067pt;}
.y21_c00028{bottom:189.467067pt;}
.y20_c00028{bottom:227.627067pt;}
.y1f_c00028{bottom:255.307067pt;}
.y1e_c00028{bottom:282.907067pt;}
.y1d_c00028{bottom:310.507067pt;}
.y1c_c00028{bottom:338.107067pt;}
.y1b_c00028{bottom:365.707067pt;}
.y1a_c00028{bottom:403.867067pt;}
.y19_c00028{bottom:431.547067pt;}
.y18_c00028{bottom:459.147067pt;}
.y17_c00028{bottom:486.747067pt;}
.y16_c00028{bottom:514.347067pt;}
.y15_c00028{bottom:541.947067pt;}
.y14_c00028{bottom:569.547067pt;}
.y13_c00028{bottom:597.147067pt;}
.y12_c00028{bottom:624.747067pt;}
.y11_c00028{bottom:662.907067pt;}
.y10_c00028{bottom:690.587067pt;}
.yf_c00028{bottom:718.187067pt;}
.ye_c00028{bottom:745.787067pt;}
.yd_c00028{bottom:784.027067pt;}
.yc_c00028{bottom:811.707067pt;}
.yb_c00028{bottom:839.307067pt;}
.ya_c00028{bottom:866.827067pt;}
.y9_c00028{bottom:894.427067pt;}
.y8_c00028{bottom:932.667067pt;}
.y7_c00028{bottom:960.347067pt;}
.y6_c00028{bottom:987.947067pt;}
.y3_c00028{bottom:1006.347067pt;}
.y2_c00028{bottom:1035.947576pt;}
.y1_c00028{bottom:1063.147200pt;}
.h1_c00028{height:47.020937pt;}
.h2_c00028{height:56.156250pt;}
.h0_c00028{height:1122.666667pt;}
.w1_c00028{width:793.333333pt;}
.w0_c00028{width:793.626667pt;}
.x0_c00028{left:0.000000pt;}
.x1_c00028{left:113.440000pt;}
.x2_c00028{left:664.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_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_3c5830be83abe6b08e741e01.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.095703;font-style:normal;font-weight:normal;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_ecc9599ab0591ddcbcb2f9d8.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.lsd_c00029{letter-spacing:-0.057600px;}
.lsb_c00029{letter-spacing:-0.048096px;}
.ls11_c00029{letter-spacing:-0.028800px;}
.lsf_c00029{letter-spacing:-0.021600px;}
.lse_c00029{letter-spacing:-0.014400px;}
.ls10_c00029{letter-spacing:-0.007200px;}
.lsc_c00029{letter-spacing:0.000000px;}
.ls7_c00029{letter-spacing:0.007200px;}
.ls8_c00029{letter-spacing:0.014400px;}
.ls1_c00029{letter-spacing:0.021600px;}
.ls3_c00029{letter-spacing:0.028800px;}
.ls9_c00029{letter-spacing:0.036000px;}
.ls2_c00029{letter-spacing:0.043200px;}
.ls5_c00029{letter-spacing:0.050400px;}
.ls0_c00029{letter-spacing:0.057600px;}
.lsa_c00029{letter-spacing:0.064800px;}
.ls6_c00029{letter-spacing:0.072000px;}
.ls4_c00029{letter-spacing:0.086400px;}
.ls12_c00029{letter-spacing:3.960000px;}
.ls13_c00029{letter-spacing:7.920000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00029{word-spacing:-18.014400px;}
.ws2_c00029{word-spacing:0.000000px;}
.ws1_c00029{word-spacing:0.138276px;}
.ws4_c00029{word-spacing:2.023200px;}
.ws3_c00029{word-spacing:2.167200px;}
.ws5_c00029{word-spacing:27.936000px;}
.ws6_c00029{word-spacing:28.008000px;}
._11_c00029{margin-left:-8.661600px;}
._12_c00029{margin-left:-7.092000px;}
._5_c00029{margin-left:-4.514400px;}
._6_c00029{margin-left:-3.398400px;}
._10_c00029{margin-left:-2.167200px;}
._1_c00029{margin-left:-1.036800px;}
._3_c00029{width:1.015200px;}
._b_c00029{width:2.138400px;}
._2_c00029{width:3.571200px;}
._0_c00029{width:4.622400px;}
._4_c00029{width:5.860800px;}
._8_c00029{width:7.639200px;}
._7_c00029{width:8.949600px;}
._d_c00029{width:12.643200px;}
._e_c00029{width:13.708800px;}
._f_c00029{width:15.458400px;}
._c_c00029{width:20.750400px;}
._9_c00029{width:24.436800px;}
._a_c00029{width:25.718400px;}
.fc0_c00029{color:rgb(0,0,0);}
.fs0_c00029{font-size:60.120000px;}
.fs1_c00029{font-size:72.000000px;}
.y0_c00029{bottom:0.000000px;}
.y6_c00029{bottom:57.360450px;}
.y5_c00029{bottom:78.060450px;}
.y23_c00029{bottom:206.940450px;}
.y22_c00029{bottom:238.080450px;}
.y21_c00029{bottom:281.010450px;}
.y20_c00029{bottom:312.150450px;}
.y1f_c00029{bottom:343.200450px;}
.y1e_c00029{bottom:374.250450px;}
.y1d_c00029{bottom:405.300450px;}
.y1c_c00029{bottom:448.230450px;}
.y1b_c00029{bottom:491.340450px;}
.y1a_c00029{bottom:522.480450px;}
.y19_c00029{bottom:553.530450px;}
.y18_c00029{bottom:584.580450px;}
.y17_c00029{bottom:615.630450px;}
.y16_c00029{bottom:646.680450px;}
.y15_c00029{bottom:677.640450px;}
.y14_c00029{bottom:708.690450px;}
.y13_c00029{bottom:739.740450px;}
.y12_c00029{bottom:770.700450px;}
.y11_c00029{bottom:801.840450px;}
.y10_c00029{bottom:832.890450px;}
.yf_c00029{bottom:875.910450px;}
.ye_c00029{bottom:907.050450px;}
.yd_c00029{bottom:938.100450px;}
.yc_c00029{bottom:969.150450px;}
.yb_c00029{bottom:1000.200450px;}
.ya_c00029{bottom:1031.160450px;}
.y9_c00029{bottom:1062.210450px;}
.y8_c00029{bottom:1093.260450px;}
.y7_c00029{bottom:1124.310450px;}
.y4_c00029{bottom:1144.380657px;}
.y3_c00029{bottom:1161.660648px;}
.y2_c00029{bottom:1178.850459px;}
.y1_c00029{bottom:1196.130450px;}
.h1_c00029{height:52.898555px;}
.h2_c00029{height:63.175781px;}
.h3_c00029{height:63.351562px;}
.h0_c00029{height:1263.000000px;}
.w1_c00029{width:892.500000px;}
.w0_c00029{width:892.830000px;}
.x0_c00029{left:0.000000px;}
.x4_c00029{left:127.620000px;}
.x1_c00029{left:649.620000px;}
.x3_c00029{left:747.450000px;}
.x2_c00029{left:765.450198px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.lsd_c00029{letter-spacing:-0.051200pt;}
.lsb_c00029{letter-spacing:-0.042752pt;}
.ls11_c00029{letter-spacing:-0.025600pt;}
.lsf_c00029{letter-spacing:-0.019200pt;}
.lse_c00029{letter-spacing:-0.012800pt;}
.ls10_c00029{letter-spacing:-0.006400pt;}
.lsc_c00029{letter-spacing:0.000000pt;}
.ls7_c00029{letter-spacing:0.006400pt;}
.ls8_c00029{letter-spacing:0.012800pt;}
.ls1_c00029{letter-spacing:0.019200pt;}
.ls3_c00029{letter-spacing:0.025600pt;}
.ls9_c00029{letter-spacing:0.032000pt;}
.ls2_c00029{letter-spacing:0.038400pt;}
.ls5_c00029{letter-spacing:0.044800pt;}
.ls0_c00029{letter-spacing:0.051200pt;}
.lsa_c00029{letter-spacing:0.057600pt;}
.ls6_c00029{letter-spacing:0.064000pt;}
.ls4_c00029{letter-spacing:0.076800pt;}
.ls12_c00029{letter-spacing:3.520000pt;}
.ls13_c00029{letter-spacing:7.040000pt;}
.ws0_c00029{word-spacing:-16.012800pt;}
.ws2_c00029{word-spacing:0.000000pt;}
.ws1_c00029{word-spacing:0.122912pt;}
.ws4_c00029{word-spacing:1.798400pt;}
.ws3_c00029{word-spacing:1.926400pt;}
.ws5_c00029{word-spacing:24.832000pt;}
.ws6_c00029{word-spacing:24.896000pt;}
._11_c00029{margin-left:-7.699200pt;}
._12_c00029{margin-left:-6.304000pt;}
._5_c00029{margin-left:-4.012800pt;}
._6_c00029{margin-left:-3.020800pt;}
._10_c00029{margin-left:-1.926400pt;}
._1_c00029{margin-left:-0.921600pt;}
._3_c00029{width:0.902400pt;}
._b_c00029{width:1.900800pt;}
._2_c00029{width:3.174400pt;}
._0_c00029{width:4.108800pt;}
._4_c00029{width:5.209600pt;}
._8_c00029{width:6.790400pt;}
._7_c00029{width:7.955200pt;}
._d_c00029{width:11.238400pt;}
._e_c00029{width:12.185600pt;}
._f_c00029{width:13.740800pt;}
._c_c00029{width:18.444800pt;}
._9_c00029{width:21.721600pt;}
._a_c00029{width:22.860800pt;}
.fs0_c00029{font-size:53.440000pt;}
.fs1_c00029{font-size:64.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.y6_c00029{bottom:50.987067pt;}
.y5_c00029{bottom:69.387067pt;}
.y23_c00029{bottom:183.947067pt;}
.y22_c00029{bottom:211.627067pt;}
.y21_c00029{bottom:249.787067pt;}
.y20_c00029{bottom:277.467067pt;}
.y1f_c00029{bottom:305.067067pt;}
.y1e_c00029{bottom:332.667067pt;}
.y1d_c00029{bottom:360.267067pt;}
.y1c_c00029{bottom:398.427067pt;}
.y1b_c00029{bottom:436.747067pt;}
.y1a_c00029{bottom:464.427067pt;}
.y19_c00029{bottom:492.027067pt;}
.y18_c00029{bottom:519.627067pt;}
.y17_c00029{bottom:547.227067pt;}
.y16_c00029{bottom:574.827067pt;}
.y15_c00029{bottom:602.347067pt;}
.y14_c00029{bottom:629.947067pt;}
.y13_c00029{bottom:657.547067pt;}
.y12_c00029{bottom:685.067067pt;}
.y11_c00029{bottom:712.747067pt;}
.y10_c00029{bottom:740.347067pt;}
.yf_c00029{bottom:778.587067pt;}
.ye_c00029{bottom:806.267067pt;}
.yd_c00029{bottom:833.867067pt;}
.yc_c00029{bottom:861.467067pt;}
.yb_c00029{bottom:889.067067pt;}
.ya_c00029{bottom:916.587067pt;}
.y9_c00029{bottom:944.187067pt;}
.y8_c00029{bottom:971.787067pt;}
.y7_c00029{bottom:999.387067pt;}
.y4_c00029{bottom:1017.227251pt;}
.y3_c00029{bottom:1032.587243pt;}
.y2_c00029{bottom:1047.867075pt;}
.y1_c00029{bottom:1063.227067pt;}
.h1_c00029{height:47.020937pt;}
.h2_c00029{height:56.156250pt;}
.h3_c00029{height:56.312500pt;}
.h0_c00029{height:1122.666667pt;}
.w1_c00029{width:793.333333pt;}
.w0_c00029{width:793.626667pt;}
.x0_c00029{left:0.000000pt;}
.x4_c00029{left:113.440000pt;}
.x1_c00029{left:577.440000pt;}
.x3_c00029{left:664.400000pt;}
.x2_c00029{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c9d85e4e9740880a0ff2397.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.095703;font-style:normal;font-weight:normal;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_9a42e5507a0622465deb7744.woff2')format("woff");}.ff2_c00030{font-family:ff2_c00030;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00030{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls13_c00030{letter-spacing:-0.273600px;}
.lsb_c00030{letter-spacing:-0.102204px;}
.ls14_c00030{letter-spacing:-0.050400px;}
.ls11_c00030{letter-spacing:-0.028800px;}
.ls10_c00030{letter-spacing:-0.021600px;}
.lse_c00030{letter-spacing:-0.014400px;}
.lsd_c00030{letter-spacing:-0.007200px;}
.lsc_c00030{letter-spacing:0.000000px;}
.ls7_c00030{letter-spacing:0.007200px;}
.ls2_c00030{letter-spacing:0.014400px;}
.ls12_c00030{letter-spacing:0.021600px;}
.ls6_c00030{letter-spacing:0.028800px;}
.ls4_c00030{letter-spacing:0.036000px;}
.ls3_c00030{letter-spacing:0.043200px;}
.ls5_c00030{letter-spacing:0.050400px;}
.ls9_c00030{letter-spacing:0.057600px;}
.ls0_c00030{letter-spacing:0.064800px;}
.ls8_c00030{letter-spacing:0.072000px;}
.lsa_c00030{letter-spacing:0.086400px;}
.ls1_c00030{letter-spacing:0.100800px;}
.lsf_c00030{letter-spacing:4.320000px;}
.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;}
}
.ws9_c00030{word-spacing:-3.362400px;}
.wsa_c00030{word-spacing:-3.326400px;}
.ws1_c00030{word-spacing:0.000000px;}
.ws0_c00030{word-spacing:0.192384px;}
.ws3_c00030{word-spacing:1.684800px;}
.ws2_c00030{word-spacing:1.735200px;}
.ws4_c00030{word-spacing:2.426400px;}
.ws6_c00030{word-spacing:2.534400px;}
.ws5_c00030{word-spacing:2.548800px;}
.ws8_c00030{word-spacing:15.638400px;}
.ws7_c00030{word-spacing:15.847200px;}
.wsb_c00030{word-spacing:17.604000px;}
.wsc_c00030{word-spacing:17.690400px;}
._8_c00030{margin-left:-5.061600px;}
._9_c00030{margin-left:-3.578400px;}
._d_c00030{margin-left:-2.318400px;}
._2_c00030{margin-left:-1.202400px;}
._0_c00030{width:1.034064px;}
._4_c00030{width:2.275200px;}
._5_c00030{width:3.600000px;}
._3_c00030{width:5.587200px;}
._1_c00030{width:6.775200px;}
._f_c00030{width:10.555200px;}
._10_c00030{width:11.678400px;}
._7_c00030{width:14.832000px;}
._6_c00030{width:16.185600px;}
._e_c00030{width:19.497600px;}
._a_c00030{width:21.290400px;}
._b_c00030{width:22.608000px;}
._c_c00030{width:23.745600px;}
.fc1_c00030{color:rgb(0,0,0);}
.fc0_c00030{color:rgb(32,31,30);}
.fs0_c00030{font-size:60.120000px;}
.fs1_c00030{font-size:72.000000px;}
.y0_c00030{bottom:0.000000px;}
.y5_c00030{bottom:57.360450px;}
.y4_c00030{bottom:78.060450px;}
.y22_c00030{bottom:170.130450px;}
.y21_c00030{bottom:201.090450px;}
.y20_c00030{bottom:244.110450px;}
.y1f_c00030{bottom:275.250450px;}
.y1e_c00030{bottom:306.210450px;}
.y1d_c00030{bottom:337.260450px;}
.y1c_c00030{bottom:368.310450px;}
.y1b_c00030{bottom:399.450450px;}
.y1a_c00030{bottom:442.380450px;}
.y19_c00030{bottom:473.520450px;}
.y18_c00030{bottom:504.570450px;}
.y17_c00030{bottom:547.500450px;}
.y16_c00030{bottom:578.640450px;}
.y15_c00030{bottom:609.690450px;}
.y14_c00030{bottom:640.740450px;}
.y13_c00030{bottom:671.790450px;}
.y12_c00030{bottom:702.840450px;}
.y11_c00030{bottom:745.770450px;}
.y10_c00030{bottom:776.910450px;}
.yf_c00030{bottom:807.960450px;}
.ye_c00030{bottom:850.980450px;}
.yd_c00030{bottom:882.120450px;}
.yc_c00030{bottom:913.170450px;}
.yb_c00030{bottom:944.220450px;}
.ya_c00030{bottom:975.180450px;}
.y9_c00030{bottom:1006.230450px;}
.y8_c00030{bottom:1049.250450px;}
.y7_c00030{bottom:1080.390450px;}
.y6_c00030{bottom:1111.440450px;}
.y3_c00030{bottom:1132.140450px;}
.y2_c00030{bottom:1165.441023px;}
.y1_c00030{bottom:1196.040600px;}
.h1_c00030{height:52.898555px;}
.h2_c00030{height:63.175781px;}
.h3_c00030{height:63.351562px;}
.h0_c00030{height:1263.000000px;}
.w1_c00030{width:892.500000px;}
.w0_c00030{width:892.830000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:127.620000px;}
.x2_c00030{left:747.450000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls13_c00030{letter-spacing:-0.243200pt;}
.lsb_c00030{letter-spacing:-0.090848pt;}
.ls14_c00030{letter-spacing:-0.044800pt;}
.ls11_c00030{letter-spacing:-0.025600pt;}
.ls10_c00030{letter-spacing:-0.019200pt;}
.lse_c00030{letter-spacing:-0.012800pt;}
.lsd_c00030{letter-spacing:-0.006400pt;}
.lsc_c00030{letter-spacing:0.000000pt;}
.ls7_c00030{letter-spacing:0.006400pt;}
.ls2_c00030{letter-spacing:0.012800pt;}
.ls12_c00030{letter-spacing:0.019200pt;}
.ls6_c00030{letter-spacing:0.025600pt;}
.ls4_c00030{letter-spacing:0.032000pt;}
.ls3_c00030{letter-spacing:0.038400pt;}
.ls5_c00030{letter-spacing:0.044800pt;}
.ls9_c00030{letter-spacing:0.051200pt;}
.ls0_c00030{letter-spacing:0.057600pt;}
.ls8_c00030{letter-spacing:0.064000pt;}
.lsa_c00030{letter-spacing:0.076800pt;}
.ls1_c00030{letter-spacing:0.089600pt;}
.lsf_c00030{letter-spacing:3.840000pt;}
.ws9_c00030{word-spacing:-2.988800pt;}
.wsa_c00030{word-spacing:-2.956800pt;}
.ws1_c00030{word-spacing:0.000000pt;}
.ws0_c00030{word-spacing:0.171008pt;}
.ws3_c00030{word-spacing:1.497600pt;}
.ws2_c00030{word-spacing:1.542400pt;}
.ws4_c00030{word-spacing:2.156800pt;}
.ws6_c00030{word-spacing:2.252800pt;}
.ws5_c00030{word-spacing:2.265600pt;}
.ws8_c00030{word-spacing:13.900800pt;}
.ws7_c00030{word-spacing:14.086400pt;}
.wsb_c00030{word-spacing:15.648000pt;}
.wsc_c00030{word-spacing:15.724800pt;}
._8_c00030{margin-left:-4.499200pt;}
._9_c00030{margin-left:-3.180800pt;}
._d_c00030{margin-left:-2.060800pt;}
._2_c00030{margin-left:-1.068800pt;}
._0_c00030{width:0.919168pt;}
._4_c00030{width:2.022400pt;}
._5_c00030{width:3.200000pt;}
._3_c00030{width:4.966400pt;}
._1_c00030{width:6.022400pt;}
._f_c00030{width:9.382400pt;}
._10_c00030{width:10.380800pt;}
._7_c00030{width:13.184000pt;}
._6_c00030{width:14.387200pt;}
._e_c00030{width:17.331200pt;}
._a_c00030{width:18.924800pt;}
._b_c00030{width:20.096000pt;}
._c_c00030{width:21.107200pt;}
.fs0_c00030{font-size:53.440000pt;}
.fs1_c00030{font-size:64.000000pt;}
.y0_c00030{bottom:0.000000pt;}
.y5_c00030{bottom:50.987067pt;}
.y4_c00030{bottom:69.387067pt;}
.y22_c00030{bottom:151.227067pt;}
.y21_c00030{bottom:178.747067pt;}
.y20_c00030{bottom:216.987067pt;}
.y1f_c00030{bottom:244.667067pt;}
.y1e_c00030{bottom:272.187067pt;}
.y1d_c00030{bottom:299.787067pt;}
.y1c_c00030{bottom:327.387067pt;}
.y1b_c00030{bottom:355.067067pt;}
.y1a_c00030{bottom:393.227067pt;}
.y19_c00030{bottom:420.907067pt;}
.y18_c00030{bottom:448.507067pt;}
.y17_c00030{bottom:486.667067pt;}
.y16_c00030{bottom:514.347067pt;}
.y15_c00030{bottom:541.947067pt;}
.y14_c00030{bottom:569.547067pt;}
.y13_c00030{bottom:597.147067pt;}
.y12_c00030{bottom:624.747067pt;}
.y11_c00030{bottom:662.907067pt;}
.y10_c00030{bottom:690.587067pt;}
.yf_c00030{bottom:718.187067pt;}
.ye_c00030{bottom:756.427067pt;}
.yd_c00030{bottom:784.107067pt;}
.yc_c00030{bottom:811.707067pt;}
.yb_c00030{bottom:839.307067pt;}
.ya_c00030{bottom:866.827067pt;}
.y9_c00030{bottom:894.427067pt;}
.y8_c00030{bottom:932.667067pt;}
.y7_c00030{bottom:960.347067pt;}
.y6_c00030{bottom:987.947067pt;}
.y3_c00030{bottom:1006.347067pt;}
.y2_c00030{bottom:1035.947576pt;}
.y1_c00030{bottom:1063.147200pt;}
.h1_c00030{height:47.020937pt;}
.h2_c00030{height:56.156250pt;}
.h3_c00030{height:56.312500pt;}
.h0_c00030{height:1122.666667pt;}
.w1_c00030{width:793.333333pt;}
.w0_c00030{width:793.626667pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:113.440000pt;}
.x2_c00030{left:664.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.095703;font-style:normal;font-weight:normal;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_c2d4c3b54ae9264db0b9d5b2.woff2')format("woff");}.ff2_c00031{font-family:ff2_c00031;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls16_c00031{letter-spacing:-0.201600px;}
.ls13_c00031{letter-spacing:-0.079200px;}
.ls12_c00031{letter-spacing:-0.050400px;}
.lsd_c00031{letter-spacing:-0.048096px;}
.ls11_c00031{letter-spacing:-0.043200px;}
.ls14_c00031{letter-spacing:-0.036000px;}
.ls15_c00031{letter-spacing:-0.021600px;}
.lsf_c00031{letter-spacing:-0.014400px;}
.lse_c00031{letter-spacing:0.000000px;}
.ls1_c00031{letter-spacing:0.007200px;}
.ls0_c00031{letter-spacing:0.014400px;}
.ls3_c00031{letter-spacing:0.021600px;}
.ls2_c00031{letter-spacing:0.028800px;}
.ls7_c00031{letter-spacing:0.036000px;}
.ls6_c00031{letter-spacing:0.043200px;}
.ls4_c00031{letter-spacing:0.050400px;}
.lsb_c00031{letter-spacing:0.057600px;}
.lsa_c00031{letter-spacing:0.064800px;}
.ls9_c00031{letter-spacing:0.072000px;}
.ls5_c00031{letter-spacing:0.079200px;}
.ls8_c00031{letter-spacing:0.086400px;}
.lsc_c00031{letter-spacing:0.100800px;}
.ls10_c00031{letter-spacing:20.880000px;}
.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;}
}
.ws1_c00031{word-spacing:0.000000px;}
.ws0_c00031{word-spacing:0.138276px;}
._2_c00031{margin-left:-21.038400px;}
._3_c00031{margin-left:-19.771200px;}
._8_c00031{margin-left:-4.564800px;}
._9_c00031{margin-left:-3.398400px;}
._b_c00031{margin-left:-2.318400px;}
._1_c00031{margin-left:-1.281600px;}
._7_c00031{width:1.339200px;}
._0_c00031{width:2.505600px;}
._e_c00031{width:3.823200px;}
._10_c00031{width:4.852800px;}
._a_c00031{width:6.796800px;}
._c_c00031{width:8.330400px;}
._f_c00031{width:9.446400px;}
._6_c00031{width:11.138400px;}
._d_c00031{width:13.305600px;}
._5_c00031{width:20.404800px;}
._4_c00031{width:21.441600px;}
.fc0_c00031{color:rgb(0,0,0);}
.fs0_c00031{font-size:60.120000px;}
.fs1_c00031{font-size:72.000000px;}
.y0_c00031{bottom:0.000000px;}
.y6_c00031{bottom:57.360450px;}
.y5_c00031{bottom:78.060450px;}
.y25_c00031{bottom:144.840450px;}
.y24_c00031{bottom:175.980450px;}
.y23_c00031{bottom:207.030450px;}
.y22_c00031{bottom:238.080450px;}
.y21_c00031{bottom:269.130450px;}
.y20_c00031{bottom:300.180450px;}
.y1f_c00031{bottom:331.230450px;}
.y1e_c00031{bottom:362.280450px;}
.y1d_c00031{bottom:393.330450px;}
.y1c_c00031{bottom:424.380450px;}
.y1b_c00031{bottom:455.430450px;}
.y1a_c00031{bottom:486.480450px;}
.y19_c00031{bottom:517.530450px;}
.y18_c00031{bottom:560.460450px;}
.y17_c00031{bottom:591.600450px;}
.y16_c00031{bottom:622.650450px;}
.y15_c00031{bottom:653.700450px;}
.y14_c00031{bottom:684.750450px;}
.y13_c00031{bottom:727.680450px;}
.y12_c00031{bottom:758.820450px;}
.y11_c00031{bottom:789.870450px;}
.y10_c00031{bottom:820.920450px;}
.yf_c00031{bottom:851.970450px;}
.ye_c00031{bottom:894.900450px;}
.yd_c00031{bottom:926.040450px;}
.yc_c00031{bottom:957.090450px;}
.yb_c00031{bottom:988.140450px;}
.ya_c00031{bottom:1019.190450px;}
.y9_c00031{bottom:1050.240450px;}
.y8_c00031{bottom:1093.170450px;}
.y7_c00031{bottom:1124.310450px;}
.y4_c00031{bottom:1144.380657px;}
.y3_c00031{bottom:1161.660648px;}
.y2_c00031{bottom:1178.850459px;}
.y1_c00031{bottom:1196.130450px;}
.h1_c00031{height:52.898555px;}
.h2_c00031{height:63.175781px;}
.h0_c00031{height:1263.000000px;}
.w1_c00031{width:892.500000px;}
.w0_c00031{width:892.830000px;}
.x0_c00031{left:0.000000px;}
.x4_c00031{left:127.620000px;}
.x1_c00031{left:649.620000px;}
.x3_c00031{left:747.450000px;}
.x2_c00031{left:765.450198px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls16_c00031{letter-spacing:-0.179200pt;}
.ls13_c00031{letter-spacing:-0.070400pt;}
.ls12_c00031{letter-spacing:-0.044800pt;}
.lsd_c00031{letter-spacing:-0.042752pt;}
.ls11_c00031{letter-spacing:-0.038400pt;}
.ls14_c00031{letter-spacing:-0.032000pt;}
.ls15_c00031{letter-spacing:-0.019200pt;}
.lsf_c00031{letter-spacing:-0.012800pt;}
.lse_c00031{letter-spacing:0.000000pt;}
.ls1_c00031{letter-spacing:0.006400pt;}
.ls0_c00031{letter-spacing:0.012800pt;}
.ls3_c00031{letter-spacing:0.019200pt;}
.ls2_c00031{letter-spacing:0.025600pt;}
.ls7_c00031{letter-spacing:0.032000pt;}
.ls6_c00031{letter-spacing:0.038400pt;}
.ls4_c00031{letter-spacing:0.044800pt;}
.lsb_c00031{letter-spacing:0.051200pt;}
.lsa_c00031{letter-spacing:0.057600pt;}
.ls9_c00031{letter-spacing:0.064000pt;}
.ls5_c00031{letter-spacing:0.070400pt;}
.ls8_c00031{letter-spacing:0.076800pt;}
.lsc_c00031{letter-spacing:0.089600pt;}
.ls10_c00031{letter-spacing:18.560000pt;}
.ws1_c00031{word-spacing:0.000000pt;}
.ws0_c00031{word-spacing:0.122912pt;}
._2_c00031{margin-left:-18.700800pt;}
._3_c00031{margin-left:-17.574400pt;}
._8_c00031{margin-left:-4.057600pt;}
._9_c00031{margin-left:-3.020800pt;}
._b_c00031{margin-left:-2.060800pt;}
._1_c00031{margin-left:-1.139200pt;}
._7_c00031{width:1.190400pt;}
._0_c00031{width:2.227200pt;}
._e_c00031{width:3.398400pt;}
._10_c00031{width:4.313600pt;}
._a_c00031{width:6.041600pt;}
._c_c00031{width:7.404800pt;}
._f_c00031{width:8.396800pt;}
._6_c00031{width:9.900800pt;}
._d_c00031{width:11.827200pt;}
._5_c00031{width:18.137600pt;}
._4_c00031{width:19.059200pt;}
.fs0_c00031{font-size:53.440000pt;}
.fs1_c00031{font-size:64.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y6_c00031{bottom:50.987067pt;}
.y5_c00031{bottom:69.387067pt;}
.y25_c00031{bottom:128.747067pt;}
.y24_c00031{bottom:156.427067pt;}
.y23_c00031{bottom:184.027067pt;}
.y22_c00031{bottom:211.627067pt;}
.y21_c00031{bottom:239.227067pt;}
.y20_c00031{bottom:266.827067pt;}
.y1f_c00031{bottom:294.427067pt;}
.y1e_c00031{bottom:322.027067pt;}
.y1d_c00031{bottom:349.627067pt;}
.y1c_c00031{bottom:377.227067pt;}
.y1b_c00031{bottom:404.827067pt;}
.y1a_c00031{bottom:432.427067pt;}
.y19_c00031{bottom:460.027067pt;}
.y18_c00031{bottom:498.187067pt;}
.y17_c00031{bottom:525.867067pt;}
.y16_c00031{bottom:553.467067pt;}
.y15_c00031{bottom:581.067067pt;}
.y14_c00031{bottom:608.667067pt;}
.y13_c00031{bottom:646.827067pt;}
.y12_c00031{bottom:674.507067pt;}
.y11_c00031{bottom:702.107067pt;}
.y10_c00031{bottom:729.707067pt;}
.yf_c00031{bottom:757.307067pt;}
.ye_c00031{bottom:795.467067pt;}
.yd_c00031{bottom:823.147067pt;}
.yc_c00031{bottom:850.747067pt;}
.yb_c00031{bottom:878.347067pt;}
.ya_c00031{bottom:905.947067pt;}
.y9_c00031{bottom:933.547067pt;}
.y8_c00031{bottom:971.707067pt;}
.y7_c00031{bottom:999.387067pt;}
.y4_c00031{bottom:1017.227251pt;}
.y3_c00031{bottom:1032.587243pt;}
.y2_c00031{bottom:1047.867075pt;}
.y1_c00031{bottom:1063.227067pt;}
.h1_c00031{height:47.020937pt;}
.h2_c00031{height:56.156250pt;}
.h0_c00031{height:1122.666667pt;}
.w1_c00031{width:793.333333pt;}
.w0_c00031{width:793.626667pt;}
.x0_c00031{left:0.000000pt;}
.x4_c00031{left:113.440000pt;}
.x1_c00031{left:577.440000pt;}
.x3_c00031{left:664.400000pt;}
.x2_c00031{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3419cf3d4a9dd67686b9a663.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.095703;font-style:normal;font-weight:normal;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_0b4e21983cbd33e89dc6dc8e.woff2')format("woff");}.ff2_c00032{font-family:ff2_c00032;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00032{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.lsf_c00032{letter-spacing:-0.102204px;}
.ls12_c00032{letter-spacing:-0.028800px;}
.ls11_c00032{letter-spacing:-0.014400px;}
.ls14_c00032{letter-spacing:-0.007200px;}
.ls17_c00032{letter-spacing:-0.005400px;}
.ls10_c00032{letter-spacing:0.000000px;}
.lse_c00032{letter-spacing:0.005400px;}
.lsc_c00032{letter-spacing:0.007200px;}
.ls15_c00032{letter-spacing:0.010800px;}
.ls4_c00032{letter-spacing:0.014400px;}
.ls16_c00032{letter-spacing:0.016200px;}
.ls0_c00032{letter-spacing:0.021600px;}
.lsd_c00032{letter-spacing:0.027000px;}
.lsb_c00032{letter-spacing:0.028800px;}
.ls7_c00032{letter-spacing:0.036000px;}
.ls8_c00032{letter-spacing:0.043200px;}
.ls9_c00032{letter-spacing:0.050400px;}
.ls1_c00032{letter-spacing:0.064800px;}
.ls3_c00032{letter-spacing:0.072000px;}
.ls5_c00032{letter-spacing:0.079200px;}
.lsa_c00032{letter-spacing:0.086400px;}
.ls6_c00032{letter-spacing:0.093600px;}
.ls2_c00032{letter-spacing:0.151200px;}
.ls13_c00032{letter-spacing:2.520000px;}
.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;}
}
.ws1_c00032{word-spacing:-18.007200px;}
.ws0_c00032{word-spacing:-17.985600px;}
.ws2_c00032{word-spacing:-13.527000px;}
.ws8_c00032{word-spacing:-0.007200px;}
.ws4_c00032{word-spacing:0.000000px;}
.ws7_c00032{word-spacing:0.007200px;}
.wsa_c00032{word-spacing:0.178200px;}
.ws3_c00032{word-spacing:0.192384px;}
.ws6_c00032{word-spacing:0.633600px;}
.ws5_c00032{word-spacing:0.676800px;}
.ws9_c00032{word-spacing:13.494600px;}
._14_c00032{margin-left:-3.076128px;}
._c_c00032{margin-left:-2.059200px;}
._2_c00032{margin-left:-1.051200px;}
._0_c00032{width:1.034064px;}
._9_c00032{width:2.851200px;}
._8_c00032{width:3.945600px;}
._7_c00032{width:5.097600px;}
._6_c00032{width:6.098400px;}
._d_c00032{width:7.538400px;}
._e_c00032{width:9.273600px;}
._12_c00032{width:12.319200px;}
._13_c00032{width:13.449600px;}
._3_c00032{width:14.652000px;}
._1_c00032{width:15.818400px;}
._b_c00032{width:19.058400px;}
._4_c00032{width:21.362400px;}
._5_c00032{width:22.723200px;}
._a_c00032{width:24.084000px;}
._11_c00032{width:54.345600px;}
._f_c00032{width:57.196800px;}
._10_c00032{width:58.392000px;}
._15_c00032{width:1296.000000px;}
.fc3_c00032{color:rgb(5,99,193);}
.fc2_c00032{color:rgb(68,84,106);}
.fc1_c00032{color:rgb(0,0,0);}
.fc0_c00032{color:rgb(32,31,30);}
.fs2_c00032{font-size:54.000000px;}
.fs0_c00032{font-size:60.120000px;}
.fs1_c00032{font-size:72.000000px;}
.y0_c00032{bottom:0.000000px;}
.y1f_c00032{bottom:3.240450px;}
.y5_c00032{bottom:57.360450px;}
.y4_c00032{bottom:78.060450px;}
.y1d_c00032{bottom:153.660450px;}
.y1c_c00032{bottom:192.630450px;}
.y1b_c00032{bottom:445.710450px;}
.y1a_c00032{bottom:466.410450px;}
.y19_c00032{bottom:509.430450px;}
.y18_c00032{bottom:540.570450px;}
.y17_c00032{bottom:571.620450px;}
.y16_c00032{bottom:602.670450px;}
.y23_c00032{bottom:622.020900px;}
.y15_c00032{bottom:633.720450px;}
.y22_c00032{bottom:637.590450px;}
.y21_c00032{bottom:653.070900px;}
.y14_c00032{bottom:664.770450px;}
.y1e_c00032{bottom:665.400000px;}
.y20_c00032{bottom:668.640450px;}
.y13_c00032{bottom:695.820450px;}
.y12_c00032{bottom:726.870450px;}
.y11_c00032{bottom:757.920450px;}
.y10_c00032{bottom:788.970450px;}
.yf_c00032{bottom:820.020450px;}
.ye_c00032{bottom:851.070450px;}
.yd_c00032{bottom:882.120450px;}
.yc_c00032{bottom:913.170450px;}
.yb_c00032{bottom:956.100450px;}
.y26_c00032{bottom:956.190000px;}
.y24_c00032{bottom:968.430000px;}
.y25_c00032{bottom:971.670450px;}
.ya_c00032{bottom:987.240450px;}
.y9_c00032{bottom:1018.290450px;}
.y8_c00032{bottom:1049.340450px;}
.y7_c00032{bottom:1080.390450px;}
.y6_c00032{bottom:1111.440450px;}
.y3_c00032{bottom:1132.140450px;}
.y2_c00032{bottom:1165.441023px;}
.y1_c00032{bottom:1196.040600px;}
.h4_c00032{height:15.300000px;}
.h5_c00032{height:47.513672px;}
.h1_c00032{height:52.898555px;}
.h2_c00032{height:63.175781px;}
.h6_c00032{height:63.349762px;}
.h3_c00032{height:63.351562px;}
.h0_c00032{height:1263.000000px;}
.w2_c00032{width:45.360000px;}
.w3_c00032{width:54.000000px;}
.w4_c00032{width:149.400000px;}
.w1_c00032{width:892.500000px;}
.w0_c00032{width:892.830000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:127.620000px;}
.x6_c00032{left:131.670000px;}
.x5_c00032{left:135.900000px;}
.x7_c00032{left:187.650000px;}
.x8_c00032{left:196.200000px;}
.x3_c00032{left:350.550000px;}
.x4_c00032{left:402.120000px;}
.x2_c00032{left:747.450000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.lsf_c00032{letter-spacing:-0.090848pt;}
.ls12_c00032{letter-spacing:-0.025600pt;}
.ls11_c00032{letter-spacing:-0.012800pt;}
.ls14_c00032{letter-spacing:-0.006400pt;}
.ls17_c00032{letter-spacing:-0.004800pt;}
.ls10_c00032{letter-spacing:0.000000pt;}
.lse_c00032{letter-spacing:0.004800pt;}
.lsc_c00032{letter-spacing:0.006400pt;}
.ls15_c00032{letter-spacing:0.009600pt;}
.ls4_c00032{letter-spacing:0.012800pt;}
.ls16_c00032{letter-spacing:0.014400pt;}
.ls0_c00032{letter-spacing:0.019200pt;}
.lsd_c00032{letter-spacing:0.024000pt;}
.lsb_c00032{letter-spacing:0.025600pt;}
.ls7_c00032{letter-spacing:0.032000pt;}
.ls8_c00032{letter-spacing:0.038400pt;}
.ls9_c00032{letter-spacing:0.044800pt;}
.ls1_c00032{letter-spacing:0.057600pt;}
.ls3_c00032{letter-spacing:0.064000pt;}
.ls5_c00032{letter-spacing:0.070400pt;}
.lsa_c00032{letter-spacing:0.076800pt;}
.ls6_c00032{letter-spacing:0.083200pt;}
.ls2_c00032{letter-spacing:0.134400pt;}
.ls13_c00032{letter-spacing:2.240000pt;}
.ws1_c00032{word-spacing:-16.006400pt;}
.ws0_c00032{word-spacing:-15.987200pt;}
.ws2_c00032{word-spacing:-12.024000pt;}
.ws8_c00032{word-spacing:-0.006400pt;}
.ws4_c00032{word-spacing:0.000000pt;}
.ws7_c00032{word-spacing:0.006400pt;}
.wsa_c00032{word-spacing:0.158400pt;}
.ws3_c00032{word-spacing:0.171008pt;}
.ws6_c00032{word-spacing:0.563200pt;}
.ws5_c00032{word-spacing:0.601600pt;}
.ws9_c00032{word-spacing:11.995200pt;}
._14_c00032{margin-left:-2.734336pt;}
._c_c00032{margin-left:-1.830400pt;}
._2_c00032{margin-left:-0.934400pt;}
._0_c00032{width:0.919168pt;}
._9_c00032{width:2.534400pt;}
._8_c00032{width:3.507200pt;}
._7_c00032{width:4.531200pt;}
._6_c00032{width:5.420800pt;}
._d_c00032{width:6.700800pt;}
._e_c00032{width:8.243200pt;}
._12_c00032{width:10.950400pt;}
._13_c00032{width:11.955200pt;}
._3_c00032{width:13.024000pt;}
._1_c00032{width:14.060800pt;}
._b_c00032{width:16.940800pt;}
._4_c00032{width:18.988800pt;}
._5_c00032{width:20.198400pt;}
._a_c00032{width:21.408000pt;}
._11_c00032{width:48.307200pt;}
._f_c00032{width:50.841600pt;}
._10_c00032{width:51.904000pt;}
._15_c00032{width:1152.000000pt;}
.fs2_c00032{font-size:48.000000pt;}
.fs0_c00032{font-size:53.440000pt;}
.fs1_c00032{font-size:64.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y1f_c00032{bottom:2.880400pt;}
.y5_c00032{bottom:50.987067pt;}
.y4_c00032{bottom:69.387067pt;}
.y1d_c00032{bottom:136.587067pt;}
.y1c_c00032{bottom:171.227067pt;}
.y1b_c00032{bottom:396.187067pt;}
.y1a_c00032{bottom:414.587067pt;}
.y19_c00032{bottom:452.827067pt;}
.y18_c00032{bottom:480.507067pt;}
.y17_c00032{bottom:508.107067pt;}
.y16_c00032{bottom:535.707067pt;}
.y23_c00032{bottom:552.907467pt;}
.y15_c00032{bottom:563.307067pt;}
.y22_c00032{bottom:566.747067pt;}
.y21_c00032{bottom:580.507467pt;}
.y14_c00032{bottom:590.907067pt;}
.y1e_c00032{bottom:591.466667pt;}
.y20_c00032{bottom:594.347067pt;}
.y13_c00032{bottom:618.507067pt;}
.y12_c00032{bottom:646.107067pt;}
.y11_c00032{bottom:673.707067pt;}
.y10_c00032{bottom:701.307067pt;}
.yf_c00032{bottom:728.907067pt;}
.ye_c00032{bottom:756.507067pt;}
.yd_c00032{bottom:784.107067pt;}
.yc_c00032{bottom:811.707067pt;}
.yb_c00032{bottom:849.867067pt;}
.y26_c00032{bottom:849.946667pt;}
.y24_c00032{bottom:860.826667pt;}
.y25_c00032{bottom:863.707067pt;}
.ya_c00032{bottom:877.547067pt;}
.y9_c00032{bottom:905.147067pt;}
.y8_c00032{bottom:932.747067pt;}
.y7_c00032{bottom:960.347067pt;}
.y6_c00032{bottom:987.947067pt;}
.y3_c00032{bottom:1006.347067pt;}
.y2_c00032{bottom:1035.947576pt;}
.y1_c00032{bottom:1063.147200pt;}
.h4_c00032{height:13.600000pt;}
.h5_c00032{height:42.234375pt;}
.h1_c00032{height:47.020937pt;}
.h2_c00032{height:56.156250pt;}
.h6_c00032{height:56.310900pt;}
.h3_c00032{height:56.312500pt;}
.h0_c00032{height:1122.666667pt;}
.w2_c00032{width:40.320000pt;}
.w3_c00032{width:48.000000pt;}
.w4_c00032{width:132.800000pt;}
.w1_c00032{width:793.333333pt;}
.w0_c00032{width:793.626667pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:113.440000pt;}
.x6_c00032{left:117.040000pt;}
.x5_c00032{left:120.800000pt;}
.x7_c00032{left:166.800000pt;}
.x8_c00032{left:174.400000pt;}
.x3_c00032{left:311.600000pt;}
.x4_c00032{left:357.440000pt;}
.x2_c00032{left:664.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_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_a97c7e0de06a03db708dfb9b.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.095703;font-style:normal;font-weight:normal;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_95e61269ea2be0651b9f52e7.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.lse_c00033{letter-spacing:-0.048096px;}
.ls11_c00033{letter-spacing:-0.036000px;}
.ls13_c00033{letter-spacing:-0.021600px;}
.ls12_c00033{letter-spacing:-0.014400px;}
.ls10_c00033{letter-spacing:-0.007200px;}
.lsf_c00033{letter-spacing:0.000000px;}
.ls0_c00033{letter-spacing:0.007200px;}
.lsb_c00033{letter-spacing:0.014400px;}
.lsa_c00033{letter-spacing:0.021600px;}
.ls1_c00033{letter-spacing:0.028800px;}
.ls3_c00033{letter-spacing:0.036000px;}
.ls8_c00033{letter-spacing:0.043200px;}
.ls9_c00033{letter-spacing:0.050400px;}
.ls6_c00033{letter-spacing:0.057600px;}
.ls7_c00033{letter-spacing:0.064800px;}
.lsd_c00033{letter-spacing:0.072000px;}
.ls4_c00033{letter-spacing:0.086400px;}
.ls5_c00033{letter-spacing:0.100800px;}
.lsc_c00033{letter-spacing:0.115200px;}
.ls2_c00033{letter-spacing:4.320000px;}
.ls14_c00033{letter-spacing:11.520000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:-17.992800px;}
.ws3_c00033{word-spacing:-0.007200px;}
.ws2_c00033{word-spacing:0.000000px;}
.ws1_c00033{word-spacing:0.138276px;}
._c_c00033{margin-left:-12.513600px;}
._b_c00033{margin-left:-11.462400px;}
._d_c00033{margin-left:-10.425600px;}
._10_c00033{margin-left:-4.456800px;}
._f_c00033{margin-left:-3.304800px;}
._11_c00033{margin-left:-2.275200px;}
._1_c00033{margin-left:-1.152000px;}
._7_c00033{width:1.044000px;}
._a_c00033{width:2.275200px;}
._0_c00033{width:4.291200px;}
._5_c00033{width:5.486400px;}
._e_c00033{width:8.942400px;}
._9_c00033{width:10.173600px;}
._3_c00033{width:11.361600px;}
._2_c00033{width:12.564000px;}
._12_c00033{width:13.644000px;}
._8_c00033{width:15.076800px;}
._6_c00033{width:21.528000px;}
._4_c00033{width:30.571200px;}
.fc2_c00033{color:rgb(5,99,193);}
.fc1_c00033{color:rgb(68,84,106);}
.fc0_c00033{color:rgb(0,0,0);}
.fs0_c00033{font-size:60.120000px;}
.fs1_c00033{font-size:72.000000px;}
.y0_c00033{bottom:0.000000px;}
.y6_c00033{bottom:57.360450px;}
.y5_c00033{bottom:78.060450px;}
.y1f_c00033{bottom:333.570450px;}
.y1e_c00033{bottom:376.590450px;}
.y1d_c00033{bottom:407.730450px;}
.y1c_c00033{bottom:438.780450px;}
.y1b_c00033{bottom:469.830450px;}
.y1a_c00033{bottom:500.880450px;}
.y19_c00033{bottom:543.810450px;}
.y18_c00033{bottom:574.950450px;}
.y17_c00033{bottom:606.000450px;}
.y16_c00033{bottom:648.930450px;}
.y15_c00033{bottom:680.070450px;}
.y14_c00033{bottom:711.120450px;}
.y13_c00033{bottom:742.170450px;}
.y12_c00033{bottom:773.220450px;}
.y11_c00033{bottom:804.270450px;}
.y10_c00033{bottom:835.320450px;}
.yf_c00033{bottom:878.250450px;}
.ye_c00033{bottom:909.390450px;}
.yd_c00033{bottom:940.440450px;}
.yc_c00033{bottom:971.490450px;}
.yb_c00033{bottom:1002.540450px;}
.ya_c00033{bottom:1033.590450px;}
.y9_c00033{bottom:1067.880450px;}
.y8_c00033{bottom:1103.520450px;}
.y7_c00033{bottom:1124.220450px;}
.y4_c00033{bottom:1144.380657px;}
.y3_c00033{bottom:1161.660648px;}
.y2_c00033{bottom:1178.850459px;}
.y1_c00033{bottom:1196.130450px;}
.h1_c00033{height:52.898555px;}
.h2_c00033{height:63.175781px;}
.h3_c00033{height:63.351562px;}
.h0_c00033{height:1263.000000px;}
.w1_c00033{width:892.500000px;}
.w0_c00033{width:892.830000px;}
.x0_c00033{left:0.000000px;}
.x4_c00033{left:127.620000px;}
.x1_c00033{left:649.620000px;}
.x3_c00033{left:747.450000px;}
.x2_c00033{left:765.450198px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.lse_c00033{letter-spacing:-0.042752pt;}
.ls11_c00033{letter-spacing:-0.032000pt;}
.ls13_c00033{letter-spacing:-0.019200pt;}
.ls12_c00033{letter-spacing:-0.012800pt;}
.ls10_c00033{letter-spacing:-0.006400pt;}
.lsf_c00033{letter-spacing:0.000000pt;}
.ls0_c00033{letter-spacing:0.006400pt;}
.lsb_c00033{letter-spacing:0.012800pt;}
.lsa_c00033{letter-spacing:0.019200pt;}
.ls1_c00033{letter-spacing:0.025600pt;}
.ls3_c00033{letter-spacing:0.032000pt;}
.ls8_c00033{letter-spacing:0.038400pt;}
.ls9_c00033{letter-spacing:0.044800pt;}
.ls6_c00033{letter-spacing:0.051200pt;}
.ls7_c00033{letter-spacing:0.057600pt;}
.lsd_c00033{letter-spacing:0.064000pt;}
.ls4_c00033{letter-spacing:0.076800pt;}
.ls5_c00033{letter-spacing:0.089600pt;}
.lsc_c00033{letter-spacing:0.102400pt;}
.ls2_c00033{letter-spacing:3.840000pt;}
.ls14_c00033{letter-spacing:10.240000pt;}
.ws0_c00033{word-spacing:-15.993600pt;}
.ws3_c00033{word-spacing:-0.006400pt;}
.ws2_c00033{word-spacing:0.000000pt;}
.ws1_c00033{word-spacing:0.122912pt;}
._c_c00033{margin-left:-11.123200pt;}
._b_c00033{margin-left:-10.188800pt;}
._d_c00033{margin-left:-9.267200pt;}
._10_c00033{margin-left:-3.961600pt;}
._f_c00033{margin-left:-2.937600pt;}
._11_c00033{margin-left:-2.022400pt;}
._1_c00033{margin-left:-1.024000pt;}
._7_c00033{width:0.928000pt;}
._a_c00033{width:2.022400pt;}
._0_c00033{width:3.814400pt;}
._5_c00033{width:4.876800pt;}
._e_c00033{width:7.948800pt;}
._9_c00033{width:9.043200pt;}
._3_c00033{width:10.099200pt;}
._2_c00033{width:11.168000pt;}
._12_c00033{width:12.128000pt;}
._8_c00033{width:13.401600pt;}
._6_c00033{width:19.136000pt;}
._4_c00033{width:27.174400pt;}
.fs0_c00033{font-size:53.440000pt;}
.fs1_c00033{font-size:64.000000pt;}
.y0_c00033{bottom:0.000000pt;}
.y6_c00033{bottom:50.987067pt;}
.y5_c00033{bottom:69.387067pt;}
.y1f_c00033{bottom:296.507067pt;}
.y1e_c00033{bottom:334.747067pt;}
.y1d_c00033{bottom:362.427067pt;}
.y1c_c00033{bottom:390.027067pt;}
.y1b_c00033{bottom:417.627067pt;}
.y1a_c00033{bottom:445.227067pt;}
.y19_c00033{bottom:483.387067pt;}
.y18_c00033{bottom:511.067067pt;}
.y17_c00033{bottom:538.667067pt;}
.y16_c00033{bottom:576.827067pt;}
.y15_c00033{bottom:604.507067pt;}
.y14_c00033{bottom:632.107067pt;}
.y13_c00033{bottom:659.707067pt;}
.y12_c00033{bottom:687.307067pt;}
.y11_c00033{bottom:714.907067pt;}
.y10_c00033{bottom:742.507067pt;}
.yf_c00033{bottom:780.667067pt;}
.ye_c00033{bottom:808.347067pt;}
.yd_c00033{bottom:835.947067pt;}
.yc_c00033{bottom:863.547067pt;}
.yb_c00033{bottom:891.147067pt;}
.ya_c00033{bottom:918.747067pt;}
.y9_c00033{bottom:949.227067pt;}
.y8_c00033{bottom:980.907067pt;}
.y7_c00033{bottom:999.307067pt;}
.y4_c00033{bottom:1017.227251pt;}
.y3_c00033{bottom:1032.587243pt;}
.y2_c00033{bottom:1047.867075pt;}
.y1_c00033{bottom:1063.227067pt;}
.h1_c00033{height:47.020937pt;}
.h2_c00033{height:56.156250pt;}
.h3_c00033{height:56.312500pt;}
.h0_c00033{height:1122.666667pt;}
.w1_c00033{width:793.333333pt;}
.w0_c00033{width:793.626667pt;}
.x0_c00033{left:0.000000pt;}
.x4_c00033{left:113.440000pt;}
.x1_c00033{left:577.440000pt;}
.x3_c00033{left:664.400000pt;}
.x2_c00033{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad334e3bdf412bcdfbb48a58.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.095703;font-style:normal;font-weight:normal;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_0b4ef02ce68501431ef9aca5.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00034{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls14_c00034{letter-spacing:-0.172800px;}
.lsc_c00034{letter-spacing:-0.102204px;}
.ls10_c00034{letter-spacing:-0.057600px;}
.ls13_c00034{letter-spacing:-0.050400px;}
.lse_c00034{letter-spacing:-0.028800px;}
.lsf_c00034{letter-spacing:-0.021600px;}
.ls12_c00034{letter-spacing:-0.007200px;}
.lsd_c00034{letter-spacing:0.000000px;}
.ls1_c00034{letter-spacing:0.007200px;}
.ls2_c00034{letter-spacing:0.014400px;}
.ls0_c00034{letter-spacing:0.021600px;}
.ls3_c00034{letter-spacing:0.028800px;}
.ls8_c00034{letter-spacing:0.036000px;}
.ls9_c00034{letter-spacing:0.050400px;}
.ls7_c00034{letter-spacing:0.057600px;}
.ls5_c00034{letter-spacing:0.064800px;}
.ls6_c00034{letter-spacing:0.072000px;}
.ls4_c00034{letter-spacing:0.093600px;}
.lsa_c00034{letter-spacing:0.100800px;}
.lsb_c00034{letter-spacing:0.108000px;}
.ls11_c00034{letter-spacing:1.080000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:-18.000000px;}
.ws5_c00034{word-spacing:-0.007200px;}
.ws2_c00034{word-spacing:0.000000px;}
.ws1_c00034{word-spacing:0.192384px;}
.ws4_c00034{word-spacing:2.815200px;}
.ws3_c00034{word-spacing:2.858400px;}
._1_c00034{margin-left:-4.924800px;}
._2_c00034{margin-left:-3.508128px;}
._4_c00034{margin-left:-1.569600px;}
._0_c00034{width:1.034064px;}
._7_c00034{width:4.312800px;}
._8_c00034{width:5.443200px;}
._a_c00034{width:9.000000px;}
._9_c00034{width:11.124000px;}
._5_c00034{width:13.291200px;}
._3_c00034{width:14.731200px;}
._6_c00034{width:16.632000px;}
._b_c00034{width:19.843200px;}
._c_c00034{width:21.110400px;}
.fc3_c00034{color:rgb(5,99,193);}
.fc2_c00034{color:rgb(68,84,106);}
.fc1_c00034{color:rgb(0,0,0);}
.fc0_c00034{color:rgb(32,31,30);}
.fs0_c00034{font-size:60.120000px;}
.fs1_c00034{font-size:72.000000px;}
.y0_c00034{bottom:0.000000px;}
.y5_c00034{bottom:57.360450px;}
.y4_c00034{bottom:78.060450px;}
.y1d_c00034{bottom:151.050450px;}
.y1c_c00034{bottom:182.100450px;}
.y1b_c00034{bottom:213.150450px;}
.y1a_c00034{bottom:244.200450px;}
.y19_c00034{bottom:275.250450px;}
.y18_c00034{bottom:306.300450px;}
.y17_c00034{bottom:337.350450px;}
.y16_c00034{bottom:368.400450px;}
.y15_c00034{bottom:399.450450px;}
.y14_c00034{bottom:442.380450px;}
.y13_c00034{bottom:473.520450px;}
.y12_c00034{bottom:504.570450px;}
.y11_c00034{bottom:535.620450px;}
.y10_c00034{bottom:566.670450px;}
.yf_c00034{bottom:597.720450px;}
.ye_c00034{bottom:628.770450px;}
.yd_c00034{bottom:659.820450px;}
.yc_c00034{bottom:690.870450px;}
.yb_c00034{bottom:721.920450px;}
.ya_c00034{bottom:756.120450px;}
.y9_c00034{bottom:791.850450px;}
.y8_c00034{bottom:830.820450px;}
.y7_c00034{bottom:1090.650450px;}
.y6_c00034{bottom:1111.350450px;}
.y3_c00034{bottom:1132.140450px;}
.y2_c00034{bottom:1165.441023px;}
.y1_c00034{bottom:1196.040600px;}
.h1_c00034{height:52.898555px;}
.h2_c00034{height:63.175781px;}
.h3_c00034{height:63.351562px;}
.h4_c00034{height:63.949219px;}
.h0_c00034{height:1263.000000px;}
.w1_c00034{width:892.500000px;}
.w0_c00034{width:892.830000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:127.620000px;}
.x3_c00034{left:312.300000px;}
.x2_c00034{left:747.450000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls14_c00034{letter-spacing:-0.153600pt;}
.lsc_c00034{letter-spacing:-0.090848pt;}
.ls10_c00034{letter-spacing:-0.051200pt;}
.ls13_c00034{letter-spacing:-0.044800pt;}
.lse_c00034{letter-spacing:-0.025600pt;}
.lsf_c00034{letter-spacing:-0.019200pt;}
.ls12_c00034{letter-spacing:-0.006400pt;}
.lsd_c00034{letter-spacing:0.000000pt;}
.ls1_c00034{letter-spacing:0.006400pt;}
.ls2_c00034{letter-spacing:0.012800pt;}
.ls0_c00034{letter-spacing:0.019200pt;}
.ls3_c00034{letter-spacing:0.025600pt;}
.ls8_c00034{letter-spacing:0.032000pt;}
.ls9_c00034{letter-spacing:0.044800pt;}
.ls7_c00034{letter-spacing:0.051200pt;}
.ls5_c00034{letter-spacing:0.057600pt;}
.ls6_c00034{letter-spacing:0.064000pt;}
.ls4_c00034{letter-spacing:0.083200pt;}
.lsa_c00034{letter-spacing:0.089600pt;}
.lsb_c00034{letter-spacing:0.096000pt;}
.ls11_c00034{letter-spacing:0.960000pt;}
.ws0_c00034{word-spacing:-16.000000pt;}
.ws5_c00034{word-spacing:-0.006400pt;}
.ws2_c00034{word-spacing:0.000000pt;}
.ws1_c00034{word-spacing:0.171008pt;}
.ws4_c00034{word-spacing:2.502400pt;}
.ws3_c00034{word-spacing:2.540800pt;}
._1_c00034{margin-left:-4.377600pt;}
._2_c00034{margin-left:-3.118336pt;}
._4_c00034{margin-left:-1.395200pt;}
._0_c00034{width:0.919168pt;}
._7_c00034{width:3.833600pt;}
._8_c00034{width:4.838400pt;}
._a_c00034{width:8.000000pt;}
._9_c00034{width:9.888000pt;}
._5_c00034{width:11.814400pt;}
._3_c00034{width:13.094400pt;}
._6_c00034{width:14.784000pt;}
._b_c00034{width:17.638400pt;}
._c_c00034{width:18.764800pt;}
.fs0_c00034{font-size:53.440000pt;}
.fs1_c00034{font-size:64.000000pt;}
.y0_c00034{bottom:0.000000pt;}
.y5_c00034{bottom:50.987067pt;}
.y4_c00034{bottom:69.387067pt;}
.y1d_c00034{bottom:134.267067pt;}
.y1c_c00034{bottom:161.867067pt;}
.y1b_c00034{bottom:189.467067pt;}
.y1a_c00034{bottom:217.067067pt;}
.y19_c00034{bottom:244.667067pt;}
.y18_c00034{bottom:272.267067pt;}
.y17_c00034{bottom:299.867067pt;}
.y16_c00034{bottom:327.467067pt;}
.y15_c00034{bottom:355.067067pt;}
.y14_c00034{bottom:393.227067pt;}
.y13_c00034{bottom:420.907067pt;}
.y12_c00034{bottom:448.507067pt;}
.y11_c00034{bottom:476.107067pt;}
.y10_c00034{bottom:503.707067pt;}
.yf_c00034{bottom:531.307067pt;}
.ye_c00034{bottom:558.907067pt;}
.yd_c00034{bottom:586.507067pt;}
.yc_c00034{bottom:614.107067pt;}
.yb_c00034{bottom:641.707067pt;}
.ya_c00034{bottom:672.107067pt;}
.y9_c00034{bottom:703.867067pt;}
.y8_c00034{bottom:738.507067pt;}
.y7_c00034{bottom:969.467067pt;}
.y6_c00034{bottom:987.867067pt;}
.y3_c00034{bottom:1006.347067pt;}
.y2_c00034{bottom:1035.947576pt;}
.y1_c00034{bottom:1063.147200pt;}
.h1_c00034{height:47.020937pt;}
.h2_c00034{height:56.156250pt;}
.h3_c00034{height:56.312500pt;}
.h4_c00034{height:56.843750pt;}
.h0_c00034{height:1122.666667pt;}
.w1_c00034{width:793.333333pt;}
.w0_c00034{width:793.626667pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:113.440000pt;}
.x3_c00034{left:277.600000pt;}
.x2_c00034{left:664.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.095703;font-style:normal;font-weight:normal;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_da65a5eff6504bb445545c54.woff2')format("woff");}.ff2_c00035{font-family:ff2_c00035;line-height:1.093262;font-style: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;}
.ls16_c00035{letter-spacing:-0.050400px;}
.lse_c00035{letter-spacing:-0.048096px;}
.ls14_c00035{letter-spacing:-0.043200px;}
.ls10_c00035{letter-spacing:-0.036000px;}
.ls13_c00035{letter-spacing:-0.028800px;}
.ls12_c00035{letter-spacing:-0.021600px;}
.ls15_c00035{letter-spacing:-0.014400px;}
.ls11_c00035{letter-spacing:-0.007200px;}
.lsf_c00035{letter-spacing:0.000000px;}
.ls1_c00035{letter-spacing:0.007200px;}
.ls0_c00035{letter-spacing:0.014400px;}
.ls5_c00035{letter-spacing:0.021600px;}
.ls3_c00035{letter-spacing:0.028800px;}
.ls4_c00035{letter-spacing:0.036000px;}
.ls2_c00035{letter-spacing:0.043200px;}
.ls6_c00035{letter-spacing:0.050400px;}
.lsc_c00035{letter-spacing:0.057600px;}
.ls8_c00035{letter-spacing:0.064800px;}
.lsd_c00035{letter-spacing:0.072000px;}
.lsa_c00035{letter-spacing:0.079200px;}
.ls9_c00035{letter-spacing:0.086400px;}
.ls7_c00035{letter-spacing:0.093600px;}
.lsb_c00035{letter-spacing:0.100800px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00035{word-spacing:0.000000px;}
.ws0_c00035{word-spacing:0.138276px;}
._9_c00035{margin-left:-2.556000px;}
._2_c00035{margin-left:-1.252800px;}
._5_c00035{width:1.792800px;}
._6_c00035{width:2.880000px;}
._7_c00035{width:4.255200px;}
._b_c00035{width:5.709600px;}
._e_c00035{width:7.077600px;}
._8_c00035{width:8.222400px;}
._c_c00035{width:9.424800px;}
._d_c00035{width:10.627200px;}
._0_c00035{width:13.305600px;}
._1_c00035{width:14.356800px;}
._4_c00035{width:16.063200px;}
._a_c00035{width:19.051200px;}
._3_c00035{width:25.596000px;}
.fc0_c00035{color:rgb(0,0,0);}
.fs0_c00035{font-size:60.120000px;}
.fs1_c00035{font-size:72.000000px;}
.y0_c00035{bottom:0.000000px;}
.y6_c00035{bottom:57.360450px;}
.y5_c00035{bottom:78.060450px;}
.y25_c00035{bottom:144.930450px;}
.y24_c00035{bottom:175.980450px;}
.y23_c00035{bottom:207.030450px;}
.y22_c00035{bottom:238.080450px;}
.y21_c00035{bottom:269.130450px;}
.y20_c00035{bottom:300.180450px;}
.y1f_c00035{bottom:331.230450px;}
.y1e_c00035{bottom:362.280450px;}
.y1d_c00035{bottom:393.330450px;}
.y1c_c00035{bottom:424.380450px;}
.y1b_c00035{bottom:467.310450px;}
.y1a_c00035{bottom:498.450450px;}
.y19_c00035{bottom:529.500450px;}
.y18_c00035{bottom:560.550450px;}
.y17_c00035{bottom:591.600450px;}
.y16_c00035{bottom:634.530450px;}
.y15_c00035{bottom:665.670450px;}
.y14_c00035{bottom:696.720450px;}
.y13_c00035{bottom:739.650450px;}
.y12_c00035{bottom:770.790450px;}
.y11_c00035{bottom:801.840450px;}
.y10_c00035{bottom:832.890450px;}
.yf_c00035{bottom:863.940450px;}
.ye_c00035{bottom:894.990450px;}
.yd_c00035{bottom:926.040450px;}
.yc_c00035{bottom:957.090450px;}
.yb_c00035{bottom:988.140450px;}
.ya_c00035{bottom:1019.190450px;}
.y9_c00035{bottom:1050.240450px;}
.y8_c00035{bottom:1093.170450px;}
.y7_c00035{bottom:1124.310450px;}
.y4_c00035{bottom:1144.380657px;}
.y3_c00035{bottom:1161.660648px;}
.y2_c00035{bottom:1178.850459px;}
.y1_c00035{bottom:1196.130450px;}
.h1_c00035{height:52.898555px;}
.h2_c00035{height:63.175781px;}
.h0_c00035{height:1263.000000px;}
.w1_c00035{width:892.500000px;}
.w0_c00035{width:892.830000px;}
.x0_c00035{left:0.000000px;}
.x4_c00035{left:127.620000px;}
.x1_c00035{left:649.620000px;}
.x3_c00035{left:747.450000px;}
.x2_c00035{left:765.450198px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls16_c00035{letter-spacing:-0.044800pt;}
.lse_c00035{letter-spacing:-0.042752pt;}
.ls14_c00035{letter-spacing:-0.038400pt;}
.ls10_c00035{letter-spacing:-0.032000pt;}
.ls13_c00035{letter-spacing:-0.025600pt;}
.ls12_c00035{letter-spacing:-0.019200pt;}
.ls15_c00035{letter-spacing:-0.012800pt;}
.ls11_c00035{letter-spacing:-0.006400pt;}
.lsf_c00035{letter-spacing:0.000000pt;}
.ls1_c00035{letter-spacing:0.006400pt;}
.ls0_c00035{letter-spacing:0.012800pt;}
.ls5_c00035{letter-spacing:0.019200pt;}
.ls3_c00035{letter-spacing:0.025600pt;}
.ls4_c00035{letter-spacing:0.032000pt;}
.ls2_c00035{letter-spacing:0.038400pt;}
.ls6_c00035{letter-spacing:0.044800pt;}
.lsc_c00035{letter-spacing:0.051200pt;}
.ls8_c00035{letter-spacing:0.057600pt;}
.lsd_c00035{letter-spacing:0.064000pt;}
.lsa_c00035{letter-spacing:0.070400pt;}
.ls9_c00035{letter-spacing:0.076800pt;}
.ls7_c00035{letter-spacing:0.083200pt;}
.lsb_c00035{letter-spacing:0.089600pt;}
.ws1_c00035{word-spacing:0.000000pt;}
.ws0_c00035{word-spacing:0.122912pt;}
._9_c00035{margin-left:-2.272000pt;}
._2_c00035{margin-left:-1.113600pt;}
._5_c00035{width:1.593600pt;}
._6_c00035{width:2.560000pt;}
._7_c00035{width:3.782400pt;}
._b_c00035{width:5.075200pt;}
._e_c00035{width:6.291200pt;}
._8_c00035{width:7.308800pt;}
._c_c00035{width:8.377600pt;}
._d_c00035{width:9.446400pt;}
._0_c00035{width:11.827200pt;}
._1_c00035{width:12.761600pt;}
._4_c00035{width:14.278400pt;}
._a_c00035{width:16.934400pt;}
._3_c00035{width:22.752000pt;}
.fs0_c00035{font-size:53.440000pt;}
.fs1_c00035{font-size:64.000000pt;}
.y0_c00035{bottom:0.000000pt;}
.y6_c00035{bottom:50.987067pt;}
.y5_c00035{bottom:69.387067pt;}
.y25_c00035{bottom:128.827067pt;}
.y24_c00035{bottom:156.427067pt;}
.y23_c00035{bottom:184.027067pt;}
.y22_c00035{bottom:211.627067pt;}
.y21_c00035{bottom:239.227067pt;}
.y20_c00035{bottom:266.827067pt;}
.y1f_c00035{bottom:294.427067pt;}
.y1e_c00035{bottom:322.027067pt;}
.y1d_c00035{bottom:349.627067pt;}
.y1c_c00035{bottom:377.227067pt;}
.y1b_c00035{bottom:415.387067pt;}
.y1a_c00035{bottom:443.067067pt;}
.y19_c00035{bottom:470.667067pt;}
.y18_c00035{bottom:498.267067pt;}
.y17_c00035{bottom:525.867067pt;}
.y16_c00035{bottom:564.027067pt;}
.y15_c00035{bottom:591.707067pt;}
.y14_c00035{bottom:619.307067pt;}
.y13_c00035{bottom:657.467067pt;}
.y12_c00035{bottom:685.147067pt;}
.y11_c00035{bottom:712.747067pt;}
.y10_c00035{bottom:740.347067pt;}
.yf_c00035{bottom:767.947067pt;}
.ye_c00035{bottom:795.547067pt;}
.yd_c00035{bottom:823.147067pt;}
.yc_c00035{bottom:850.747067pt;}
.yb_c00035{bottom:878.347067pt;}
.ya_c00035{bottom:905.947067pt;}
.y9_c00035{bottom:933.547067pt;}
.y8_c00035{bottom:971.707067pt;}
.y7_c00035{bottom:999.387067pt;}
.y4_c00035{bottom:1017.227251pt;}
.y3_c00035{bottom:1032.587243pt;}
.y2_c00035{bottom:1047.867075pt;}
.y1_c00035{bottom:1063.227067pt;}
.h1_c00035{height:47.020937pt;}
.h2_c00035{height:56.156250pt;}
.h0_c00035{height:1122.666667pt;}
.w1_c00035{width:793.333333pt;}
.w0_c00035{width:793.626667pt;}
.x0_c00035{left:0.000000pt;}
.x4_c00035{left:113.440000pt;}
.x1_c00035{left:577.440000pt;}
.x3_c00035{left:664.400000pt;}
.x2_c00035{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.095703;font-style:normal;font-weight:normal;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_70444c3311a60d3fbcd4d132.woff2')format("woff");}.ff2_c00036{font-family:ff2_c00036;line-height:1.093262;font-style:normal;font-weight:normal;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_41ab34f253778d99eea7b44c.woff2')format("woff");}.ff3_c00036{font-family:ff3_c00036;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00036{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls16_c00036{letter-spacing:-0.360000px;}
.ls13_c00036{letter-spacing:-0.102204px;}
.ls17_c00036{letter-spacing:-0.079200px;}
.ls18_c00036{letter-spacing:-0.028800px;}
.ls15_c00036{letter-spacing:-0.014400px;}
.ls14_c00036{letter-spacing:0.000000px;}
.ls2_c00036{letter-spacing:0.007200px;}
.lse_c00036{letter-spacing:0.014400px;}
.lsf_c00036{letter-spacing:0.021600px;}
.ls6_c00036{letter-spacing:0.028800px;}
.lsa_c00036{letter-spacing:0.036000px;}
.ls3_c00036{letter-spacing:0.043200px;}
.ls7_c00036{letter-spacing:0.050400px;}
.ls1_c00036{letter-spacing:0.057600px;}
.ls0_c00036{letter-spacing:0.064800px;}
.ls10_c00036{letter-spacing:0.072000px;}
.ls11_c00036{letter-spacing:0.079200px;}
.lsc_c00036{letter-spacing:0.093600px;}
.ls9_c00036{letter-spacing:0.100800px;}
.ls8_c00036{letter-spacing:0.108000px;}
.ls12_c00036{letter-spacing:0.129600px;}
.lsd_c00036{letter-spacing:0.136800px;}
.lsb_c00036{letter-spacing:0.144000px;}
.ls19_c00036{letter-spacing:10.108800px;}
.ls4_c00036{letter-spacing:12.240000px;}
.ls5_c00036{letter-spacing:12.600000px;}
.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;}
}
.ws1_c00036{word-spacing:0.000000px;}
.ws0_c00036{word-spacing:0.192384px;}
._d_c00036{margin-left:-10.108800px;}
._7_c00036{margin-left:-2.095200px;}
._2_c00036{margin-left:-1.087200px;}
._0_c00036{width:1.034064px;}
._8_c00036{width:2.239200px;}
._9_c00036{width:3.549600px;}
._a_c00036{width:4.932000px;}
._c_c00036{width:6.976800px;}
._f_c00036{width:8.064000px;}
._e_c00036{width:9.115200px;}
._b_c00036{width:11.131200px;}
._3_c00036{width:12.556800px;}
._4_c00036{width:13.773600px;}
._10_c00036{width:15.508800px;}
._1_c00036{width:16.970400px;}
._5_c00036{width:26.611200px;}
._6_c00036{width:27.633600px;}
.fc1_c00036{color:rgb(0,0,0);}
.fc0_c00036{color:rgb(32,31,30);}
.fs0_c00036{font-size:60.120000px;}
.fs1_c00036{font-size:72.000000px;}
.y0_c00036{bottom:0.000000px;}
.y5_c00036{bottom:57.360450px;}
.y4_c00036{bottom:78.060450px;}
.y23_c00036{bottom:139.080450px;}
.y22_c00036{bottom:170.130450px;}
.y21_c00036{bottom:213.060450px;}
.y20_c00036{bottom:244.200450px;}
.y1f_c00036{bottom:275.250450px;}
.y1e_c00036{bottom:306.300450px;}
.y1d_c00036{bottom:349.230450px;}
.y1c_c00036{bottom:380.370450px;}
.y1b_c00036{bottom:411.420450px;}
.y1a_c00036{bottom:454.350450px;}
.y19_c00036{bottom:485.490450px;}
.y18_c00036{bottom:516.540450px;}
.y17_c00036{bottom:547.590450px;}
.y16_c00036{bottom:578.640450px;}
.y15_c00036{bottom:609.690450px;}
.y14_c00036{bottom:652.620450px;}
.y13_c00036{bottom:683.760450px;}
.y12_c00036{bottom:714.810450px;}
.y11_c00036{bottom:745.860450px;}
.y10_c00036{bottom:776.910450px;}
.yf_c00036{bottom:807.960450px;}
.ye_c00036{bottom:839.010450px;}
.yd_c00036{bottom:882.030450px;}
.yc_c00036{bottom:913.170450px;}
.yb_c00036{bottom:944.220450px;}
.ya_c00036{bottom:975.180450px;}
.y9_c00036{bottom:1006.230450px;}
.y8_c00036{bottom:1037.280450px;}
.y7_c00036{bottom:1080.300450px;}
.y6_c00036{bottom:1111.440450px;}
.y3_c00036{bottom:1132.140450px;}
.y2_c00036{bottom:1165.441023px;}
.y1_c00036{bottom:1196.040600px;}
.h1_c00036{height:52.898555px;}
.h2_c00036{height:63.175781px;}
.h3_c00036{height:63.949219px;}
.h0_c00036{height:1263.000000px;}
.w1_c00036{width:892.500000px;}
.w0_c00036{width:892.830000px;}
.x0_c00036{left:0.000000px;}
.x1_c00036{left:127.620000px;}
.x2_c00036{left:747.450000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls16_c00036{letter-spacing:-0.320000pt;}
.ls13_c00036{letter-spacing:-0.090848pt;}
.ls17_c00036{letter-spacing:-0.070400pt;}
.ls18_c00036{letter-spacing:-0.025600pt;}
.ls15_c00036{letter-spacing:-0.012800pt;}
.ls14_c00036{letter-spacing:0.000000pt;}
.ls2_c00036{letter-spacing:0.006400pt;}
.lse_c00036{letter-spacing:0.012800pt;}
.lsf_c00036{letter-spacing:0.019200pt;}
.ls6_c00036{letter-spacing:0.025600pt;}
.lsa_c00036{letter-spacing:0.032000pt;}
.ls3_c00036{letter-spacing:0.038400pt;}
.ls7_c00036{letter-spacing:0.044800pt;}
.ls1_c00036{letter-spacing:0.051200pt;}
.ls0_c00036{letter-spacing:0.057600pt;}
.ls10_c00036{letter-spacing:0.064000pt;}
.ls11_c00036{letter-spacing:0.070400pt;}
.lsc_c00036{letter-spacing:0.083200pt;}
.ls9_c00036{letter-spacing:0.089600pt;}
.ls8_c00036{letter-spacing:0.096000pt;}
.ls12_c00036{letter-spacing:0.115200pt;}
.lsd_c00036{letter-spacing:0.121600pt;}
.lsb_c00036{letter-spacing:0.128000pt;}
.ls19_c00036{letter-spacing:8.985600pt;}
.ls4_c00036{letter-spacing:10.880000pt;}
.ls5_c00036{letter-spacing:11.200000pt;}
.ws1_c00036{word-spacing:0.000000pt;}
.ws0_c00036{word-spacing:0.171008pt;}
._d_c00036{margin-left:-8.985600pt;}
._7_c00036{margin-left:-1.862400pt;}
._2_c00036{margin-left:-0.966400pt;}
._0_c00036{width:0.919168pt;}
._8_c00036{width:1.990400pt;}
._9_c00036{width:3.155200pt;}
._a_c00036{width:4.384000pt;}
._c_c00036{width:6.201600pt;}
._f_c00036{width:7.168000pt;}
._e_c00036{width:8.102400pt;}
._b_c00036{width:9.894400pt;}
._3_c00036{width:11.161600pt;}
._4_c00036{width:12.243200pt;}
._10_c00036{width:13.785600pt;}
._1_c00036{width:15.084800pt;}
._5_c00036{width:23.654400pt;}
._6_c00036{width:24.563200pt;}
.fs0_c00036{font-size:53.440000pt;}
.fs1_c00036{font-size:64.000000pt;}
.y0_c00036{bottom:0.000000pt;}
.y5_c00036{bottom:50.987067pt;}
.y4_c00036{bottom:69.387067pt;}
.y23_c00036{bottom:123.627067pt;}
.y22_c00036{bottom:151.227067pt;}
.y21_c00036{bottom:189.387067pt;}
.y20_c00036{bottom:217.067067pt;}
.y1f_c00036{bottom:244.667067pt;}
.y1e_c00036{bottom:272.267067pt;}
.y1d_c00036{bottom:310.427067pt;}
.y1c_c00036{bottom:338.107067pt;}
.y1b_c00036{bottom:365.707067pt;}
.y1a_c00036{bottom:403.867067pt;}
.y19_c00036{bottom:431.547067pt;}
.y18_c00036{bottom:459.147067pt;}
.y17_c00036{bottom:486.747067pt;}
.y16_c00036{bottom:514.347067pt;}
.y15_c00036{bottom:541.947067pt;}
.y14_c00036{bottom:580.107067pt;}
.y13_c00036{bottom:607.787067pt;}
.y12_c00036{bottom:635.387067pt;}
.y11_c00036{bottom:662.987067pt;}
.y10_c00036{bottom:690.587067pt;}
.yf_c00036{bottom:718.187067pt;}
.ye_c00036{bottom:745.787067pt;}
.yd_c00036{bottom:784.027067pt;}
.yc_c00036{bottom:811.707067pt;}
.yb_c00036{bottom:839.307067pt;}
.ya_c00036{bottom:866.827067pt;}
.y9_c00036{bottom:894.427067pt;}
.y8_c00036{bottom:922.027067pt;}
.y7_c00036{bottom:960.267067pt;}
.y6_c00036{bottom:987.947067pt;}
.y3_c00036{bottom:1006.347067pt;}
.y2_c00036{bottom:1035.947576pt;}
.y1_c00036{bottom:1063.147200pt;}
.h1_c00036{height:47.020937pt;}
.h2_c00036{height:56.156250pt;}
.h3_c00036{height:56.843750pt;}
.h0_c00036{height:1122.666667pt;}
.w1_c00036{width:793.333333pt;}
.w0_c00036{width:793.626667pt;}
.x0_c00036{left:0.000000pt;}
.x1_c00036{left:113.440000pt;}
.x2_c00036{left:664.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.095703;font-style:normal;font-weight:normal;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_04639fd1a6ffd3214c274494.woff2')format("woff");}.ff2_c00037{font-family:ff2_c00037;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.lsc_c00037{letter-spacing:-0.048096px;}
.ls10_c00037{letter-spacing:-0.028800px;}
.lsf_c00037{letter-spacing:-0.021600px;}
.lse_c00037{letter-spacing:-0.014400px;}
.ls11_c00037{letter-spacing:-0.007200px;}
.lsd_c00037{letter-spacing:0.000000px;}
.ls5_c00037{letter-spacing:0.007200px;}
.ls4_c00037{letter-spacing:0.014400px;}
.ls9_c00037{letter-spacing:0.021600px;}
.ls2_c00037{letter-spacing:0.028800px;}
.ls1_c00037{letter-spacing:0.036000px;}
.ls8_c00037{letter-spacing:0.043200px;}
.ls0_c00037{letter-spacing:0.050400px;}
.ls3_c00037{letter-spacing:0.057600px;}
.ls6_c00037{letter-spacing:0.064800px;}
.lsb_c00037{letter-spacing:0.079200px;}
.lsa_c00037{letter-spacing:0.086400px;}
.ls7_c00037{letter-spacing:0.093600px;}
.ls12_c00037{letter-spacing:3.600000px;}
.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;}
}
.ws1_c00037{word-spacing:0.000000px;}
.ws0_c00037{word-spacing:0.138276px;}
._4_c00037{margin-left:-4.363200px;}
._5_c00037{margin-left:-2.750400px;}
._3_c00037{margin-left:-1.454400px;}
._9_c00037{width:1.008000px;}
._0_c00037{width:2.167200px;}
._1_c00037{width:3.492000px;}
._8_c00037{width:4.507200px;}
._7_c00037{width:5.716800px;}
._2_c00037{width:6.811200px;}
._a_c00037{width:7.898400px;}
._d_c00037{width:11.851200px;}
._b_c00037{width:14.745600px;}
._c_c00037{width:16.156800px;}
._6_c00037{width:21.571200px;}
.fc1_c00037{color:rgb(255,0,0);}
.fc0_c00037{color:rgb(0,0,0);}
.fs0_c00037{font-size:60.120000px;}
.fs1_c00037{font-size:72.000000px;}
.y0_c00037{bottom:0.000000px;}
.y6_c00037{bottom:57.360450px;}
.y5_c00037{bottom:78.060450px;}
.y25_c00037{bottom:144.930450px;}
.y24_c00037{bottom:175.980450px;}
.y23_c00037{bottom:207.030450px;}
.y22_c00037{bottom:238.080450px;}
.y21_c00037{bottom:269.130450px;}
.y20_c00037{bottom:300.180450px;}
.y1f_c00037{bottom:331.230450px;}
.y1e_c00037{bottom:374.160450px;}
.y1d_c00037{bottom:405.300450px;}
.y1c_c00037{bottom:436.350450px;}
.y1b_c00037{bottom:467.400450px;}
.y1a_c00037{bottom:498.450450px;}
.y19_c00037{bottom:529.500450px;}
.y18_c00037{bottom:560.550450px;}
.y17_c00037{bottom:603.480450px;}
.y16_c00037{bottom:634.620450px;}
.y15_c00037{bottom:665.670450px;}
.y14_c00037{bottom:696.720450px;}
.y13_c00037{bottom:739.650450px;}
.y12_c00037{bottom:770.790450px;}
.y11_c00037{bottom:801.840450px;}
.y10_c00037{bottom:832.890450px;}
.yf_c00037{bottom:863.940450px;}
.ye_c00037{bottom:906.960450px;}
.yd_c00037{bottom:938.100450px;}
.yc_c00037{bottom:969.150450px;}
.yb_c00037{bottom:1000.200450px;}
.ya_c00037{bottom:1031.160450px;}
.y9_c00037{bottom:1062.210450px;}
.y8_c00037{bottom:1093.260450px;}
.y7_c00037{bottom:1124.310450px;}
.y4_c00037{bottom:1144.380657px;}
.y3_c00037{bottom:1161.660648px;}
.y2_c00037{bottom:1178.850459px;}
.y1_c00037{bottom:1196.130450px;}
.h1_c00037{height:52.898555px;}
.h2_c00037{height:63.175781px;}
.h0_c00037{height:1263.000000px;}
.w1_c00037{width:892.500000px;}
.w0_c00037{width:892.830000px;}
.x0_c00037{left:0.000000px;}
.x4_c00037{left:127.620000px;}
.x1_c00037{left:649.620000px;}
.x3_c00037{left:747.450000px;}
.x2_c00037{left:765.450198px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.lsc_c00037{letter-spacing:-0.042752pt;}
.ls10_c00037{letter-spacing:-0.025600pt;}
.lsf_c00037{letter-spacing:-0.019200pt;}
.lse_c00037{letter-spacing:-0.012800pt;}
.ls11_c00037{letter-spacing:-0.006400pt;}
.lsd_c00037{letter-spacing:0.000000pt;}
.ls5_c00037{letter-spacing:0.006400pt;}
.ls4_c00037{letter-spacing:0.012800pt;}
.ls9_c00037{letter-spacing:0.019200pt;}
.ls2_c00037{letter-spacing:0.025600pt;}
.ls1_c00037{letter-spacing:0.032000pt;}
.ls8_c00037{letter-spacing:0.038400pt;}
.ls0_c00037{letter-spacing:0.044800pt;}
.ls3_c00037{letter-spacing:0.051200pt;}
.ls6_c00037{letter-spacing:0.057600pt;}
.lsb_c00037{letter-spacing:0.070400pt;}
.lsa_c00037{letter-spacing:0.076800pt;}
.ls7_c00037{letter-spacing:0.083200pt;}
.ls12_c00037{letter-spacing:3.200000pt;}
.ws1_c00037{word-spacing:0.000000pt;}
.ws0_c00037{word-spacing:0.122912pt;}
._4_c00037{margin-left:-3.878400pt;}
._5_c00037{margin-left:-2.444800pt;}
._3_c00037{margin-left:-1.292800pt;}
._9_c00037{width:0.896000pt;}
._0_c00037{width:1.926400pt;}
._1_c00037{width:3.104000pt;}
._8_c00037{width:4.006400pt;}
._7_c00037{width:5.081600pt;}
._2_c00037{width:6.054400pt;}
._a_c00037{width:7.020800pt;}
._d_c00037{width:10.534400pt;}
._b_c00037{width:13.107200pt;}
._c_c00037{width:14.361600pt;}
._6_c00037{width:19.174400pt;}
.fs0_c00037{font-size:53.440000pt;}
.fs1_c00037{font-size:64.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y6_c00037{bottom:50.987067pt;}
.y5_c00037{bottom:69.387067pt;}
.y25_c00037{bottom:128.827067pt;}
.y24_c00037{bottom:156.427067pt;}
.y23_c00037{bottom:184.027067pt;}
.y22_c00037{bottom:211.627067pt;}
.y21_c00037{bottom:239.227067pt;}
.y20_c00037{bottom:266.827067pt;}
.y1f_c00037{bottom:294.427067pt;}
.y1e_c00037{bottom:332.587067pt;}
.y1d_c00037{bottom:360.267067pt;}
.y1c_c00037{bottom:387.867067pt;}
.y1b_c00037{bottom:415.467067pt;}
.y1a_c00037{bottom:443.067067pt;}
.y19_c00037{bottom:470.667067pt;}
.y18_c00037{bottom:498.267067pt;}
.y17_c00037{bottom:536.427067pt;}
.y16_c00037{bottom:564.107067pt;}
.y15_c00037{bottom:591.707067pt;}
.y14_c00037{bottom:619.307067pt;}
.y13_c00037{bottom:657.467067pt;}
.y12_c00037{bottom:685.147067pt;}
.y11_c00037{bottom:712.747067pt;}
.y10_c00037{bottom:740.347067pt;}
.yf_c00037{bottom:767.947067pt;}
.ye_c00037{bottom:806.187067pt;}
.yd_c00037{bottom:833.867067pt;}
.yc_c00037{bottom:861.467067pt;}
.yb_c00037{bottom:889.067067pt;}
.ya_c00037{bottom:916.587067pt;}
.y9_c00037{bottom:944.187067pt;}
.y8_c00037{bottom:971.787067pt;}
.y7_c00037{bottom:999.387067pt;}
.y4_c00037{bottom:1017.227251pt;}
.y3_c00037{bottom:1032.587243pt;}
.y2_c00037{bottom:1047.867075pt;}
.y1_c00037{bottom:1063.227067pt;}
.h1_c00037{height:47.020937pt;}
.h2_c00037{height:56.156250pt;}
.h0_c00037{height:1122.666667pt;}
.w1_c00037{width:793.333333pt;}
.w0_c00037{width:793.626667pt;}
.x0_c00037{left:0.000000pt;}
.x4_c00037{left:113.440000pt;}
.x1_c00037{left:577.440000pt;}
.x3_c00037{left:664.400000pt;}
.x2_c00037{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81e4459ff83c31170b53493c.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.095703;font-style:normal;font-weight:normal;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_0f7ac0c54c06c7ab69851341.woff2')format("woff");}.ff2_c00038{font-family:ff2_c00038;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00038{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.lsc_c00038{letter-spacing:-0.102204px;}
.ls12_c00038{letter-spacing:-0.036000px;}
.ls10_c00038{letter-spacing:-0.028800px;}
.ls13_c00038{letter-spacing:-0.021600px;}
.lse_c00038{letter-spacing:-0.014400px;}
.lsf_c00038{letter-spacing:-0.007200px;}
.lsd_c00038{letter-spacing:0.000000px;}
.ls3_c00038{letter-spacing:0.007200px;}
.ls9_c00038{letter-spacing:0.014400px;}
.ls2_c00038{letter-spacing:0.021600px;}
.ls6_c00038{letter-spacing:0.028800px;}
.ls4_c00038{letter-spacing:0.036000px;}
.ls5_c00038{letter-spacing:0.043200px;}
.ls7_c00038{letter-spacing:0.050400px;}
.ls1_c00038{letter-spacing:0.057600px;}
.ls0_c00038{letter-spacing:0.064800px;}
.ls8_c00038{letter-spacing:0.086400px;}
.lsb_c00038{letter-spacing:0.093600px;}
.lsa_c00038{letter-spacing:0.100800px;}
.ls11_c00038{letter-spacing:0.720000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00038{word-spacing:0.000000px;}
.ws2_c00038{word-spacing:0.007200px;}
.ws3_c00038{word-spacing:0.151200px;}
.ws0_c00038{word-spacing:0.192384px;}
._a_c00038{margin-left:-5.450400px;}
._1_c00038{margin-left:-4.356000px;}
._2_c00038{margin-left:-2.772000px;}
._3_c00038{margin-left:-1.634400px;}
._0_c00038{width:1.034064px;}
._6_c00038{width:2.538144px;}
._5_c00038{width:3.909600px;}
._4_c00038{width:6.768000px;}
._9_c00038{width:8.316000px;}
._8_c00038{width:12.585600px;}
._7_c00038{width:14.313600px;}
._b_c00038{width:20.217600px;}
._c_c00038{width:21.686400px;}
.fc1_c00038{color:rgb(0,0,0);}
.fc0_c00038{color:rgb(32,31,30);}
.fs0_c00038{font-size:60.120000px;}
.fs1_c00038{font-size:72.000000px;}
.y0_c00038{bottom:0.000000px;}
.y5_c00038{bottom:57.360450px;}
.y4_c00038{bottom:78.060450px;}
.y24_c00038{bottom:122.160450px;}
.y23_c00038{bottom:153.210450px;}
.y22_c00038{bottom:184.260450px;}
.y21_c00038{bottom:215.310450px;}
.y20_c00038{bottom:246.270450px;}
.y1f_c00038{bottom:289.290450px;}
.y1e_c00038{bottom:320.430450px;}
.y1d_c00038{bottom:351.480450px;}
.y1c_c00038{bottom:382.530450px;}
.y1b_c00038{bottom:425.460450px;}
.y1a_c00038{bottom:456.600450px;}
.y19_c00038{bottom:487.650450px;}
.y18_c00038{bottom:521.850450px;}
.y17_c00038{bottom:544.170450px;}
.y16_c00038{bottom:566.490450px;}
.y15_c00038{bottom:609.600450px;}
.y14_c00038{bottom:652.620450px;}
.y13_c00038{bottom:683.760450px;}
.y12_c00038{bottom:714.810450px;}
.y11_c00038{bottom:745.860450px;}
.y10_c00038{bottom:788.880450px;}
.yf_c00038{bottom:820.020450px;}
.ye_c00038{bottom:851.070450px;}
.yd_c00038{bottom:882.120450px;}
.yc_c00038{bottom:913.170450px;}
.yb_c00038{bottom:944.220450px;}
.ya_c00038{bottom:975.180450px;}
.y9_c00038{bottom:1006.230450px;}
.y8_c00038{bottom:1037.280450px;}
.y7_c00038{bottom:1080.300450px;}
.y6_c00038{bottom:1111.440450px;}
.y3_c00038{bottom:1132.140450px;}
.y2_c00038{bottom:1165.441023px;}
.y1_c00038{bottom:1196.040600px;}
.h1_c00038{height:52.898555px;}
.h2_c00038{height:63.175781px;}
.h3_c00038{height:63.351562px;}
.h0_c00038{height:1263.000000px;}
.w1_c00038{width:892.500000px;}
.w0_c00038{width:892.830000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:127.620000px;}
.x3_c00038{left:203.220000px;}
.x2_c00038{left:747.450000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.lsc_c00038{letter-spacing:-0.090848pt;}
.ls12_c00038{letter-spacing:-0.032000pt;}
.ls10_c00038{letter-spacing:-0.025600pt;}
.ls13_c00038{letter-spacing:-0.019200pt;}
.lse_c00038{letter-spacing:-0.012800pt;}
.lsf_c00038{letter-spacing:-0.006400pt;}
.lsd_c00038{letter-spacing:0.000000pt;}
.ls3_c00038{letter-spacing:0.006400pt;}
.ls9_c00038{letter-spacing:0.012800pt;}
.ls2_c00038{letter-spacing:0.019200pt;}
.ls6_c00038{letter-spacing:0.025600pt;}
.ls4_c00038{letter-spacing:0.032000pt;}
.ls5_c00038{letter-spacing:0.038400pt;}
.ls7_c00038{letter-spacing:0.044800pt;}
.ls1_c00038{letter-spacing:0.051200pt;}
.ls0_c00038{letter-spacing:0.057600pt;}
.ls8_c00038{letter-spacing:0.076800pt;}
.lsb_c00038{letter-spacing:0.083200pt;}
.lsa_c00038{letter-spacing:0.089600pt;}
.ls11_c00038{letter-spacing:0.640000pt;}
.ws1_c00038{word-spacing:0.000000pt;}
.ws2_c00038{word-spacing:0.006400pt;}
.ws3_c00038{word-spacing:0.134400pt;}
.ws0_c00038{word-spacing:0.171008pt;}
._a_c00038{margin-left:-4.844800pt;}
._1_c00038{margin-left:-3.872000pt;}
._2_c00038{margin-left:-2.464000pt;}
._3_c00038{margin-left:-1.452800pt;}
._0_c00038{width:0.919168pt;}
._6_c00038{width:2.256128pt;}
._5_c00038{width:3.475200pt;}
._4_c00038{width:6.016000pt;}
._9_c00038{width:7.392000pt;}
._8_c00038{width:11.187200pt;}
._7_c00038{width:12.723200pt;}
._b_c00038{width:17.971200pt;}
._c_c00038{width:19.276800pt;}
.fs0_c00038{font-size:53.440000pt;}
.fs1_c00038{font-size:64.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y5_c00038{bottom:50.987067pt;}
.y4_c00038{bottom:69.387067pt;}
.y24_c00038{bottom:108.587067pt;}
.y23_c00038{bottom:136.187067pt;}
.y22_c00038{bottom:163.787067pt;}
.y21_c00038{bottom:191.387067pt;}
.y20_c00038{bottom:218.907067pt;}
.y1f_c00038{bottom:257.147067pt;}
.y1e_c00038{bottom:284.827067pt;}
.y1d_c00038{bottom:312.427067pt;}
.y1c_c00038{bottom:340.027067pt;}
.y1b_c00038{bottom:378.187067pt;}
.y1a_c00038{bottom:405.867067pt;}
.y19_c00038{bottom:433.467067pt;}
.y18_c00038{bottom:463.867067pt;}
.y17_c00038{bottom:483.707067pt;}
.y16_c00038{bottom:503.547067pt;}
.y15_c00038{bottom:541.867067pt;}
.y14_c00038{bottom:580.107067pt;}
.y13_c00038{bottom:607.787067pt;}
.y12_c00038{bottom:635.387067pt;}
.y11_c00038{bottom:662.987067pt;}
.y10_c00038{bottom:701.227067pt;}
.yf_c00038{bottom:728.907067pt;}
.ye_c00038{bottom:756.507067pt;}
.yd_c00038{bottom:784.107067pt;}
.yc_c00038{bottom:811.707067pt;}
.yb_c00038{bottom:839.307067pt;}
.ya_c00038{bottom:866.827067pt;}
.y9_c00038{bottom:894.427067pt;}
.y8_c00038{bottom:922.027067pt;}
.y7_c00038{bottom:960.267067pt;}
.y6_c00038{bottom:987.947067pt;}
.y3_c00038{bottom:1006.347067pt;}
.y2_c00038{bottom:1035.947576pt;}
.y1_c00038{bottom:1063.147200pt;}
.h1_c00038{height:47.020937pt;}
.h2_c00038{height:56.156250pt;}
.h3_c00038{height:56.312500pt;}
.h0_c00038{height:1122.666667pt;}
.w1_c00038{width:793.333333pt;}
.w0_c00038{width:793.626667pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:113.440000pt;}
.x3_c00038{left:180.640000pt;}
.x2_c00038{left:664.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.095703;font-style:normal;font-weight:normal;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_e1cccbac13ec003a36f874ab.woff2')format("woff");}.ff2_c00039{font-family:ff2_c00039;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00039{font-family:ff3_c00039;line-height:1.104004;font-style: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:-20.880000px;}
.v0_c00039{vertical-align:0.000000px;}
.v1_c00039{vertical-align:27.000000px;}
.ls11_c00039{letter-spacing:-0.048096px;}
.ls16_c00039{letter-spacing:-0.028800px;}
.ls17_c00039{letter-spacing:-0.021600px;}
.ls14_c00039{letter-spacing:-0.014400px;}
.ls13_c00039{letter-spacing:-0.007200px;}
.ls12_c00039{letter-spacing:0.000000px;}
.ls1_c00039{letter-spacing:0.007200px;}
.ls3_c00039{letter-spacing:0.014400px;}
.ls2_c00039{letter-spacing:0.021600px;}
.ls6_c00039{letter-spacing:0.028800px;}
.ls0_c00039{letter-spacing:0.036000px;}
.lsc_c00039{letter-spacing:0.043200px;}
.ls4_c00039{letter-spacing:0.050400px;}
.ls8_c00039{letter-spacing:0.057600px;}
.ls5_c00039{letter-spacing:0.064800px;}
.lsa_c00039{letter-spacing:0.072000px;}
.lsd_c00039{letter-spacing:0.079200px;}
.ls10_c00039{letter-spacing:0.084168px;}
.ls9_c00039{letter-spacing:0.100800px;}
.ls18_c00039{letter-spacing:0.102204px;}
.lsb_c00039{letter-spacing:0.115200px;}
.ls7_c00039{letter-spacing:0.180000px;}
.lse_c00039{letter-spacing:1.800000px;}
.ls15_c00039{letter-spacing:2.448000px;}
.lsf_c00039{letter-spacing:12.960000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:-9.720000px;}
.ws2_c00039{word-spacing:0.000000px;}
.ws1_c00039{word-spacing:0.138276px;}
._10_c00039{margin-left:-4.982400px;}
._4_c00039{margin-left:-3.117600px;}
._5_c00039{margin-left:-1.548000px;}
._2_c00039{width:1.029600px;}
._0_c00039{width:3.052800px;}
._1_c00039{width:4.161600px;}
._3_c00039{width:5.220000px;}
._9_c00039{width:6.638400px;}
._a_c00039{width:8.467200px;}
._6_c00039{width:10.260000px;}
._7_c00039{width:11.512800px;}
._8_c00039{width:13.255200px;}
._b_c00039{width:14.349600px;}
._c_c00039{width:15.796800px;}
._d_c00039{width:22.284000px;}
._e_c00039{width:24.062400px;}
._f_c00039{width:25.257600px;}
.fc0_c00039{color:rgb(0,0,0);}
.fs3_c00039{font-size:38.880000px;}
.fs2_c00039{font-size:47.880000px;}
.fs0_c00039{font-size:60.120000px;}
.fs1_c00039{font-size:72.000000px;}
.y0_c00039{bottom:0.000000px;}
.y6_c00039{bottom:57.360450px;}
.y5_c00039{bottom:78.060450px;}
.y26_c00039{bottom:109.920639px;}
.y25_c00039{bottom:132.330450px;}
.y24_c00039{bottom:145.020450px;}
.y23_c00039{bottom:207.030450px;}
.y22_c00039{bottom:238.080450px;}
.y21_c00039{bottom:281.010450px;}
.y20_c00039{bottom:312.150450px;}
.y1f_c00039{bottom:343.200450px;}
.y1e_c00039{bottom:374.250450px;}
.y1d_c00039{bottom:405.300450px;}
.y1c_c00039{bottom:436.350450px;}
.y1b_c00039{bottom:467.400450px;}
.y1a_c00039{bottom:498.450450px;}
.y19_c00039{bottom:529.500450px;}
.y18_c00039{bottom:560.550450px;}
.y17_c00039{bottom:591.600450px;}
.y16_c00039{bottom:622.650450px;}
.y15_c00039{bottom:665.580450px;}
.y14_c00039{bottom:696.720450px;}
.y13_c00039{bottom:727.770450px;}
.y12_c00039{bottom:758.820450px;}
.y11_c00039{bottom:789.870450px;}
.y10_c00039{bottom:832.800450px;}
.yf_c00039{bottom:863.940450px;}
.ye_c00039{bottom:894.990450px;}
.yd_c00039{bottom:926.040450px;}
.yc_c00039{bottom:957.090450px;}
.yb_c00039{bottom:988.140450px;}
.ya_c00039{bottom:1019.190450px;}
.y9_c00039{bottom:1062.120450px;}
.y8_c00039{bottom:1093.260450px;}
.y7_c00039{bottom:1124.310450px;}
.y4_c00039{bottom:1144.380657px;}
.y3_c00039{bottom:1161.660648px;}
.y2_c00039{bottom:1178.850459px;}
.y1_c00039{bottom:1196.130450px;}
.h5_c00039{height:34.114922px;}
.h6_c00039{height:52.751777px;}
.h1_c00039{height:52.898555px;}
.h2_c00039{height:63.175781px;}
.h4_c00039{height:63.949219px;}
.h3_c00039{height:69.011895px;}
.h0_c00039{height:1263.000000px;}
.w1_c00039{width:892.500000px;}
.w0_c00039{width:892.830000px;}
.x0_c00039{left:0.000000px;}
.x4_c00039{left:127.620000px;}
.x1_c00039{left:649.620000px;}
.x3_c00039{left:747.450000px;}
.x2_c00039{left:765.450198px;}
@media print{
.v2_c00039{vertical-align:-18.560000pt;}
.v0_c00039{vertical-align:0.000000pt;}
.v1_c00039{vertical-align:24.000000pt;}
.ls11_c00039{letter-spacing:-0.042752pt;}
.ls16_c00039{letter-spacing:-0.025600pt;}
.ls17_c00039{letter-spacing:-0.019200pt;}
.ls14_c00039{letter-spacing:-0.012800pt;}
.ls13_c00039{letter-spacing:-0.006400pt;}
.ls12_c00039{letter-spacing:0.000000pt;}
.ls1_c00039{letter-spacing:0.006400pt;}
.ls3_c00039{letter-spacing:0.012800pt;}
.ls2_c00039{letter-spacing:0.019200pt;}
.ls6_c00039{letter-spacing:0.025600pt;}
.ls0_c00039{letter-spacing:0.032000pt;}
.lsc_c00039{letter-spacing:0.038400pt;}
.ls4_c00039{letter-spacing:0.044800pt;}
.ls8_c00039{letter-spacing:0.051200pt;}
.ls5_c00039{letter-spacing:0.057600pt;}
.lsa_c00039{letter-spacing:0.064000pt;}
.lsd_c00039{letter-spacing:0.070400pt;}
.ls10_c00039{letter-spacing:0.074816pt;}
.ls9_c00039{letter-spacing:0.089600pt;}
.ls18_c00039{letter-spacing:0.090848pt;}
.lsb_c00039{letter-spacing:0.102400pt;}
.ls7_c00039{letter-spacing:0.160000pt;}
.lse_c00039{letter-spacing:1.600000pt;}
.ls15_c00039{letter-spacing:2.176000pt;}
.lsf_c00039{letter-spacing:11.520000pt;}
.ws0_c00039{word-spacing:-8.640000pt;}
.ws2_c00039{word-spacing:0.000000pt;}
.ws1_c00039{word-spacing:0.122912pt;}
._10_c00039{margin-left:-4.428800pt;}
._4_c00039{margin-left:-2.771200pt;}
._5_c00039{margin-left:-1.376000pt;}
._2_c00039{width:0.915200pt;}
._0_c00039{width:2.713600pt;}
._1_c00039{width:3.699200pt;}
._3_c00039{width:4.640000pt;}
._9_c00039{width:5.900800pt;}
._a_c00039{width:7.526400pt;}
._6_c00039{width:9.120000pt;}
._7_c00039{width:10.233600pt;}
._8_c00039{width:11.782400pt;}
._b_c00039{width:12.755200pt;}
._c_c00039{width:14.041600pt;}
._d_c00039{width:19.808000pt;}
._e_c00039{width:21.388800pt;}
._f_c00039{width:22.451200pt;}
.fs3_c00039{font-size:34.560000pt;}
.fs2_c00039{font-size:42.560000pt;}
.fs0_c00039{font-size:53.440000pt;}
.fs1_c00039{font-size:64.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.y6_c00039{bottom:50.987067pt;}
.y5_c00039{bottom:69.387067pt;}
.y26_c00039{bottom:97.707235pt;}
.y25_c00039{bottom:117.627067pt;}
.y24_c00039{bottom:128.907067pt;}
.y23_c00039{bottom:184.027067pt;}
.y22_c00039{bottom:211.627067pt;}
.y21_c00039{bottom:249.787067pt;}
.y20_c00039{bottom:277.467067pt;}
.y1f_c00039{bottom:305.067067pt;}
.y1e_c00039{bottom:332.667067pt;}
.y1d_c00039{bottom:360.267067pt;}
.y1c_c00039{bottom:387.867067pt;}
.y1b_c00039{bottom:415.467067pt;}
.y1a_c00039{bottom:443.067067pt;}
.y19_c00039{bottom:470.667067pt;}
.y18_c00039{bottom:498.267067pt;}
.y17_c00039{bottom:525.867067pt;}
.y16_c00039{bottom:553.467067pt;}
.y15_c00039{bottom:591.627067pt;}
.y14_c00039{bottom:619.307067pt;}
.y13_c00039{bottom:646.907067pt;}
.y12_c00039{bottom:674.507067pt;}
.y11_c00039{bottom:702.107067pt;}
.y10_c00039{bottom:740.267067pt;}
.yf_c00039{bottom:767.947067pt;}
.ye_c00039{bottom:795.547067pt;}
.yd_c00039{bottom:823.147067pt;}
.yc_c00039{bottom:850.747067pt;}
.yb_c00039{bottom:878.347067pt;}
.ya_c00039{bottom:905.947067pt;}
.y9_c00039{bottom:944.107067pt;}
.y8_c00039{bottom:971.787067pt;}
.y7_c00039{bottom:999.387067pt;}
.y4_c00039{bottom:1017.227251pt;}
.y3_c00039{bottom:1032.587243pt;}
.y2_c00039{bottom:1047.867075pt;}
.y1_c00039{bottom:1063.227067pt;}
.h5_c00039{height:30.324375pt;}
.h6_c00039{height:46.890469pt;}
.h1_c00039{height:47.020937pt;}
.h2_c00039{height:56.156250pt;}
.h4_c00039{height:56.843750pt;}
.h3_c00039{height:61.343906pt;}
.h0_c00039{height:1122.666667pt;}
.w1_c00039{width:793.333333pt;}
.w0_c00039{width:793.626667pt;}
.x0_c00039{left:0.000000pt;}
.x4_c00039{left:113.440000pt;}
.x1_c00039{left:577.440000pt;}
.x3_c00039{left:664.400000pt;}
.x2_c00039{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.095703;font-style:normal;font-weight:normal;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_6eb15e3066df2ecb63b12296.woff2')format("woff");}.ff2_c00040{font-family:ff2_c00040;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00040{font-family:ff3_c00040;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00040{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.lse_c00040{letter-spacing:-0.102204px;}
.ls11_c00040{letter-spacing:-0.057600px;}
.ls13_c00040{letter-spacing:-0.043200px;}
.ls15_c00040{letter-spacing:-0.028800px;}
.ls14_c00040{letter-spacing:-0.021600px;}
.ls10_c00040{letter-spacing:-0.014400px;}
.ls12_c00040{letter-spacing:-0.007200px;}
.lsf_c00040{letter-spacing:0.000000px;}
.ls1_c00040{letter-spacing:0.007200px;}
.ls7_c00040{letter-spacing:0.014400px;}
.ls5_c00040{letter-spacing:0.021600px;}
.ls0_c00040{letter-spacing:0.028800px;}
.ls2_c00040{letter-spacing:0.036000px;}
.ls8_c00040{letter-spacing:0.043200px;}
.lsc_c00040{letter-spacing:0.050400px;}
.ls4_c00040{letter-spacing:0.057600px;}
.ls3_c00040{letter-spacing:0.064800px;}
.lsb_c00040{letter-spacing:0.072000px;}
.ls9_c00040{letter-spacing:0.079200px;}
.lsa_c00040{letter-spacing:0.100800px;}
.lsd_c00040{letter-spacing:0.108000px;}
.ls6_c00040{letter-spacing:6.480000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00040{word-spacing:0.000000px;}
.ws0_c00040{word-spacing:0.192384px;}
._e_c00040{margin-left:-2.217600px;}
._2_c00040{margin-left:-1.180800px;}
._0_c00040{width:1.034064px;}
._6_c00040{width:2.289600px;}
._7_c00040{width:3.326400px;}
._d_c00040{width:4.358736px;}
._5_c00040{width:5.788800px;}
._1_c00040{width:6.811200px;}
._a_c00040{width:7.848000px;}
._3_c00040{width:8.964000px;}
._4_c00040{width:10.116000px;}
._8_c00040{width:11.527200px;}
._9_c00040{width:16.444800px;}
._10_c00040{width:19.281600px;}
._b_c00040{width:20.721600px;}
._c_c00040{width:22.406400px;}
._f_c00040{width:24.295536px;}
.fc1_c00040{color:rgb(0,0,0);}
.fc0_c00040{color:rgb(32,31,30);}
.fs0_c00040{font-size:60.120000px;}
.fs1_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.y5_c00040{bottom:57.360450px;}
.y4_c00040{bottom:78.060450px;}
.y22_c00040{bottom:182.010450px;}
.y21_c00040{bottom:213.150450px;}
.y20_c00040{bottom:244.200450px;}
.y1f_c00040{bottom:287.130450px;}
.y1e_c00040{bottom:318.270450px;}
.y1d_c00040{bottom:349.320450px;}
.y1c_c00040{bottom:380.370450px;}
.y1b_c00040{bottom:411.420450px;}
.y1a_c00040{bottom:442.470450px;}
.y19_c00040{bottom:485.400450px;}
.y18_c00040{bottom:516.540450px;}
.y17_c00040{bottom:547.590450px;}
.y16_c00040{bottom:578.640450px;}
.y15_c00040{bottom:609.690450px;}
.y14_c00040{bottom:652.620450px;}
.y13_c00040{bottom:683.760450px;}
.y12_c00040{bottom:714.810450px;}
.y11_c00040{bottom:745.860450px;}
.y10_c00040{bottom:776.910450px;}
.yf_c00040{bottom:819.930450px;}
.ye_c00040{bottom:851.070450px;}
.yd_c00040{bottom:882.120450px;}
.yc_c00040{bottom:913.170450px;}
.yb_c00040{bottom:944.220450px;}
.ya_c00040{bottom:975.180450px;}
.y9_c00040{bottom:1018.200450px;}
.y8_c00040{bottom:1049.340450px;}
.y7_c00040{bottom:1080.390450px;}
.y6_c00040{bottom:1111.440450px;}
.y3_c00040{bottom:1132.140450px;}
.y2_c00040{bottom:1165.441023px;}
.y1_c00040{bottom:1196.040600px;}
.h1_c00040{height:52.898555px;}
.h2_c00040{height:63.175781px;}
.h3_c00040{height:63.949219px;}
.h0_c00040{height:1263.000000px;}
.w1_c00040{width:892.500000px;}
.w0_c00040{width:892.830000px;}
.x0_c00040{left:0.000000px;}
.x1_c00040{left:127.620000px;}
.x2_c00040{left:747.450000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.lse_c00040{letter-spacing:-0.090848pt;}
.ls11_c00040{letter-spacing:-0.051200pt;}
.ls13_c00040{letter-spacing:-0.038400pt;}
.ls15_c00040{letter-spacing:-0.025600pt;}
.ls14_c00040{letter-spacing:-0.019200pt;}
.ls10_c00040{letter-spacing:-0.012800pt;}
.ls12_c00040{letter-spacing:-0.006400pt;}
.lsf_c00040{letter-spacing:0.000000pt;}
.ls1_c00040{letter-spacing:0.006400pt;}
.ls7_c00040{letter-spacing:0.012800pt;}
.ls5_c00040{letter-spacing:0.019200pt;}
.ls0_c00040{letter-spacing:0.025600pt;}
.ls2_c00040{letter-spacing:0.032000pt;}
.ls8_c00040{letter-spacing:0.038400pt;}
.lsc_c00040{letter-spacing:0.044800pt;}
.ls4_c00040{letter-spacing:0.051200pt;}
.ls3_c00040{letter-spacing:0.057600pt;}
.lsb_c00040{letter-spacing:0.064000pt;}
.ls9_c00040{letter-spacing:0.070400pt;}
.lsa_c00040{letter-spacing:0.089600pt;}
.lsd_c00040{letter-spacing:0.096000pt;}
.ls6_c00040{letter-spacing:5.760000pt;}
.ws1_c00040{word-spacing:0.000000pt;}
.ws0_c00040{word-spacing:0.171008pt;}
._e_c00040{margin-left:-1.971200pt;}
._2_c00040{margin-left:-1.049600pt;}
._0_c00040{width:0.919168pt;}
._6_c00040{width:2.035200pt;}
._7_c00040{width:2.956800pt;}
._d_c00040{width:3.874432pt;}
._5_c00040{width:5.145600pt;}
._1_c00040{width:6.054400pt;}
._a_c00040{width:6.976000pt;}
._3_c00040{width:7.968000pt;}
._4_c00040{width:8.992000pt;}
._8_c00040{width:10.246400pt;}
._9_c00040{width:14.617600pt;}
._10_c00040{width:17.139200pt;}
._b_c00040{width:18.419200pt;}
._c_c00040{width:19.916800pt;}
._f_c00040{width:21.596032pt;}
.fs0_c00040{font-size:53.440000pt;}
.fs1_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y5_c00040{bottom:50.987067pt;}
.y4_c00040{bottom:69.387067pt;}
.y22_c00040{bottom:161.787067pt;}
.y21_c00040{bottom:189.467067pt;}
.y20_c00040{bottom:217.067067pt;}
.y1f_c00040{bottom:255.227067pt;}
.y1e_c00040{bottom:282.907067pt;}
.y1d_c00040{bottom:310.507067pt;}
.y1c_c00040{bottom:338.107067pt;}
.y1b_c00040{bottom:365.707067pt;}
.y1a_c00040{bottom:393.307067pt;}
.y19_c00040{bottom:431.467067pt;}
.y18_c00040{bottom:459.147067pt;}
.y17_c00040{bottom:486.747067pt;}
.y16_c00040{bottom:514.347067pt;}
.y15_c00040{bottom:541.947067pt;}
.y14_c00040{bottom:580.107067pt;}
.y13_c00040{bottom:607.787067pt;}
.y12_c00040{bottom:635.387067pt;}
.y11_c00040{bottom:662.987067pt;}
.y10_c00040{bottom:690.587067pt;}
.yf_c00040{bottom:728.827067pt;}
.ye_c00040{bottom:756.507067pt;}
.yd_c00040{bottom:784.107067pt;}
.yc_c00040{bottom:811.707067pt;}
.yb_c00040{bottom:839.307067pt;}
.ya_c00040{bottom:866.827067pt;}
.y9_c00040{bottom:905.067067pt;}
.y8_c00040{bottom:932.747067pt;}
.y7_c00040{bottom:960.347067pt;}
.y6_c00040{bottom:987.947067pt;}
.y3_c00040{bottom:1006.347067pt;}
.y2_c00040{bottom:1035.947576pt;}
.y1_c00040{bottom:1063.147200pt;}
.h1_c00040{height:47.020937pt;}
.h2_c00040{height:56.156250pt;}
.h3_c00040{height:56.843750pt;}
.h0_c00040{height:1122.666667pt;}
.w1_c00040{width:793.333333pt;}
.w0_c00040{width:793.626667pt;}
.x0_c00040{left:0.000000pt;}
.x1_c00040{left:113.440000pt;}
.x2_c00040{left:664.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.095703;font-style:normal;font-weight:normal;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_2602e1258a6d13d3644703e8.woff2')format("woff");}.ff2_c00041{font-family:ff2_c00041;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00041{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.lsa_c00041{letter-spacing:-0.048096px;}
.lsd_c00041{letter-spacing:-0.028800px;}
.ls10_c00041{letter-spacing:-0.021600px;}
.ls11_c00041{letter-spacing:-0.014400px;}
.lsf_c00041{letter-spacing:-0.007200px;}
.lsb_c00041{letter-spacing:0.000000px;}
.ls5_c00041{letter-spacing:0.007200px;}
.ls2_c00041{letter-spacing:0.014400px;}
.ls7_c00041{letter-spacing:0.021600px;}
.ls4_c00041{letter-spacing:0.028800px;}
.ls6_c00041{letter-spacing:0.036000px;}
.ls0_c00041{letter-spacing:0.043200px;}
.ls3_c00041{letter-spacing:0.050400px;}
.ls9_c00041{letter-spacing:0.057600px;}
.ls12_c00041{letter-spacing:0.072000px;}
.ls1_c00041{letter-spacing:0.115200px;}
.ls8_c00041{letter-spacing:0.158400px;}
.lsc_c00041{letter-spacing:12.240000px;}
.lse_c00041{letter-spacing:23.400000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00041{word-spacing:0.000000px;}
.ws0_c00041{word-spacing:0.138276px;}
._d_c00041{margin-left:-24.112800px;}
._e_c00041{margin-left:-22.608000px;}
._6_c00041{margin-left:-13.125600px;}
._5_c00041{margin-left:-11.995200px;}
._15_c00041{margin-left:-5.644800px;}
._14_c00041{margin-left:-4.363200px;}
._16_c00041{margin-left:-2.232000px;}
._1_c00041{margin-left:-1.209600px;}
._3_c00041{width:1.346400px;}
._11_c00041{width:2.836800px;}
._b_c00041{width:4.521600px;}
._f_c00041{width:6.076800px;}
._10_c00041{width:7.272000px;}
._13_c00041{width:8.978400px;}
._a_c00041{width:10.051200px;}
._0_c00041{width:12.196800px;}
._2_c00041{width:13.766400px;}
._7_c00041{width:16.408800px;}
._c_c00041{width:22.118400px;}
._8_c00041{width:23.896800px;}
._9_c00041{width:24.991200px;}
._12_c00041{width:26.049600px;}
._4_c00041{width:32.356800px;}
.fc0_c00041{color:rgb(0,0,0);}
.fs0_c00041{font-size:60.120000px;}
.fs1_c00041{font-size:72.000000px;}
.y0_c00041{bottom:0.000000px;}
.y6_c00041{bottom:57.360450px;}
.y5_c00041{bottom:78.060450px;}
.y24_c00041{bottom:175.890450px;}
.y23_c00041{bottom:207.030450px;}
.y22_c00041{bottom:238.080450px;}
.y21_c00041{bottom:269.130450px;}
.y20_c00041{bottom:300.180450px;}
.y1f_c00041{bottom:331.230450px;}
.y1e_c00041{bottom:362.280450px;}
.y1d_c00041{bottom:393.330450px;}
.y1c_c00041{bottom:424.380450px;}
.y1b_c00041{bottom:455.430450px;}
.y1a_c00041{bottom:498.360450px;}
.y19_c00041{bottom:529.500450px;}
.y18_c00041{bottom:560.550450px;}
.y17_c00041{bottom:591.600450px;}
.y16_c00041{bottom:622.650450px;}
.y15_c00041{bottom:653.700450px;}
.y14_c00041{bottom:696.630450px;}
.y13_c00041{bottom:727.770450px;}
.y12_c00041{bottom:758.820450px;}
.y11_c00041{bottom:789.870450px;}
.y10_c00041{bottom:832.800450px;}
.yf_c00041{bottom:863.940450px;}
.ye_c00041{bottom:894.990450px;}
.yd_c00041{bottom:926.040450px;}
.yc_c00041{bottom:957.090450px;}
.yb_c00041{bottom:988.140450px;}
.ya_c00041{bottom:1031.070450px;}
.y9_c00041{bottom:1062.210450px;}
.y8_c00041{bottom:1093.260450px;}
.y7_c00041{bottom:1124.310450px;}
.y4_c00041{bottom:1144.380657px;}
.y3_c00041{bottom:1161.660648px;}
.y2_c00041{bottom:1178.850459px;}
.y1_c00041{bottom:1196.130450px;}
.h1_c00041{height:52.898555px;}
.h2_c00041{height:63.175781px;}
.h0_c00041{height:1263.000000px;}
.w1_c00041{width:892.500000px;}
.w0_c00041{width:892.830000px;}
.x0_c00041{left:0.000000px;}
.x4_c00041{left:127.620000px;}
.x1_c00041{left:649.620000px;}
.x3_c00041{left:747.450000px;}
.x2_c00041{left:765.450198px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.lsa_c00041{letter-spacing:-0.042752pt;}
.lsd_c00041{letter-spacing:-0.025600pt;}
.ls10_c00041{letter-spacing:-0.019200pt;}
.ls11_c00041{letter-spacing:-0.012800pt;}
.lsf_c00041{letter-spacing:-0.006400pt;}
.lsb_c00041{letter-spacing:0.000000pt;}
.ls5_c00041{letter-spacing:0.006400pt;}
.ls2_c00041{letter-spacing:0.012800pt;}
.ls7_c00041{letter-spacing:0.019200pt;}
.ls4_c00041{letter-spacing:0.025600pt;}
.ls6_c00041{letter-spacing:0.032000pt;}
.ls0_c00041{letter-spacing:0.038400pt;}
.ls3_c00041{letter-spacing:0.044800pt;}
.ls9_c00041{letter-spacing:0.051200pt;}
.ls12_c00041{letter-spacing:0.064000pt;}
.ls1_c00041{letter-spacing:0.102400pt;}
.ls8_c00041{letter-spacing:0.140800pt;}
.lsc_c00041{letter-spacing:10.880000pt;}
.lse_c00041{letter-spacing:20.800000pt;}
.ws1_c00041{word-spacing:0.000000pt;}
.ws0_c00041{word-spacing:0.122912pt;}
._d_c00041{margin-left:-21.433600pt;}
._e_c00041{margin-left:-20.096000pt;}
._6_c00041{margin-left:-11.667200pt;}
._5_c00041{margin-left:-10.662400pt;}
._15_c00041{margin-left:-5.017600pt;}
._14_c00041{margin-left:-3.878400pt;}
._16_c00041{margin-left:-1.984000pt;}
._1_c00041{margin-left:-1.075200pt;}
._3_c00041{width:1.196800pt;}
._11_c00041{width:2.521600pt;}
._b_c00041{width:4.019200pt;}
._f_c00041{width:5.401600pt;}
._10_c00041{width:6.464000pt;}
._13_c00041{width:7.980800pt;}
._a_c00041{width:8.934400pt;}
._0_c00041{width:10.841600pt;}
._2_c00041{width:12.236800pt;}
._7_c00041{width:14.585600pt;}
._c_c00041{width:19.660800pt;}
._8_c00041{width:21.241600pt;}
._9_c00041{width:22.214400pt;}
._12_c00041{width:23.155200pt;}
._4_c00041{width:28.761600pt;}
.fs0_c00041{font-size:53.440000pt;}
.fs1_c00041{font-size:64.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y6_c00041{bottom:50.987067pt;}
.y5_c00041{bottom:69.387067pt;}
.y24_c00041{bottom:156.347067pt;}
.y23_c00041{bottom:184.027067pt;}
.y22_c00041{bottom:211.627067pt;}
.y21_c00041{bottom:239.227067pt;}
.y20_c00041{bottom:266.827067pt;}
.y1f_c00041{bottom:294.427067pt;}
.y1e_c00041{bottom:322.027067pt;}
.y1d_c00041{bottom:349.627067pt;}
.y1c_c00041{bottom:377.227067pt;}
.y1b_c00041{bottom:404.827067pt;}
.y1a_c00041{bottom:442.987067pt;}
.y19_c00041{bottom:470.667067pt;}
.y18_c00041{bottom:498.267067pt;}
.y17_c00041{bottom:525.867067pt;}
.y16_c00041{bottom:553.467067pt;}
.y15_c00041{bottom:581.067067pt;}
.y14_c00041{bottom:619.227067pt;}
.y13_c00041{bottom:646.907067pt;}
.y12_c00041{bottom:674.507067pt;}
.y11_c00041{bottom:702.107067pt;}
.y10_c00041{bottom:740.267067pt;}
.yf_c00041{bottom:767.947067pt;}
.ye_c00041{bottom:795.547067pt;}
.yd_c00041{bottom:823.147067pt;}
.yc_c00041{bottom:850.747067pt;}
.yb_c00041{bottom:878.347067pt;}
.ya_c00041{bottom:916.507067pt;}
.y9_c00041{bottom:944.187067pt;}
.y8_c00041{bottom:971.787067pt;}
.y7_c00041{bottom:999.387067pt;}
.y4_c00041{bottom:1017.227251pt;}
.y3_c00041{bottom:1032.587243pt;}
.y2_c00041{bottom:1047.867075pt;}
.y1_c00041{bottom:1063.227067pt;}
.h1_c00041{height:47.020937pt;}
.h2_c00041{height:56.156250pt;}
.h0_c00041{height:1122.666667pt;}
.w1_c00041{width:793.333333pt;}
.w0_c00041{width:793.626667pt;}
.x0_c00041{left:0.000000pt;}
.x4_c00041{left:113.440000pt;}
.x1_c00041{left:577.440000pt;}
.x3_c00041{left:664.400000pt;}
.x2_c00041{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_742ec5e855549223f74b01a9.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.095703;font-style:normal;font-weight:normal;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_4bfb8e0bcd06c80042599725.woff2')format("woff");}.ff2_c00042{font-family:ff2_c00042;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00042{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.lsd_c00042{letter-spacing:-0.102204px;}
.ls15_c00042{letter-spacing:-0.057600px;}
.ls12_c00042{letter-spacing:-0.043200px;}
.ls11_c00042{letter-spacing:-0.021600px;}
.ls14_c00042{letter-spacing:-0.014400px;}
.lsf_c00042{letter-spacing:-0.007200px;}
.lse_c00042{letter-spacing:0.000000px;}
.ls6_c00042{letter-spacing:0.007200px;}
.ls7_c00042{letter-spacing:0.014400px;}
.ls8_c00042{letter-spacing:0.021600px;}
.ls3_c00042{letter-spacing:0.028800px;}
.ls2_c00042{letter-spacing:0.036000px;}
.ls9_c00042{letter-spacing:0.043200px;}
.ls0_c00042{letter-spacing:0.050400px;}
.ls4_c00042{letter-spacing:0.057600px;}
.lsc_c00042{letter-spacing:0.064800px;}
.lsb_c00042{letter-spacing:0.072000px;}
.ls5_c00042{letter-spacing:0.086400px;}
.lsa_c00042{letter-spacing:0.108000px;}
.ls1_c00042{letter-spacing:0.115200px;}
.ls10_c00042{letter-spacing:4.320000px;}
.ls13_c00042{letter-spacing:4.917600px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00042{word-spacing:0.000000px;}
.ws0_c00042{word-spacing:0.192384px;}
.ws2_c00042{word-spacing:3.218400px;}
._9_c00042{margin-left:-5.068800px;}
._8_c00042{margin-left:-3.916800px;}
._6_c00042{margin-left:-2.318400px;}
._4_c00042{margin-left:-1.267200px;}
._0_c00042{width:1.034064px;}
._b_c00042{width:2.404800px;}
._1_c00042{width:3.607200px;}
._2_c00042{width:4.968000px;}
._c_c00042{width:7.560000px;}
._f_c00042{width:8.992800px;}
._a_c00042{width:11.865600px;}
._10_c00042{width:14.364000px;}
._11_c00042{width:15.415200px;}
._3_c00042{width:16.884000px;}
._7_c00042{width:20.124000px;}
._5_c00042{width:23.724000px;}
._e_c00042{width:28.497600px;}
._d_c00042{width:29.822400px;}
.fc1_c00042{color:rgb(0,0,0);}
.fc0_c00042{color:rgb(32,31,30);}
.fs0_c00042{font-size:60.120000px;}
.fs1_c00042{font-size:72.000000px;}
.y0_c00042{bottom:0.000000px;}
.y5_c00042{bottom:57.360450px;}
.y4_c00042{bottom:78.060450px;}
.y24_c00042{bottom:119.910450px;}
.y23_c00042{bottom:151.050450px;}
.y22_c00042{bottom:182.100450px;}
.y21_c00042{bottom:213.150450px;}
.y20_c00042{bottom:256.080450px;}
.y1f_c00042{bottom:287.220450px;}
.y1e_c00042{bottom:318.270450px;}
.y1d_c00042{bottom:349.320450px;}
.y1c_c00042{bottom:380.370450px;}
.y1b_c00042{bottom:423.300450px;}
.y1a_c00042{bottom:454.440450px;}
.y19_c00042{bottom:485.490450px;}
.y18_c00042{bottom:516.540450px;}
.y17_c00042{bottom:547.590450px;}
.y16_c00042{bottom:578.640450px;}
.y15_c00042{bottom:621.570450px;}
.y14_c00042{bottom:652.710450px;}
.y13_c00042{bottom:683.760450px;}
.y12_c00042{bottom:714.810450px;}
.y11_c00042{bottom:757.830450px;}
.y10_c00042{bottom:788.970450px;}
.yf_c00042{bottom:820.020450px;}
.ye_c00042{bottom:851.070450px;}
.yd_c00042{bottom:882.120450px;}
.yc_c00042{bottom:925.050450px;}
.yb_c00042{bottom:956.190450px;}
.ya_c00042{bottom:987.240450px;}
.y9_c00042{bottom:1018.290450px;}
.y8_c00042{bottom:1049.340450px;}
.y7_c00042{bottom:1080.390450px;}
.y6_c00042{bottom:1111.440450px;}
.y3_c00042{bottom:1132.140450px;}
.y2_c00042{bottom:1165.441023px;}
.y1_c00042{bottom:1196.040600px;}
.h1_c00042{height:52.898555px;}
.h2_c00042{height:63.175781px;}
.h3_c00042{height:63.351562px;}
.h0_c00042{height:1263.000000px;}
.w1_c00042{width:892.500000px;}
.w0_c00042{width:892.830000px;}
.x0_c00042{left:0.000000px;}
.x1_c00042{left:127.620000px;}
.x2_c00042{left:747.450000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.lsd_c00042{letter-spacing:-0.090848pt;}
.ls15_c00042{letter-spacing:-0.051200pt;}
.ls12_c00042{letter-spacing:-0.038400pt;}
.ls11_c00042{letter-spacing:-0.019200pt;}
.ls14_c00042{letter-spacing:-0.012800pt;}
.lsf_c00042{letter-spacing:-0.006400pt;}
.lse_c00042{letter-spacing:0.000000pt;}
.ls6_c00042{letter-spacing:0.006400pt;}
.ls7_c00042{letter-spacing:0.012800pt;}
.ls8_c00042{letter-spacing:0.019200pt;}
.ls3_c00042{letter-spacing:0.025600pt;}
.ls2_c00042{letter-spacing:0.032000pt;}
.ls9_c00042{letter-spacing:0.038400pt;}
.ls0_c00042{letter-spacing:0.044800pt;}
.ls4_c00042{letter-spacing:0.051200pt;}
.lsc_c00042{letter-spacing:0.057600pt;}
.lsb_c00042{letter-spacing:0.064000pt;}
.ls5_c00042{letter-spacing:0.076800pt;}
.lsa_c00042{letter-spacing:0.096000pt;}
.ls1_c00042{letter-spacing:0.102400pt;}
.ls10_c00042{letter-spacing:3.840000pt;}
.ls13_c00042{letter-spacing:4.371200pt;}
.ws1_c00042{word-spacing:0.000000pt;}
.ws0_c00042{word-spacing:0.171008pt;}
.ws2_c00042{word-spacing:2.860800pt;}
._9_c00042{margin-left:-4.505600pt;}
._8_c00042{margin-left:-3.481600pt;}
._6_c00042{margin-left:-2.060800pt;}
._4_c00042{margin-left:-1.126400pt;}
._0_c00042{width:0.919168pt;}
._b_c00042{width:2.137600pt;}
._1_c00042{width:3.206400pt;}
._2_c00042{width:4.416000pt;}
._c_c00042{width:6.720000pt;}
._f_c00042{width:7.993600pt;}
._a_c00042{width:10.547200pt;}
._10_c00042{width:12.768000pt;}
._11_c00042{width:13.702400pt;}
._3_c00042{width:15.008000pt;}
._7_c00042{width:17.888000pt;}
._5_c00042{width:21.088000pt;}
._e_c00042{width:25.331200pt;}
._d_c00042{width:26.508800pt;}
.fs0_c00042{font-size:53.440000pt;}
.fs1_c00042{font-size:64.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y5_c00042{bottom:50.987067pt;}
.y4_c00042{bottom:69.387067pt;}
.y24_c00042{bottom:106.587067pt;}
.y23_c00042{bottom:134.267067pt;}
.y22_c00042{bottom:161.867067pt;}
.y21_c00042{bottom:189.467067pt;}
.y20_c00042{bottom:227.627067pt;}
.y1f_c00042{bottom:255.307067pt;}
.y1e_c00042{bottom:282.907067pt;}
.y1d_c00042{bottom:310.507067pt;}
.y1c_c00042{bottom:338.107067pt;}
.y1b_c00042{bottom:376.267067pt;}
.y1a_c00042{bottom:403.947067pt;}
.y19_c00042{bottom:431.547067pt;}
.y18_c00042{bottom:459.147067pt;}
.y17_c00042{bottom:486.747067pt;}
.y16_c00042{bottom:514.347067pt;}
.y15_c00042{bottom:552.507067pt;}
.y14_c00042{bottom:580.187067pt;}
.y13_c00042{bottom:607.787067pt;}
.y12_c00042{bottom:635.387067pt;}
.y11_c00042{bottom:673.627067pt;}
.y10_c00042{bottom:701.307067pt;}
.yf_c00042{bottom:728.907067pt;}
.ye_c00042{bottom:756.507067pt;}
.yd_c00042{bottom:784.107067pt;}
.yc_c00042{bottom:822.267067pt;}
.yb_c00042{bottom:849.947067pt;}
.ya_c00042{bottom:877.547067pt;}
.y9_c00042{bottom:905.147067pt;}
.y8_c00042{bottom:932.747067pt;}
.y7_c00042{bottom:960.347067pt;}
.y6_c00042{bottom:987.947067pt;}
.y3_c00042{bottom:1006.347067pt;}
.y2_c00042{bottom:1035.947576pt;}
.y1_c00042{bottom:1063.147200pt;}
.h1_c00042{height:47.020937pt;}
.h2_c00042{height:56.156250pt;}
.h3_c00042{height:56.312500pt;}
.h0_c00042{height:1122.666667pt;}
.w1_c00042{width:793.333333pt;}
.w0_c00042{width:793.626667pt;}
.x0_c00042{left:0.000000pt;}
.x1_c00042{left:113.440000pt;}
.x2_c00042{left:664.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_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_5168bcb542944277b3724c69.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.095703;font-style:normal;font-weight:normal;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_bf96d67dd6120ccc49e2aa38.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00043;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00043{font-family:ff3_c00043;line-height:1.104004;font-style: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;}
.ls14_c00043{letter-spacing:-0.072000px;}
.ls17_c00043{letter-spacing:-0.050400px;}
.lsf_c00043{letter-spacing:-0.048096px;}
.ls16_c00043{letter-spacing:-0.036000px;}
.ls15_c00043{letter-spacing:-0.028800px;}
.ls13_c00043{letter-spacing:-0.021600px;}
.ls12_c00043{letter-spacing:-0.014400px;}
.ls11_c00043{letter-spacing:-0.007200px;}
.ls10_c00043{letter-spacing:0.000000px;}
.lsa_c00043{letter-spacing:0.007200px;}
.ls0_c00043{letter-spacing:0.014400px;}
.ls5_c00043{letter-spacing:0.021600px;}
.ls8_c00043{letter-spacing:0.028800px;}
.ls2_c00043{letter-spacing:0.036000px;}
.lsc_c00043{letter-spacing:0.043200px;}
.ls1_c00043{letter-spacing:0.050400px;}
.ls9_c00043{letter-spacing:0.057600px;}
.ls7_c00043{letter-spacing:0.064800px;}
.lse_c00043{letter-spacing:0.072000px;}
.ls6_c00043{letter-spacing:0.079200px;}
.ls4_c00043{letter-spacing:0.086400px;}
.lsd_c00043{letter-spacing:0.093600px;}
.ls3_c00043{letter-spacing:0.108000px;}
.lsb_c00043{letter-spacing:0.122400px;}
.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;}
}
.ws7_c00043{word-spacing:-0.388800px;}
.ws6_c00043{word-spacing:-0.216000px;}
.ws5_c00043{word-spacing:-0.079200px;}
.ws2_c00043{word-spacing:-0.007200px;}
.ws1_c00043{word-spacing:0.000000px;}
.ws0_c00043{word-spacing:0.138276px;}
.ws4_c00043{word-spacing:2.289600px;}
.ws3_c00043{word-spacing:5.198400px;}
._8_c00043{margin-left:-5.529600px;}
._7_c00043{margin-left:-4.341600px;}
._9_c00043{margin-left:-3.182400px;}
._3_c00043{margin-left:-1.080000px;}
._0_c00043{width:1.641600px;}
._5_c00043{width:2.664000px;}
._2_c00043{width:3.816000px;}
._1_c00043{width:4.989600px;}
._4_c00043{width:6.220800px;}
._6_c00043{width:8.200800px;}
._c_c00043{width:9.259200px;}
._d_c00043{width:10.461600px;}
._b_c00043{width:13.672800px;}
._a_c00043{width:14.745600px;}
.fc0_c00043{color:rgb(0,0,0);}
.fs0_c00043{font-size:60.120000px;}
.fs1_c00043{font-size:72.000000px;}
.y0_c00043{bottom:0.000000px;}
.y6_c00043{bottom:57.360450px;}
.y5_c00043{bottom:78.060450px;}
.y25_c00043{bottom:114.330450px;}
.y24_c00043{bottom:145.380450px;}
.y23_c00043{bottom:188.310450px;}
.y22_c00043{bottom:219.450450px;}
.y21_c00043{bottom:250.500450px;}
.y20_c00043{bottom:281.550450px;}
.y1f_c00043{bottom:312.600450px;}
.y1e_c00043{bottom:355.620450px;}
.y1d_c00043{bottom:386.760450px;}
.y1c_c00043{bottom:417.810450px;}
.y1b_c00043{bottom:448.860450px;}
.y1a_c00043{bottom:479.910450px;}
.y19_c00043{bottom:522.840450px;}
.y18_c00043{bottom:553.980450px;}
.y17_c00043{bottom:585.030450px;}
.y16_c00043{bottom:616.080450px;}
.y15_c00043{bottom:647.130450px;}
.y14_c00043{bottom:678.180450px;}
.y13_c00043{bottom:721.110450px;}
.y12_c00043{bottom:752.250450px;}
.y11_c00043{bottom:783.300450px;}
.y10_c00043{bottom:826.140450px;}
.yf_c00043{bottom:857.370450px;}
.ye_c00043{bottom:888.420450px;}
.yd_c00043{bottom:931.350450px;}
.yc_c00043{bottom:953.670450px;}
.yb_c00043{bottom:987.870450px;}
.ya_c00043{bottom:1031.070450px;}
.y9_c00043{bottom:1062.210450px;}
.y8_c00043{bottom:1093.260450px;}
.y7_c00043{bottom:1124.310450px;}
.y4_c00043{bottom:1144.380657px;}
.y3_c00043{bottom:1161.660648px;}
.y2_c00043{bottom:1178.850459px;}
.y1_c00043{bottom:1196.130450px;}
.h1_c00043{height:52.898555px;}
.h2_c00043{height:63.175781px;}
.h4_c00043{height:63.351562px;}
.h3_c00043{height:63.949219px;}
.h0_c00043{height:1263.000000px;}
.w1_c00043{width:892.500000px;}
.w0_c00043{width:892.830000px;}
.x0_c00043{left:0.000000px;}
.x4_c00043{left:127.620000px;}
.x1_c00043{left:649.620000px;}
.x3_c00043{left:747.450000px;}
.x2_c00043{left:765.450198px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls14_c00043{letter-spacing:-0.064000pt;}
.ls17_c00043{letter-spacing:-0.044800pt;}
.lsf_c00043{letter-spacing:-0.042752pt;}
.ls16_c00043{letter-spacing:-0.032000pt;}
.ls15_c00043{letter-spacing:-0.025600pt;}
.ls13_c00043{letter-spacing:-0.019200pt;}
.ls12_c00043{letter-spacing:-0.012800pt;}
.ls11_c00043{letter-spacing:-0.006400pt;}
.ls10_c00043{letter-spacing:0.000000pt;}
.lsa_c00043{letter-spacing:0.006400pt;}
.ls0_c00043{letter-spacing:0.012800pt;}
.ls5_c00043{letter-spacing:0.019200pt;}
.ls8_c00043{letter-spacing:0.025600pt;}
.ls2_c00043{letter-spacing:0.032000pt;}
.lsc_c00043{letter-spacing:0.038400pt;}
.ls1_c00043{letter-spacing:0.044800pt;}
.ls9_c00043{letter-spacing:0.051200pt;}
.ls7_c00043{letter-spacing:0.057600pt;}
.lse_c00043{letter-spacing:0.064000pt;}
.ls6_c00043{letter-spacing:0.070400pt;}
.ls4_c00043{letter-spacing:0.076800pt;}
.lsd_c00043{letter-spacing:0.083200pt;}
.ls3_c00043{letter-spacing:0.096000pt;}
.lsb_c00043{letter-spacing:0.108800pt;}
.ws7_c00043{word-spacing:-0.345600pt;}
.ws6_c00043{word-spacing:-0.192000pt;}
.ws5_c00043{word-spacing:-0.070400pt;}
.ws2_c00043{word-spacing:-0.006400pt;}
.ws1_c00043{word-spacing:0.000000pt;}
.ws0_c00043{word-spacing:0.122912pt;}
.ws4_c00043{word-spacing:2.035200pt;}
.ws3_c00043{word-spacing:4.620800pt;}
._8_c00043{margin-left:-4.915200pt;}
._7_c00043{margin-left:-3.859200pt;}
._9_c00043{margin-left:-2.828800pt;}
._3_c00043{margin-left:-0.960000pt;}
._0_c00043{width:1.459200pt;}
._5_c00043{width:2.368000pt;}
._2_c00043{width:3.392000pt;}
._1_c00043{width:4.435200pt;}
._4_c00043{width:5.529600pt;}
._6_c00043{width:7.289600pt;}
._c_c00043{width:8.230400pt;}
._d_c00043{width:9.299200pt;}
._b_c00043{width:12.153600pt;}
._a_c00043{width:13.107200pt;}
.fs0_c00043{font-size:53.440000pt;}
.fs1_c00043{font-size:64.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y6_c00043{bottom:50.987067pt;}
.y5_c00043{bottom:69.387067pt;}
.y25_c00043{bottom:101.627067pt;}
.y24_c00043{bottom:129.227067pt;}
.y23_c00043{bottom:167.387067pt;}
.y22_c00043{bottom:195.067067pt;}
.y21_c00043{bottom:222.667067pt;}
.y20_c00043{bottom:250.267067pt;}
.y1f_c00043{bottom:277.867067pt;}
.y1e_c00043{bottom:316.107067pt;}
.y1d_c00043{bottom:343.787067pt;}
.y1c_c00043{bottom:371.387067pt;}
.y1b_c00043{bottom:398.987067pt;}
.y1a_c00043{bottom:426.587067pt;}
.y19_c00043{bottom:464.747067pt;}
.y18_c00043{bottom:492.427067pt;}
.y17_c00043{bottom:520.027067pt;}
.y16_c00043{bottom:547.627067pt;}
.y15_c00043{bottom:575.227067pt;}
.y14_c00043{bottom:602.827067pt;}
.y13_c00043{bottom:640.987067pt;}
.y12_c00043{bottom:668.667067pt;}
.y11_c00043{bottom:696.267067pt;}
.y10_c00043{bottom:734.347067pt;}
.yf_c00043{bottom:762.107067pt;}
.ye_c00043{bottom:789.707067pt;}
.yd_c00043{bottom:827.867067pt;}
.yc_c00043{bottom:847.707067pt;}
.yb_c00043{bottom:878.107067pt;}
.ya_c00043{bottom:916.507067pt;}
.y9_c00043{bottom:944.187067pt;}
.y8_c00043{bottom:971.787067pt;}
.y7_c00043{bottom:999.387067pt;}
.y4_c00043{bottom:1017.227251pt;}
.y3_c00043{bottom:1032.587243pt;}
.y2_c00043{bottom:1047.867075pt;}
.y1_c00043{bottom:1063.227067pt;}
.h1_c00043{height:47.020937pt;}
.h2_c00043{height:56.156250pt;}
.h4_c00043{height:56.312500pt;}
.h3_c00043{height:56.843750pt;}
.h0_c00043{height:1122.666667pt;}
.w1_c00043{width:793.333333pt;}
.w0_c00043{width:793.626667pt;}
.x0_c00043{left:0.000000pt;}
.x4_c00043{left:113.440000pt;}
.x1_c00043{left:577.440000pt;}
.x3_c00043{left:664.400000pt;}
.x2_c00043{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aeb9adbb7fb5724f936f22b7.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.095703;font-style:normal;font-weight:normal;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_2c3a623a457710dd698963c6.woff2')format("woff");}.ff2_c00044{font-family:ff2_c00044;line-height:1.093262;font-style: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);}
.v2_c00044{vertical-align:-20.880000px;}
.v0_c00044{vertical-align:0.000000px;}
.v1_c00044{vertical-align:24.120000px;}
.lsf_c00044{letter-spacing:-0.102204px;}
.ls1d_c00044{letter-spacing:-0.078156px;}
.ls1a_c00044{letter-spacing:-0.072000px;}
.ls13_c00044{letter-spacing:-0.064800px;}
.ls17_c00044{letter-spacing:-0.057600px;}
.ls18_c00044{letter-spacing:-0.043200px;}
.ls12_c00044{letter-spacing:-0.036000px;}
.ls14_c00044{letter-spacing:-0.028800px;}
.ls19_c00044{letter-spacing:-0.014400px;}
.ls11_c00044{letter-spacing:-0.007200px;}
.ls10_c00044{letter-spacing:0.000000px;}
.ls4_c00044{letter-spacing:0.007200px;}
.ls6_c00044{letter-spacing:0.014400px;}
.lsc_c00044{letter-spacing:0.021600px;}
.lsd_c00044{letter-spacing:0.028800px;}
.ls7_c00044{letter-spacing:0.036000px;}
.ls5_c00044{letter-spacing:0.043200px;}
.ls2_c00044{letter-spacing:0.050400px;}
.ls8_c00044{letter-spacing:0.057600px;}
.ls3_c00044{letter-spacing:0.064800px;}
.lsa_c00044{letter-spacing:0.072000px;}
.ls9_c00044{letter-spacing:0.079200px;}
.ls0_c00044{letter-spacing:0.086400px;}
.lse_c00044{letter-spacing:0.093600px;}
.ls1_c00044{letter-spacing:0.108000px;}
.ls1c_c00044{letter-spacing:0.108216px;}
.ls1b_c00044{letter-spacing:0.120240px;}
.lsb_c00044{letter-spacing:0.180000px;}
.ls15_c00044{letter-spacing:2.880000px;}
.ls16_c00044{letter-spacing:27.669600px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:-17.935200px;}
.ws1_c00044{word-spacing:-9.720000px;}
.ws5_c00044{word-spacing:-0.100800px;}
.ws3_c00044{word-spacing:0.000000px;}
.ws2_c00044{word-spacing:0.192384px;}
.ws4_c00044{word-spacing:6.372000px;}
._10_c00044{margin-left:-28.461600px;}
._11_c00044{margin-left:-26.877600px;}
._a_c00044{margin-left:-3.592800px;}
._b_c00044{margin-left:-2.520000px;}
._1_c00044{margin-left:-1.483200px;}
._0_c00044{width:1.034064px;}
._2_c00044{width:2.512800px;}
._9_c00044{width:4.010400px;}
._13_c00044{width:5.330736px;}
._12_c00044{width:6.386400px;}
._7_c00044{width:7.920000px;}
._4_c00044{width:9.309600px;}
._8_c00044{width:10.929600px;}
._6_c00044{width:12.772800px;}
._5_c00044{width:14.047200px;}
._3_c00044{width:16.876800px;}
._c_c00044{width:22.284000px;}
._d_c00044{width:24.523200px;}
._e_c00044{width:27.014400px;}
._f_c00044{width:28.180800px;}
.fc1_c00044{color:rgb(0,0,0);}
.fc0_c00044{color:rgb(32,31,30);}
.fs3_c00044{font-size:38.880000px;}
.fs2_c00044{font-size:47.880000px;}
.fs0_c00044{font-size:60.120000px;}
.fs1_c00044{font-size:72.000000px;}
.y0_c00044{bottom:0.000000px;}
.y5_c00044{bottom:57.360450px;}
.y4_c00044{bottom:78.060450px;}
.y25_c00044{bottom:109.920639px;}
.y24_c00044{bottom:132.330450px;}
.y23_c00044{bottom:145.020450px;}
.y22_c00044{bottom:193.980450px;}
.y21_c00044{bottom:225.120450px;}
.y20_c00044{bottom:256.170450px;}
.y1f_c00044{bottom:287.220450px;}
.y1e_c00044{bottom:318.270450px;}
.y1d_c00044{bottom:349.320450px;}
.y1c_c00044{bottom:380.370450px;}
.y1b_c00044{bottom:423.300450px;}
.y1a_c00044{bottom:454.440450px;}
.y19_c00044{bottom:485.490450px;}
.y18_c00044{bottom:516.540450px;}
.y17_c00044{bottom:547.590450px;}
.y16_c00044{bottom:578.640450px;}
.y15_c00044{bottom:609.690450px;}
.y14_c00044{bottom:652.620450px;}
.y13_c00044{bottom:683.760450px;}
.y12_c00044{bottom:714.810450px;}
.y11_c00044{bottom:745.860450px;}
.y10_c00044{bottom:788.880450px;}
.yf_c00044{bottom:820.020450px;}
.ye_c00044{bottom:851.070450px;}
.yd_c00044{bottom:882.120450px;}
.yc_c00044{bottom:913.170450px;}
.yb_c00044{bottom:944.220450px;}
.ya_c00044{bottom:975.180450px;}
.y9_c00044{bottom:1006.230450px;}
.y8_c00044{bottom:1049.250450px;}
.y7_c00044{bottom:1080.390450px;}
.y6_c00044{bottom:1111.440450px;}
.y3_c00044{bottom:1132.140450px;}
.y2_c00044{bottom:1165.441023px;}
.y1_c00044{bottom:1196.040600px;}
.h5_c00044{height:34.114922px;}
.h6_c00044{height:52.751777px;}
.h1_c00044{height:52.898555px;}
.h2_c00044{height:63.175781px;}
.h4_c00044{height:63.351562px;}
.h3_c00044{height:66.248789px;}
.h0_c00044{height:1263.000000px;}
.w1_c00044{width:892.500000px;}
.w0_c00044{width:892.830000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:127.620000px;}
.x2_c00044{left:747.450000px;}
@media print{
.v2_c00044{vertical-align:-18.560000pt;}
.v0_c00044{vertical-align:0.000000pt;}
.v1_c00044{vertical-align:21.440000pt;}
.lsf_c00044{letter-spacing:-0.090848pt;}
.ls1d_c00044{letter-spacing:-0.069472pt;}
.ls1a_c00044{letter-spacing:-0.064000pt;}
.ls13_c00044{letter-spacing:-0.057600pt;}
.ls17_c00044{letter-spacing:-0.051200pt;}
.ls18_c00044{letter-spacing:-0.038400pt;}
.ls12_c00044{letter-spacing:-0.032000pt;}
.ls14_c00044{letter-spacing:-0.025600pt;}
.ls19_c00044{letter-spacing:-0.012800pt;}
.ls11_c00044{letter-spacing:-0.006400pt;}
.ls10_c00044{letter-spacing:0.000000pt;}
.ls4_c00044{letter-spacing:0.006400pt;}
.ls6_c00044{letter-spacing:0.012800pt;}
.lsc_c00044{letter-spacing:0.019200pt;}
.lsd_c00044{letter-spacing:0.025600pt;}
.ls7_c00044{letter-spacing:0.032000pt;}
.ls5_c00044{letter-spacing:0.038400pt;}
.ls2_c00044{letter-spacing:0.044800pt;}
.ls8_c00044{letter-spacing:0.051200pt;}
.ls3_c00044{letter-spacing:0.057600pt;}
.lsa_c00044{letter-spacing:0.064000pt;}
.ls9_c00044{letter-spacing:0.070400pt;}
.ls0_c00044{letter-spacing:0.076800pt;}
.lse_c00044{letter-spacing:0.083200pt;}
.ls1_c00044{letter-spacing:0.096000pt;}
.ls1c_c00044{letter-spacing:0.096192pt;}
.ls1b_c00044{letter-spacing:0.106880pt;}
.lsb_c00044{letter-spacing:0.160000pt;}
.ls15_c00044{letter-spacing:2.560000pt;}
.ls16_c00044{letter-spacing:24.595200pt;}
.ws0_c00044{word-spacing:-15.942400pt;}
.ws1_c00044{word-spacing:-8.640000pt;}
.ws5_c00044{word-spacing:-0.089600pt;}
.ws3_c00044{word-spacing:0.000000pt;}
.ws2_c00044{word-spacing:0.171008pt;}
.ws4_c00044{word-spacing:5.664000pt;}
._10_c00044{margin-left:-25.299200pt;}
._11_c00044{margin-left:-23.891200pt;}
._a_c00044{margin-left:-3.193600pt;}
._b_c00044{margin-left:-2.240000pt;}
._1_c00044{margin-left:-1.318400pt;}
._0_c00044{width:0.919168pt;}
._2_c00044{width:2.233600pt;}
._9_c00044{width:3.564800pt;}
._13_c00044{width:4.738432pt;}
._12_c00044{width:5.676800pt;}
._7_c00044{width:7.040000pt;}
._4_c00044{width:8.275200pt;}
._8_c00044{width:9.715200pt;}
._6_c00044{width:11.353600pt;}
._5_c00044{width:12.486400pt;}
._3_c00044{width:15.001600pt;}
._c_c00044{width:19.808000pt;}
._d_c00044{width:21.798400pt;}
._e_c00044{width:24.012800pt;}
._f_c00044{width:25.049600pt;}
.fs3_c00044{font-size:34.560000pt;}
.fs2_c00044{font-size:42.560000pt;}
.fs0_c00044{font-size:53.440000pt;}
.fs1_c00044{font-size:64.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y5_c00044{bottom:50.987067pt;}
.y4_c00044{bottom:69.387067pt;}
.y25_c00044{bottom:97.707235pt;}
.y24_c00044{bottom:117.627067pt;}
.y23_c00044{bottom:128.907067pt;}
.y22_c00044{bottom:172.427067pt;}
.y21_c00044{bottom:200.107067pt;}
.y20_c00044{bottom:227.707067pt;}
.y1f_c00044{bottom:255.307067pt;}
.y1e_c00044{bottom:282.907067pt;}
.y1d_c00044{bottom:310.507067pt;}
.y1c_c00044{bottom:338.107067pt;}
.y1b_c00044{bottom:376.267067pt;}
.y1a_c00044{bottom:403.947067pt;}
.y19_c00044{bottom:431.547067pt;}
.y18_c00044{bottom:459.147067pt;}
.y17_c00044{bottom:486.747067pt;}
.y16_c00044{bottom:514.347067pt;}
.y15_c00044{bottom:541.947067pt;}
.y14_c00044{bottom:580.107067pt;}
.y13_c00044{bottom:607.787067pt;}
.y12_c00044{bottom:635.387067pt;}
.y11_c00044{bottom:662.987067pt;}
.y10_c00044{bottom:701.227067pt;}
.yf_c00044{bottom:728.907067pt;}
.ye_c00044{bottom:756.507067pt;}
.yd_c00044{bottom:784.107067pt;}
.yc_c00044{bottom:811.707067pt;}
.yb_c00044{bottom:839.307067pt;}
.ya_c00044{bottom:866.827067pt;}
.y9_c00044{bottom:894.427067pt;}
.y8_c00044{bottom:932.667067pt;}
.y7_c00044{bottom:960.347067pt;}
.y6_c00044{bottom:987.947067pt;}
.y3_c00044{bottom:1006.347067pt;}
.y2_c00044{bottom:1035.947576pt;}
.y1_c00044{bottom:1063.147200pt;}
.h5_c00044{height:30.324375pt;}
.h6_c00044{height:46.890469pt;}
.h1_c00044{height:47.020937pt;}
.h2_c00044{height:56.156250pt;}
.h4_c00044{height:56.312500pt;}
.h3_c00044{height:58.887812pt;}
.h0_c00044{height:1122.666667pt;}
.w1_c00044{width:793.333333pt;}
.w0_c00044{width:793.626667pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:113.440000pt;}
.x2_c00044{left:664.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_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_edcbf2ee6c05b7fd632cdca6.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_95a39908d82e61de0fcecc9e.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.093262;font-style: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;}
.ls15_c00045{letter-spacing:-0.086400px;}
.lsf_c00045{letter-spacing:-0.048096px;}
.ls13_c00045{letter-spacing:-0.043200px;}
.ls16_c00045{letter-spacing:-0.036000px;}
.ls11_c00045{letter-spacing:-0.028800px;}
.ls14_c00045{letter-spacing:-0.021600px;}
.ls12_c00045{letter-spacing:-0.007200px;}
.ls10_c00045{letter-spacing:0.000000px;}
.ls1_c00045{letter-spacing:0.007200px;}
.lsa_c00045{letter-spacing:0.014400px;}
.ls6_c00045{letter-spacing:0.021600px;}
.ls2_c00045{letter-spacing:0.028800px;}
.ls9_c00045{letter-spacing:0.036000px;}
.ls3_c00045{letter-spacing:0.043200px;}
.ls8_c00045{letter-spacing:0.050400px;}
.ls4_c00045{letter-spacing:0.057600px;}
.ls0_c00045{letter-spacing:0.064800px;}
.ls7_c00045{letter-spacing:0.072000px;}
.ls5_c00045{letter-spacing:0.079200px;}
.lsc_c00045{letter-spacing:0.086400px;}
.lse_c00045{letter-spacing:0.100800px;}
.lsb_c00045{letter-spacing:0.122400px;}
.lsd_c00045{letter-spacing:0.158400px;}
.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;}
}
.ws1_c00045{word-spacing:0.000000px;}
.ws0_c00045{word-spacing:0.138276px;}
.ws6_c00045{word-spacing:1.627200px;}
.ws5_c00045{word-spacing:1.958400px;}
.ws4_c00045{word-spacing:6.062400px;}
.ws3_c00045{word-spacing:6.811200px;}
.ws2_c00045{word-spacing:9.648000px;}
._b_c00045{margin-left:-3.981600px;}
._a_c00045{margin-left:-2.930400px;}
._6_c00045{margin-left:-1.209600px;}
._1_c00045{width:1.288800px;}
._0_c00045{width:2.455200px;}
._2_c00045{width:3.492000px;}
._c_c00045{width:4.658400px;}
._d_c00045{width:5.716800px;}
._9_c00045{width:6.724800px;}
._5_c00045{width:7.876800px;}
._7_c00045{width:9.338400px;}
._8_c00045{width:10.375200px;}
._f_c00045{width:11.642400px;}
._e_c00045{width:13.341600px;}
._4_c00045{width:23.572800px;}
._3_c00045{width:24.811200px;}
.fc0_c00045{color:rgb(0,0,0);}
.fs0_c00045{font-size:60.120000px;}
.fs1_c00045{font-size:72.000000px;}
.y0_c00045{bottom:0.000000px;}
.y6_c00045{bottom:57.360450px;}
.y5_c00045{bottom:78.060450px;}
.y26_c00045{bottom:113.880450px;}
.y25_c00045{bottom:144.930450px;}
.y24_c00045{bottom:175.980450px;}
.y23_c00045{bottom:207.030450px;}
.y22_c00045{bottom:249.960450px;}
.y21_c00045{bottom:281.100450px;}
.y20_c00045{bottom:312.150450px;}
.y1f_c00045{bottom:343.200450px;}
.y1e_c00045{bottom:374.250450px;}
.y1d_c00045{bottom:405.300450px;}
.y1c_c00045{bottom:448.230450px;}
.y1b_c00045{bottom:479.370450px;}
.y1a_c00045{bottom:510.420450px;}
.y19_c00045{bottom:541.470450px;}
.y18_c00045{bottom:572.520450px;}
.y17_c00045{bottom:615.540450px;}
.y16_c00045{bottom:646.680450px;}
.y15_c00045{bottom:677.640450px;}
.y14_c00045{bottom:708.690450px;}
.y13_c00045{bottom:739.740450px;}
.y12_c00045{bottom:770.790450px;}
.y11_c00045{bottom:801.840450px;}
.y10_c00045{bottom:832.890450px;}
.yf_c00045{bottom:875.910450px;}
.ye_c00045{bottom:907.050450px;}
.yd_c00045{bottom:938.100450px;}
.yc_c00045{bottom:969.150450px;}
.yb_c00045{bottom:1000.200450px;}
.ya_c00045{bottom:1031.160450px;}
.y9_c00045{bottom:1062.210450px;}
.y8_c00045{bottom:1093.260450px;}
.y7_c00045{bottom:1124.310450px;}
.y4_c00045{bottom:1144.380657px;}
.y3_c00045{bottom:1161.660648px;}
.y2_c00045{bottom:1178.850459px;}
.y1_c00045{bottom:1196.130450px;}
.h1_c00045{height:52.898555px;}
.h2_c00045{height:63.175781px;}
.h3_c00045{height:63.351562px;}
.h0_c00045{height:1263.000000px;}
.w1_c00045{width:892.500000px;}
.w0_c00045{width:892.830000px;}
.x0_c00045{left:0.000000px;}
.x4_c00045{left:127.620000px;}
.x1_c00045{left:649.620000px;}
.x3_c00045{left:747.450000px;}
.x2_c00045{left:765.450198px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls15_c00045{letter-spacing:-0.076800pt;}
.lsf_c00045{letter-spacing:-0.042752pt;}
.ls13_c00045{letter-spacing:-0.038400pt;}
.ls16_c00045{letter-spacing:-0.032000pt;}
.ls11_c00045{letter-spacing:-0.025600pt;}
.ls14_c00045{letter-spacing:-0.019200pt;}
.ls12_c00045{letter-spacing:-0.006400pt;}
.ls10_c00045{letter-spacing:0.000000pt;}
.ls1_c00045{letter-spacing:0.006400pt;}
.lsa_c00045{letter-spacing:0.012800pt;}
.ls6_c00045{letter-spacing:0.019200pt;}
.ls2_c00045{letter-spacing:0.025600pt;}
.ls9_c00045{letter-spacing:0.032000pt;}
.ls3_c00045{letter-spacing:0.038400pt;}
.ls8_c00045{letter-spacing:0.044800pt;}
.ls4_c00045{letter-spacing:0.051200pt;}
.ls0_c00045{letter-spacing:0.057600pt;}
.ls7_c00045{letter-spacing:0.064000pt;}
.ls5_c00045{letter-spacing:0.070400pt;}
.lsc_c00045{letter-spacing:0.076800pt;}
.lse_c00045{letter-spacing:0.089600pt;}
.lsb_c00045{letter-spacing:0.108800pt;}
.lsd_c00045{letter-spacing:0.140800pt;}
.ws1_c00045{word-spacing:0.000000pt;}
.ws0_c00045{word-spacing:0.122912pt;}
.ws6_c00045{word-spacing:1.446400pt;}
.ws5_c00045{word-spacing:1.740800pt;}
.ws4_c00045{word-spacing:5.388800pt;}
.ws3_c00045{word-spacing:6.054400pt;}
.ws2_c00045{word-spacing:8.576000pt;}
._b_c00045{margin-left:-3.539200pt;}
._a_c00045{margin-left:-2.604800pt;}
._6_c00045{margin-left:-1.075200pt;}
._1_c00045{width:1.145600pt;}
._0_c00045{width:2.182400pt;}
._2_c00045{width:3.104000pt;}
._c_c00045{width:4.140800pt;}
._d_c00045{width:5.081600pt;}
._9_c00045{width:5.977600pt;}
._5_c00045{width:7.001600pt;}
._7_c00045{width:8.300800pt;}
._8_c00045{width:9.222400pt;}
._f_c00045{width:10.348800pt;}
._e_c00045{width:11.859200pt;}
._4_c00045{width:20.953600pt;}
._3_c00045{width:22.054400pt;}
.fs0_c00045{font-size:53.440000pt;}
.fs1_c00045{font-size:64.000000pt;}
.y0_c00045{bottom:0.000000pt;}
.y6_c00045{bottom:50.987067pt;}
.y5_c00045{bottom:69.387067pt;}
.y26_c00045{bottom:101.227067pt;}
.y25_c00045{bottom:128.827067pt;}
.y24_c00045{bottom:156.427067pt;}
.y23_c00045{bottom:184.027067pt;}
.y22_c00045{bottom:222.187067pt;}
.y21_c00045{bottom:249.867067pt;}
.y20_c00045{bottom:277.467067pt;}
.y1f_c00045{bottom:305.067067pt;}
.y1e_c00045{bottom:332.667067pt;}
.y1d_c00045{bottom:360.267067pt;}
.y1c_c00045{bottom:398.427067pt;}
.y1b_c00045{bottom:426.107067pt;}
.y1a_c00045{bottom:453.707067pt;}
.y19_c00045{bottom:481.307067pt;}
.y18_c00045{bottom:508.907067pt;}
.y17_c00045{bottom:547.147067pt;}
.y16_c00045{bottom:574.827067pt;}
.y15_c00045{bottom:602.347067pt;}
.y14_c00045{bottom:629.947067pt;}
.y13_c00045{bottom:657.547067pt;}
.y12_c00045{bottom:685.147067pt;}
.y11_c00045{bottom:712.747067pt;}
.y10_c00045{bottom:740.347067pt;}
.yf_c00045{bottom:778.587067pt;}
.ye_c00045{bottom:806.267067pt;}
.yd_c00045{bottom:833.867067pt;}
.yc_c00045{bottom:861.467067pt;}
.yb_c00045{bottom:889.067067pt;}
.ya_c00045{bottom:916.587067pt;}
.y9_c00045{bottom:944.187067pt;}
.y8_c00045{bottom:971.787067pt;}
.y7_c00045{bottom:999.387067pt;}
.y4_c00045{bottom:1017.227251pt;}
.y3_c00045{bottom:1032.587243pt;}
.y2_c00045{bottom:1047.867075pt;}
.y1_c00045{bottom:1063.227067pt;}
.h1_c00045{height:47.020937pt;}
.h2_c00045{height:56.156250pt;}
.h3_c00045{height:56.312500pt;}
.h0_c00045{height:1122.666667pt;}
.w1_c00045{width:793.333333pt;}
.w0_c00045{width:793.626667pt;}
.x0_c00045{left:0.000000pt;}
.x4_c00045{left:113.440000pt;}
.x1_c00045{left:577.440000pt;}
.x3_c00045{left:664.400000pt;}
.x2_c00045{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.095703;font-style:normal;font-weight:normal;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_30d5d8e094f4f18968253f5b.woff2')format("woff");}.ff2_c00046{font-family:ff2_c00046;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00046{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.lsc_c00046{letter-spacing:-0.102204px;}
.ls14_c00046{letter-spacing:-0.093600px;}
.ls12_c00046{letter-spacing:-0.043200px;}
.ls13_c00046{letter-spacing:-0.036000px;}
.ls10_c00046{letter-spacing:-0.028800px;}
.lse_c00046{letter-spacing:-0.021600px;}
.ls11_c00046{letter-spacing:-0.014400px;}
.lsf_c00046{letter-spacing:-0.007200px;}
.lsd_c00046{letter-spacing:0.000000px;}
.ls9_c00046{letter-spacing:0.007200px;}
.ls2_c00046{letter-spacing:0.014400px;}
.ls4_c00046{letter-spacing:0.021600px;}
.ls0_c00046{letter-spacing:0.028800px;}
.ls7_c00046{letter-spacing:0.036000px;}
.ls1_c00046{letter-spacing:0.043200px;}
.ls3_c00046{letter-spacing:0.050400px;}
.ls6_c00046{letter-spacing:0.057600px;}
.lsa_c00046{letter-spacing:0.064800px;}
.ls5_c00046{letter-spacing:0.072000px;}
.ls8_c00046{letter-spacing:0.079200px;}
.lsb_c00046{letter-spacing:0.086400px;}
.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;}
}
.ws1_c00046{word-spacing:0.000000px;}
.ws0_c00046{word-spacing:0.192384px;}
._b_c00046{margin-left:-4.291200px;}
._1_c00046{margin-left:-2.721600px;}
._2_c00046{margin-left:-1.713600px;}
._0_c00046{width:1.034064px;}
._3_c00046{width:2.347200px;}
._9_c00046{width:3.571200px;}
._d_c00046{width:5.349600px;}
._a_c00046{width:6.847200px;}
._c_c00046{width:8.913600px;}
._6_c00046{width:10.044000px;}
._7_c00046{width:11.318400px;}
._e_c00046{width:15.451200px;}
._8_c00046{width:19.404000px;}
._4_c00046{width:21.355200px;}
._5_c00046{width:22.500000px;}
.fc1_c00046{color:rgb(0,0,0);}
.fc0_c00046{color:rgb(32,31,30);}
.fs0_c00046{font-size:60.120000px;}
.fs1_c00046{font-size:72.000000px;}
.y0_c00046{bottom:0.000000px;}
.y5_c00046{bottom:57.360450px;}
.y4_c00046{bottom:78.060450px;}
.y25_c00046{bottom:112.980450px;}
.y24_c00046{bottom:144.030450px;}
.y23_c00046{bottom:175.080450px;}
.y22_c00046{bottom:206.130450px;}
.y21_c00046{bottom:249.060450px;}
.y20_c00046{bottom:280.200450px;}
.y1f_c00046{bottom:311.250450px;}
.y1e_c00046{bottom:342.300450px;}
.y1d_c00046{bottom:373.350450px;}
.y1c_c00046{bottom:404.400450px;}
.y1b_c00046{bottom:435.450450px;}
.y1a_c00046{bottom:466.500450px;}
.y19_c00046{bottom:497.550450px;}
.y18_c00046{bottom:528.600450px;}
.y17_c00046{bottom:571.530450px;}
.y16_c00046{bottom:602.670450px;}
.y15_c00046{bottom:633.720450px;}
.y14_c00046{bottom:664.770450px;}
.y13_c00046{bottom:695.820450px;}
.y12_c00046{bottom:726.870450px;}
.y11_c00046{bottom:757.920450px;}
.y10_c00046{bottom:800.850450px;}
.yf_c00046{bottom:831.990450px;}
.ye_c00046{bottom:863.040450px;}
.yd_c00046{bottom:894.090450px;}
.yc_c00046{bottom:925.140450px;}
.yb_c00046{bottom:956.190450px;}
.ya_c00046{bottom:987.240450px;}
.y9_c00046{bottom:1018.290450px;}
.y8_c00046{bottom:1049.340450px;}
.y7_c00046{bottom:1080.390450px;}
.y6_c00046{bottom:1111.440450px;}
.y3_c00046{bottom:1132.140450px;}
.y2_c00046{bottom:1165.441023px;}
.y1_c00046{bottom:1196.040600px;}
.h1_c00046{height:52.898555px;}
.h2_c00046{height:63.175781px;}
.h0_c00046{height:1263.000000px;}
.w1_c00046{width:892.500000px;}
.w0_c00046{width:892.830000px;}
.x0_c00046{left:0.000000px;}
.x1_c00046{left:127.620000px;}
.x2_c00046{left:747.450000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.lsc_c00046{letter-spacing:-0.090848pt;}
.ls14_c00046{letter-spacing:-0.083200pt;}
.ls12_c00046{letter-spacing:-0.038400pt;}
.ls13_c00046{letter-spacing:-0.032000pt;}
.ls10_c00046{letter-spacing:-0.025600pt;}
.lse_c00046{letter-spacing:-0.019200pt;}
.ls11_c00046{letter-spacing:-0.012800pt;}
.lsf_c00046{letter-spacing:-0.006400pt;}
.lsd_c00046{letter-spacing:0.000000pt;}
.ls9_c00046{letter-spacing:0.006400pt;}
.ls2_c00046{letter-spacing:0.012800pt;}
.ls4_c00046{letter-spacing:0.019200pt;}
.ls0_c00046{letter-spacing:0.025600pt;}
.ls7_c00046{letter-spacing:0.032000pt;}
.ls1_c00046{letter-spacing:0.038400pt;}
.ls3_c00046{letter-spacing:0.044800pt;}
.ls6_c00046{letter-spacing:0.051200pt;}
.lsa_c00046{letter-spacing:0.057600pt;}
.ls5_c00046{letter-spacing:0.064000pt;}
.ls8_c00046{letter-spacing:0.070400pt;}
.lsb_c00046{letter-spacing:0.076800pt;}
.ws1_c00046{word-spacing:0.000000pt;}
.ws0_c00046{word-spacing:0.171008pt;}
._b_c00046{margin-left:-3.814400pt;}
._1_c00046{margin-left:-2.419200pt;}
._2_c00046{margin-left:-1.523200pt;}
._0_c00046{width:0.919168pt;}
._3_c00046{width:2.086400pt;}
._9_c00046{width:3.174400pt;}
._d_c00046{width:4.755200pt;}
._a_c00046{width:6.086400pt;}
._c_c00046{width:7.923200pt;}
._6_c00046{width:8.928000pt;}
._7_c00046{width:10.060800pt;}
._e_c00046{width:13.734400pt;}
._8_c00046{width:17.248000pt;}
._4_c00046{width:18.982400pt;}
._5_c00046{width:20.000000pt;}
.fs0_c00046{font-size:53.440000pt;}
.fs1_c00046{font-size:64.000000pt;}
.y0_c00046{bottom:0.000000pt;}
.y5_c00046{bottom:50.987067pt;}
.y4_c00046{bottom:69.387067pt;}
.y25_c00046{bottom:100.427067pt;}
.y24_c00046{bottom:128.027067pt;}
.y23_c00046{bottom:155.627067pt;}
.y22_c00046{bottom:183.227067pt;}
.y21_c00046{bottom:221.387067pt;}
.y20_c00046{bottom:249.067067pt;}
.y1f_c00046{bottom:276.667067pt;}
.y1e_c00046{bottom:304.267067pt;}
.y1d_c00046{bottom:331.867067pt;}
.y1c_c00046{bottom:359.467067pt;}
.y1b_c00046{bottom:387.067067pt;}
.y1a_c00046{bottom:414.667067pt;}
.y19_c00046{bottom:442.267067pt;}
.y18_c00046{bottom:469.867067pt;}
.y17_c00046{bottom:508.027067pt;}
.y16_c00046{bottom:535.707067pt;}
.y15_c00046{bottom:563.307067pt;}
.y14_c00046{bottom:590.907067pt;}
.y13_c00046{bottom:618.507067pt;}
.y12_c00046{bottom:646.107067pt;}
.y11_c00046{bottom:673.707067pt;}
.y10_c00046{bottom:711.867067pt;}
.yf_c00046{bottom:739.547067pt;}
.ye_c00046{bottom:767.147067pt;}
.yd_c00046{bottom:794.747067pt;}
.yc_c00046{bottom:822.347067pt;}
.yb_c00046{bottom:849.947067pt;}
.ya_c00046{bottom:877.547067pt;}
.y9_c00046{bottom:905.147067pt;}
.y8_c00046{bottom:932.747067pt;}
.y7_c00046{bottom:960.347067pt;}
.y6_c00046{bottom:987.947067pt;}
.y3_c00046{bottom:1006.347067pt;}
.y2_c00046{bottom:1035.947576pt;}
.y1_c00046{bottom:1063.147200pt;}
.h1_c00046{height:47.020937pt;}
.h2_c00046{height:56.156250pt;}
.h0_c00046{height:1122.666667pt;}
.w1_c00046{width:793.333333pt;}
.w0_c00046{width:793.626667pt;}
.x0_c00046{left:0.000000pt;}
.x1_c00046{left:113.440000pt;}
.x2_c00046{left:664.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_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_268113e4754cc3c7ad676f90.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.095703;font-style:normal;font-weight:normal;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_6ba3e46dfa66e86f617b6a91.woff2')format("woff");}.ff2_c00047{font-family:ff2_c00047;line-height:1.093262;font-style: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:-20.880000px;}
.v0_c00047{vertical-align:0.000000px;}
.v1_c00047{vertical-align:27.000000px;}
.ls12_c00047{letter-spacing:-0.057600px;}
.lsf_c00047{letter-spacing:-0.048096px;}
.ls18_c00047{letter-spacing:-0.043200px;}
.ls14_c00047{letter-spacing:-0.036000px;}
.ls17_c00047{letter-spacing:-0.028800px;}
.ls16_c00047{letter-spacing:-0.021600px;}
.ls11_c00047{letter-spacing:-0.014400px;}
.ls19_c00047{letter-spacing:-0.012024px;}
.ls13_c00047{letter-spacing:-0.007200px;}
.ls10_c00047{letter-spacing:0.000000px;}
.ls9_c00047{letter-spacing:0.007200px;}
.ls2_c00047{letter-spacing:0.014400px;}
.ls1_c00047{letter-spacing:0.021600px;}
.ls3_c00047{letter-spacing:0.028800px;}
.ls5_c00047{letter-spacing:0.036000px;}
.ls6_c00047{letter-spacing:0.043200px;}
.ls8_c00047{letter-spacing:0.050400px;}
.ls7_c00047{letter-spacing:0.057600px;}
.ls4_c00047{letter-spacing:0.064800px;}
.ls0_c00047{letter-spacing:0.072000px;}
.lsb_c00047{letter-spacing:0.079200px;}
.lsa_c00047{letter-spacing:0.093600px;}
.lse_c00047{letter-spacing:0.096192px;}
.lsd_c00047{letter-spacing:0.162324px;}
.lsc_c00047{letter-spacing:0.180000px;}
.ls15_c00047{letter-spacing:18.720000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00047{word-spacing:-18.079200px;}
.ws1_c00047{word-spacing:-18.000000px;}
.ws2_c00047{word-spacing:-9.720000px;}
.ws4_c00047{word-spacing:0.000000px;}
.ws3_c00047{word-spacing:0.138276px;}
.ws5_c00047{word-spacing:26.546400px;}
._d_c00047{margin-left:-18.705600px;}
._c_c00047{margin-left:-4.010400px;}
._2_c00047{margin-left:-2.736000px;}
._1_c00047{margin-left:-1.281600px;}
._b_c00047{width:1.144800px;}
._e_c00047{width:2.181600px;}
._0_c00047{width:3.528000px;}
._9_c00047{width:4.968000px;}
._a_c00047{width:6.040800px;}
._5_c00047{width:7.898400px;}
._6_c00047{width:9.417600px;}
._3_c00047{width:10.785600px;}
._4_c00047{width:19.533600px;}
._8_c00047{width:26.380800px;}
._7_c00047{width:27.691200px;}
.fc0_c00047{color:rgb(0,0,0);}
.fs3_c00047{font-size:38.880000px;}
.fs2_c00047{font-size:47.880000px;}
.fs0_c00047{font-size:60.120000px;}
.fs1_c00047{font-size:72.000000px;}
.y0_c00047{bottom:0.000000px;}
.y6_c00047{bottom:57.360450px;}
.y5_c00047{bottom:78.060450px;}
.y27_c00047{bottom:109.920639px;}
.y26_c00047{bottom:132.330450px;}
.y25_c00047{bottom:145.020450px;}
.y24_c00047{bottom:187.950450px;}
.y23_c00047{bottom:219.000450px;}
.y22_c00047{bottom:250.050450px;}
.y21_c00047{bottom:281.100450px;}
.y20_c00047{bottom:312.150450px;}
.y1f_c00047{bottom:355.080450px;}
.y1e_c00047{bottom:386.220450px;}
.y1d_c00047{bottom:417.270450px;}
.y1c_c00047{bottom:448.320450px;}
.y1b_c00047{bottom:479.370450px;}
.y1a_c00047{bottom:510.420450px;}
.y19_c00047{bottom:541.470450px;}
.y18_c00047{bottom:572.520450px;}
.y17_c00047{bottom:603.570450px;}
.y16_c00047{bottom:634.620450px;}
.y15_c00047{bottom:665.670450px;}
.y14_c00047{bottom:708.600450px;}
.y13_c00047{bottom:739.740450px;}
.y12_c00047{bottom:770.790450px;}
.y11_c00047{bottom:801.840450px;}
.y10_c00047{bottom:832.890450px;}
.yf_c00047{bottom:863.940450px;}
.ye_c00047{bottom:894.990450px;}
.yd_c00047{bottom:926.040450px;}
.yc_c00047{bottom:957.090450px;}
.yb_c00047{bottom:988.140450px;}
.ya_c00047{bottom:1019.190450px;}
.y9_c00047{bottom:1050.240450px;}
.y8_c00047{bottom:1093.170450px;}
.y7_c00047{bottom:1124.310450px;}
.y4_c00047{bottom:1144.380657px;}
.y3_c00047{bottom:1161.660648px;}
.y2_c00047{bottom:1178.850459px;}
.y1_c00047{bottom:1196.130450px;}
.h5_c00047{height:34.114922px;}
.h6_c00047{height:52.751777px;}
.h1_c00047{height:52.898555px;}
.h2_c00047{height:63.175781px;}
.h3_c00047{height:63.351562px;}
.h4_c00047{height:69.011895px;}
.h0_c00047{height:1263.000000px;}
.w1_c00047{width:892.500000px;}
.w0_c00047{width:892.830000px;}
.x0_c00047{left:0.000000px;}
.x4_c00047{left:127.620000px;}
.x1_c00047{left:649.620000px;}
.x3_c00047{left:747.450000px;}
.x2_c00047{left:765.450198px;}
@media print{
.v2_c00047{vertical-align:-18.560000pt;}
.v0_c00047{vertical-align:0.000000pt;}
.v1_c00047{vertical-align:24.000000pt;}
.ls12_c00047{letter-spacing:-0.051200pt;}
.lsf_c00047{letter-spacing:-0.042752pt;}
.ls18_c00047{letter-spacing:-0.038400pt;}
.ls14_c00047{letter-spacing:-0.032000pt;}
.ls17_c00047{letter-spacing:-0.025600pt;}
.ls16_c00047{letter-spacing:-0.019200pt;}
.ls11_c00047{letter-spacing:-0.012800pt;}
.ls19_c00047{letter-spacing:-0.010688pt;}
.ls13_c00047{letter-spacing:-0.006400pt;}
.ls10_c00047{letter-spacing:0.000000pt;}
.ls9_c00047{letter-spacing:0.006400pt;}
.ls2_c00047{letter-spacing:0.012800pt;}
.ls1_c00047{letter-spacing:0.019200pt;}
.ls3_c00047{letter-spacing:0.025600pt;}
.ls5_c00047{letter-spacing:0.032000pt;}
.ls6_c00047{letter-spacing:0.038400pt;}
.ls8_c00047{letter-spacing:0.044800pt;}
.ls7_c00047{letter-spacing:0.051200pt;}
.ls4_c00047{letter-spacing:0.057600pt;}
.ls0_c00047{letter-spacing:0.064000pt;}
.lsb_c00047{letter-spacing:0.070400pt;}
.lsa_c00047{letter-spacing:0.083200pt;}
.lse_c00047{letter-spacing:0.085504pt;}
.lsd_c00047{letter-spacing:0.144288pt;}
.lsc_c00047{letter-spacing:0.160000pt;}
.ls15_c00047{letter-spacing:16.640000pt;}
.ws0_c00047{word-spacing:-16.070400pt;}
.ws1_c00047{word-spacing:-16.000000pt;}
.ws2_c00047{word-spacing:-8.640000pt;}
.ws4_c00047{word-spacing:0.000000pt;}
.ws3_c00047{word-spacing:0.122912pt;}
.ws5_c00047{word-spacing:23.596800pt;}
._d_c00047{margin-left:-16.627200pt;}
._c_c00047{margin-left:-3.564800pt;}
._2_c00047{margin-left:-2.432000pt;}
._1_c00047{margin-left:-1.139200pt;}
._b_c00047{width:1.017600pt;}
._e_c00047{width:1.939200pt;}
._0_c00047{width:3.136000pt;}
._9_c00047{width:4.416000pt;}
._a_c00047{width:5.369600pt;}
._5_c00047{width:7.020800pt;}
._6_c00047{width:8.371200pt;}
._3_c00047{width:9.587200pt;}
._4_c00047{width:17.363200pt;}
._8_c00047{width:23.449600pt;}
._7_c00047{width:24.614400pt;}
.fs3_c00047{font-size:34.560000pt;}
.fs2_c00047{font-size:42.560000pt;}
.fs0_c00047{font-size:53.440000pt;}
.fs1_c00047{font-size:64.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y6_c00047{bottom:50.987067pt;}
.y5_c00047{bottom:69.387067pt;}
.y27_c00047{bottom:97.707235pt;}
.y26_c00047{bottom:117.627067pt;}
.y25_c00047{bottom:128.907067pt;}
.y24_c00047{bottom:167.067067pt;}
.y23_c00047{bottom:194.667067pt;}
.y22_c00047{bottom:222.267067pt;}
.y21_c00047{bottom:249.867067pt;}
.y20_c00047{bottom:277.467067pt;}
.y1f_c00047{bottom:315.627067pt;}
.y1e_c00047{bottom:343.307067pt;}
.y1d_c00047{bottom:370.907067pt;}
.y1c_c00047{bottom:398.507067pt;}
.y1b_c00047{bottom:426.107067pt;}
.y1a_c00047{bottom:453.707067pt;}
.y19_c00047{bottom:481.307067pt;}
.y18_c00047{bottom:508.907067pt;}
.y17_c00047{bottom:536.507067pt;}
.y16_c00047{bottom:564.107067pt;}
.y15_c00047{bottom:591.707067pt;}
.y14_c00047{bottom:629.867067pt;}
.y13_c00047{bottom:657.547067pt;}
.y12_c00047{bottom:685.147067pt;}
.y11_c00047{bottom:712.747067pt;}
.y10_c00047{bottom:740.347067pt;}
.yf_c00047{bottom:767.947067pt;}
.ye_c00047{bottom:795.547067pt;}
.yd_c00047{bottom:823.147067pt;}
.yc_c00047{bottom:850.747067pt;}
.yb_c00047{bottom:878.347067pt;}
.ya_c00047{bottom:905.947067pt;}
.y9_c00047{bottom:933.547067pt;}
.y8_c00047{bottom:971.707067pt;}
.y7_c00047{bottom:999.387067pt;}
.y4_c00047{bottom:1017.227251pt;}
.y3_c00047{bottom:1032.587243pt;}
.y2_c00047{bottom:1047.867075pt;}
.y1_c00047{bottom:1063.227067pt;}
.h5_c00047{height:30.324375pt;}
.h6_c00047{height:46.890469pt;}
.h1_c00047{height:47.020937pt;}
.h2_c00047{height:56.156250pt;}
.h3_c00047{height:56.312500pt;}
.h4_c00047{height:61.343906pt;}
.h0_c00047{height:1122.666667pt;}
.w1_c00047{width:793.333333pt;}
.w0_c00047{width:793.626667pt;}
.x0_c00047{left:0.000000pt;}
.x4_c00047{left:113.440000pt;}
.x1_c00047{left:577.440000pt;}
.x3_c00047{left:664.400000pt;}
.x2_c00047{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60445e0215fdd15ffbd84f10.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00048;src:url('chunks/assets/font_8810007565ee942437b6cf29.woff2')format("woff");}.ff2_c00048{font-family:ff2_c00048;line-height:1.093262;font-style: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);}
.v2_c00048{vertical-align:-20.880000px;}
.v0_c00048{vertical-align:0.000000px;}
.v1_c00048{vertical-align:27.000600px;}
.ls17_c00048{letter-spacing:-0.151200px;}
.ls14_c00048{letter-spacing:-0.122400px;}
.ls10_c00048{letter-spacing:-0.102204px;}
.ls1a_c00048{letter-spacing:-0.090180px;}
.ls16_c00048{letter-spacing:-0.057600px;}
.ls1b_c00048{letter-spacing:-0.048096px;}
.ls15_c00048{letter-spacing:-0.036000px;}
.ls12_c00048{letter-spacing:-0.028800px;}
.ls13_c00048{letter-spacing:-0.021600px;}
.ls19_c00048{letter-spacing:-0.014400px;}
.ls18_c00048{letter-spacing:-0.007200px;}
.ls11_c00048{letter-spacing:0.000000px;}
.ls8_c00048{letter-spacing:0.007200px;}
.lsf_c00048{letter-spacing:0.012024px;}
.ls7_c00048{letter-spacing:0.014400px;}
.ls5_c00048{letter-spacing:0.021600px;}
.ls2_c00048{letter-spacing:0.028800px;}
.ls1_c00048{letter-spacing:0.036000px;}
.lsd_c00048{letter-spacing:0.043200px;}
.ls3_c00048{letter-spacing:0.050400px;}
.lsa_c00048{letter-spacing:0.057600px;}
.lsc_c00048{letter-spacing:0.072000px;}
.ls0_c00048{letter-spacing:0.079200px;}
.lse_c00048{letter-spacing:0.096192px;}
.ls9_c00048{letter-spacing:0.100800px;}
.ls4_c00048{letter-spacing:0.122400px;}
.ls6_c00048{letter-spacing:0.129600px;}
.lsb_c00048{letter-spacing:0.180000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:-9.720000px;}
.ws4_c00048{word-spacing:-1.584000px;}
.ws3_c00048{word-spacing:-1.483200px;}
.ws7_c00048{word-spacing:-0.691200px;}
.ws2_c00048{word-spacing:0.000000px;}
.ws1_c00048{word-spacing:0.192384px;}
.ws6_c00048{word-spacing:0.568800px;}
.ws5_c00048{word-spacing:0.626400px;}
._b_c00048{margin-left:-3.967200px;}
._7_c00048{margin-left:-2.527200px;}
._1_c00048{margin-left:-1.404000px;}
._0_c00048{width:1.034064px;}
._e_c00048{width:4.413600px;}
._2_c00048{width:5.421600px;}
._3_c00048{width:6.429600px;}
._6_c00048{width:7.840800px;}
._c_c00048{width:10.440000px;}
._d_c00048{width:11.858400px;}
._a_c00048{width:14.018400px;}
._4_c00048{width:15.487200px;}
._5_c00048{width:16.761600px;}
._8_c00048{width:19.800000px;}
._9_c00048{width:20.880000px;}
.fc1_c00048{color:rgb(0,0,0);}
.fc0_c00048{color:rgb(32,31,30);}
.fs3_c00048{font-size:38.880000px;}
.fs2_c00048{font-size:47.880000px;}
.fs0_c00048{font-size:60.120000px;}
.fs1_c00048{font-size:72.000000px;}
.y0_c00048{bottom:0.000000px;}
.y5_c00048{bottom:57.360450px;}
.y4_c00048{bottom:78.060450px;}
.y24_c00048{bottom:109.920639px;}
.y23_c00048{bottom:132.330450px;}
.y22_c00048{bottom:145.020600px;}
.y21_c00048{bottom:189.120600px;}
.y20_c00048{bottom:220.170600px;}
.y1f_c00048{bottom:251.130600px;}
.y1e_c00048{bottom:282.270600px;}
.y1d_c00048{bottom:313.320600px;}
.y1c_c00048{bottom:356.250600px;}
.y1b_c00048{bottom:399.360450px;}
.y1a_c00048{bottom:430.500450px;}
.y19_c00048{bottom:473.430450px;}
.y18_c00048{bottom:504.570450px;}
.y17_c00048{bottom:535.620450px;}
.y16_c00048{bottom:566.670450px;}
.y15_c00048{bottom:597.720450px;}
.y14_c00048{bottom:640.650450px;}
.y13_c00048{bottom:671.790450px;}
.y12_c00048{bottom:702.840450px;}
.y11_c00048{bottom:733.890450px;}
.y10_c00048{bottom:776.820450px;}
.yf_c00048{bottom:807.960450px;}
.ye_c00048{bottom:839.010450px;}
.yd_c00048{bottom:870.060450px;}
.yc_c00048{bottom:913.080450px;}
.yb_c00048{bottom:944.220450px;}
.ya_c00048{bottom:975.180450px;}
.y9_c00048{bottom:1006.230450px;}
.y8_c00048{bottom:1037.280450px;}
.y7_c00048{bottom:1080.300450px;}
.y6_c00048{bottom:1111.440450px;}
.y3_c00048{bottom:1132.140450px;}
.y2_c00048{bottom:1165.441023px;}
.y1_c00048{bottom:1196.040600px;}
.h5_c00048{height:34.114922px;}
.h6_c00048{height:52.751777px;}
.h1_c00048{height:52.898555px;}
.h2_c00048{height:63.175781px;}
.h4_c00048{height:63.351562px;}
.h3_c00048{height:69.012495px;}
.h0_c00048{height:1263.000000px;}
.w1_c00048{width:892.500000px;}
.w0_c00048{width:892.830000px;}
.x0_c00048{left:0.000000px;}
.x1_c00048{left:127.620000px;}
.x2_c00048{left:747.450000px;}
@media print{
.v2_c00048{vertical-align:-18.560000pt;}
.v0_c00048{vertical-align:0.000000pt;}
.v1_c00048{vertical-align:24.000533pt;}
.ls17_c00048{letter-spacing:-0.134400pt;}
.ls14_c00048{letter-spacing:-0.108800pt;}
.ls10_c00048{letter-spacing:-0.090848pt;}
.ls1a_c00048{letter-spacing:-0.080160pt;}
.ls16_c00048{letter-spacing:-0.051200pt;}
.ls1b_c00048{letter-spacing:-0.042752pt;}
.ls15_c00048{letter-spacing:-0.032000pt;}
.ls12_c00048{letter-spacing:-0.025600pt;}
.ls13_c00048{letter-spacing:-0.019200pt;}
.ls19_c00048{letter-spacing:-0.012800pt;}
.ls18_c00048{letter-spacing:-0.006400pt;}
.ls11_c00048{letter-spacing:0.000000pt;}
.ls8_c00048{letter-spacing:0.006400pt;}
.lsf_c00048{letter-spacing:0.010688pt;}
.ls7_c00048{letter-spacing:0.012800pt;}
.ls5_c00048{letter-spacing:0.019200pt;}
.ls2_c00048{letter-spacing:0.025600pt;}
.ls1_c00048{letter-spacing:0.032000pt;}
.lsd_c00048{letter-spacing:0.038400pt;}
.ls3_c00048{letter-spacing:0.044800pt;}
.lsa_c00048{letter-spacing:0.051200pt;}
.lsc_c00048{letter-spacing:0.064000pt;}
.ls0_c00048{letter-spacing:0.070400pt;}
.lse_c00048{letter-spacing:0.085504pt;}
.ls9_c00048{letter-spacing:0.089600pt;}
.ls4_c00048{letter-spacing:0.108800pt;}
.ls6_c00048{letter-spacing:0.115200pt;}
.lsb_c00048{letter-spacing:0.160000pt;}
.ws0_c00048{word-spacing:-8.640000pt;}
.ws4_c00048{word-spacing:-1.408000pt;}
.ws3_c00048{word-spacing:-1.318400pt;}
.ws7_c00048{word-spacing:-0.614400pt;}
.ws2_c00048{word-spacing:0.000000pt;}
.ws1_c00048{word-spacing:0.171008pt;}
.ws6_c00048{word-spacing:0.505600pt;}
.ws5_c00048{word-spacing:0.556800pt;}
._b_c00048{margin-left:-3.526400pt;}
._7_c00048{margin-left:-2.246400pt;}
._1_c00048{margin-left:-1.248000pt;}
._0_c00048{width:0.919168pt;}
._e_c00048{width:3.923200pt;}
._2_c00048{width:4.819200pt;}
._3_c00048{width:5.715200pt;}
._6_c00048{width:6.969600pt;}
._c_c00048{width:9.280000pt;}
._d_c00048{width:10.540800pt;}
._a_c00048{width:12.460800pt;}
._4_c00048{width:13.766400pt;}
._5_c00048{width:14.899200pt;}
._8_c00048{width:17.600000pt;}
._9_c00048{width:18.560000pt;}
.fs3_c00048{font-size:34.560000pt;}
.fs2_c00048{font-size:42.560000pt;}
.fs0_c00048{font-size:53.440000pt;}
.fs1_c00048{font-size:64.000000pt;}
.y0_c00048{bottom:0.000000pt;}
.y5_c00048{bottom:50.987067pt;}
.y4_c00048{bottom:69.387067pt;}
.y24_c00048{bottom:97.707235pt;}
.y23_c00048{bottom:117.627067pt;}
.y22_c00048{bottom:128.907200pt;}
.y21_c00048{bottom:168.107200pt;}
.y20_c00048{bottom:195.707200pt;}
.y1f_c00048{bottom:223.227200pt;}
.y1e_c00048{bottom:250.907200pt;}
.y1d_c00048{bottom:278.507200pt;}
.y1c_c00048{bottom:316.667200pt;}
.y1b_c00048{bottom:354.987067pt;}
.y1a_c00048{bottom:382.667067pt;}
.y19_c00048{bottom:420.827067pt;}
.y18_c00048{bottom:448.507067pt;}
.y17_c00048{bottom:476.107067pt;}
.y16_c00048{bottom:503.707067pt;}
.y15_c00048{bottom:531.307067pt;}
.y14_c00048{bottom:569.467067pt;}
.y13_c00048{bottom:597.147067pt;}
.y12_c00048{bottom:624.747067pt;}
.y11_c00048{bottom:652.347067pt;}
.y10_c00048{bottom:690.507067pt;}
.yf_c00048{bottom:718.187067pt;}
.ye_c00048{bottom:745.787067pt;}
.yd_c00048{bottom:773.387067pt;}
.yc_c00048{bottom:811.627067pt;}
.yb_c00048{bottom:839.307067pt;}
.ya_c00048{bottom:866.827067pt;}
.y9_c00048{bottom:894.427067pt;}
.y8_c00048{bottom:922.027067pt;}
.y7_c00048{bottom:960.267067pt;}
.y6_c00048{bottom:987.947067pt;}
.y3_c00048{bottom:1006.347067pt;}
.y2_c00048{bottom:1035.947576pt;}
.y1_c00048{bottom:1063.147200pt;}
.h5_c00048{height:30.324375pt;}
.h6_c00048{height:46.890469pt;}
.h1_c00048{height:47.020937pt;}
.h2_c00048{height:56.156250pt;}
.h4_c00048{height:56.312500pt;}
.h3_c00048{height:61.344440pt;}
.h0_c00048{height:1122.666667pt;}
.w1_c00048{width:793.333333pt;}
.w0_c00048{width:793.626667pt;}
.x0_c00048{left:0.000000pt;}
.x1_c00048{left:113.440000pt;}
.x2_c00048{left:664.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_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_2735a0479f0987c1c74cbc4a.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.095703;font-style:normal;font-weight:normal;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_e3d8a422dee048b039e3f4b2.woff2')format("woff");}.ff2_c00049{font-family:ff2_c00049;line-height:1.093262;font-style: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;}
.lsf_c00049{letter-spacing:-0.048096px;}
.ls14_c00049{letter-spacing:-0.036000px;}
.ls16_c00049{letter-spacing:-0.028800px;}
.ls18_c00049{letter-spacing:-0.021600px;}
.ls15_c00049{letter-spacing:-0.014400px;}
.ls17_c00049{letter-spacing:-0.007200px;}
.ls10_c00049{letter-spacing:0.000000px;}
.ls6_c00049{letter-spacing:0.007200px;}
.ls2_c00049{letter-spacing:0.014400px;}
.ls4_c00049{letter-spacing:0.021600px;}
.lsa_c00049{letter-spacing:0.028800px;}
.ls3_c00049{letter-spacing:0.036000px;}
.ls5_c00049{letter-spacing:0.043200px;}
.lsb_c00049{letter-spacing:0.050400px;}
.ls1_c00049{letter-spacing:0.057600px;}
.ls9_c00049{letter-spacing:0.064800px;}
.ls0_c00049{letter-spacing:0.072000px;}
.lsc_c00049{letter-spacing:0.079200px;}
.lse_c00049{letter-spacing:0.086400px;}
.ls7_c00049{letter-spacing:0.093600px;}
.lsd_c00049{letter-spacing:0.108000px;}
.ls8_c00049{letter-spacing:0.129600px;}
.ls11_c00049{letter-spacing:2.520000px;}
.ls13_c00049{letter-spacing:9.360000px;}
.ls12_c00049{letter-spacing:9.720000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:-17.964000px;}
.ws2_c00049{word-spacing:0.000000px;}
.ws1_c00049{word-spacing:0.138276px;}
.ws3_c00049{word-spacing:1.742400px;}
._3_c00049{margin-left:-10.526400px;}
._4_c00049{margin-left:-9.028800px;}
._9_c00049{margin-left:-3.981600px;}
._0_c00049{margin-left:-2.966400px;}
._1_c00049{margin-left:-1.339200px;}
._6_c00049{width:1.440000px;}
._5_c00049{width:2.498400px;}
._e_c00049{width:3.535200px;}
._a_c00049{width:5.328000px;}
._11_c00049{width:6.595200px;}
._7_c00049{width:8.496000px;}
._2_c00049{width:9.676800px;}
._8_c00049{width:10.828800px;}
._10_c00049{width:11.851200px;}
._f_c00049{width:12.924000px;}
._c_c00049{width:15.256800px;}
._d_c00049{width:16.473600px;}
._b_c00049{width:25.898400px;}
.fc0_c00049{color:rgb(0,0,0);}
.fs0_c00049{font-size:60.120000px;}
.fs1_c00049{font-size:72.000000px;}
.y0_c00049{bottom:0.000000px;}
.y6_c00049{bottom:57.360450px;}
.y5_c00049{bottom:78.060450px;}
.y25_c00049{bottom:144.930450px;}
.y24_c00049{bottom:175.980450px;}
.y23_c00049{bottom:207.030450px;}
.y22_c00049{bottom:238.080450px;}
.y21_c00049{bottom:269.130450px;}
.y20_c00049{bottom:300.180450px;}
.y1f_c00049{bottom:331.230450px;}
.y1e_c00049{bottom:362.280450px;}
.y1d_c00049{bottom:405.210450px;}
.y1c_c00049{bottom:436.350450px;}
.y1b_c00049{bottom:467.400450px;}
.y1a_c00049{bottom:498.450450px;}
.y19_c00049{bottom:529.500450px;}
.y18_c00049{bottom:572.430450px;}
.y17_c00049{bottom:603.570450px;}
.y16_c00049{bottom:634.620450px;}
.y15_c00049{bottom:665.670450px;}
.y14_c00049{bottom:696.720450px;}
.y13_c00049{bottom:727.770450px;}
.y12_c00049{bottom:758.820450px;}
.y11_c00049{bottom:801.750450px;}
.y10_c00049{bottom:832.890450px;}
.yf_c00049{bottom:863.940450px;}
.ye_c00049{bottom:894.990450px;}
.yd_c00049{bottom:926.040450px;}
.yc_c00049{bottom:957.090450px;}
.yb_c00049{bottom:988.140450px;}
.ya_c00049{bottom:1019.190450px;}
.y9_c00049{bottom:1062.120450px;}
.y8_c00049{bottom:1093.260450px;}
.y7_c00049{bottom:1124.310450px;}
.y4_c00049{bottom:1144.380657px;}
.y3_c00049{bottom:1161.660648px;}
.y2_c00049{bottom:1178.850459px;}
.y1_c00049{bottom:1196.130450px;}
.h1_c00049{height:52.898555px;}
.h2_c00049{height:63.175781px;}
.h3_c00049{height:63.351562px;}
.h0_c00049{height:1263.000000px;}
.w1_c00049{width:892.500000px;}
.w0_c00049{width:892.830000px;}
.x0_c00049{left:0.000000px;}
.x4_c00049{left:127.620000px;}
.x1_c00049{left:649.620000px;}
.x3_c00049{left:747.450000px;}
.x2_c00049{left:765.450198px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.lsf_c00049{letter-spacing:-0.042752pt;}
.ls14_c00049{letter-spacing:-0.032000pt;}
.ls16_c00049{letter-spacing:-0.025600pt;}
.ls18_c00049{letter-spacing:-0.019200pt;}
.ls15_c00049{letter-spacing:-0.012800pt;}
.ls17_c00049{letter-spacing:-0.006400pt;}
.ls10_c00049{letter-spacing:0.000000pt;}
.ls6_c00049{letter-spacing:0.006400pt;}
.ls2_c00049{letter-spacing:0.012800pt;}
.ls4_c00049{letter-spacing:0.019200pt;}
.lsa_c00049{letter-spacing:0.025600pt;}
.ls3_c00049{letter-spacing:0.032000pt;}
.ls5_c00049{letter-spacing:0.038400pt;}
.lsb_c00049{letter-spacing:0.044800pt;}
.ls1_c00049{letter-spacing:0.051200pt;}
.ls9_c00049{letter-spacing:0.057600pt;}
.ls0_c00049{letter-spacing:0.064000pt;}
.lsc_c00049{letter-spacing:0.070400pt;}
.lse_c00049{letter-spacing:0.076800pt;}
.ls7_c00049{letter-spacing:0.083200pt;}
.lsd_c00049{letter-spacing:0.096000pt;}
.ls8_c00049{letter-spacing:0.115200pt;}
.ls11_c00049{letter-spacing:2.240000pt;}
.ls13_c00049{letter-spacing:8.320000pt;}
.ls12_c00049{letter-spacing:8.640000pt;}
.ws0_c00049{word-spacing:-15.968000pt;}
.ws2_c00049{word-spacing:0.000000pt;}
.ws1_c00049{word-spacing:0.122912pt;}
.ws3_c00049{word-spacing:1.548800pt;}
._3_c00049{margin-left:-9.356800pt;}
._4_c00049{margin-left:-8.025600pt;}
._9_c00049{margin-left:-3.539200pt;}
._0_c00049{margin-left:-2.636800pt;}
._1_c00049{margin-left:-1.190400pt;}
._6_c00049{width:1.280000pt;}
._5_c00049{width:2.220800pt;}
._e_c00049{width:3.142400pt;}
._a_c00049{width:4.736000pt;}
._11_c00049{width:5.862400pt;}
._7_c00049{width:7.552000pt;}
._2_c00049{width:8.601600pt;}
._8_c00049{width:9.625600pt;}
._10_c00049{width:10.534400pt;}
._f_c00049{width:11.488000pt;}
._c_c00049{width:13.561600pt;}
._d_c00049{width:14.643200pt;}
._b_c00049{width:23.020800pt;}
.fs0_c00049{font-size:53.440000pt;}
.fs1_c00049{font-size:64.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y6_c00049{bottom:50.987067pt;}
.y5_c00049{bottom:69.387067pt;}
.y25_c00049{bottom:128.827067pt;}
.y24_c00049{bottom:156.427067pt;}
.y23_c00049{bottom:184.027067pt;}
.y22_c00049{bottom:211.627067pt;}
.y21_c00049{bottom:239.227067pt;}
.y20_c00049{bottom:266.827067pt;}
.y1f_c00049{bottom:294.427067pt;}
.y1e_c00049{bottom:322.027067pt;}
.y1d_c00049{bottom:360.187067pt;}
.y1c_c00049{bottom:387.867067pt;}
.y1b_c00049{bottom:415.467067pt;}
.y1a_c00049{bottom:443.067067pt;}
.y19_c00049{bottom:470.667067pt;}
.y18_c00049{bottom:508.827067pt;}
.y17_c00049{bottom:536.507067pt;}
.y16_c00049{bottom:564.107067pt;}
.y15_c00049{bottom:591.707067pt;}
.y14_c00049{bottom:619.307067pt;}
.y13_c00049{bottom:646.907067pt;}
.y12_c00049{bottom:674.507067pt;}
.y11_c00049{bottom:712.667067pt;}
.y10_c00049{bottom:740.347067pt;}
.yf_c00049{bottom:767.947067pt;}
.ye_c00049{bottom:795.547067pt;}
.yd_c00049{bottom:823.147067pt;}
.yc_c00049{bottom:850.747067pt;}
.yb_c00049{bottom:878.347067pt;}
.ya_c00049{bottom:905.947067pt;}
.y9_c00049{bottom:944.107067pt;}
.y8_c00049{bottom:971.787067pt;}
.y7_c00049{bottom:999.387067pt;}
.y4_c00049{bottom:1017.227251pt;}
.y3_c00049{bottom:1032.587243pt;}
.y2_c00049{bottom:1047.867075pt;}
.y1_c00049{bottom:1063.227067pt;}
.h1_c00049{height:47.020937pt;}
.h2_c00049{height:56.156250pt;}
.h3_c00049{height:56.312500pt;}
.h0_c00049{height:1122.666667pt;}
.w1_c00049{width:793.333333pt;}
.w0_c00049{width:793.626667pt;}
.x0_c00049{left:0.000000pt;}
.x4_c00049{left:113.440000pt;}
.x1_c00049{left:577.440000pt;}
.x3_c00049{left:664.400000pt;}
.x2_c00049{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f6c7a3487842f4735af7669.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.095703;font-style:normal;font-weight:normal;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_d0f7cf93ef7027289a751453.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00050;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00050{font-family:ff3_c00050;line-height:1.104004;font-style: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;}
.ls14_c00050{letter-spacing:-0.122400px;}
.lse_c00050{letter-spacing:-0.102204px;}
.ls16_c00050{letter-spacing:-0.050400px;}
.ls12_c00050{letter-spacing:-0.043200px;}
.ls10_c00050{letter-spacing:-0.036000px;}
.ls13_c00050{letter-spacing:-0.028800px;}
.ls15_c00050{letter-spacing:-0.014400px;}
.ls11_c00050{letter-spacing:-0.007200px;}
.lsf_c00050{letter-spacing:0.000000px;}
.ls7_c00050{letter-spacing:0.007200px;}
.lsb_c00050{letter-spacing:0.014400px;}
.ls6_c00050{letter-spacing:0.021600px;}
.ls9_c00050{letter-spacing:0.028800px;}
.ls4_c00050{letter-spacing:0.036000px;}
.ls3_c00050{letter-spacing:0.043200px;}
.ls0_c00050{letter-spacing:0.050400px;}
.ls2_c00050{letter-spacing:0.057600px;}
.ls8_c00050{letter-spacing:0.064800px;}
.ls1_c00050{letter-spacing:0.072000px;}
.lsa_c00050{letter-spacing:0.079200px;}
.ls5_c00050{letter-spacing:0.093600px;}
.lsd_c00050{letter-spacing:0.122400px;}
.lsc_c00050{letter-spacing:5.400000px;}
.ls17_c00050{letter-spacing:5.760000px;}
.ls18_c00050{letter-spacing:15.120000px;}
.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;}
}
.ws2_c00050{word-spacing:-2.959200px;}
.ws3_c00050{word-spacing:-2.203200px;}
.ws1_c00050{word-spacing:0.000000px;}
.ws0_c00050{word-spacing:0.192384px;}
._11_c00050{margin-left:-15.976800px;}
._10_c00050{margin-left:-14.925600px;}
._e_c00050{margin-left:-5.846400px;}
._9_c00050{margin-left:-4.089600px;}
._8_c00050{margin-left:-2.858400px;}
._3_c00050{margin-left:-1.497600px;}
._0_c00050{width:1.034064px;}
._4_c00050{width:2.124000px;}
._a_c00050{width:3.520800px;}
._1_c00050{width:5.133600px;}
._2_c00050{width:6.501600px;}
._7_c00050{width:7.531200px;}
._b_c00050{width:9.338400px;}
._f_c00050{width:14.515200px;}
._d_c00050{width:16.164000px;}
._6_c00050{width:19.677600px;}
._5_c00050{width:20.858400px;}
._c_c00050{width:21.924000px;}
.fc1_c00050{color:rgb(0,0,0);}
.fc0_c00050{color:rgb(32,31,30);}
.fs0_c00050{font-size:60.120000px;}
.fs1_c00050{font-size:72.000000px;}
.y0_c00050{bottom:0.000000px;}
.y5_c00050{bottom:57.360450px;}
.y4_c00050{bottom:78.060450px;}
.y23_c00050{bottom:139.080450px;}
.y22_c00050{bottom:170.130450px;}
.y21_c00050{bottom:201.090450px;}
.y20_c00050{bottom:232.140450px;}
.y1f_c00050{bottom:263.190450px;}
.y1e_c00050{bottom:306.210450px;}
.y1d_c00050{bottom:337.350450px;}
.y1c_c00050{bottom:368.400450px;}
.y1b_c00050{bottom:411.330450px;}
.y1a_c00050{bottom:442.470450px;}
.y19_c00050{bottom:473.520450px;}
.y18_c00050{bottom:504.570450px;}
.y17_c00050{bottom:547.500450px;}
.y16_c00050{bottom:578.640450px;}
.y15_c00050{bottom:609.690450px;}
.y14_c00050{bottom:640.740450px;}
.y13_c00050{bottom:671.790450px;}
.y12_c00050{bottom:702.840450px;}
.y11_c00050{bottom:745.770450px;}
.y10_c00050{bottom:776.910450px;}
.yf_c00050{bottom:807.960450px;}
.ye_c00050{bottom:839.010450px;}
.yd_c00050{bottom:870.060450px;}
.yc_c00050{bottom:913.080450px;}
.yb_c00050{bottom:944.220450px;}
.ya_c00050{bottom:975.180450px;}
.y9_c00050{bottom:1006.230450px;}
.y8_c00050{bottom:1037.280450px;}
.y7_c00050{bottom:1080.300450px;}
.y6_c00050{bottom:1111.440450px;}
.y3_c00050{bottom:1132.140450px;}
.y2_c00050{bottom:1165.441023px;}
.y1_c00050{bottom:1196.040600px;}
.h1_c00050{height:52.898555px;}
.h2_c00050{height:63.175781px;}
.h3_c00050{height:63.351562px;}
.h4_c00050{height:63.949219px;}
.h0_c00050{height:1263.000000px;}
.w1_c00050{width:892.500000px;}
.w0_c00050{width:892.830000px;}
.x0_c00050{left:0.000000px;}
.x1_c00050{left:127.620000px;}
.x2_c00050{left:747.450000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls14_c00050{letter-spacing:-0.108800pt;}
.lse_c00050{letter-spacing:-0.090848pt;}
.ls16_c00050{letter-spacing:-0.044800pt;}
.ls12_c00050{letter-spacing:-0.038400pt;}
.ls10_c00050{letter-spacing:-0.032000pt;}
.ls13_c00050{letter-spacing:-0.025600pt;}
.ls15_c00050{letter-spacing:-0.012800pt;}
.ls11_c00050{letter-spacing:-0.006400pt;}
.lsf_c00050{letter-spacing:0.000000pt;}
.ls7_c00050{letter-spacing:0.006400pt;}
.lsb_c00050{letter-spacing:0.012800pt;}
.ls6_c00050{letter-spacing:0.019200pt;}
.ls9_c00050{letter-spacing:0.025600pt;}
.ls4_c00050{letter-spacing:0.032000pt;}
.ls3_c00050{letter-spacing:0.038400pt;}
.ls0_c00050{letter-spacing:0.044800pt;}
.ls2_c00050{letter-spacing:0.051200pt;}
.ls8_c00050{letter-spacing:0.057600pt;}
.ls1_c00050{letter-spacing:0.064000pt;}
.lsa_c00050{letter-spacing:0.070400pt;}
.ls5_c00050{letter-spacing:0.083200pt;}
.lsd_c00050{letter-spacing:0.108800pt;}
.lsc_c00050{letter-spacing:4.800000pt;}
.ls17_c00050{letter-spacing:5.120000pt;}
.ls18_c00050{letter-spacing:13.440000pt;}
.ws2_c00050{word-spacing:-2.630400pt;}
.ws3_c00050{word-spacing:-1.958400pt;}
.ws1_c00050{word-spacing:0.000000pt;}
.ws0_c00050{word-spacing:0.171008pt;}
._11_c00050{margin-left:-14.201600pt;}
._10_c00050{margin-left:-13.267200pt;}
._e_c00050{margin-left:-5.196800pt;}
._9_c00050{margin-left:-3.635200pt;}
._8_c00050{margin-left:-2.540800pt;}
._3_c00050{margin-left:-1.331200pt;}
._0_c00050{width:0.919168pt;}
._4_c00050{width:1.888000pt;}
._a_c00050{width:3.129600pt;}
._1_c00050{width:4.563200pt;}
._2_c00050{width:5.779200pt;}
._7_c00050{width:6.694400pt;}
._b_c00050{width:8.300800pt;}
._f_c00050{width:12.902400pt;}
._d_c00050{width:14.368000pt;}
._6_c00050{width:17.491200pt;}
._5_c00050{width:18.540800pt;}
._c_c00050{width:19.488000pt;}
.fs0_c00050{font-size:53.440000pt;}
.fs1_c00050{font-size:64.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y5_c00050{bottom:50.987067pt;}
.y4_c00050{bottom:69.387067pt;}
.y23_c00050{bottom:123.627067pt;}
.y22_c00050{bottom:151.227067pt;}
.y21_c00050{bottom:178.747067pt;}
.y20_c00050{bottom:206.347067pt;}
.y1f_c00050{bottom:233.947067pt;}
.y1e_c00050{bottom:272.187067pt;}
.y1d_c00050{bottom:299.867067pt;}
.y1c_c00050{bottom:327.467067pt;}
.y1b_c00050{bottom:365.627067pt;}
.y1a_c00050{bottom:393.307067pt;}
.y19_c00050{bottom:420.907067pt;}
.y18_c00050{bottom:448.507067pt;}
.y17_c00050{bottom:486.667067pt;}
.y16_c00050{bottom:514.347067pt;}
.y15_c00050{bottom:541.947067pt;}
.y14_c00050{bottom:569.547067pt;}
.y13_c00050{bottom:597.147067pt;}
.y12_c00050{bottom:624.747067pt;}
.y11_c00050{bottom:662.907067pt;}
.y10_c00050{bottom:690.587067pt;}
.yf_c00050{bottom:718.187067pt;}
.ye_c00050{bottom:745.787067pt;}
.yd_c00050{bottom:773.387067pt;}
.yc_c00050{bottom:811.627067pt;}
.yb_c00050{bottom:839.307067pt;}
.ya_c00050{bottom:866.827067pt;}
.y9_c00050{bottom:894.427067pt;}
.y8_c00050{bottom:922.027067pt;}
.y7_c00050{bottom:960.267067pt;}
.y6_c00050{bottom:987.947067pt;}
.y3_c00050{bottom:1006.347067pt;}
.y2_c00050{bottom:1035.947576pt;}
.y1_c00050{bottom:1063.147200pt;}
.h1_c00050{height:47.020937pt;}
.h2_c00050{height:56.156250pt;}
.h3_c00050{height:56.312500pt;}
.h4_c00050{height:56.843750pt;}
.h0_c00050{height:1122.666667pt;}
.w1_c00050{width:793.333333pt;}
.w0_c00050{width:793.626667pt;}
.x0_c00050{left:0.000000pt;}
.x1_c00050{left:113.440000pt;}
.x2_c00050{left:664.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_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_c93547732e29f9c8a3203ff9.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.095703;font-style:normal;font-weight:normal;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_82cb5ddb63401461ccf0f68b.woff2')format("woff");}.ff2_c00051{font-family:ff2_c00051;line-height:1.093262;font-style: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:-20.880000px;}
.v0_c00051{vertical-align:0.000000px;}
.v1_c00051{vertical-align:27.000000px;}
.ls1a_c00051{letter-spacing:-1.800000px;}
.ls1b_c00051{letter-spacing:-0.064800px;}
.ls14_c00051{letter-spacing:-0.048096px;}
.ls1c_c00051{letter-spacing:-0.043200px;}
.ls19_c00051{letter-spacing:-0.036000px;}
.ls18_c00051{letter-spacing:-0.028800px;}
.ls1d_c00051{letter-spacing:-0.021600px;}
.ls17_c00051{letter-spacing:-0.007200px;}
.ls1f_c00051{letter-spacing:-0.006012px;}
.ls15_c00051{letter-spacing:0.000000px;}
.ls12_c00051{letter-spacing:0.006012px;}
.lsa_c00051{letter-spacing:0.007200px;}
.ls13_c00051{letter-spacing:0.012024px;}
.ls1_c00051{letter-spacing:0.014400px;}
.lsd_c00051{letter-spacing:0.021600px;}
.lsb_c00051{letter-spacing:0.028800px;}
.ls5_c00051{letter-spacing:0.036000px;}
.ls6_c00051{letter-spacing:0.043200px;}
.lse_c00051{letter-spacing:0.050400px;}
.ls0_c00051{letter-spacing:0.057600px;}
.lsf_c00051{letter-spacing:0.064800px;}
.ls8_c00051{letter-spacing:0.072000px;}
.ls10_c00051{letter-spacing:0.100800px;}
.ls3_c00051{letter-spacing:0.108000px;}
.ls11_c00051{letter-spacing:0.115200px;}
.ls7_c00051{letter-spacing:0.122400px;}
.ls9_c00051{letter-spacing:0.129600px;}
.lsc_c00051{letter-spacing:0.180000px;}
.ls4_c00051{letter-spacing:0.194400px;}
.ls2_c00051{letter-spacing:0.446400px;}
.ls1e_c00051{letter-spacing:1.440000px;}
.ls16_c00051{letter-spacing:2.520000px;}
.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:-17.971200px;}
.ws1_c00051{word-spacing:-9.720000px;}
.ws3_c00051{word-spacing:0.000000px;}
.ws2_c00051{word-spacing:0.138276px;}
.ws8_c00051{word-spacing:10.425600px;}
.ws6_c00051{word-spacing:10.468800px;}
.ws7_c00051{word-spacing:10.476000px;}
.ws5_c00051{word-spacing:18.993600px;}
.ws4_c00051{word-spacing:19.087200px;}
._c_c00051{margin-left:-4.780800px;}
._a_c00051{margin-left:-3.650400px;}
._2_c00051{margin-left:-2.635200px;}
._1_c00051{margin-left:-1.224000px;}
._4_c00051{width:1.036800px;}
._0_c00051{width:2.462400px;}
._9_c00051{width:3.614400px;}
._6_c00051{width:4.701600px;}
._5_c00051{width:6.076800px;}
._7_c00051{width:8.611200px;}
._8_c00051{width:10.051200px;}
._d_c00051{width:11.239200px;}
._b_c00051{width:15.796800px;}
._3_c00051{width:19.656000px;}
.fc0_c00051{color:rgb(0,0,0);}
.fs3_c00051{font-size:38.880000px;}
.fs2_c00051{font-size:47.880000px;}
.fs0_c00051{font-size:60.120000px;}
.fs1_c00051{font-size:72.000000px;}
.y0_c00051{bottom:0.000000px;}
.y6_c00051{bottom:57.360450px;}
.y5_c00051{bottom:78.060450px;}
.y25_c00051{bottom:109.920639px;}
.y24_c00051{bottom:132.330450px;}
.y23_c00051{bottom:145.020450px;}
.y22_c00051{bottom:250.050450px;}
.y21_c00051{bottom:281.100450px;}
.y20_c00051{bottom:312.150450px;}
.y1f_c00051{bottom:343.200450px;}
.y1e_c00051{bottom:374.250450px;}
.y1d_c00051{bottom:417.180450px;}
.y1c_c00051{bottom:448.320450px;}
.y1b_c00051{bottom:479.370450px;}
.y1a_c00051{bottom:510.420450px;}
.y19_c00051{bottom:541.470450px;}
.y18_c00051{bottom:584.490450px;}
.y17_c00051{bottom:615.630450px;}
.y16_c00051{bottom:646.680450px;}
.y15_c00051{bottom:677.640450px;}
.y14_c00051{bottom:708.690450px;}
.y13_c00051{bottom:739.740450px;}
.y12_c00051{bottom:770.790450px;}
.y11_c00051{bottom:801.840450px;}
.y10_c00051{bottom:832.890450px;}
.yf_c00051{bottom:863.940450px;}
.ye_c00051{bottom:894.990450px;}
.yd_c00051{bottom:926.040450px;}
.yc_c00051{bottom:957.090450px;}
.yb_c00051{bottom:1000.110450px;}
.ya_c00051{bottom:1031.160450px;}
.y9_c00051{bottom:1062.120450px;}
.y8_c00051{bottom:1093.260450px;}
.y7_c00051{bottom:1124.310450px;}
.y4_c00051{bottom:1144.380657px;}
.y3_c00051{bottom:1161.660648px;}
.y2_c00051{bottom:1178.850459px;}
.y1_c00051{bottom:1196.130450px;}
.h5_c00051{height:34.114922px;}
.h6_c00051{height:52.751777px;}
.h1_c00051{height:52.898555px;}
.h2_c00051{height:63.175781px;}
.h3_c00051{height:63.351562px;}
.h4_c00051{height:69.011895px;}
.h0_c00051{height:1263.000000px;}
.w1_c00051{width:892.500000px;}
.w0_c00051{width:892.830000px;}
.x0_c00051{left:0.000000px;}
.x4_c00051{left:127.620000px;}
.x1_c00051{left:649.620000px;}
.x3_c00051{left:747.450000px;}
.x2_c00051{left:765.450198px;}
@media print{
.v2_c00051{vertical-align:-18.560000pt;}
.v0_c00051{vertical-align:0.000000pt;}
.v1_c00051{vertical-align:24.000000pt;}
.ls1a_c00051{letter-spacing:-1.600000pt;}
.ls1b_c00051{letter-spacing:-0.057600pt;}
.ls14_c00051{letter-spacing:-0.042752pt;}
.ls1c_c00051{letter-spacing:-0.038400pt;}
.ls19_c00051{letter-spacing:-0.032000pt;}
.ls18_c00051{letter-spacing:-0.025600pt;}
.ls1d_c00051{letter-spacing:-0.019200pt;}
.ls17_c00051{letter-spacing:-0.006400pt;}
.ls1f_c00051{letter-spacing:-0.005344pt;}
.ls15_c00051{letter-spacing:0.000000pt;}
.ls12_c00051{letter-spacing:0.005344pt;}
.lsa_c00051{letter-spacing:0.006400pt;}
.ls13_c00051{letter-spacing:0.010688pt;}
.ls1_c00051{letter-spacing:0.012800pt;}
.lsd_c00051{letter-spacing:0.019200pt;}
.lsb_c00051{letter-spacing:0.025600pt;}
.ls5_c00051{letter-spacing:0.032000pt;}
.ls6_c00051{letter-spacing:0.038400pt;}
.lse_c00051{letter-spacing:0.044800pt;}
.ls0_c00051{letter-spacing:0.051200pt;}
.lsf_c00051{letter-spacing:0.057600pt;}
.ls8_c00051{letter-spacing:0.064000pt;}
.ls10_c00051{letter-spacing:0.089600pt;}
.ls3_c00051{letter-spacing:0.096000pt;}
.ls11_c00051{letter-spacing:0.102400pt;}
.ls7_c00051{letter-spacing:0.108800pt;}
.ls9_c00051{letter-spacing:0.115200pt;}
.lsc_c00051{letter-spacing:0.160000pt;}
.ls4_c00051{letter-spacing:0.172800pt;}
.ls2_c00051{letter-spacing:0.396800pt;}
.ls1e_c00051{letter-spacing:1.280000pt;}
.ls16_c00051{letter-spacing:2.240000pt;}
.ws0_c00051{word-spacing:-15.974400pt;}
.ws1_c00051{word-spacing:-8.640000pt;}
.ws3_c00051{word-spacing:0.000000pt;}
.ws2_c00051{word-spacing:0.122912pt;}
.ws8_c00051{word-spacing:9.267200pt;}
.ws6_c00051{word-spacing:9.305600pt;}
.ws7_c00051{word-spacing:9.312000pt;}
.ws5_c00051{word-spacing:16.883200pt;}
.ws4_c00051{word-spacing:16.966400pt;}
._c_c00051{margin-left:-4.249600pt;}
._a_c00051{margin-left:-3.244800pt;}
._2_c00051{margin-left:-2.342400pt;}
._1_c00051{margin-left:-1.088000pt;}
._4_c00051{width:0.921600pt;}
._0_c00051{width:2.188800pt;}
._9_c00051{width:3.212800pt;}
._6_c00051{width:4.179200pt;}
._5_c00051{width:5.401600pt;}
._7_c00051{width:7.654400pt;}
._8_c00051{width:8.934400pt;}
._d_c00051{width:9.990400pt;}
._b_c00051{width:14.041600pt;}
._3_c00051{width:17.472000pt;}
.fs3_c00051{font-size:34.560000pt;}
.fs2_c00051{font-size:42.560000pt;}
.fs0_c00051{font-size:53.440000pt;}
.fs1_c00051{font-size:64.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y6_c00051{bottom:50.987067pt;}
.y5_c00051{bottom:69.387067pt;}
.y25_c00051{bottom:97.707235pt;}
.y24_c00051{bottom:117.627067pt;}
.y23_c00051{bottom:128.907067pt;}
.y22_c00051{bottom:222.267067pt;}
.y21_c00051{bottom:249.867067pt;}
.y20_c00051{bottom:277.467067pt;}
.y1f_c00051{bottom:305.067067pt;}
.y1e_c00051{bottom:332.667067pt;}
.y1d_c00051{bottom:370.827067pt;}
.y1c_c00051{bottom:398.507067pt;}
.y1b_c00051{bottom:426.107067pt;}
.y1a_c00051{bottom:453.707067pt;}
.y19_c00051{bottom:481.307067pt;}
.y18_c00051{bottom:519.547067pt;}
.y17_c00051{bottom:547.227067pt;}
.y16_c00051{bottom:574.827067pt;}
.y15_c00051{bottom:602.347067pt;}
.y14_c00051{bottom:629.947067pt;}
.y13_c00051{bottom:657.547067pt;}
.y12_c00051{bottom:685.147067pt;}
.y11_c00051{bottom:712.747067pt;}
.y10_c00051{bottom:740.347067pt;}
.yf_c00051{bottom:767.947067pt;}
.ye_c00051{bottom:795.547067pt;}
.yd_c00051{bottom:823.147067pt;}
.yc_c00051{bottom:850.747067pt;}
.yb_c00051{bottom:888.987067pt;}
.ya_c00051{bottom:916.587067pt;}
.y9_c00051{bottom:944.107067pt;}
.y8_c00051{bottom:971.787067pt;}
.y7_c00051{bottom:999.387067pt;}
.y4_c00051{bottom:1017.227251pt;}
.y3_c00051{bottom:1032.587243pt;}
.y2_c00051{bottom:1047.867075pt;}
.y1_c00051{bottom:1063.227067pt;}
.h5_c00051{height:30.324375pt;}
.h6_c00051{height:46.890469pt;}
.h1_c00051{height:47.020937pt;}
.h2_c00051{height:56.156250pt;}
.h3_c00051{height:56.312500pt;}
.h4_c00051{height:61.343906pt;}
.h0_c00051{height:1122.666667pt;}
.w1_c00051{width:793.333333pt;}
.w0_c00051{width:793.626667pt;}
.x0_c00051{left:0.000000pt;}
.x4_c00051{left:113.440000pt;}
.x1_c00051{left:577.440000pt;}
.x3_c00051{left:664.400000pt;}
.x2_c00051{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.095703;font-style:normal;font-weight:normal;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_a0b903c1219dcb7efaa9f35a.woff2')format("woff");}.ff2_c00052{font-family:ff2_c00052;line-height:1.093262;font-style: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:-20.880000px;}
.v0_c00052{vertical-align:0.000000px;}
.v1_c00052{vertical-align:27.000000px;}
.ls15_c00052{letter-spacing:-2.880000px;}
.ls18_c00052{letter-spacing:-0.210420px;}
.lsf_c00052{letter-spacing:-0.102204px;}
.ls13_c00052{letter-spacing:-0.086400px;}
.ls11_c00052{letter-spacing:-0.028800px;}
.ls19_c00052{letter-spacing:-0.024048px;}
.ls12_c00052{letter-spacing:-0.021600px;}
.ls14_c00052{letter-spacing:-0.007200px;}
.ls10_c00052{letter-spacing:0.000000px;}
.ls4_c00052{letter-spacing:0.007200px;}
.ls5_c00052{letter-spacing:0.014400px;}
.ls1_c00052{letter-spacing:0.021600px;}
.lsd_c00052{letter-spacing:0.028800px;}
.lsa_c00052{letter-spacing:0.036000px;}
.ls9_c00052{letter-spacing:0.043200px;}
.ls3_c00052{letter-spacing:0.050400px;}
.ls2_c00052{letter-spacing:0.057600px;}
.ls7_c00052{letter-spacing:0.064800px;}
.ls6_c00052{letter-spacing:0.072000px;}
.lsb_c00052{letter-spacing:0.079200px;}
.lsc_c00052{letter-spacing:0.086400px;}
.ls0_c00052{letter-spacing:0.093600px;}
.ls17_c00052{letter-spacing:0.108216px;}
.lse_c00052{letter-spacing:0.115200px;}
.ls16_c00052{letter-spacing:0.120240px;}
.ls8_c00052{letter-spacing:0.180000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:-17.913600px;}
.ws1_c00052{word-spacing:-9.720000px;}
.ws3_c00052{word-spacing:0.000000px;}
.ws2_c00052{word-spacing:0.192384px;}
._a_c00052{margin-left:-4.608000px;}
._7_c00052{margin-left:-2.599200px;}
._1_c00052{margin-left:-1.476000px;}
._0_c00052{width:1.034064px;}
._6_c00052{width:2.085264px;}
._5_c00052{width:3.422736px;}
._9_c00052{width:4.857264px;}
._8_c00052{width:6.084000px;}
._2_c00052{width:7.560000px;}
._3_c00052{width:9.345600px;}
._4_c00052{width:10.497600px;}
._b_c00052{width:15.076800px;}
.fc1_c00052{color:rgb(0,0,0);}
.fc0_c00052{color:rgb(32,31,30);}
.fs3_c00052{font-size:38.880000px;}
.fs2_c00052{font-size:47.880000px;}
.fs0_c00052{font-size:60.120000px;}
.fs1_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y5_c00052{bottom:57.360450px;}
.y4_c00052{bottom:78.060450px;}
.y25_c00052{bottom:109.920639px;}
.y24_c00052{bottom:132.330450px;}
.y23_c00052{bottom:145.020450px;}
.y22_c00052{bottom:194.070450px;}
.y21_c00052{bottom:225.120450px;}
.y20_c00052{bottom:256.170450px;}
.y1f_c00052{bottom:287.220450px;}
.y1e_c00052{bottom:330.150450px;}
.y1d_c00052{bottom:361.290450px;}
.y1c_c00052{bottom:392.340450px;}
.y1b_c00052{bottom:423.390450px;}
.y1a_c00052{bottom:454.440450px;}
.y19_c00052{bottom:485.490450px;}
.y18_c00052{bottom:516.540450px;}
.y17_c00052{bottom:547.590450px;}
.y16_c00052{bottom:578.640450px;}
.y15_c00052{bottom:609.690450px;}
.y14_c00052{bottom:640.740450px;}
.y13_c00052{bottom:683.670450px;}
.y12_c00052{bottom:714.810450px;}
.y11_c00052{bottom:745.860450px;}
.y10_c00052{bottom:788.880450px;}
.yf_c00052{bottom:820.020450px;}
.ye_c00052{bottom:851.070450px;}
.yd_c00052{bottom:882.120450px;}
.yc_c00052{bottom:913.170450px;}
.yb_c00052{bottom:944.220450px;}
.ya_c00052{bottom:975.180450px;}
.y9_c00052{bottom:1006.230450px;}
.y8_c00052{bottom:1037.280450px;}
.y7_c00052{bottom:1080.300450px;}
.y6_c00052{bottom:1111.440450px;}
.y3_c00052{bottom:1132.140450px;}
.y2_c00052{bottom:1165.441023px;}
.y1_c00052{bottom:1196.040600px;}
.h4_c00052{height:34.114922px;}
.h5_c00052{height:52.751777px;}
.h1_c00052{height:52.898555px;}
.h2_c00052{height:63.175781px;}
.h3_c00052{height:69.011895px;}
.h0_c00052{height:1263.000000px;}
.w1_c00052{width:892.500000px;}
.w0_c00052{width:892.830000px;}
.x0_c00052{left:0.000000px;}
.x1_c00052{left:127.620000px;}
.x2_c00052{left:747.450000px;}
@media print{
.v2_c00052{vertical-align:-18.560000pt;}
.v0_c00052{vertical-align:0.000000pt;}
.v1_c00052{vertical-align:24.000000pt;}
.ls15_c00052{letter-spacing:-2.560000pt;}
.ls18_c00052{letter-spacing:-0.187040pt;}
.lsf_c00052{letter-spacing:-0.090848pt;}
.ls13_c00052{letter-spacing:-0.076800pt;}
.ls11_c00052{letter-spacing:-0.025600pt;}
.ls19_c00052{letter-spacing:-0.021376pt;}
.ls12_c00052{letter-spacing:-0.019200pt;}
.ls14_c00052{letter-spacing:-0.006400pt;}
.ls10_c00052{letter-spacing:0.000000pt;}
.ls4_c00052{letter-spacing:0.006400pt;}
.ls5_c00052{letter-spacing:0.012800pt;}
.ls1_c00052{letter-spacing:0.019200pt;}
.lsd_c00052{letter-spacing:0.025600pt;}
.lsa_c00052{letter-spacing:0.032000pt;}
.ls9_c00052{letter-spacing:0.038400pt;}
.ls3_c00052{letter-spacing:0.044800pt;}
.ls2_c00052{letter-spacing:0.051200pt;}
.ls7_c00052{letter-spacing:0.057600pt;}
.ls6_c00052{letter-spacing:0.064000pt;}
.lsb_c00052{letter-spacing:0.070400pt;}
.lsc_c00052{letter-spacing:0.076800pt;}
.ls0_c00052{letter-spacing:0.083200pt;}
.ls17_c00052{letter-spacing:0.096192pt;}
.lse_c00052{letter-spacing:0.102400pt;}
.ls16_c00052{letter-spacing:0.106880pt;}
.ls8_c00052{letter-spacing:0.160000pt;}
.ws0_c00052{word-spacing:-15.923200pt;}
.ws1_c00052{word-spacing:-8.640000pt;}
.ws3_c00052{word-spacing:0.000000pt;}
.ws2_c00052{word-spacing:0.171008pt;}
._a_c00052{margin-left:-4.096000pt;}
._7_c00052{margin-left:-2.310400pt;}
._1_c00052{margin-left:-1.312000pt;}
._0_c00052{width:0.919168pt;}
._6_c00052{width:1.853568pt;}
._5_c00052{width:3.042432pt;}
._9_c00052{width:4.317568pt;}
._8_c00052{width:5.408000pt;}
._2_c00052{width:6.720000pt;}
._3_c00052{width:8.307200pt;}
._4_c00052{width:9.331200pt;}
._b_c00052{width:13.401600pt;}
.fs3_c00052{font-size:34.560000pt;}
.fs2_c00052{font-size:42.560000pt;}
.fs0_c00052{font-size:53.440000pt;}
.fs1_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y5_c00052{bottom:50.987067pt;}
.y4_c00052{bottom:69.387067pt;}
.y25_c00052{bottom:97.707235pt;}
.y24_c00052{bottom:117.627067pt;}
.y23_c00052{bottom:128.907067pt;}
.y22_c00052{bottom:172.507067pt;}
.y21_c00052{bottom:200.107067pt;}
.y20_c00052{bottom:227.707067pt;}
.y1f_c00052{bottom:255.307067pt;}
.y1e_c00052{bottom:293.467067pt;}
.y1d_c00052{bottom:321.147067pt;}
.y1c_c00052{bottom:348.747067pt;}
.y1b_c00052{bottom:376.347067pt;}
.y1a_c00052{bottom:403.947067pt;}
.y19_c00052{bottom:431.547067pt;}
.y18_c00052{bottom:459.147067pt;}
.y17_c00052{bottom:486.747067pt;}
.y16_c00052{bottom:514.347067pt;}
.y15_c00052{bottom:541.947067pt;}
.y14_c00052{bottom:569.547067pt;}
.y13_c00052{bottom:607.707067pt;}
.y12_c00052{bottom:635.387067pt;}
.y11_c00052{bottom:662.987067pt;}
.y10_c00052{bottom:701.227067pt;}
.yf_c00052{bottom:728.907067pt;}
.ye_c00052{bottom:756.507067pt;}
.yd_c00052{bottom:784.107067pt;}
.yc_c00052{bottom:811.707067pt;}
.yb_c00052{bottom:839.307067pt;}
.ya_c00052{bottom:866.827067pt;}
.y9_c00052{bottom:894.427067pt;}
.y8_c00052{bottom:922.027067pt;}
.y7_c00052{bottom:960.267067pt;}
.y6_c00052{bottom:987.947067pt;}
.y3_c00052{bottom:1006.347067pt;}
.y2_c00052{bottom:1035.947576pt;}
.y1_c00052{bottom:1063.147200pt;}
.h4_c00052{height:30.324375pt;}
.h5_c00052{height:46.890469pt;}
.h1_c00052{height:47.020937pt;}
.h2_c00052{height:56.156250pt;}
.h3_c00052{height:61.343906pt;}
.h0_c00052{height:1122.666667pt;}
.w1_c00052{width:793.333333pt;}
.w0_c00052{width:793.626667pt;}
.x0_c00052{left:0.000000pt;}
.x1_c00052{left:113.440000pt;}
.x2_c00052{left:664.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_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_9d6361d63ccd59ecd096f9b1.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.095703;font-style:normal;font-weight:normal;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_bd0497f47d61e0c6ef5bae1c.woff2')format("woff");}.ff2_c00053{font-family:ff2_c00053;line-height:1.093262;font-style: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:-20.880000px;}
.v0_c00053{vertical-align:0.000000px;}
.v1_c00053{vertical-align:27.000000px;}
.ls19_c00053{letter-spacing:-0.252000px;}
.ls1a_c00053{letter-spacing:-0.180360px;}
.ls18_c00053{letter-spacing:-0.064800px;}
.ls11_c00053{letter-spacing:-0.048096px;}
.ls13_c00053{letter-spacing:-0.036000px;}
.ls16_c00053{letter-spacing:-0.028800px;}
.ls14_c00053{letter-spacing:-0.021600px;}
.ls17_c00053{letter-spacing:-0.014400px;}
.ls15_c00053{letter-spacing:-0.007200px;}
.ls12_c00053{letter-spacing:0.000000px;}
.lsd_c00053{letter-spacing:0.007200px;}
.ls10_c00053{letter-spacing:0.012024px;}
.ls0_c00053{letter-spacing:0.014400px;}
.ls2_c00053{letter-spacing:0.021600px;}
.lsb_c00053{letter-spacing:0.028800px;}
.ls4_c00053{letter-spacing:0.036000px;}
.lse_c00053{letter-spacing:0.036072px;}
.ls1_c00053{letter-spacing:0.043200px;}
.ls3_c00053{letter-spacing:0.050400px;}
.ls9_c00053{letter-spacing:0.057600px;}
.ls5_c00053{letter-spacing:0.064800px;}
.ls8_c00053{letter-spacing:0.072000px;}
.lsf_c00053{letter-spacing:0.084168px;}
.ls7_c00053{letter-spacing:0.093600px;}
.lsc_c00053{letter-spacing:0.100800px;}
.lsa_c00053{letter-spacing:0.115200px;}
.ls6_c00053{letter-spacing:0.180000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00053{word-spacing:-17.971200px;}
.ws2_c00053{word-spacing:-14.849640px;}
.ws1_c00053{word-spacing:-9.720000px;}
.ws4_c00053{word-spacing:0.000000px;}
.ws3_c00053{word-spacing:0.138276px;}
.ws5_c00053{word-spacing:2.102400px;}
._5_c00053{margin-left:-3.463200px;}
._e_c00053{margin-left:-2.448000px;}
._1_c00053{margin-left:-1.440000px;}
._6_c00053{width:1.281600px;}
._0_c00053{width:2.865600px;}
._2_c00053{width:4.068000px;}
._d_c00053{width:5.068800px;}
._a_c00053{width:6.796800px;}
._c_c00053{width:8.272800px;}
._7_c00053{width:9.309600px;}
._9_c00053{width:11.268000px;}
._8_c00053{width:12.628800px;}
._b_c00053{width:19.396800px;}
._3_c00053{width:21.139200px;}
._4_c00053{width:22.219200px;}
.fc0_c00053{color:rgb(0,0,0);}
.fs3_c00053{font-size:38.880000px;}
.fs2_c00053{font-size:47.880000px;}
.fs0_c00053{font-size:60.120000px;}
.fs1_c00053{font-size:72.000000px;}
.y0_c00053{bottom:0.000000px;}
.y6_c00053{bottom:57.360450px;}
.y5_c00053{bottom:78.060450px;}
.y26_c00053{bottom:109.920639px;}
.y25_c00053{bottom:132.330450px;}
.y24_c00053{bottom:145.020450px;}
.y23_c00053{bottom:195.060450px;}
.y22_c00053{bottom:226.110450px;}
.y21_c00053{bottom:257.070450px;}
.y20_c00053{bottom:300.090450px;}
.y1f_c00053{bottom:331.230450px;}
.y1e_c00053{bottom:362.280450px;}
.y1d_c00053{bottom:393.330450px;}
.y1c_c00053{bottom:424.380450px;}
.y1b_c00053{bottom:467.310450px;}
.y1a_c00053{bottom:498.450450px;}
.y19_c00053{bottom:529.500450px;}
.y18_c00053{bottom:560.550450px;}
.y17_c00053{bottom:591.600450px;}
.y16_c00053{bottom:622.650450px;}
.y15_c00053{bottom:665.580450px;}
.y14_c00053{bottom:696.720450px;}
.y13_c00053{bottom:727.770450px;}
.y12_c00053{bottom:758.820450px;}
.y11_c00053{bottom:801.750450px;}
.y10_c00053{bottom:832.890450px;}
.yf_c00053{bottom:863.940450px;}
.ye_c00053{bottom:894.990450px;}
.yd_c00053{bottom:926.040450px;}
.yc_c00053{bottom:957.090450px;}
.yb_c00053{bottom:1000.110450px;}
.ya_c00053{bottom:1031.160450px;}
.y9_c00053{bottom:1062.210450px;}
.y8_c00053{bottom:1093.260450px;}
.y7_c00053{bottom:1124.310450px;}
.y4_c00053{bottom:1144.380657px;}
.y3_c00053{bottom:1161.660648px;}
.y2_c00053{bottom:1178.850459px;}
.y1_c00053{bottom:1196.130450px;}
.h5_c00053{height:34.114922px;}
.h6_c00053{height:52.751777px;}
.h1_c00053{height:52.898555px;}
.h2_c00053{height:63.175781px;}
.h4_c00053{height:63.351562px;}
.h3_c00053{height:69.011895px;}
.h0_c00053{height:1263.000000px;}
.w1_c00053{width:892.500000px;}
.w0_c00053{width:892.830000px;}
.x0_c00053{left:0.000000px;}
.x4_c00053{left:127.620000px;}
.x1_c00053{left:649.620000px;}
.x3_c00053{left:747.450000px;}
.x2_c00053{left:765.450198px;}
@media print{
.v2_c00053{vertical-align:-18.560000pt;}
.v0_c00053{vertical-align:0.000000pt;}
.v1_c00053{vertical-align:24.000000pt;}
.ls19_c00053{letter-spacing:-0.224000pt;}
.ls1a_c00053{letter-spacing:-0.160320pt;}
.ls18_c00053{letter-spacing:-0.057600pt;}
.ls11_c00053{letter-spacing:-0.042752pt;}
.ls13_c00053{letter-spacing:-0.032000pt;}
.ls16_c00053{letter-spacing:-0.025600pt;}
.ls14_c00053{letter-spacing:-0.019200pt;}
.ls17_c00053{letter-spacing:-0.012800pt;}
.ls15_c00053{letter-spacing:-0.006400pt;}
.ls12_c00053{letter-spacing:0.000000pt;}
.lsd_c00053{letter-spacing:0.006400pt;}
.ls10_c00053{letter-spacing:0.010688pt;}
.ls0_c00053{letter-spacing:0.012800pt;}
.ls2_c00053{letter-spacing:0.019200pt;}
.lsb_c00053{letter-spacing:0.025600pt;}
.ls4_c00053{letter-spacing:0.032000pt;}
.lse_c00053{letter-spacing:0.032064pt;}
.ls1_c00053{letter-spacing:0.038400pt;}
.ls3_c00053{letter-spacing:0.044800pt;}
.ls9_c00053{letter-spacing:0.051200pt;}
.ls5_c00053{letter-spacing:0.057600pt;}
.ls8_c00053{letter-spacing:0.064000pt;}
.lsf_c00053{letter-spacing:0.074816pt;}
.ls7_c00053{letter-spacing:0.083200pt;}
.lsc_c00053{letter-spacing:0.089600pt;}
.lsa_c00053{letter-spacing:0.102400pt;}
.ls6_c00053{letter-spacing:0.160000pt;}
.ws0_c00053{word-spacing:-15.974400pt;}
.ws2_c00053{word-spacing:-13.199680pt;}
.ws1_c00053{word-spacing:-8.640000pt;}
.ws4_c00053{word-spacing:0.000000pt;}
.ws3_c00053{word-spacing:0.122912pt;}
.ws5_c00053{word-spacing:1.868800pt;}
._5_c00053{margin-left:-3.078400pt;}
._e_c00053{margin-left:-2.176000pt;}
._1_c00053{margin-left:-1.280000pt;}
._6_c00053{width:1.139200pt;}
._0_c00053{width:2.547200pt;}
._2_c00053{width:3.616000pt;}
._d_c00053{width:4.505600pt;}
._a_c00053{width:6.041600pt;}
._c_c00053{width:7.353600pt;}
._7_c00053{width:8.275200pt;}
._9_c00053{width:10.016000pt;}
._8_c00053{width:11.225600pt;}
._b_c00053{width:17.241600pt;}
._3_c00053{width:18.790400pt;}
._4_c00053{width:19.750400pt;}
.fs3_c00053{font-size:34.560000pt;}
.fs2_c00053{font-size:42.560000pt;}
.fs0_c00053{font-size:53.440000pt;}
.fs1_c00053{font-size:64.000000pt;}
.y0_c00053{bottom:0.000000pt;}
.y6_c00053{bottom:50.987067pt;}
.y5_c00053{bottom:69.387067pt;}
.y26_c00053{bottom:97.707235pt;}
.y25_c00053{bottom:117.627067pt;}
.y24_c00053{bottom:128.907067pt;}
.y23_c00053{bottom:173.387067pt;}
.y22_c00053{bottom:200.987067pt;}
.y21_c00053{bottom:228.507067pt;}
.y20_c00053{bottom:266.747067pt;}
.y1f_c00053{bottom:294.427067pt;}
.y1e_c00053{bottom:322.027067pt;}
.y1d_c00053{bottom:349.627067pt;}
.y1c_c00053{bottom:377.227067pt;}
.y1b_c00053{bottom:415.387067pt;}
.y1a_c00053{bottom:443.067067pt;}
.y19_c00053{bottom:470.667067pt;}
.y18_c00053{bottom:498.267067pt;}
.y17_c00053{bottom:525.867067pt;}
.y16_c00053{bottom:553.467067pt;}
.y15_c00053{bottom:591.627067pt;}
.y14_c00053{bottom:619.307067pt;}
.y13_c00053{bottom:646.907067pt;}
.y12_c00053{bottom:674.507067pt;}
.y11_c00053{bottom:712.667067pt;}
.y10_c00053{bottom:740.347067pt;}
.yf_c00053{bottom:767.947067pt;}
.ye_c00053{bottom:795.547067pt;}
.yd_c00053{bottom:823.147067pt;}
.yc_c00053{bottom:850.747067pt;}
.yb_c00053{bottom:888.987067pt;}
.ya_c00053{bottom:916.587067pt;}
.y9_c00053{bottom:944.187067pt;}
.y8_c00053{bottom:971.787067pt;}
.y7_c00053{bottom:999.387067pt;}
.y4_c00053{bottom:1017.227251pt;}
.y3_c00053{bottom:1032.587243pt;}
.y2_c00053{bottom:1047.867075pt;}
.y1_c00053{bottom:1063.227067pt;}
.h5_c00053{height:30.324375pt;}
.h6_c00053{height:46.890469pt;}
.h1_c00053{height:47.020937pt;}
.h2_c00053{height:56.156250pt;}
.h4_c00053{height:56.312500pt;}
.h3_c00053{height:61.343906pt;}
.h0_c00053{height:1122.666667pt;}
.w1_c00053{width:793.333333pt;}
.w0_c00053{width:793.626667pt;}
.x0_c00053{left:0.000000pt;}
.x4_c00053{left:113.440000pt;}
.x1_c00053{left:577.440000pt;}
.x3_c00053{left:664.400000pt;}
.x2_c00053{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e508fa0003344348670b9f7.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.095703;font-style:normal;font-weight:normal;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_71075fdbb91127d143d3d880.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.104004;font-style: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;}
.ls13_c00054{letter-spacing:-3.960000px;}
.lsf_c00054{letter-spacing:-0.102204px;}
.ls15_c00054{letter-spacing:-0.072000px;}
.ls16_c00054{letter-spacing:-0.036000px;}
.ls12_c00054{letter-spacing:-0.014400px;}
.ls11_c00054{letter-spacing:-0.007200px;}
.ls10_c00054{letter-spacing:0.000000px;}
.ls1_c00054{letter-spacing:0.007200px;}
.ls3_c00054{letter-spacing:0.014400px;}
.ls4_c00054{letter-spacing:0.021600px;}
.ls0_c00054{letter-spacing:0.028800px;}
.ls6_c00054{letter-spacing:0.036000px;}
.ls5_c00054{letter-spacing:0.043200px;}
.ls2_c00054{letter-spacing:0.050400px;}
.ls9_c00054{letter-spacing:0.057600px;}
.lsa_c00054{letter-spacing:0.064800px;}
.ls8_c00054{letter-spacing:0.072000px;}
.ls7_c00054{letter-spacing:0.079200px;}
.lse_c00054{letter-spacing:0.086400px;}
.lsd_c00054{letter-spacing:0.100800px;}
.lsb_c00054{letter-spacing:0.115200px;}
.ls17_c00054{letter-spacing:2.160000px;}
.lsc_c00054{letter-spacing:3.240000px;}
.ls14_c00054{letter-spacing:3.600000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00054{word-spacing:0.000000px;}
.ws0_c00054{word-spacing:0.192384px;}
.ws2_c00054{word-spacing:0.295200px;}
.ws3_c00054{word-spacing:4.255200px;}
.ws4_c00054{word-spacing:4.312800px;}
._b_c00054{margin-left:-5.068800px;}
._1_c00054{margin-left:-3.859200px;}
._2_c00054{margin-left:-2.678400px;}
._4_c00054{margin-left:-1.238400px;}
._0_c00054{width:1.034064px;}
._7_c00054{width:2.145600px;}
._6_c00054{width:3.386736px;}
._a_c00054{width:5.025600px;}
._3_c00054{width:6.429600px;}
._8_c00054{width:7.927200px;}
._c_c00054{width:9.007200px;}
._9_c00054{width:14.371200px;}
._5_c00054{width:19.756800px;}
.fc1_c00054{color:rgb(0,0,0);}
.fc0_c00054{color:rgb(32,31,30);}
.fs0_c00054{font-size:60.120000px;}
.fs1_c00054{font-size:72.000000px;}
.y0_c00054{bottom:0.000000px;}
.y5_c00054{bottom:57.360450px;}
.y4_c00054{bottom:78.060450px;}
.y25_c00054{bottom:112.980450px;}
.y24_c00054{bottom:144.030450px;}
.y23_c00054{bottom:175.080450px;}
.y22_c00054{bottom:206.130450px;}
.y21_c00054{bottom:237.090450px;}
.y20_c00054{bottom:268.140450px;}
.y1f_c00054{bottom:299.190450px;}
.y1e_c00054{bottom:342.210450px;}
.y1d_c00054{bottom:373.350450px;}
.y1c_c00054{bottom:404.400450px;}
.y1b_c00054{bottom:435.450450px;}
.y1a_c00054{bottom:466.500450px;}
.y19_c00054{bottom:509.430450px;}
.y18_c00054{bottom:540.570450px;}
.y17_c00054{bottom:571.620450px;}
.y16_c00054{bottom:602.670450px;}
.y15_c00054{bottom:633.720450px;}
.y14_c00054{bottom:664.770450px;}
.y13_c00054{bottom:695.820450px;}
.y12_c00054{bottom:726.870450px;}
.y11_c00054{bottom:757.920450px;}
.y10_c00054{bottom:788.970450px;}
.yf_c00054{bottom:820.020450px;}
.ye_c00054{bottom:851.070450px;}
.yd_c00054{bottom:882.120450px;}
.yc_c00054{bottom:913.170450px;}
.yb_c00054{bottom:944.220450px;}
.ya_c00054{bottom:975.180450px;}
.y9_c00054{bottom:1006.230450px;}
.y8_c00054{bottom:1049.250450px;}
.y7_c00054{bottom:1080.390450px;}
.y6_c00054{bottom:1111.440450px;}
.y3_c00054{bottom:1132.140450px;}
.y2_c00054{bottom:1165.441023px;}
.y1_c00054{bottom:1196.040600px;}
.h1_c00054{height:52.898555px;}
.h2_c00054{height:63.175781px;}
.h3_c00054{height:63.351562px;}
.h4_c00054{height:63.949219px;}
.h0_c00054{height:1263.000000px;}
.w1_c00054{width:892.500000px;}
.w0_c00054{width:892.830000px;}
.x0_c00054{left:0.000000px;}
.x1_c00054{left:127.620000px;}
.x2_c00054{left:747.450000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls13_c00054{letter-spacing:-3.520000pt;}
.lsf_c00054{letter-spacing:-0.090848pt;}
.ls15_c00054{letter-spacing:-0.064000pt;}
.ls16_c00054{letter-spacing:-0.032000pt;}
.ls12_c00054{letter-spacing:-0.012800pt;}
.ls11_c00054{letter-spacing:-0.006400pt;}
.ls10_c00054{letter-spacing:0.000000pt;}
.ls1_c00054{letter-spacing:0.006400pt;}
.ls3_c00054{letter-spacing:0.012800pt;}
.ls4_c00054{letter-spacing:0.019200pt;}
.ls0_c00054{letter-spacing:0.025600pt;}
.ls6_c00054{letter-spacing:0.032000pt;}
.ls5_c00054{letter-spacing:0.038400pt;}
.ls2_c00054{letter-spacing:0.044800pt;}
.ls9_c00054{letter-spacing:0.051200pt;}
.lsa_c00054{letter-spacing:0.057600pt;}
.ls8_c00054{letter-spacing:0.064000pt;}
.ls7_c00054{letter-spacing:0.070400pt;}
.lse_c00054{letter-spacing:0.076800pt;}
.lsd_c00054{letter-spacing:0.089600pt;}
.lsb_c00054{letter-spacing:0.102400pt;}
.ls17_c00054{letter-spacing:1.920000pt;}
.lsc_c00054{letter-spacing:2.880000pt;}
.ls14_c00054{letter-spacing:3.200000pt;}
.ws1_c00054{word-spacing:0.000000pt;}
.ws0_c00054{word-spacing:0.171008pt;}
.ws2_c00054{word-spacing:0.262400pt;}
.ws3_c00054{word-spacing:3.782400pt;}
.ws4_c00054{word-spacing:3.833600pt;}
._b_c00054{margin-left:-4.505600pt;}
._1_c00054{margin-left:-3.430400pt;}
._2_c00054{margin-left:-2.380800pt;}
._4_c00054{margin-left:-1.100800pt;}
._0_c00054{width:0.919168pt;}
._7_c00054{width:1.907200pt;}
._6_c00054{width:3.010432pt;}
._a_c00054{width:4.467200pt;}
._3_c00054{width:5.715200pt;}
._8_c00054{width:7.046400pt;}
._c_c00054{width:8.006400pt;}
._9_c00054{width:12.774400pt;}
._5_c00054{width:17.561600pt;}
.fs0_c00054{font-size:53.440000pt;}
.fs1_c00054{font-size:64.000000pt;}
.y0_c00054{bottom:0.000000pt;}
.y5_c00054{bottom:50.987067pt;}
.y4_c00054{bottom:69.387067pt;}
.y25_c00054{bottom:100.427067pt;}
.y24_c00054{bottom:128.027067pt;}
.y23_c00054{bottom:155.627067pt;}
.y22_c00054{bottom:183.227067pt;}
.y21_c00054{bottom:210.747067pt;}
.y20_c00054{bottom:238.347067pt;}
.y1f_c00054{bottom:265.947067pt;}
.y1e_c00054{bottom:304.187067pt;}
.y1d_c00054{bottom:331.867067pt;}
.y1c_c00054{bottom:359.467067pt;}
.y1b_c00054{bottom:387.067067pt;}
.y1a_c00054{bottom:414.667067pt;}
.y19_c00054{bottom:452.827067pt;}
.y18_c00054{bottom:480.507067pt;}
.y17_c00054{bottom:508.107067pt;}
.y16_c00054{bottom:535.707067pt;}
.y15_c00054{bottom:563.307067pt;}
.y14_c00054{bottom:590.907067pt;}
.y13_c00054{bottom:618.507067pt;}
.y12_c00054{bottom:646.107067pt;}
.y11_c00054{bottom:673.707067pt;}
.y10_c00054{bottom:701.307067pt;}
.yf_c00054{bottom:728.907067pt;}
.ye_c00054{bottom:756.507067pt;}
.yd_c00054{bottom:784.107067pt;}
.yc_c00054{bottom:811.707067pt;}
.yb_c00054{bottom:839.307067pt;}
.ya_c00054{bottom:866.827067pt;}
.y9_c00054{bottom:894.427067pt;}
.y8_c00054{bottom:932.667067pt;}
.y7_c00054{bottom:960.347067pt;}
.y6_c00054{bottom:987.947067pt;}
.y3_c00054{bottom:1006.347067pt;}
.y2_c00054{bottom:1035.947576pt;}
.y1_c00054{bottom:1063.147200pt;}
.h1_c00054{height:47.020937pt;}
.h2_c00054{height:56.156250pt;}
.h3_c00054{height:56.312500pt;}
.h4_c00054{height:56.843750pt;}
.h0_c00054{height:1122.666667pt;}
.w1_c00054{width:793.333333pt;}
.w0_c00054{width:793.626667pt;}
.x0_c00054{left:0.000000pt;}
.x1_c00054{left:113.440000pt;}
.x2_c00054{left:664.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_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_afad7438dc83e16cb92e4e7c.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.095703;font-style:normal;font-weight:normal;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_80e518280f01b82cbc21f555.woff2')format("woff");}.ff2_c00055{font-family:ff2_c00055;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls14_c00055{letter-spacing:-0.172800px;}
.lse_c00055{letter-spacing:-0.048096px;}
.ls10_c00055{letter-spacing:-0.036000px;}
.ls12_c00055{letter-spacing:-0.021600px;}
.ls11_c00055{letter-spacing:-0.014400px;}
.ls16_c00055{letter-spacing:-0.007200px;}
.lsf_c00055{letter-spacing:0.000000px;}
.ls6_c00055{letter-spacing:0.007200px;}
.ls8_c00055{letter-spacing:0.014400px;}
.ls4_c00055{letter-spacing:0.021600px;}
.ls0_c00055{letter-spacing:0.028800px;}
.ls2_c00055{letter-spacing:0.036000px;}
.ls3_c00055{letter-spacing:0.043200px;}
.lsa_c00055{letter-spacing:0.050400px;}
.ls1_c00055{letter-spacing:0.057600px;}
.ls7_c00055{letter-spacing:0.064800px;}
.lsb_c00055{letter-spacing:0.072000px;}
.ls5_c00055{letter-spacing:0.079200px;}
.lsc_c00055{letter-spacing:0.086400px;}
.ls9_c00055{letter-spacing:0.100800px;}
.lsd_c00055{letter-spacing:0.108000px;}
.ls13_c00055{letter-spacing:2.880000px;}
.ls15_c00055{letter-spacing:9.360000px;}
.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;}
}
.ws1_c00055{word-spacing:0.000000px;}
.ws0_c00055{word-spacing:0.138276px;}
.ws2_c00055{word-spacing:1.821600px;}
._f_c00055{margin-left:-10.296000px;}
._e_c00055{margin-left:-9.086400px;}
._12_c00055{margin-left:-4.896000px;}
._a_c00055{margin-left:-3.715200px;}
._8_c00055{margin-left:-2.584800px;}
._1_c00055{margin-left:-1.123200px;}
._4_c00055{width:1.058400px;}
._3_c00055{width:2.203200px;}
._9_c00055{width:3.578400px;}
._6_c00055{width:4.708800px;}
._5_c00055{width:5.752800px;}
._b_c00055{width:7.488000px;}
._d_c00055{width:8.510400px;}
._2_c00055{width:9.518400px;}
._0_c00055{width:10.771200px;}
._11_c00055{width:13.636800px;}
._10_c00055{width:15.055200px;}
._c_c00055{width:16.473600px;}
._7_c00055{width:39.211200px;}
.fc0_c00055{color:rgb(0,0,0);}
.fs0_c00055{font-size:60.120000px;}
.fs1_c00055{font-size:72.000000px;}
.y0_c00055{bottom:0.000000px;}
.y6_c00055{bottom:57.360450px;}
.y5_c00055{bottom:78.060450px;}
.y26_c00055{bottom:113.790450px;}
.y25_c00055{bottom:144.930450px;}
.y24_c00055{bottom:175.980450px;}
.y23_c00055{bottom:207.030450px;}
.y22_c00055{bottom:238.080450px;}
.y21_c00055{bottom:269.130450px;}
.y20_c00055{bottom:312.060450px;}
.y1f_c00055{bottom:343.200450px;}
.y1e_c00055{bottom:374.250450px;}
.y1d_c00055{bottom:405.300450px;}
.y1c_c00055{bottom:436.350450px;}
.y1b_c00055{bottom:467.400450px;}
.y1a_c00055{bottom:498.450450px;}
.y19_c00055{bottom:529.500450px;}
.y18_c00055{bottom:560.550450px;}
.y17_c00055{bottom:591.600450px;}
.y16_c00055{bottom:634.530450px;}
.y15_c00055{bottom:665.670450px;}
.y14_c00055{bottom:696.720450px;}
.y13_c00055{bottom:727.770450px;}
.y12_c00055{bottom:758.820450px;}
.y11_c00055{bottom:801.750450px;}
.y10_c00055{bottom:832.890450px;}
.yf_c00055{bottom:863.940450px;}
.ye_c00055{bottom:894.990450px;}
.yd_c00055{bottom:926.040450px;}
.yc_c00055{bottom:969.060450px;}
.yb_c00055{bottom:1000.200450px;}
.ya_c00055{bottom:1031.160450px;}
.y9_c00055{bottom:1062.210450px;}
.y8_c00055{bottom:1093.260450px;}
.y7_c00055{bottom:1124.310450px;}
.y4_c00055{bottom:1144.380657px;}
.y3_c00055{bottom:1161.660648px;}
.y2_c00055{bottom:1178.850459px;}
.y1_c00055{bottom:1196.130450px;}
.h1_c00055{height:52.898555px;}
.h2_c00055{height:63.175781px;}
.h3_c00055{height:63.351562px;}
.h0_c00055{height:1263.000000px;}
.w1_c00055{width:892.500000px;}
.w0_c00055{width:892.830000px;}
.x0_c00055{left:0.000000px;}
.x4_c00055{left:127.620000px;}
.x1_c00055{left:649.620000px;}
.x3_c00055{left:747.450000px;}
.x2_c00055{left:765.450198px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls14_c00055{letter-spacing:-0.153600pt;}
.lse_c00055{letter-spacing:-0.042752pt;}
.ls10_c00055{letter-spacing:-0.032000pt;}
.ls12_c00055{letter-spacing:-0.019200pt;}
.ls11_c00055{letter-spacing:-0.012800pt;}
.ls16_c00055{letter-spacing:-0.006400pt;}
.lsf_c00055{letter-spacing:0.000000pt;}
.ls6_c00055{letter-spacing:0.006400pt;}
.ls8_c00055{letter-spacing:0.012800pt;}
.ls4_c00055{letter-spacing:0.019200pt;}
.ls0_c00055{letter-spacing:0.025600pt;}
.ls2_c00055{letter-spacing:0.032000pt;}
.ls3_c00055{letter-spacing:0.038400pt;}
.lsa_c00055{letter-spacing:0.044800pt;}
.ls1_c00055{letter-spacing:0.051200pt;}
.ls7_c00055{letter-spacing:0.057600pt;}
.lsb_c00055{letter-spacing:0.064000pt;}
.ls5_c00055{letter-spacing:0.070400pt;}
.lsc_c00055{letter-spacing:0.076800pt;}
.ls9_c00055{letter-spacing:0.089600pt;}
.lsd_c00055{letter-spacing:0.096000pt;}
.ls13_c00055{letter-spacing:2.560000pt;}
.ls15_c00055{letter-spacing:8.320000pt;}
.ws1_c00055{word-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.122912pt;}
.ws2_c00055{word-spacing:1.619200pt;}
._f_c00055{margin-left:-9.152000pt;}
._e_c00055{margin-left:-8.076800pt;}
._12_c00055{margin-left:-4.352000pt;}
._a_c00055{margin-left:-3.302400pt;}
._8_c00055{margin-left:-2.297600pt;}
._1_c00055{margin-left:-0.998400pt;}
._4_c00055{width:0.940800pt;}
._3_c00055{width:1.958400pt;}
._9_c00055{width:3.180800pt;}
._6_c00055{width:4.185600pt;}
._5_c00055{width:5.113600pt;}
._b_c00055{width:6.656000pt;}
._d_c00055{width:7.564800pt;}
._2_c00055{width:8.460800pt;}
._0_c00055{width:9.574400pt;}
._11_c00055{width:12.121600pt;}
._10_c00055{width:13.382400pt;}
._c_c00055{width:14.643200pt;}
._7_c00055{width:34.854400pt;}
.fs0_c00055{font-size:53.440000pt;}
.fs1_c00055{font-size:64.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y6_c00055{bottom:50.987067pt;}
.y5_c00055{bottom:69.387067pt;}
.y26_c00055{bottom:101.147067pt;}
.y25_c00055{bottom:128.827067pt;}
.y24_c00055{bottom:156.427067pt;}
.y23_c00055{bottom:184.027067pt;}
.y22_c00055{bottom:211.627067pt;}
.y21_c00055{bottom:239.227067pt;}
.y20_c00055{bottom:277.387067pt;}
.y1f_c00055{bottom:305.067067pt;}
.y1e_c00055{bottom:332.667067pt;}
.y1d_c00055{bottom:360.267067pt;}
.y1c_c00055{bottom:387.867067pt;}
.y1b_c00055{bottom:415.467067pt;}
.y1a_c00055{bottom:443.067067pt;}
.y19_c00055{bottom:470.667067pt;}
.y18_c00055{bottom:498.267067pt;}
.y17_c00055{bottom:525.867067pt;}
.y16_c00055{bottom:564.027067pt;}
.y15_c00055{bottom:591.707067pt;}
.y14_c00055{bottom:619.307067pt;}
.y13_c00055{bottom:646.907067pt;}
.y12_c00055{bottom:674.507067pt;}
.y11_c00055{bottom:712.667067pt;}
.y10_c00055{bottom:740.347067pt;}
.yf_c00055{bottom:767.947067pt;}
.ye_c00055{bottom:795.547067pt;}
.yd_c00055{bottom:823.147067pt;}
.yc_c00055{bottom:861.387067pt;}
.yb_c00055{bottom:889.067067pt;}
.ya_c00055{bottom:916.587067pt;}
.y9_c00055{bottom:944.187067pt;}
.y8_c00055{bottom:971.787067pt;}
.y7_c00055{bottom:999.387067pt;}
.y4_c00055{bottom:1017.227251pt;}
.y3_c00055{bottom:1032.587243pt;}
.y2_c00055{bottom:1047.867075pt;}
.y1_c00055{bottom:1063.227067pt;}
.h1_c00055{height:47.020937pt;}
.h2_c00055{height:56.156250pt;}
.h3_c00055{height:56.312500pt;}
.h0_c00055{height:1122.666667pt;}
.w1_c00055{width:793.333333pt;}
.w0_c00055{width:793.626667pt;}
.x0_c00055{left:0.000000pt;}
.x4_c00055{left:113.440000pt;}
.x1_c00055{left:577.440000pt;}
.x3_c00055{left:664.400000pt;}
.x2_c00055{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.095703;font-style:normal;font-weight:normal;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_eb037ade02a7212d2428fd65.woff2')format("woff");}.ff2_c00056{font-family:ff2_c00056;line-height:1.093262;font-style: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;}
.lsc_c00056{letter-spacing:-0.102204px;}
.ls12_c00056{letter-spacing:-0.050400px;}
.lsf_c00056{letter-spacing:-0.043200px;}
.ls11_c00056{letter-spacing:-0.028800px;}
.lse_c00056{letter-spacing:-0.014400px;}
.ls10_c00056{letter-spacing:-0.007200px;}
.lsd_c00056{letter-spacing:0.000000px;}
.ls0_c00056{letter-spacing:0.007200px;}
.ls4_c00056{letter-spacing:0.014400px;}
.ls5_c00056{letter-spacing:0.021600px;}
.ls8_c00056{letter-spacing:0.028800px;}
.ls1_c00056{letter-spacing:0.036000px;}
.ls6_c00056{letter-spacing:0.043200px;}
.ls7_c00056{letter-spacing:0.050400px;}
.ls3_c00056{letter-spacing:0.057600px;}
.ls9_c00056{letter-spacing:0.064800px;}
.lsa_c00056{letter-spacing:0.072000px;}
.ls2_c00056{letter-spacing:0.079200px;}
.lsb_c00056{letter-spacing:0.086400px;}
.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;}
}
.ws1_c00056{word-spacing:0.000000px;}
.ws0_c00056{word-spacing:0.192384px;}
._9_c00056{margin-left:-5.040000px;}
._5_c00056{margin-left:-3.888000px;}
._3_c00056{margin-left:-2.599200px;}
._2_c00056{margin-left:-1.519200px;}
._0_c00056{width:1.034064px;}
._1_c00056{width:2.053008px;}
._8_c00056{width:3.290400px;}
._6_c00056{width:4.672800px;}
._4_c00056{width:6.105600px;}
._a_c00056{width:8.985600px;}
._d_c00056{width:10.022400px;}
._c_c00056{width:11.815200px;}
._b_c00056{width:12.938400px;}
._7_c00056{width:16.524000px;}
.fc1_c00056{color:rgb(0,0,0);}
.fc0_c00056{color:rgb(32,31,30);}
.fs0_c00056{font-size:60.120000px;}
.fs1_c00056{font-size:72.000000px;}
.y0_c00056{bottom:0.000000px;}
.y5_c00056{bottom:57.360450px;}
.y4_c00056{bottom:78.060450px;}
.y24_c00056{bottom:131.970450px;}
.y23_c00056{bottom:163.020450px;}
.y22_c00056{bottom:194.070450px;}
.y21_c00056{bottom:225.120450px;}
.y20_c00056{bottom:256.170450px;}
.y1f_c00056{bottom:299.100450px;}
.y1e_c00056{bottom:330.240450px;}
.y1d_c00056{bottom:361.290450px;}
.y1c_c00056{bottom:392.340450px;}
.y1b_c00056{bottom:423.390450px;}
.y1a_c00056{bottom:454.440450px;}
.y19_c00056{bottom:485.490450px;}
.y18_c00056{bottom:528.510450px;}
.y17_c00056{bottom:559.650450px;}
.y16_c00056{bottom:590.700450px;}
.y15_c00056{bottom:621.660450px;}
.y14_c00056{bottom:652.710450px;}
.y13_c00056{bottom:683.760450px;}
.y12_c00056{bottom:726.780450px;}
.y11_c00056{bottom:757.920450px;}
.y10_c00056{bottom:788.970450px;}
.yf_c00056{bottom:820.020450px;}
.ye_c00056{bottom:851.070450px;}
.yd_c00056{bottom:882.120450px;}
.yc_c00056{bottom:913.170450px;}
.yb_c00056{bottom:956.100450px;}
.ya_c00056{bottom:987.240450px;}
.y9_c00056{bottom:1018.290450px;}
.y8_c00056{bottom:1049.340450px;}
.y7_c00056{bottom:1080.390450px;}
.y6_c00056{bottom:1111.440450px;}
.y3_c00056{bottom:1132.140450px;}
.y2_c00056{bottom:1165.441023px;}
.y1_c00056{bottom:1196.040600px;}
.h1_c00056{height:52.898555px;}
.h2_c00056{height:63.175781px;}
.h0_c00056{height:1263.000000px;}
.w1_c00056{width:892.500000px;}
.w0_c00056{width:892.830000px;}
.x0_c00056{left:0.000000px;}
.x1_c00056{left:127.620000px;}
.x2_c00056{left:747.450000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.lsc_c00056{letter-spacing:-0.090848pt;}
.ls12_c00056{letter-spacing:-0.044800pt;}
.lsf_c00056{letter-spacing:-0.038400pt;}
.ls11_c00056{letter-spacing:-0.025600pt;}
.lse_c00056{letter-spacing:-0.012800pt;}
.ls10_c00056{letter-spacing:-0.006400pt;}
.lsd_c00056{letter-spacing:0.000000pt;}
.ls0_c00056{letter-spacing:0.006400pt;}
.ls4_c00056{letter-spacing:0.012800pt;}
.ls5_c00056{letter-spacing:0.019200pt;}
.ls8_c00056{letter-spacing:0.025600pt;}
.ls1_c00056{letter-spacing:0.032000pt;}
.ls6_c00056{letter-spacing:0.038400pt;}
.ls7_c00056{letter-spacing:0.044800pt;}
.ls3_c00056{letter-spacing:0.051200pt;}
.ls9_c00056{letter-spacing:0.057600pt;}
.lsa_c00056{letter-spacing:0.064000pt;}
.ls2_c00056{letter-spacing:0.070400pt;}
.lsb_c00056{letter-spacing:0.076800pt;}
.ws1_c00056{word-spacing:0.000000pt;}
.ws0_c00056{word-spacing:0.171008pt;}
._9_c00056{margin-left:-4.480000pt;}
._5_c00056{margin-left:-3.456000pt;}
._3_c00056{margin-left:-2.310400pt;}
._2_c00056{margin-left:-1.350400pt;}
._0_c00056{width:0.919168pt;}
._1_c00056{width:1.824896pt;}
._8_c00056{width:2.924800pt;}
._6_c00056{width:4.153600pt;}
._4_c00056{width:5.427200pt;}
._a_c00056{width:7.987200pt;}
._d_c00056{width:8.908800pt;}
._c_c00056{width:10.502400pt;}
._b_c00056{width:11.500800pt;}
._7_c00056{width:14.688000pt;}
.fs0_c00056{font-size:53.440000pt;}
.fs1_c00056{font-size:64.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y5_c00056{bottom:50.987067pt;}
.y4_c00056{bottom:69.387067pt;}
.y24_c00056{bottom:117.307067pt;}
.y23_c00056{bottom:144.907067pt;}
.y22_c00056{bottom:172.507067pt;}
.y21_c00056{bottom:200.107067pt;}
.y20_c00056{bottom:227.707067pt;}
.y1f_c00056{bottom:265.867067pt;}
.y1e_c00056{bottom:293.547067pt;}
.y1d_c00056{bottom:321.147067pt;}
.y1c_c00056{bottom:348.747067pt;}
.y1b_c00056{bottom:376.347067pt;}
.y1a_c00056{bottom:403.947067pt;}
.y19_c00056{bottom:431.547067pt;}
.y18_c00056{bottom:469.787067pt;}
.y17_c00056{bottom:497.467067pt;}
.y16_c00056{bottom:525.067067pt;}
.y15_c00056{bottom:552.587067pt;}
.y14_c00056{bottom:580.187067pt;}
.y13_c00056{bottom:607.787067pt;}
.y12_c00056{bottom:646.027067pt;}
.y11_c00056{bottom:673.707067pt;}
.y10_c00056{bottom:701.307067pt;}
.yf_c00056{bottom:728.907067pt;}
.ye_c00056{bottom:756.507067pt;}
.yd_c00056{bottom:784.107067pt;}
.yc_c00056{bottom:811.707067pt;}
.yb_c00056{bottom:849.867067pt;}
.ya_c00056{bottom:877.547067pt;}
.y9_c00056{bottom:905.147067pt;}
.y8_c00056{bottom:932.747067pt;}
.y7_c00056{bottom:960.347067pt;}
.y6_c00056{bottom:987.947067pt;}
.y3_c00056{bottom:1006.347067pt;}
.y2_c00056{bottom:1035.947576pt;}
.y1_c00056{bottom:1063.147200pt;}
.h1_c00056{height:47.020937pt;}
.h2_c00056{height:56.156250pt;}
.h0_c00056{height:1122.666667pt;}
.w1_c00056{width:793.333333pt;}
.w0_c00056{width:793.626667pt;}
.x0_c00056{left:0.000000pt;}
.x1_c00056{left:113.440000pt;}
.x2_c00056{left:664.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_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_11a578056767fd1c97d0805e.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.095703;font-style:normal;font-weight:normal;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_db6c0e44d9398b3fbb50b8ad.woff2')format("woff");}.ff2_c00057{font-family:ff2_c00057;line-height:1.093262;font-style: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;}
.ls17_c00057{letter-spacing:-0.050400px;}
.lsd_c00057{letter-spacing:-0.048096px;}
.ls16_c00057{letter-spacing:-0.043200px;}
.ls11_c00057{letter-spacing:-0.036000px;}
.ls14_c00057{letter-spacing:-0.028800px;}
.ls15_c00057{letter-spacing:-0.021600px;}
.ls12_c00057{letter-spacing:-0.014400px;}
.ls10_c00057{letter-spacing:-0.007200px;}
.lse_c00057{letter-spacing:0.000000px;}
.ls9_c00057{letter-spacing:0.007200px;}
.ls7_c00057{letter-spacing:0.014400px;}
.ls5_c00057{letter-spacing:0.021600px;}
.ls0_c00057{letter-spacing:0.028800px;}
.ls2_c00057{letter-spacing:0.036000px;}
.ls3_c00057{letter-spacing:0.043200px;}
.lsb_c00057{letter-spacing:0.050400px;}
.ls4_c00057{letter-spacing:0.057600px;}
.lsa_c00057{letter-spacing:0.064800px;}
.lsc_c00057{letter-spacing:0.072000px;}
.ls13_c00057{letter-spacing:0.079200px;}
.ls6_c00057{letter-spacing:0.086400px;}
.ls8_c00057{letter-spacing:0.100800px;}
.ls1_c00057{letter-spacing:0.108000px;}
.lsf_c00057{letter-spacing:3.240000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:-18.036000px;}
.ws2_c00057{word-spacing:0.000000px;}
.ws1_c00057{word-spacing:0.138276px;}
.ws8_c00057{word-spacing:0.950400px;}
.ws7_c00057{word-spacing:1.000800px;}
.wsb_c00057{word-spacing:3.096000px;}
.wsa_c00057{word-spacing:3.124800px;}
.ws9_c00057{word-spacing:3.225600px;}
.wse_c00057{word-spacing:3.254400px;}
.wsc_c00057{word-spacing:5.011200px;}
.wsd_c00057{word-spacing:5.068800px;}
.ws6_c00057{word-spacing:6.408000px;}
.ws5_c00057{word-spacing:6.465600px;}
.wsf_c00057{word-spacing:12.211200px;}
.ws3_c00057{word-spacing:23.781600px;}
.ws4_c00057{word-spacing:23.803200px;}
._a_c00057{margin-left:-5.097600px;}
._3_c00057{margin-left:-3.873600px;}
._4_c00057{margin-left:-2.548800px;}
._6_c00057{margin-left:-1.440000px;}
._8_c00057{width:1.051200px;}
._1_c00057{width:2.844000px;}
._2_c00057{width:3.952800px;}
._7_c00057{width:5.371200px;}
._10_c00057{width:7.027200px;}
._9_c00057{width:8.258400px;}
._d_c00057{width:9.460800px;}
._5_c00057{width:11.124000px;}
._11_c00057{width:12.218400px;}
._12_c00057{width:15.120000px;}
._c_c00057{width:16.192800px;}
._0_c00057{width:19.051200px;}
._b_c00057{width:23.752800px;}
._e_c00057{width:25.228800px;}
._f_c00057{width:26.229600px;}
.fc0_c00057{color:rgb(0,0,0);}
.fs0_c00057{font-size:60.120000px;}
.fs1_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y6_c00057{bottom:57.360450px;}
.y5_c00057{bottom:78.060450px;}
.y26_c00057{bottom:125.850450px;}
.y25_c00057{bottom:156.900450px;}
.y24_c00057{bottom:187.950450px;}
.y23_c00057{bottom:219.000450px;}
.y22_c00057{bottom:250.050450px;}
.y21_c00057{bottom:281.100450px;}
.y20_c00057{bottom:324.030450px;}
.y1f_c00057{bottom:355.170450px;}
.y1e_c00057{bottom:386.220450px;}
.y1d_c00057{bottom:417.270450px;}
.y1c_c00057{bottom:448.320450px;}
.y1b_c00057{bottom:479.370450px;}
.y1a_c00057{bottom:510.420450px;}
.y19_c00057{bottom:541.470450px;}
.y18_c00057{bottom:584.490450px;}
.y17_c00057{bottom:615.540450px;}
.y16_c00057{bottom:646.590450px;}
.y15_c00057{bottom:677.550450px;}
.y14_c00057{bottom:708.600450px;}
.y13_c00057{bottom:739.740450px;}
.y12_c00057{bottom:770.790450px;}
.y11_c00057{bottom:801.840450px;}
.y10_c00057{bottom:844.860450px;}
.yf_c00057{bottom:876.000450px;}
.ye_c00057{bottom:907.050450px;}
.yd_c00057{bottom:938.100450px;}
.yc_c00057{bottom:969.150450px;}
.yb_c00057{bottom:1000.200450px;}
.ya_c00057{bottom:1031.160450px;}
.y9_c00057{bottom:1062.210450px;}
.y8_c00057{bottom:1093.260450px;}
.y7_c00057{bottom:1124.310450px;}
.y4_c00057{bottom:1144.380657px;}
.y3_c00057{bottom:1161.660648px;}
.y2_c00057{bottom:1178.850459px;}
.y1_c00057{bottom:1196.130450px;}
.h1_c00057{height:52.898555px;}
.h2_c00057{height:63.175781px;}
.h3_c00057{height:63.351562px;}
.h0_c00057{height:1263.000000px;}
.w1_c00057{width:892.500000px;}
.w0_c00057{width:892.830000px;}
.x0_c00057{left:0.000000px;}
.x4_c00057{left:127.620000px;}
.x1_c00057{left:649.620000px;}
.x3_c00057{left:747.450000px;}
.x2_c00057{left:765.450198px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls17_c00057{letter-spacing:-0.044800pt;}
.lsd_c00057{letter-spacing:-0.042752pt;}
.ls16_c00057{letter-spacing:-0.038400pt;}
.ls11_c00057{letter-spacing:-0.032000pt;}
.ls14_c00057{letter-spacing:-0.025600pt;}
.ls15_c00057{letter-spacing:-0.019200pt;}
.ls12_c00057{letter-spacing:-0.012800pt;}
.ls10_c00057{letter-spacing:-0.006400pt;}
.lse_c00057{letter-spacing:0.000000pt;}
.ls9_c00057{letter-spacing:0.006400pt;}
.ls7_c00057{letter-spacing:0.012800pt;}
.ls5_c00057{letter-spacing:0.019200pt;}
.ls0_c00057{letter-spacing:0.025600pt;}
.ls2_c00057{letter-spacing:0.032000pt;}
.ls3_c00057{letter-spacing:0.038400pt;}
.lsb_c00057{letter-spacing:0.044800pt;}
.ls4_c00057{letter-spacing:0.051200pt;}
.lsa_c00057{letter-spacing:0.057600pt;}
.lsc_c00057{letter-spacing:0.064000pt;}
.ls13_c00057{letter-spacing:0.070400pt;}
.ls6_c00057{letter-spacing:0.076800pt;}
.ls8_c00057{letter-spacing:0.089600pt;}
.ls1_c00057{letter-spacing:0.096000pt;}
.lsf_c00057{letter-spacing:2.880000pt;}
.ws0_c00057{word-spacing:-16.032000pt;}
.ws2_c00057{word-spacing:0.000000pt;}
.ws1_c00057{word-spacing:0.122912pt;}
.ws8_c00057{word-spacing:0.844800pt;}
.ws7_c00057{word-spacing:0.889600pt;}
.wsb_c00057{word-spacing:2.752000pt;}
.wsa_c00057{word-spacing:2.777600pt;}
.ws9_c00057{word-spacing:2.867200pt;}
.wse_c00057{word-spacing:2.892800pt;}
.wsc_c00057{word-spacing:4.454400pt;}
.wsd_c00057{word-spacing:4.505600pt;}
.ws6_c00057{word-spacing:5.696000pt;}
.ws5_c00057{word-spacing:5.747200pt;}
.wsf_c00057{word-spacing:10.854400pt;}
.ws3_c00057{word-spacing:21.139200pt;}
.ws4_c00057{word-spacing:21.158400pt;}
._a_c00057{margin-left:-4.531200pt;}
._3_c00057{margin-left:-3.443200pt;}
._4_c00057{margin-left:-2.265600pt;}
._6_c00057{margin-left:-1.280000pt;}
._8_c00057{width:0.934400pt;}
._1_c00057{width:2.528000pt;}
._2_c00057{width:3.513600pt;}
._7_c00057{width:4.774400pt;}
._10_c00057{width:6.246400pt;}
._9_c00057{width:7.340800pt;}
._d_c00057{width:8.409600pt;}
._5_c00057{width:9.888000pt;}
._11_c00057{width:10.860800pt;}
._12_c00057{width:13.440000pt;}
._c_c00057{width:14.393600pt;}
._0_c00057{width:16.934400pt;}
._b_c00057{width:21.113600pt;}
._e_c00057{width:22.425600pt;}
._f_c00057{width:23.315200pt;}
.fs0_c00057{font-size:53.440000pt;}
.fs1_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y6_c00057{bottom:50.987067pt;}
.y5_c00057{bottom:69.387067pt;}
.y26_c00057{bottom:111.867067pt;}
.y25_c00057{bottom:139.467067pt;}
.y24_c00057{bottom:167.067067pt;}
.y23_c00057{bottom:194.667067pt;}
.y22_c00057{bottom:222.267067pt;}
.y21_c00057{bottom:249.867067pt;}
.y20_c00057{bottom:288.027067pt;}
.y1f_c00057{bottom:315.707067pt;}
.y1e_c00057{bottom:343.307067pt;}
.y1d_c00057{bottom:370.907067pt;}
.y1c_c00057{bottom:398.507067pt;}
.y1b_c00057{bottom:426.107067pt;}
.y1a_c00057{bottom:453.707067pt;}
.y19_c00057{bottom:481.307067pt;}
.y18_c00057{bottom:519.547067pt;}
.y17_c00057{bottom:547.147067pt;}
.y16_c00057{bottom:574.747067pt;}
.y15_c00057{bottom:602.267067pt;}
.y14_c00057{bottom:629.867067pt;}
.y13_c00057{bottom:657.547067pt;}
.y12_c00057{bottom:685.147067pt;}
.y11_c00057{bottom:712.747067pt;}
.y10_c00057{bottom:750.987067pt;}
.yf_c00057{bottom:778.667067pt;}
.ye_c00057{bottom:806.267067pt;}
.yd_c00057{bottom:833.867067pt;}
.yc_c00057{bottom:861.467067pt;}
.yb_c00057{bottom:889.067067pt;}
.ya_c00057{bottom:916.587067pt;}
.y9_c00057{bottom:944.187067pt;}
.y8_c00057{bottom:971.787067pt;}
.y7_c00057{bottom:999.387067pt;}
.y4_c00057{bottom:1017.227251pt;}
.y3_c00057{bottom:1032.587243pt;}
.y2_c00057{bottom:1047.867075pt;}
.y1_c00057{bottom:1063.227067pt;}
.h1_c00057{height:47.020937pt;}
.h2_c00057{height:56.156250pt;}
.h3_c00057{height:56.312500pt;}
.h0_c00057{height:1122.666667pt;}
.w1_c00057{width:793.333333pt;}
.w0_c00057{width:793.626667pt;}
.x0_c00057{left:0.000000pt;}
.x4_c00057{left:113.440000pt;}
.x1_c00057{left:577.440000pt;}
.x3_c00057{left:664.400000pt;}
.x2_c00057{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.095703;font-style:normal;font-weight:normal;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_071fe5cdb51fb7d479c2474c.woff2')format("woff");}.ff2_c00058{font-family:ff2_c00058;line-height:1.093262;font-style: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;}
.lsd_c00058{letter-spacing:-0.102204px;}
.ls13_c00058{letter-spacing:-0.064800px;}
.ls12_c00058{letter-spacing:-0.036000px;}
.ls14_c00058{letter-spacing:-0.028800px;}
.ls10_c00058{letter-spacing:-0.014400px;}
.lsf_c00058{letter-spacing:-0.007200px;}
.lse_c00058{letter-spacing:0.000000px;}
.ls6_c00058{letter-spacing:0.007200px;}
.ls0_c00058{letter-spacing:0.014400px;}
.ls3_c00058{letter-spacing:0.021600px;}
.ls1_c00058{letter-spacing:0.028800px;}
.ls4_c00058{letter-spacing:0.036000px;}
.ls5_c00058{letter-spacing:0.043200px;}
.ls9_c00058{letter-spacing:0.050400px;}
.ls2_c00058{letter-spacing:0.057600px;}
.ls7_c00058{letter-spacing:0.064800px;}
.ls8_c00058{letter-spacing:0.072000px;}
.lsa_c00058{letter-spacing:0.079200px;}
.ls15_c00058{letter-spacing:0.093600px;}
.lsb_c00058{letter-spacing:0.100800px;}
.lsc_c00058{letter-spacing:0.108000px;}
.ls11_c00058{letter-spacing:8.280000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00058{word-spacing:0.000000px;}
.ws0_c00058{word-spacing:0.192384px;}
._6_c00058{margin-left:-9.360000px;}
._7_c00058{margin-left:-8.280000px;}
._9_c00058{margin-left:-3.988800px;}
._8_c00058{margin-left:-2.196000px;}
._2_c00058{margin-left:-1.029600px;}
._0_c00058{width:1.034064px;}
._a_c00058{width:2.620800px;}
._b_c00058{width:3.700800px;}
._d_c00058{width:4.881600px;}
._1_c00058{width:6.127200px;}
._4_c00058{width:7.632000px;}
._5_c00058{width:9.129600px;}
._f_c00058{width:10.778400px;}
._c_c00058{width:17.020800px;}
._3_c00058{width:19.771200px;}
._e_c00058{width:39.585600px;}
.fc1_c00058{color:rgb(0,0,0);}
.fc0_c00058{color:rgb(32,31,30);}
.fs0_c00058{font-size:60.120000px;}
.fs1_c00058{font-size:72.000000px;}
.y0_c00058{bottom:0.000000px;}
.y5_c00058{bottom:57.360450px;}
.y4_c00058{bottom:78.060450px;}
.y23_c00058{bottom:163.020450px;}
.y22_c00058{bottom:194.070450px;}
.y21_c00058{bottom:225.120450px;}
.y20_c00058{bottom:256.170450px;}
.y1f_c00058{bottom:287.220450px;}
.y1e_c00058{bottom:318.270450px;}
.y1d_c00058{bottom:349.320450px;}
.y1c_c00058{bottom:380.370450px;}
.y1b_c00058{bottom:423.300450px;}
.y1a_c00058{bottom:454.440450px;}
.y19_c00058{bottom:485.490450px;}
.y18_c00058{bottom:516.540450px;}
.y17_c00058{bottom:547.590450px;}
.y16_c00058{bottom:578.640450px;}
.y15_c00058{bottom:609.690450px;}
.y14_c00058{bottom:640.740450px;}
.y13_c00058{bottom:671.790450px;}
.y12_c00058{bottom:714.720450px;}
.y11_c00058{bottom:745.860450px;}
.y10_c00058{bottom:776.910450px;}
.yf_c00058{bottom:807.960450px;}
.ye_c00058{bottom:850.980450px;}
.yd_c00058{bottom:882.120450px;}
.yc_c00058{bottom:913.170450px;}
.yb_c00058{bottom:944.220450px;}
.ya_c00058{bottom:975.180450px;}
.y9_c00058{bottom:1018.200450px;}
.y8_c00058{bottom:1049.340450px;}
.y7_c00058{bottom:1080.390450px;}
.y6_c00058{bottom:1111.440450px;}
.y3_c00058{bottom:1132.140450px;}
.y2_c00058{bottom:1165.441023px;}
.y1_c00058{bottom:1196.040600px;}
.h1_c00058{height:52.898555px;}
.h2_c00058{height:63.175781px;}
.h0_c00058{height:1263.000000px;}
.w1_c00058{width:892.500000px;}
.w0_c00058{width:892.830000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:127.620000px;}
.x2_c00058{left:747.450000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.lsd_c00058{letter-spacing:-0.090848pt;}
.ls13_c00058{letter-spacing:-0.057600pt;}
.ls12_c00058{letter-spacing:-0.032000pt;}
.ls14_c00058{letter-spacing:-0.025600pt;}
.ls10_c00058{letter-spacing:-0.012800pt;}
.lsf_c00058{letter-spacing:-0.006400pt;}
.lse_c00058{letter-spacing:0.000000pt;}
.ls6_c00058{letter-spacing:0.006400pt;}
.ls0_c00058{letter-spacing:0.012800pt;}
.ls3_c00058{letter-spacing:0.019200pt;}
.ls1_c00058{letter-spacing:0.025600pt;}
.ls4_c00058{letter-spacing:0.032000pt;}
.ls5_c00058{letter-spacing:0.038400pt;}
.ls9_c00058{letter-spacing:0.044800pt;}
.ls2_c00058{letter-spacing:0.051200pt;}
.ls7_c00058{letter-spacing:0.057600pt;}
.ls8_c00058{letter-spacing:0.064000pt;}
.lsa_c00058{letter-spacing:0.070400pt;}
.ls15_c00058{letter-spacing:0.083200pt;}
.lsb_c00058{letter-spacing:0.089600pt;}
.lsc_c00058{letter-spacing:0.096000pt;}
.ls11_c00058{letter-spacing:7.360000pt;}
.ws1_c00058{word-spacing:0.000000pt;}
.ws0_c00058{word-spacing:0.171008pt;}
._6_c00058{margin-left:-8.320000pt;}
._7_c00058{margin-left:-7.360000pt;}
._9_c00058{margin-left:-3.545600pt;}
._8_c00058{margin-left:-1.952000pt;}
._2_c00058{margin-left:-0.915200pt;}
._0_c00058{width:0.919168pt;}
._a_c00058{width:2.329600pt;}
._b_c00058{width:3.289600pt;}
._d_c00058{width:4.339200pt;}
._1_c00058{width:5.446400pt;}
._4_c00058{width:6.784000pt;}
._5_c00058{width:8.115200pt;}
._f_c00058{width:9.580800pt;}
._c_c00058{width:15.129600pt;}
._3_c00058{width:17.574400pt;}
._e_c00058{width:35.187200pt;}
.fs0_c00058{font-size:53.440000pt;}
.fs1_c00058{font-size:64.000000pt;}
.y0_c00058{bottom:0.000000pt;}
.y5_c00058{bottom:50.987067pt;}
.y4_c00058{bottom:69.387067pt;}
.y23_c00058{bottom:144.907067pt;}
.y22_c00058{bottom:172.507067pt;}
.y21_c00058{bottom:200.107067pt;}
.y20_c00058{bottom:227.707067pt;}
.y1f_c00058{bottom:255.307067pt;}
.y1e_c00058{bottom:282.907067pt;}
.y1d_c00058{bottom:310.507067pt;}
.y1c_c00058{bottom:338.107067pt;}
.y1b_c00058{bottom:376.267067pt;}
.y1a_c00058{bottom:403.947067pt;}
.y19_c00058{bottom:431.547067pt;}
.y18_c00058{bottom:459.147067pt;}
.y17_c00058{bottom:486.747067pt;}
.y16_c00058{bottom:514.347067pt;}
.y15_c00058{bottom:541.947067pt;}
.y14_c00058{bottom:569.547067pt;}
.y13_c00058{bottom:597.147067pt;}
.y12_c00058{bottom:635.307067pt;}
.y11_c00058{bottom:662.987067pt;}
.y10_c00058{bottom:690.587067pt;}
.yf_c00058{bottom:718.187067pt;}
.ye_c00058{bottom:756.427067pt;}
.yd_c00058{bottom:784.107067pt;}
.yc_c00058{bottom:811.707067pt;}
.yb_c00058{bottom:839.307067pt;}
.ya_c00058{bottom:866.827067pt;}
.y9_c00058{bottom:905.067067pt;}
.y8_c00058{bottom:932.747067pt;}
.y7_c00058{bottom:960.347067pt;}
.y6_c00058{bottom:987.947067pt;}
.y3_c00058{bottom:1006.347067pt;}
.y2_c00058{bottom:1035.947576pt;}
.y1_c00058{bottom:1063.147200pt;}
.h1_c00058{height:47.020937pt;}
.h2_c00058{height:56.156250pt;}
.h0_c00058{height:1122.666667pt;}
.w1_c00058{width:793.333333pt;}
.w0_c00058{width:793.626667pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:113.440000pt;}
.x2_c00058{left:664.400000pt;}
}





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

.ir_c00059:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00059;src:url('chunks/assets/font_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.095703;font-style:normal;font-weight:normal;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_941df5823145ad9b5558dd96.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00059{font-family:ff3_c00059;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00059{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls11_c00059{letter-spacing:-2.563200px;}
.ls15_c00059{letter-spacing:-0.108000px;}
.ls13_c00059{letter-spacing:-0.072000px;}
.lsd_c00059{letter-spacing:-0.048096px;}
.ls12_c00059{letter-spacing:-0.043200px;}
.ls14_c00059{letter-spacing:-0.021600px;}
.ls10_c00059{letter-spacing:-0.014400px;}
.lsf_c00059{letter-spacing:-0.007200px;}
.lse_c00059{letter-spacing:0.000000px;}
.ls2_c00059{letter-spacing:0.007200px;}
.lsb_c00059{letter-spacing:0.014400px;}
.lsc_c00059{letter-spacing:0.021600px;}
.ls0_c00059{letter-spacing:0.028800px;}
.ls1_c00059{letter-spacing:0.036000px;}
.ls7_c00059{letter-spacing:0.043200px;}
.ls6_c00059{letter-spacing:0.050400px;}
.ls3_c00059{letter-spacing:0.057600px;}
.ls8_c00059{letter-spacing:0.064800px;}
.ls5_c00059{letter-spacing:0.072000px;}
.lsa_c00059{letter-spacing:0.079200px;}
.ls4_c00059{letter-spacing:0.086400px;}
.ls9_c00059{letter-spacing:0.108000px;}
.ls16_c00059{letter-spacing:5.760000px;}
.ls17_c00059{letter-spacing:9.720000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00059{word-spacing:0.000000px;}
.ws0_c00059{word-spacing:0.138276px;}
._11_c00059{margin-left:-10.526400px;}
._10_c00059{margin-left:-8.683200px;}
._8_c00059{margin-left:-5.846400px;}
._9_c00059{margin-left:-4.759200px;}
._4_c00059{margin-left:-3.636000px;}
._6_c00059{margin-left:-2.275200px;}
._0_c00059{margin-left:-1.072800px;}
._3_c00059{width:1.065600px;}
._5_c00059{width:2.203200px;}
._2_c00059{width:3.218400px;}
._1_c00059{width:4.644000px;}
._7_c00059{width:5.832000px;}
._a_c00059{width:9.302400px;}
._b_c00059{width:11.030400px;}
._c_c00059{width:14.011200px;}
._d_c00059{width:15.249600px;}
._e_c00059{width:29.462400px;}
._f_c00059{width:30.513600px;}
.fc0_c00059{color:rgb(0,0,0);}
.fs0_c00059{font-size:60.120000px;}
.fs1_c00059{font-size:72.000000px;}
.y0_c00059{bottom:0.000000px;}
.y6_c00059{bottom:57.360450px;}
.y5_c00059{bottom:78.060450px;}
.y25_c00059{bottom:132.960450px;}
.y24_c00059{bottom:164.010450px;}
.y23_c00059{bottom:195.060450px;}
.y22_c00059{bottom:237.990450px;}
.y21_c00059{bottom:269.130450px;}
.y20_c00059{bottom:300.180450px;}
.y1f_c00059{bottom:343.110450px;}
.y1e_c00059{bottom:374.250450px;}
.y1d_c00059{bottom:405.300450px;}
.y1c_c00059{bottom:436.350450px;}
.y1b_c00059{bottom:467.400450px;}
.y1a_c00059{bottom:498.450450px;}
.y19_c00059{bottom:529.500450px;}
.y18_c00059{bottom:560.550450px;}
.y17_c00059{bottom:591.600450px;}
.y16_c00059{bottom:622.650450px;}
.y15_c00059{bottom:653.700450px;}
.y14_c00059{bottom:684.750450px;}
.y13_c00059{bottom:715.800450px;}
.y12_c00059{bottom:758.730450px;}
.y11_c00059{bottom:789.870450px;}
.y10_c00059{bottom:820.920450px;}
.yf_c00059{bottom:851.970450px;}
.ye_c00059{bottom:883.020450px;}
.yd_c00059{bottom:914.070450px;}
.yc_c00059{bottom:957.000450px;}
.yb_c00059{bottom:988.140450px;}
.ya_c00059{bottom:1019.190450px;}
.y9_c00059{bottom:1050.240450px;}
.y8_c00059{bottom:1093.170450px;}
.y7_c00059{bottom:1124.310450px;}
.y4_c00059{bottom:1144.380657px;}
.y3_c00059{bottom:1161.660648px;}
.y2_c00059{bottom:1178.850459px;}
.y1_c00059{bottom:1196.130450px;}
.h1_c00059{height:52.898555px;}
.h2_c00059{height:63.175781px;}
.h3_c00059{height:63.949219px;}
.h0_c00059{height:1263.000000px;}
.w1_c00059{width:892.500000px;}
.w0_c00059{width:892.830000px;}
.x0_c00059{left:0.000000px;}
.x4_c00059{left:127.620000px;}
.x1_c00059{left:649.620000px;}
.x3_c00059{left:747.450000px;}
.x2_c00059{left:765.450198px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls11_c00059{letter-spacing:-2.278400pt;}
.ls15_c00059{letter-spacing:-0.096000pt;}
.ls13_c00059{letter-spacing:-0.064000pt;}
.lsd_c00059{letter-spacing:-0.042752pt;}
.ls12_c00059{letter-spacing:-0.038400pt;}
.ls14_c00059{letter-spacing:-0.019200pt;}
.ls10_c00059{letter-spacing:-0.012800pt;}
.lsf_c00059{letter-spacing:-0.006400pt;}
.lse_c00059{letter-spacing:0.000000pt;}
.ls2_c00059{letter-spacing:0.006400pt;}
.lsb_c00059{letter-spacing:0.012800pt;}
.lsc_c00059{letter-spacing:0.019200pt;}
.ls0_c00059{letter-spacing:0.025600pt;}
.ls1_c00059{letter-spacing:0.032000pt;}
.ls7_c00059{letter-spacing:0.038400pt;}
.ls6_c00059{letter-spacing:0.044800pt;}
.ls3_c00059{letter-spacing:0.051200pt;}
.ls8_c00059{letter-spacing:0.057600pt;}
.ls5_c00059{letter-spacing:0.064000pt;}
.lsa_c00059{letter-spacing:0.070400pt;}
.ls4_c00059{letter-spacing:0.076800pt;}
.ls9_c00059{letter-spacing:0.096000pt;}
.ls16_c00059{letter-spacing:5.120000pt;}
.ls17_c00059{letter-spacing:8.640000pt;}
.ws1_c00059{word-spacing:0.000000pt;}
.ws0_c00059{word-spacing:0.122912pt;}
._11_c00059{margin-left:-9.356800pt;}
._10_c00059{margin-left:-7.718400pt;}
._8_c00059{margin-left:-5.196800pt;}
._9_c00059{margin-left:-4.230400pt;}
._4_c00059{margin-left:-3.232000pt;}
._6_c00059{margin-left:-2.022400pt;}
._0_c00059{margin-left:-0.953600pt;}
._3_c00059{width:0.947200pt;}
._5_c00059{width:1.958400pt;}
._2_c00059{width:2.860800pt;}
._1_c00059{width:4.128000pt;}
._7_c00059{width:5.184000pt;}
._a_c00059{width:8.268800pt;}
._b_c00059{width:9.804800pt;}
._c_c00059{width:12.454400pt;}
._d_c00059{width:13.555200pt;}
._e_c00059{width:26.188800pt;}
._f_c00059{width:27.123200pt;}
.fs0_c00059{font-size:53.440000pt;}
.fs1_c00059{font-size:64.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y6_c00059{bottom:50.987067pt;}
.y5_c00059{bottom:69.387067pt;}
.y25_c00059{bottom:118.187067pt;}
.y24_c00059{bottom:145.787067pt;}
.y23_c00059{bottom:173.387067pt;}
.y22_c00059{bottom:211.547067pt;}
.y21_c00059{bottom:239.227067pt;}
.y20_c00059{bottom:266.827067pt;}
.y1f_c00059{bottom:304.987067pt;}
.y1e_c00059{bottom:332.667067pt;}
.y1d_c00059{bottom:360.267067pt;}
.y1c_c00059{bottom:387.867067pt;}
.y1b_c00059{bottom:415.467067pt;}
.y1a_c00059{bottom:443.067067pt;}
.y19_c00059{bottom:470.667067pt;}
.y18_c00059{bottom:498.267067pt;}
.y17_c00059{bottom:525.867067pt;}
.y16_c00059{bottom:553.467067pt;}
.y15_c00059{bottom:581.067067pt;}
.y14_c00059{bottom:608.667067pt;}
.y13_c00059{bottom:636.267067pt;}
.y12_c00059{bottom:674.427067pt;}
.y11_c00059{bottom:702.107067pt;}
.y10_c00059{bottom:729.707067pt;}
.yf_c00059{bottom:757.307067pt;}
.ye_c00059{bottom:784.907067pt;}
.yd_c00059{bottom:812.507067pt;}
.yc_c00059{bottom:850.667067pt;}
.yb_c00059{bottom:878.347067pt;}
.ya_c00059{bottom:905.947067pt;}
.y9_c00059{bottom:933.547067pt;}
.y8_c00059{bottom:971.707067pt;}
.y7_c00059{bottom:999.387067pt;}
.y4_c00059{bottom:1017.227251pt;}
.y3_c00059{bottom:1032.587243pt;}
.y2_c00059{bottom:1047.867075pt;}
.y1_c00059{bottom:1063.227067pt;}
.h1_c00059{height:47.020937pt;}
.h2_c00059{height:56.156250pt;}
.h3_c00059{height:56.843750pt;}
.h0_c00059{height:1122.666667pt;}
.w1_c00059{width:793.333333pt;}
.w0_c00059{width:793.626667pt;}
.x0_c00059{left:0.000000pt;}
.x4_c00059{left:113.440000pt;}
.x1_c00059{left:577.440000pt;}
.x3_c00059{left:664.400000pt;}
.x2_c00059{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1f6afbdf3eff6a618b5b4ea.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.095703;font-style:normal;font-weight:normal;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_9470a941f882f7cdae5adde9.woff2')format("woff");}.ff2_c00060{font-family:ff2_c00060;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00060{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.lsb_c00060{letter-spacing:-0.102204px;}
.ls12_c00060{letter-spacing:-0.093600px;}
.lsf_c00060{letter-spacing:-0.036000px;}
.ls13_c00060{letter-spacing:-0.028800px;}
.ls11_c00060{letter-spacing:-0.021600px;}
.ls10_c00060{letter-spacing:-0.014400px;}
.lsd_c00060{letter-spacing:-0.007200px;}
.lsc_c00060{letter-spacing:0.000000px;}
.ls7_c00060{letter-spacing:0.007200px;}
.ls9_c00060{letter-spacing:0.014400px;}
.ls8_c00060{letter-spacing:0.021600px;}
.ls2_c00060{letter-spacing:0.028800px;}
.ls5_c00060{letter-spacing:0.036000px;}
.ls4_c00060{letter-spacing:0.043200px;}
.ls0_c00060{letter-spacing:0.050400px;}
.lsa_c00060{letter-spacing:0.057600px;}
.ls6_c00060{letter-spacing:0.064800px;}
.ls1_c00060{letter-spacing:0.108000px;}
.ls3_c00060{letter-spacing:0.122400px;}
.lse_c00060{letter-spacing:6.120000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:-18.007200px;}
.ws2_c00060{word-spacing:0.000000px;}
.ws4_c00060{word-spacing:0.014400px;}
.ws1_c00060{word-spacing:0.192384px;}
.ws3_c00060{word-spacing:0.237600px;}
._c_c00060{margin-left:-6.909264px;}
._8_c00060{margin-left:-5.155200px;}
._9_c00060{margin-left:-3.693600px;}
._2_c00060{margin-left:-2.548800px;}
._1_c00060{margin-left:-1.310400px;}
._0_c00060{width:1.034064px;}
._f_c00060{width:2.426400px;}
._5_c00060{width:3.924000px;}
._6_c00060{width:5.306400px;}
._b_c00060{width:6.724800px;}
._3_c00060{width:8.697600px;}
._4_c00060{width:9.720000px;}
._a_c00060{width:11.491200px;}
._e_c00060{width:27.007200px;}
._d_c00060{width:28.058400px;}
._7_c00060{width:31.276800px;}
.fc1_c00060{color:rgb(0,0,0);}
.fc0_c00060{color:rgb(32,31,30);}
.fs0_c00060{font-size:60.120000px;}
.fs1_c00060{font-size:72.000000px;}
.y0_c00060{bottom:0.000000px;}
.y5_c00060{bottom:57.360450px;}
.y4_c00060{bottom:78.060450px;}
.y24_c00060{bottom:119.010450px;}
.y23_c00060{bottom:150.150450px;}
.y22_c00060{bottom:181.200450px;}
.y21_c00060{bottom:224.220450px;}
.y20_c00060{bottom:255.270450px;}
.y1f_c00060{bottom:286.320450px;}
.y1e_c00060{bottom:329.340450px;}
.y1d_c00060{bottom:360.480450px;}
.y1c_c00060{bottom:391.530450px;}
.y1b_c00060{bottom:425.730450px;}
.y1a_c00060{bottom:448.050450px;}
.y19_c00060{bottom:473.340450px;}
.y18_c00060{bottom:516.450450px;}
.y17_c00060{bottom:547.590450px;}
.y16_c00060{bottom:578.640450px;}
.y15_c00060{bottom:609.690450px;}
.y14_c00060{bottom:640.740450px;}
.y13_c00060{bottom:683.670450px;}
.y12_c00060{bottom:714.810450px;}
.y11_c00060{bottom:745.860450px;}
.y10_c00060{bottom:776.910450px;}
.yf_c00060{bottom:807.960450px;}
.ye_c00060{bottom:850.980450px;}
.yd_c00060{bottom:882.120450px;}
.yc_c00060{bottom:913.170450px;}
.yb_c00060{bottom:944.220450px;}
.ya_c00060{bottom:975.180450px;}
.y9_c00060{bottom:1006.230450px;}
.y8_c00060{bottom:1037.280450px;}
.y7_c00060{bottom:1080.300450px;}
.y6_c00060{bottom:1111.440450px;}
.y3_c00060{bottom:1132.140450px;}
.y2_c00060{bottom:1165.441023px;}
.y1_c00060{bottom:1196.040600px;}
.h1_c00060{height:52.898555px;}
.h2_c00060{height:63.175781px;}
.h3_c00060{height:63.351562px;}
.h0_c00060{height:1263.000000px;}
.w1_c00060{width:892.500000px;}
.w0_c00060{width:892.830000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:127.620000px;}
.x2_c00060{left:747.450000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.lsb_c00060{letter-spacing:-0.090848pt;}
.ls12_c00060{letter-spacing:-0.083200pt;}
.lsf_c00060{letter-spacing:-0.032000pt;}
.ls13_c00060{letter-spacing:-0.025600pt;}
.ls11_c00060{letter-spacing:-0.019200pt;}
.ls10_c00060{letter-spacing:-0.012800pt;}
.lsd_c00060{letter-spacing:-0.006400pt;}
.lsc_c00060{letter-spacing:0.000000pt;}
.ls7_c00060{letter-spacing:0.006400pt;}
.ls9_c00060{letter-spacing:0.012800pt;}
.ls8_c00060{letter-spacing:0.019200pt;}
.ls2_c00060{letter-spacing:0.025600pt;}
.ls5_c00060{letter-spacing:0.032000pt;}
.ls4_c00060{letter-spacing:0.038400pt;}
.ls0_c00060{letter-spacing:0.044800pt;}
.lsa_c00060{letter-spacing:0.051200pt;}
.ls6_c00060{letter-spacing:0.057600pt;}
.ls1_c00060{letter-spacing:0.096000pt;}
.ls3_c00060{letter-spacing:0.108800pt;}
.lse_c00060{letter-spacing:5.440000pt;}
.ws0_c00060{word-spacing:-16.006400pt;}
.ws2_c00060{word-spacing:0.000000pt;}
.ws4_c00060{word-spacing:0.012800pt;}
.ws1_c00060{word-spacing:0.171008pt;}
.ws3_c00060{word-spacing:0.211200pt;}
._c_c00060{margin-left:-6.141568pt;}
._8_c00060{margin-left:-4.582400pt;}
._9_c00060{margin-left:-3.283200pt;}
._2_c00060{margin-left:-2.265600pt;}
._1_c00060{margin-left:-1.164800pt;}
._0_c00060{width:0.919168pt;}
._f_c00060{width:2.156800pt;}
._5_c00060{width:3.488000pt;}
._6_c00060{width:4.716800pt;}
._b_c00060{width:5.977600pt;}
._3_c00060{width:7.731200pt;}
._4_c00060{width:8.640000pt;}
._a_c00060{width:10.214400pt;}
._e_c00060{width:24.006400pt;}
._d_c00060{width:24.940800pt;}
._7_c00060{width:27.801600pt;}
.fs0_c00060{font-size:53.440000pt;}
.fs1_c00060{font-size:64.000000pt;}
.y0_c00060{bottom:0.000000pt;}
.y5_c00060{bottom:50.987067pt;}
.y4_c00060{bottom:69.387067pt;}
.y24_c00060{bottom:105.787067pt;}
.y23_c00060{bottom:133.467067pt;}
.y22_c00060{bottom:161.067067pt;}
.y21_c00060{bottom:199.307067pt;}
.y20_c00060{bottom:226.907067pt;}
.y1f_c00060{bottom:254.507067pt;}
.y1e_c00060{bottom:292.747067pt;}
.y1d_c00060{bottom:320.427067pt;}
.y1c_c00060{bottom:348.027067pt;}
.y1b_c00060{bottom:378.427067pt;}
.y1a_c00060{bottom:398.267067pt;}
.y19_c00060{bottom:420.747067pt;}
.y18_c00060{bottom:459.067067pt;}
.y17_c00060{bottom:486.747067pt;}
.y16_c00060{bottom:514.347067pt;}
.y15_c00060{bottom:541.947067pt;}
.y14_c00060{bottom:569.547067pt;}
.y13_c00060{bottom:607.707067pt;}
.y12_c00060{bottom:635.387067pt;}
.y11_c00060{bottom:662.987067pt;}
.y10_c00060{bottom:690.587067pt;}
.yf_c00060{bottom:718.187067pt;}
.ye_c00060{bottom:756.427067pt;}
.yd_c00060{bottom:784.107067pt;}
.yc_c00060{bottom:811.707067pt;}
.yb_c00060{bottom:839.307067pt;}
.ya_c00060{bottom:866.827067pt;}
.y9_c00060{bottom:894.427067pt;}
.y8_c00060{bottom:922.027067pt;}
.y7_c00060{bottom:960.267067pt;}
.y6_c00060{bottom:987.947067pt;}
.y3_c00060{bottom:1006.347067pt;}
.y2_c00060{bottom:1035.947576pt;}
.y1_c00060{bottom:1063.147200pt;}
.h1_c00060{height:47.020937pt;}
.h2_c00060{height:56.156250pt;}
.h3_c00060{height:56.312500pt;}
.h0_c00060{height:1122.666667pt;}
.w1_c00060{width:793.333333pt;}
.w0_c00060{width:793.626667pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:113.440000pt;}
.x2_c00060{left:664.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_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_9a5c5e22d519f5c49509e91b.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.095703;font-style:normal;font-weight:normal;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_d99953ad1b56b5f0e11679d3.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00061{font-family:ff3_c00061;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00061{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls15_c00061{letter-spacing:-0.072000px;}
.ls10_c00061{letter-spacing:-0.048096px;}
.ls16_c00061{letter-spacing:-0.043200px;}
.ls14_c00061{letter-spacing:-0.036000px;}
.ls13_c00061{letter-spacing:-0.021600px;}
.ls17_c00061{letter-spacing:-0.014400px;}
.ls12_c00061{letter-spacing:-0.007200px;}
.ls11_c00061{letter-spacing:0.000000px;}
.ls8_c00061{letter-spacing:0.007200px;}
.ls3_c00061{letter-spacing:0.014400px;}
.ls4_c00061{letter-spacing:0.021600px;}
.ls7_c00061{letter-spacing:0.028800px;}
.ls5_c00061{letter-spacing:0.036000px;}
.lsa_c00061{letter-spacing:0.043200px;}
.lsd_c00061{letter-spacing:0.050400px;}
.ls1_c00061{letter-spacing:0.057600px;}
.ls2_c00061{letter-spacing:0.064800px;}
.ls0_c00061{letter-spacing:0.072000px;}
.ls6_c00061{letter-spacing:0.079200px;}
.lsc_c00061{letter-spacing:0.086400px;}
.lsf_c00061{letter-spacing:0.093600px;}
.ls9_c00061{letter-spacing:0.100800px;}
.lsb_c00061{letter-spacing:0.115200px;}
.lse_c00061{letter-spacing:11.520000px;}
.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;}
}
.ws2_c00061{word-spacing:-3.578400px;}
.ws1_c00061{word-spacing:0.000000px;}
.ws0_c00061{word-spacing:0.138276px;}
.ws3_c00061{word-spacing:11.829600px;}
._2_c00061{margin-left:-4.824000px;}
._1_c00061{margin-left:-3.592800px;}
._4_c00061{margin-left:-2.217600px;}
._6_c00061{margin-left:-1.065600px;}
._0_c00061{width:1.353600px;}
._3_c00061{width:2.966400px;}
._d_c00061{width:4.276800px;}
._e_c00061{width:5.731200px;}
._5_c00061{width:6.825600px;}
._8_c00061{width:7.963200px;}
._7_c00061{width:8.985600px;}
._a_c00061{width:10.108800px;}
._9_c00061{width:11.116800px;}
._c_c00061{width:12.686400px;}
._b_c00061{width:15.098400px;}
.fc0_c00061{color:rgb(0,0,0);}
.fs0_c00061{font-size:60.120000px;}
.fs1_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y6_c00061{bottom:57.360450px;}
.y5_c00061{bottom:78.060450px;}
.y26_c00061{bottom:125.850450px;}
.y25_c00061{bottom:156.900450px;}
.y24_c00061{bottom:199.920450px;}
.y23_c00061{bottom:231.060450px;}
.y22_c00061{bottom:262.110450px;}
.y21_c00061{bottom:293.070450px;}
.y20_c00061{bottom:324.120450px;}
.y1f_c00061{bottom:355.170450px;}
.y1e_c00061{bottom:386.220450px;}
.y1d_c00061{bottom:417.270450px;}
.y1c_c00061{bottom:448.320450px;}
.y1b_c00061{bottom:479.370450px;}
.y1a_c00061{bottom:510.420450px;}
.y19_c00061{bottom:541.470450px;}
.y18_c00061{bottom:572.520450px;}
.y17_c00061{bottom:615.540450px;}
.y16_c00061{bottom:646.680450px;}
.y15_c00061{bottom:677.640450px;}
.y14_c00061{bottom:708.690450px;}
.y13_c00061{bottom:739.740450px;}
.y12_c00061{bottom:770.790450px;}
.y11_c00061{bottom:813.810450px;}
.y10_c00061{bottom:844.950450px;}
.yf_c00061{bottom:876.000450px;}
.ye_c00061{bottom:907.050450px;}
.yd_c00061{bottom:938.100450px;}
.yc_c00061{bottom:969.150450px;}
.yb_c00061{bottom:1000.200450px;}
.ya_c00061{bottom:1031.160450px;}
.y9_c00061{bottom:1062.210450px;}
.y8_c00061{bottom:1093.260450px;}
.y7_c00061{bottom:1124.310450px;}
.y4_c00061{bottom:1144.380657px;}
.y3_c00061{bottom:1161.660648px;}
.y2_c00061{bottom:1178.850459px;}
.y1_c00061{bottom:1196.130450px;}
.h1_c00061{height:52.898555px;}
.h2_c00061{height:63.175781px;}
.h3_c00061{height:63.351562px;}
.h4_c00061{height:63.949219px;}
.h0_c00061{height:1263.000000px;}
.w1_c00061{width:892.500000px;}
.w0_c00061{width:892.830000px;}
.x0_c00061{left:0.000000px;}
.x4_c00061{left:127.620000px;}
.x1_c00061{left:649.620000px;}
.x3_c00061{left:747.450000px;}
.x2_c00061{left:765.450198px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls15_c00061{letter-spacing:-0.064000pt;}
.ls10_c00061{letter-spacing:-0.042752pt;}
.ls16_c00061{letter-spacing:-0.038400pt;}
.ls14_c00061{letter-spacing:-0.032000pt;}
.ls13_c00061{letter-spacing:-0.019200pt;}
.ls17_c00061{letter-spacing:-0.012800pt;}
.ls12_c00061{letter-spacing:-0.006400pt;}
.ls11_c00061{letter-spacing:0.000000pt;}
.ls8_c00061{letter-spacing:0.006400pt;}
.ls3_c00061{letter-spacing:0.012800pt;}
.ls4_c00061{letter-spacing:0.019200pt;}
.ls7_c00061{letter-spacing:0.025600pt;}
.ls5_c00061{letter-spacing:0.032000pt;}
.lsa_c00061{letter-spacing:0.038400pt;}
.lsd_c00061{letter-spacing:0.044800pt;}
.ls1_c00061{letter-spacing:0.051200pt;}
.ls2_c00061{letter-spacing:0.057600pt;}
.ls0_c00061{letter-spacing:0.064000pt;}
.ls6_c00061{letter-spacing:0.070400pt;}
.lsc_c00061{letter-spacing:0.076800pt;}
.lsf_c00061{letter-spacing:0.083200pt;}
.ls9_c00061{letter-spacing:0.089600pt;}
.lsb_c00061{letter-spacing:0.102400pt;}
.lse_c00061{letter-spacing:10.240000pt;}
.ws2_c00061{word-spacing:-3.180800pt;}
.ws1_c00061{word-spacing:0.000000pt;}
.ws0_c00061{word-spacing:0.122912pt;}
.ws3_c00061{word-spacing:10.515200pt;}
._2_c00061{margin-left:-4.288000pt;}
._1_c00061{margin-left:-3.193600pt;}
._4_c00061{margin-left:-1.971200pt;}
._6_c00061{margin-left:-0.947200pt;}
._0_c00061{width:1.203200pt;}
._3_c00061{width:2.636800pt;}
._d_c00061{width:3.801600pt;}
._e_c00061{width:5.094400pt;}
._5_c00061{width:6.067200pt;}
._8_c00061{width:7.078400pt;}
._7_c00061{width:7.987200pt;}
._a_c00061{width:8.985600pt;}
._9_c00061{width:9.881600pt;}
._c_c00061{width:11.276800pt;}
._b_c00061{width:13.420800pt;}
.fs0_c00061{font-size:53.440000pt;}
.fs1_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y6_c00061{bottom:50.987067pt;}
.y5_c00061{bottom:69.387067pt;}
.y26_c00061{bottom:111.867067pt;}
.y25_c00061{bottom:139.467067pt;}
.y24_c00061{bottom:177.707067pt;}
.y23_c00061{bottom:205.387067pt;}
.y22_c00061{bottom:232.987067pt;}
.y21_c00061{bottom:260.507067pt;}
.y20_c00061{bottom:288.107067pt;}
.y1f_c00061{bottom:315.707067pt;}
.y1e_c00061{bottom:343.307067pt;}
.y1d_c00061{bottom:370.907067pt;}
.y1c_c00061{bottom:398.507067pt;}
.y1b_c00061{bottom:426.107067pt;}
.y1a_c00061{bottom:453.707067pt;}
.y19_c00061{bottom:481.307067pt;}
.y18_c00061{bottom:508.907067pt;}
.y17_c00061{bottom:547.147067pt;}
.y16_c00061{bottom:574.827067pt;}
.y15_c00061{bottom:602.347067pt;}
.y14_c00061{bottom:629.947067pt;}
.y13_c00061{bottom:657.547067pt;}
.y12_c00061{bottom:685.147067pt;}
.y11_c00061{bottom:723.387067pt;}
.y10_c00061{bottom:751.067067pt;}
.yf_c00061{bottom:778.667067pt;}
.ye_c00061{bottom:806.267067pt;}
.yd_c00061{bottom:833.867067pt;}
.yc_c00061{bottom:861.467067pt;}
.yb_c00061{bottom:889.067067pt;}
.ya_c00061{bottom:916.587067pt;}
.y9_c00061{bottom:944.187067pt;}
.y8_c00061{bottom:971.787067pt;}
.y7_c00061{bottom:999.387067pt;}
.y4_c00061{bottom:1017.227251pt;}
.y3_c00061{bottom:1032.587243pt;}
.y2_c00061{bottom:1047.867075pt;}
.y1_c00061{bottom:1063.227067pt;}
.h1_c00061{height:47.020937pt;}
.h2_c00061{height:56.156250pt;}
.h3_c00061{height:56.312500pt;}
.h4_c00061{height:56.843750pt;}
.h0_c00061{height:1122.666667pt;}
.w1_c00061{width:793.333333pt;}
.w0_c00061{width:793.626667pt;}
.x0_c00061{left:0.000000pt;}
.x4_c00061{left:113.440000pt;}
.x1_c00061{left:577.440000pt;}
.x3_c00061{left:664.400000pt;}
.x2_c00061{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.095703;font-style:normal;font-weight:normal;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_00ffcb46b34a8907c7f22642.woff2')format("woff");}.ff2_c00062{font-family:ff2_c00062;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00062{font-family:ff3_c00062;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00062{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls19_c00062{letter-spacing:-3.600000px;}
.ls13_c00062{letter-spacing:-0.108000px;}
.lsf_c00062{letter-spacing:-0.102204px;}
.ls18_c00062{letter-spacing:-0.057600px;}
.ls14_c00062{letter-spacing:-0.043200px;}
.ls12_c00062{letter-spacing:-0.036000px;}
.ls11_c00062{letter-spacing:-0.028800px;}
.ls16_c00062{letter-spacing:-0.014400px;}
.ls15_c00062{letter-spacing:-0.007200px;}
.ls10_c00062{letter-spacing:0.000000px;}
.lsb_c00062{letter-spacing:0.007200px;}
.ls0_c00062{letter-spacing:0.014400px;}
.ls9_c00062{letter-spacing:0.021600px;}
.ls4_c00062{letter-spacing:0.028800px;}
.ls6_c00062{letter-spacing:0.036000px;}
.ls1_c00062{letter-spacing:0.043200px;}
.ls5_c00062{letter-spacing:0.050400px;}
.ls3_c00062{letter-spacing:0.057600px;}
.ls2_c00062{letter-spacing:0.064800px;}
.lse_c00062{letter-spacing:0.079200px;}
.lsc_c00062{letter-spacing:0.086400px;}
.lsa_c00062{letter-spacing:0.093600px;}
.ls7_c00062{letter-spacing:0.100800px;}
.lsd_c00062{letter-spacing:0.122400px;}
.ls17_c00062{letter-spacing:3.960000px;}
.ls8_c00062{letter-spacing:27.720000px;}
.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:-17.956800px;}
.ws2_c00062{word-spacing:0.000000px;}
.ws1_c00062{word-spacing:0.192384px;}
._9_c00062{margin-left:-4.874400px;}
._6_c00062{margin-left:-3.146400px;}
._2_c00062{margin-left:-1.231200px;}
._0_c00062{width:1.034064px;}
._4_c00062{width:2.130480px;}
._3_c00062{width:3.182400px;}
._1_c00062{width:4.665600px;}
._8_c00062{width:6.098400px;}
._5_c00062{width:9.324000px;}
._7_c00062{width:27.691200px;}
.fc1_c00062{color:rgb(0,0,0);}
.fc0_c00062{color:rgb(32,31,30);}
.fs0_c00062{font-size:60.120000px;}
.fs1_c00062{font-size:72.000000px;}
.y0_c00062{bottom:0.000000px;}
.y5_c00062{bottom:57.360450px;}
.y4_c00062{bottom:78.060450px;}
.y23_c00062{bottom:139.080450px;}
.y22_c00062{bottom:170.130450px;}
.y21_c00062{bottom:201.090450px;}
.y20_c00062{bottom:244.110450px;}
.y1f_c00062{bottom:275.250450px;}
.y1e_c00062{bottom:306.300450px;}
.y1d_c00062{bottom:337.350450px;}
.y1c_c00062{bottom:368.400450px;}
.y1b_c00062{bottom:411.330450px;}
.y1a_c00062{bottom:442.470450px;}
.y19_c00062{bottom:473.520450px;}
.y18_c00062{bottom:516.450450px;}
.y17_c00062{bottom:547.590450px;}
.y16_c00062{bottom:578.640450px;}
.y15_c00062{bottom:609.690450px;}
.y14_c00062{bottom:640.740450px;}
.y13_c00062{bottom:683.670450px;}
.y12_c00062{bottom:714.810450px;}
.y11_c00062{bottom:745.860450px;}
.y10_c00062{bottom:776.910450px;}
.yf_c00062{bottom:819.930450px;}
.ye_c00062{bottom:851.070450px;}
.yd_c00062{bottom:882.120450px;}
.yc_c00062{bottom:913.170450px;}
.yb_c00062{bottom:944.220450px;}
.ya_c00062{bottom:975.180450px;}
.y9_c00062{bottom:1006.230450px;}
.y8_c00062{bottom:1037.280450px;}
.y7_c00062{bottom:1080.300450px;}
.y6_c00062{bottom:1111.440450px;}
.y3_c00062{bottom:1132.140450px;}
.y2_c00062{bottom:1165.441023px;}
.y1_c00062{bottom:1196.040600px;}
.h1_c00062{height:52.898555px;}
.h2_c00062{height:63.175781px;}
.h3_c00062{height:63.949219px;}
.h0_c00062{height:1263.000000px;}
.w1_c00062{width:892.500000px;}
.w0_c00062{width:892.830000px;}
.x0_c00062{left:0.000000px;}
.x1_c00062{left:127.620000px;}
.x2_c00062{left:747.450000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls19_c00062{letter-spacing:-3.200000pt;}
.ls13_c00062{letter-spacing:-0.096000pt;}
.lsf_c00062{letter-spacing:-0.090848pt;}
.ls18_c00062{letter-spacing:-0.051200pt;}
.ls14_c00062{letter-spacing:-0.038400pt;}
.ls12_c00062{letter-spacing:-0.032000pt;}
.ls11_c00062{letter-spacing:-0.025600pt;}
.ls16_c00062{letter-spacing:-0.012800pt;}
.ls15_c00062{letter-spacing:-0.006400pt;}
.ls10_c00062{letter-spacing:0.000000pt;}
.lsb_c00062{letter-spacing:0.006400pt;}
.ls0_c00062{letter-spacing:0.012800pt;}
.ls9_c00062{letter-spacing:0.019200pt;}
.ls4_c00062{letter-spacing:0.025600pt;}
.ls6_c00062{letter-spacing:0.032000pt;}
.ls1_c00062{letter-spacing:0.038400pt;}
.ls5_c00062{letter-spacing:0.044800pt;}
.ls3_c00062{letter-spacing:0.051200pt;}
.ls2_c00062{letter-spacing:0.057600pt;}
.lse_c00062{letter-spacing:0.070400pt;}
.lsc_c00062{letter-spacing:0.076800pt;}
.lsa_c00062{letter-spacing:0.083200pt;}
.ls7_c00062{letter-spacing:0.089600pt;}
.lsd_c00062{letter-spacing:0.108800pt;}
.ls17_c00062{letter-spacing:3.520000pt;}
.ls8_c00062{letter-spacing:24.640000pt;}
.ws0_c00062{word-spacing:-15.961600pt;}
.ws2_c00062{word-spacing:0.000000pt;}
.ws1_c00062{word-spacing:0.171008pt;}
._9_c00062{margin-left:-4.332800pt;}
._6_c00062{margin-left:-2.796800pt;}
._2_c00062{margin-left:-1.094400pt;}
._0_c00062{width:0.919168pt;}
._4_c00062{width:1.893760pt;}
._3_c00062{width:2.828800pt;}
._1_c00062{width:4.147200pt;}
._8_c00062{width:5.420800pt;}
._5_c00062{width:8.288000pt;}
._7_c00062{width:24.614400pt;}
.fs0_c00062{font-size:53.440000pt;}
.fs1_c00062{font-size:64.000000pt;}
.y0_c00062{bottom:0.000000pt;}
.y5_c00062{bottom:50.987067pt;}
.y4_c00062{bottom:69.387067pt;}
.y23_c00062{bottom:123.627067pt;}
.y22_c00062{bottom:151.227067pt;}
.y21_c00062{bottom:178.747067pt;}
.y20_c00062{bottom:216.987067pt;}
.y1f_c00062{bottom:244.667067pt;}
.y1e_c00062{bottom:272.267067pt;}
.y1d_c00062{bottom:299.867067pt;}
.y1c_c00062{bottom:327.467067pt;}
.y1b_c00062{bottom:365.627067pt;}
.y1a_c00062{bottom:393.307067pt;}
.y19_c00062{bottom:420.907067pt;}
.y18_c00062{bottom:459.067067pt;}
.y17_c00062{bottom:486.747067pt;}
.y16_c00062{bottom:514.347067pt;}
.y15_c00062{bottom:541.947067pt;}
.y14_c00062{bottom:569.547067pt;}
.y13_c00062{bottom:607.707067pt;}
.y12_c00062{bottom:635.387067pt;}
.y11_c00062{bottom:662.987067pt;}
.y10_c00062{bottom:690.587067pt;}
.yf_c00062{bottom:728.827067pt;}
.ye_c00062{bottom:756.507067pt;}
.yd_c00062{bottom:784.107067pt;}
.yc_c00062{bottom:811.707067pt;}
.yb_c00062{bottom:839.307067pt;}
.ya_c00062{bottom:866.827067pt;}
.y9_c00062{bottom:894.427067pt;}
.y8_c00062{bottom:922.027067pt;}
.y7_c00062{bottom:960.267067pt;}
.y6_c00062{bottom:987.947067pt;}
.y3_c00062{bottom:1006.347067pt;}
.y2_c00062{bottom:1035.947576pt;}
.y1_c00062{bottom:1063.147200pt;}
.h1_c00062{height:47.020937pt;}
.h2_c00062{height:56.156250pt;}
.h3_c00062{height:56.843750pt;}
.h0_c00062{height:1122.666667pt;}
.w1_c00062{width:793.333333pt;}
.w0_c00062{width:793.626667pt;}
.x0_c00062{left:0.000000pt;}
.x1_c00062{left:113.440000pt;}
.x2_c00062{left:664.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_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_f36084a87c72b5de2cecbbe9.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.095703;font-style:normal;font-weight:normal;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_0b2f298d2d27ae0930ec4c19.woff2')format("woff");}.ff2_c00063{font-family:ff2_c00063;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls18_c00063{letter-spacing:-2.520000px;}
.ls10_c00063{letter-spacing:-0.288000px;}
.ls11_c00063{letter-spacing:-0.064800px;}
.ls12_c00063{letter-spacing:-0.057600px;}
.lse_c00063{letter-spacing:-0.048096px;}
.ls14_c00063{letter-spacing:-0.036000px;}
.ls15_c00063{letter-spacing:-0.028800px;}
.ls17_c00063{letter-spacing:-0.021600px;}
.ls19_c00063{letter-spacing:-0.014400px;}
.ls13_c00063{letter-spacing:-0.007200px;}
.lsf_c00063{letter-spacing:0.000000px;}
.ls8_c00063{letter-spacing:0.007200px;}
.ls4_c00063{letter-spacing:0.014400px;}
.ls7_c00063{letter-spacing:0.021600px;}
.ls6_c00063{letter-spacing:0.028800px;}
.ls9_c00063{letter-spacing:0.036000px;}
.ls3_c00063{letter-spacing:0.043200px;}
.lsc_c00063{letter-spacing:0.050400px;}
.lsb_c00063{letter-spacing:0.057600px;}
.ls1_c00063{letter-spacing:0.064800px;}
.lsa_c00063{letter-spacing:0.072000px;}
.ls0_c00063{letter-spacing:0.079200px;}
.lsd_c00063{letter-spacing:0.086400px;}
.ls5_c00063{letter-spacing:0.129600px;}
.ls16_c00063{letter-spacing:0.136800px;}
.ls2_c00063{letter-spacing:0.158400px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00063{word-spacing:0.000000px;}
.ws0_c00063{word-spacing:0.138276px;}
.ws2_c00063{word-spacing:1.044000px;}
._f_c00063{margin-left:-5.169600px;}
._0_c00063{margin-left:-4.118400px;}
._1_c00063{margin-left:-2.865600px;}
._3_c00063{margin-left:-1.238400px;}
._2_c00063{width:1.094400px;}
._c_c00063{width:2.246400px;}
._d_c00063{width:3.621600px;}
._7_c00063{width:4.672800px;}
._5_c00063{width:5.724000px;}
._6_c00063{width:6.883200px;}
._e_c00063{width:8.128800px;}
._4_c00063{width:9.367200px;}
._8_c00063{width:11.520000px;}
._10_c00063{width:19.080000px;}
._b_c00063{width:21.211200px;}
._9_c00063{width:22.348800px;}
._a_c00063{width:23.508000px;}
.fc0_c00063{color:rgb(0,0,0);}
.fs0_c00063{font-size:60.120000px;}
.fs1_c00063{font-size:72.000000px;}
.y0_c00063{bottom:0.000000px;}
.y6_c00063{bottom:57.360450px;}
.y5_c00063{bottom:78.060450px;}
.y26_c00063{bottom:113.880450px;}
.y25_c00063{bottom:144.930450px;}
.y24_c00063{bottom:175.980450px;}
.y23_c00063{bottom:207.030450px;}
.y22_c00063{bottom:238.080450px;}
.y21_c00063{bottom:269.130450px;}
.y20_c00063{bottom:312.060450px;}
.y1f_c00063{bottom:343.200450px;}
.y1e_c00063{bottom:374.250450px;}
.y1d_c00063{bottom:405.300450px;}
.y1c_c00063{bottom:436.350450px;}
.y1b_c00063{bottom:467.400450px;}
.y1a_c00063{bottom:498.450450px;}
.y19_c00063{bottom:529.500450px;}
.y18_c00063{bottom:572.430450px;}
.y17_c00063{bottom:603.570450px;}
.y16_c00063{bottom:634.620450px;}
.y15_c00063{bottom:665.670450px;}
.y14_c00063{bottom:696.720450px;}
.y13_c00063{bottom:727.770450px;}
.y12_c00063{bottom:758.820450px;}
.y11_c00063{bottom:789.870450px;}
.y10_c00063{bottom:832.800450px;}
.yf_c00063{bottom:863.940450px;}
.ye_c00063{bottom:894.990450px;}
.yd_c00063{bottom:926.040450px;}
.yc_c00063{bottom:957.090450px;}
.yb_c00063{bottom:988.140450px;}
.ya_c00063{bottom:1031.070450px;}
.y9_c00063{bottom:1062.210450px;}
.y8_c00063{bottom:1093.260450px;}
.y7_c00063{bottom:1124.310450px;}
.y4_c00063{bottom:1144.380657px;}
.y3_c00063{bottom:1161.660648px;}
.y2_c00063{bottom:1178.850459px;}
.y1_c00063{bottom:1196.130450px;}
.h1_c00063{height:52.898555px;}
.h2_c00063{height:63.175781px;}
.h3_c00063{height:63.351562px;}
.h0_c00063{height:1263.000000px;}
.w1_c00063{width:892.500000px;}
.w0_c00063{width:892.830000px;}
.x0_c00063{left:0.000000px;}
.x4_c00063{left:127.620000px;}
.x1_c00063{left:649.620000px;}
.x3_c00063{left:747.450000px;}
.x2_c00063{left:765.450198px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls18_c00063{letter-spacing:-2.240000pt;}
.ls10_c00063{letter-spacing:-0.256000pt;}
.ls11_c00063{letter-spacing:-0.057600pt;}
.ls12_c00063{letter-spacing:-0.051200pt;}
.lse_c00063{letter-spacing:-0.042752pt;}
.ls14_c00063{letter-spacing:-0.032000pt;}
.ls15_c00063{letter-spacing:-0.025600pt;}
.ls17_c00063{letter-spacing:-0.019200pt;}
.ls19_c00063{letter-spacing:-0.012800pt;}
.ls13_c00063{letter-spacing:-0.006400pt;}
.lsf_c00063{letter-spacing:0.000000pt;}
.ls8_c00063{letter-spacing:0.006400pt;}
.ls4_c00063{letter-spacing:0.012800pt;}
.ls7_c00063{letter-spacing:0.019200pt;}
.ls6_c00063{letter-spacing:0.025600pt;}
.ls9_c00063{letter-spacing:0.032000pt;}
.ls3_c00063{letter-spacing:0.038400pt;}
.lsc_c00063{letter-spacing:0.044800pt;}
.lsb_c00063{letter-spacing:0.051200pt;}
.ls1_c00063{letter-spacing:0.057600pt;}
.lsa_c00063{letter-spacing:0.064000pt;}
.ls0_c00063{letter-spacing:0.070400pt;}
.lsd_c00063{letter-spacing:0.076800pt;}
.ls5_c00063{letter-spacing:0.115200pt;}
.ls16_c00063{letter-spacing:0.121600pt;}
.ls2_c00063{letter-spacing:0.140800pt;}
.ws1_c00063{word-spacing:0.000000pt;}
.ws0_c00063{word-spacing:0.122912pt;}
.ws2_c00063{word-spacing:0.928000pt;}
._f_c00063{margin-left:-4.595200pt;}
._0_c00063{margin-left:-3.660800pt;}
._1_c00063{margin-left:-2.547200pt;}
._3_c00063{margin-left:-1.100800pt;}
._2_c00063{width:0.972800pt;}
._c_c00063{width:1.996800pt;}
._d_c00063{width:3.219200pt;}
._7_c00063{width:4.153600pt;}
._5_c00063{width:5.088000pt;}
._6_c00063{width:6.118400pt;}
._e_c00063{width:7.225600pt;}
._4_c00063{width:8.326400pt;}
._8_c00063{width:10.240000pt;}
._10_c00063{width:16.960000pt;}
._b_c00063{width:18.854400pt;}
._9_c00063{width:19.865600pt;}
._a_c00063{width:20.896000pt;}
.fs0_c00063{font-size:53.440000pt;}
.fs1_c00063{font-size:64.000000pt;}
.y0_c00063{bottom:0.000000pt;}
.y6_c00063{bottom:50.987067pt;}
.y5_c00063{bottom:69.387067pt;}
.y26_c00063{bottom:101.227067pt;}
.y25_c00063{bottom:128.827067pt;}
.y24_c00063{bottom:156.427067pt;}
.y23_c00063{bottom:184.027067pt;}
.y22_c00063{bottom:211.627067pt;}
.y21_c00063{bottom:239.227067pt;}
.y20_c00063{bottom:277.387067pt;}
.y1f_c00063{bottom:305.067067pt;}
.y1e_c00063{bottom:332.667067pt;}
.y1d_c00063{bottom:360.267067pt;}
.y1c_c00063{bottom:387.867067pt;}
.y1b_c00063{bottom:415.467067pt;}
.y1a_c00063{bottom:443.067067pt;}
.y19_c00063{bottom:470.667067pt;}
.y18_c00063{bottom:508.827067pt;}
.y17_c00063{bottom:536.507067pt;}
.y16_c00063{bottom:564.107067pt;}
.y15_c00063{bottom:591.707067pt;}
.y14_c00063{bottom:619.307067pt;}
.y13_c00063{bottom:646.907067pt;}
.y12_c00063{bottom:674.507067pt;}
.y11_c00063{bottom:702.107067pt;}
.y10_c00063{bottom:740.267067pt;}
.yf_c00063{bottom:767.947067pt;}
.ye_c00063{bottom:795.547067pt;}
.yd_c00063{bottom:823.147067pt;}
.yc_c00063{bottom:850.747067pt;}
.yb_c00063{bottom:878.347067pt;}
.ya_c00063{bottom:916.507067pt;}
.y9_c00063{bottom:944.187067pt;}
.y8_c00063{bottom:971.787067pt;}
.y7_c00063{bottom:999.387067pt;}
.y4_c00063{bottom:1017.227251pt;}
.y3_c00063{bottom:1032.587243pt;}
.y2_c00063{bottom:1047.867075pt;}
.y1_c00063{bottom:1063.227067pt;}
.h1_c00063{height:47.020937pt;}
.h2_c00063{height:56.156250pt;}
.h3_c00063{height:56.312500pt;}
.h0_c00063{height:1122.666667pt;}
.w1_c00063{width:793.333333pt;}
.w0_c00063{width:793.626667pt;}
.x0_c00063{left:0.000000pt;}
.x4_c00063{left:113.440000pt;}
.x1_c00063{left:577.440000pt;}
.x3_c00063{left:664.400000pt;}
.x2_c00063{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.095703;font-style:normal;font-weight:normal;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_42dc7f4627fb7b0047045011.woff2')format("woff");}.ff2_c00064{font-family:ff2_c00064;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00064{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.lsd_c00064{letter-spacing:-0.102204px;}
.ls13_c00064{letter-spacing:-0.043200px;}
.ls10_c00064{letter-spacing:-0.028800px;}
.ls14_c00064{letter-spacing:-0.021600px;}
.lsf_c00064{letter-spacing:-0.014400px;}
.ls11_c00064{letter-spacing:-0.007200px;}
.lse_c00064{letter-spacing:0.000000px;}
.ls6_c00064{letter-spacing:0.007200px;}
.ls5_c00064{letter-spacing:0.014400px;}
.ls1_c00064{letter-spacing:0.021600px;}
.lsa_c00064{letter-spacing:0.028800px;}
.ls0_c00064{letter-spacing:0.036000px;}
.ls2_c00064{letter-spacing:0.043200px;}
.ls4_c00064{letter-spacing:0.050400px;}
.ls9_c00064{letter-spacing:0.057600px;}
.ls7_c00064{letter-spacing:0.064800px;}
.ls3_c00064{letter-spacing:0.072000px;}
.lsb_c00064{letter-spacing:0.093600px;}
.lsc_c00064{letter-spacing:0.100800px;}
.ls12_c00064{letter-spacing:0.129600px;}
.ls8_c00064{letter-spacing:0.136800px;}
.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;}
}
.ws1_c00064{word-spacing:0.000000px;}
.ws0_c00064{word-spacing:0.192384px;}
._d_c00064{margin-left:-3.902400px;}
._c_c00064{margin-left:-2.491200px;}
._1_c00064{margin-left:-1.375200px;}
._0_c00064{width:1.034064px;}
._3_c00064{width:2.584800px;}
._2_c00064{width:3.888000px;}
._7_c00064{width:5.083200px;}
._a_c00064{width:6.796800px;}
._5_c00064{width:8.215200px;}
._6_c00064{width:9.446400px;}
._9_c00064{width:11.131200px;}
._8_c00064{width:13.276800px;}
._b_c00064{width:14.342400px;}
._4_c00064{width:16.660800px;}
.fc1_c00064{color:rgb(0,0,0);}
.fc0_c00064{color:rgb(32,31,30);}
.fs0_c00064{font-size:60.120000px;}
.fs1_c00064{font-size:72.000000px;}
.y0_c00064{bottom:0.000000px;}
.y5_c00064{bottom:57.360450px;}
.y4_c00064{bottom:78.060450px;}
.y24_c00064{bottom:120.000450px;}
.y23_c00064{bottom:151.050450px;}
.y22_c00064{bottom:182.100450px;}
.y21_c00064{bottom:225.030450px;}
.y20_c00064{bottom:256.170450px;}
.y1f_c00064{bottom:287.220450px;}
.y1e_c00064{bottom:318.270450px;}
.y1d_c00064{bottom:349.320450px;}
.y1c_c00064{bottom:392.250450px;}
.y1b_c00064{bottom:423.390450px;}
.y1a_c00064{bottom:454.440450px;}
.y19_c00064{bottom:485.490450px;}
.y18_c00064{bottom:516.540450px;}
.y17_c00064{bottom:547.590450px;}
.y16_c00064{bottom:590.610450px;}
.y15_c00064{bottom:621.660450px;}
.y14_c00064{bottom:652.710450px;}
.y13_c00064{bottom:683.760450px;}
.y12_c00064{bottom:714.810450px;}
.y11_c00064{bottom:745.860450px;}
.y10_c00064{bottom:776.910450px;}
.yf_c00064{bottom:807.960450px;}
.ye_c00064{bottom:839.010450px;}
.yd_c00064{bottom:870.060450px;}
.yc_c00064{bottom:901.110450px;}
.yb_c00064{bottom:932.160450px;}
.ya_c00064{bottom:975.090450px;}
.y9_c00064{bottom:1006.230450px;}
.y8_c00064{bottom:1037.280450px;}
.y7_c00064{bottom:1080.300450px;}
.y6_c00064{bottom:1111.440450px;}
.y3_c00064{bottom:1132.140450px;}
.y2_c00064{bottom:1165.441023px;}
.y1_c00064{bottom:1196.040600px;}
.h1_c00064{height:52.898555px;}
.h2_c00064{height:63.175781px;}
.h0_c00064{height:1263.000000px;}
.w1_c00064{width:892.500000px;}
.w0_c00064{width:892.830000px;}
.x0_c00064{left:0.000000px;}
.x1_c00064{left:127.620000px;}
.x2_c00064{left:747.450000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.lsd_c00064{letter-spacing:-0.090848pt;}
.ls13_c00064{letter-spacing:-0.038400pt;}
.ls10_c00064{letter-spacing:-0.025600pt;}
.ls14_c00064{letter-spacing:-0.019200pt;}
.lsf_c00064{letter-spacing:-0.012800pt;}
.ls11_c00064{letter-spacing:-0.006400pt;}
.lse_c00064{letter-spacing:0.000000pt;}
.ls6_c00064{letter-spacing:0.006400pt;}
.ls5_c00064{letter-spacing:0.012800pt;}
.ls1_c00064{letter-spacing:0.019200pt;}
.lsa_c00064{letter-spacing:0.025600pt;}
.ls0_c00064{letter-spacing:0.032000pt;}
.ls2_c00064{letter-spacing:0.038400pt;}
.ls4_c00064{letter-spacing:0.044800pt;}
.ls9_c00064{letter-spacing:0.051200pt;}
.ls7_c00064{letter-spacing:0.057600pt;}
.ls3_c00064{letter-spacing:0.064000pt;}
.lsb_c00064{letter-spacing:0.083200pt;}
.lsc_c00064{letter-spacing:0.089600pt;}
.ls12_c00064{letter-spacing:0.115200pt;}
.ls8_c00064{letter-spacing:0.121600pt;}
.ws1_c00064{word-spacing:0.000000pt;}
.ws0_c00064{word-spacing:0.171008pt;}
._d_c00064{margin-left:-3.468800pt;}
._c_c00064{margin-left:-2.214400pt;}
._1_c00064{margin-left:-1.222400pt;}
._0_c00064{width:0.919168pt;}
._3_c00064{width:2.297600pt;}
._2_c00064{width:3.456000pt;}
._7_c00064{width:4.518400pt;}
._a_c00064{width:6.041600pt;}
._5_c00064{width:7.302400pt;}
._6_c00064{width:8.396800pt;}
._9_c00064{width:9.894400pt;}
._8_c00064{width:11.801600pt;}
._b_c00064{width:12.748800pt;}
._4_c00064{width:14.809600pt;}
.fs0_c00064{font-size:53.440000pt;}
.fs1_c00064{font-size:64.000000pt;}
.y0_c00064{bottom:0.000000pt;}
.y5_c00064{bottom:50.987067pt;}
.y4_c00064{bottom:69.387067pt;}
.y24_c00064{bottom:106.667067pt;}
.y23_c00064{bottom:134.267067pt;}
.y22_c00064{bottom:161.867067pt;}
.y21_c00064{bottom:200.027067pt;}
.y20_c00064{bottom:227.707067pt;}
.y1f_c00064{bottom:255.307067pt;}
.y1e_c00064{bottom:282.907067pt;}
.y1d_c00064{bottom:310.507067pt;}
.y1c_c00064{bottom:348.667067pt;}
.y1b_c00064{bottom:376.347067pt;}
.y1a_c00064{bottom:403.947067pt;}
.y19_c00064{bottom:431.547067pt;}
.y18_c00064{bottom:459.147067pt;}
.y17_c00064{bottom:486.747067pt;}
.y16_c00064{bottom:524.987067pt;}
.y15_c00064{bottom:552.587067pt;}
.y14_c00064{bottom:580.187067pt;}
.y13_c00064{bottom:607.787067pt;}
.y12_c00064{bottom:635.387067pt;}
.y11_c00064{bottom:662.987067pt;}
.y10_c00064{bottom:690.587067pt;}
.yf_c00064{bottom:718.187067pt;}
.ye_c00064{bottom:745.787067pt;}
.yd_c00064{bottom:773.387067pt;}
.yc_c00064{bottom:800.987067pt;}
.yb_c00064{bottom:828.587067pt;}
.ya_c00064{bottom:866.747067pt;}
.y9_c00064{bottom:894.427067pt;}
.y8_c00064{bottom:922.027067pt;}
.y7_c00064{bottom:960.267067pt;}
.y6_c00064{bottom:987.947067pt;}
.y3_c00064{bottom:1006.347067pt;}
.y2_c00064{bottom:1035.947576pt;}
.y1_c00064{bottom:1063.147200pt;}
.h1_c00064{height:47.020937pt;}
.h2_c00064{height:56.156250pt;}
.h0_c00064{height:1122.666667pt;}
.w1_c00064{width:793.333333pt;}
.w0_c00064{width:793.626667pt;}
.x0_c00064{left:0.000000pt;}
.x1_c00064{left:113.440000pt;}
.x2_c00064{left:664.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_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_c13be877af7a6db642a1a538.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.095703;font-style:normal;font-weight:normal;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_db802facdf81daf083311144.woff2')format("woff");}.ff2_c00065{font-family:ff2_c00065;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00065{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.lse_c00065{letter-spacing:-0.050400px;}
.lsb_c00065{letter-spacing:-0.048096px;}
.ls12_c00065{letter-spacing:-0.043200px;}
.ls11_c00065{letter-spacing:-0.028800px;}
.lsd_c00065{letter-spacing:-0.021600px;}
.ls10_c00065{letter-spacing:-0.014400px;}
.lsf_c00065{letter-spacing:-0.007200px;}
.lsc_c00065{letter-spacing:0.000000px;}
.ls3_c00065{letter-spacing:0.007200px;}
.ls1_c00065{letter-spacing:0.014400px;}
.ls4_c00065{letter-spacing:0.021600px;}
.ls5_c00065{letter-spacing:0.028800px;}
.ls0_c00065{letter-spacing:0.036000px;}
.ls2_c00065{letter-spacing:0.043200px;}
.ls7_c00065{letter-spacing:0.050400px;}
.ls6_c00065{letter-spacing:0.057600px;}
.lsa_c00065{letter-spacing:0.064800px;}
.ls8_c00065{letter-spacing:0.072000px;}
.ls9_c00065{letter-spacing:0.108000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:-18.014400px;}
.ws1_c00065{word-spacing:-18.000000px;}
.ws3_c00065{word-spacing:0.000000px;}
.ws2_c00065{word-spacing:0.138276px;}
.ws5_c00065{word-spacing:5.767200px;}
.ws4_c00065{word-spacing:26.661600px;}
._a_c00065{margin-left:-5.148000px;}
._9_c00065{margin-left:-3.981600px;}
._d_c00065{margin-left:-2.556000px;}
._1_c00065{margin-left:-1.044000px;}
._5_c00065{width:1.389600px;}
._0_c00065{width:2.484000px;}
._4_c00065{width:3.564000px;}
._e_c00065{width:5.270400px;}
._2_c00065{width:7.156800px;}
._3_c00065{width:8.272800px;}
._f_c00065{width:9.583200px;}
._7_c00065{width:10.591200px;}
._6_c00065{width:11.858400px;}
._8_c00065{width:12.859200px;}
._10_c00065{width:14.738400px;}
._11_c00065{width:16.315200px;}
._b_c00065{width:25.992000px;}
._c_c00065{width:27.547200px;}
.fc0_c00065{color:rgb(0,0,0);}
.fs0_c00065{font-size:60.120000px;}
.fs1_c00065{font-size:72.000000px;}
.y0_c00065{bottom:0.000000px;}
.y6_c00065{bottom:57.360450px;}
.y5_c00065{bottom:78.060450px;}
.y25_c00065{bottom:132.960450px;}
.y24_c00065{bottom:164.010450px;}
.y23_c00065{bottom:195.060450px;}
.y22_c00065{bottom:226.110450px;}
.y21_c00065{bottom:269.040450px;}
.y20_c00065{bottom:300.180450px;}
.y1f_c00065{bottom:331.230450px;}
.y1e_c00065{bottom:362.280450px;}
.y1d_c00065{bottom:393.330450px;}
.y1c_c00065{bottom:424.380450px;}
.y1b_c00065{bottom:455.430450px;}
.y1a_c00065{bottom:486.480450px;}
.y19_c00065{bottom:517.530450px;}
.y18_c00065{bottom:560.460450px;}
.y17_c00065{bottom:591.600450px;}
.y16_c00065{bottom:622.650450px;}
.y15_c00065{bottom:653.700450px;}
.y14_c00065{bottom:696.630450px;}
.y13_c00065{bottom:727.770450px;}
.y12_c00065{bottom:758.820450px;}
.y11_c00065{bottom:789.870450px;}
.y10_c00065{bottom:820.920450px;}
.yf_c00065{bottom:851.970450px;}
.ye_c00065{bottom:894.900450px;}
.yd_c00065{bottom:926.040450px;}
.yc_c00065{bottom:957.090450px;}
.yb_c00065{bottom:988.140450px;}
.ya_c00065{bottom:1019.190450px;}
.y9_c00065{bottom:1050.240450px;}
.y8_c00065{bottom:1093.170450px;}
.y7_c00065{bottom:1124.310450px;}
.y4_c00065{bottom:1144.380657px;}
.y3_c00065{bottom:1161.660648px;}
.y2_c00065{bottom:1178.850459px;}
.y1_c00065{bottom:1196.130450px;}
.h1_c00065{height:52.898555px;}
.h2_c00065{height:63.175781px;}
.h3_c00065{height:63.351562px;}
.h0_c00065{height:1263.000000px;}
.w1_c00065{width:892.500000px;}
.w0_c00065{width:892.830000px;}
.x0_c00065{left:0.000000px;}
.x4_c00065{left:127.620000px;}
.x1_c00065{left:649.620000px;}
.x3_c00065{left:747.450000px;}
.x2_c00065{left:765.450198px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.lse_c00065{letter-spacing:-0.044800pt;}
.lsb_c00065{letter-spacing:-0.042752pt;}
.ls12_c00065{letter-spacing:-0.038400pt;}
.ls11_c00065{letter-spacing:-0.025600pt;}
.lsd_c00065{letter-spacing:-0.019200pt;}
.ls10_c00065{letter-spacing:-0.012800pt;}
.lsf_c00065{letter-spacing:-0.006400pt;}
.lsc_c00065{letter-spacing:0.000000pt;}
.ls3_c00065{letter-spacing:0.006400pt;}
.ls1_c00065{letter-spacing:0.012800pt;}
.ls4_c00065{letter-spacing:0.019200pt;}
.ls5_c00065{letter-spacing:0.025600pt;}
.ls0_c00065{letter-spacing:0.032000pt;}
.ls2_c00065{letter-spacing:0.038400pt;}
.ls7_c00065{letter-spacing:0.044800pt;}
.ls6_c00065{letter-spacing:0.051200pt;}
.lsa_c00065{letter-spacing:0.057600pt;}
.ls8_c00065{letter-spacing:0.064000pt;}
.ls9_c00065{letter-spacing:0.096000pt;}
.ws0_c00065{word-spacing:-16.012800pt;}
.ws1_c00065{word-spacing:-16.000000pt;}
.ws3_c00065{word-spacing:0.000000pt;}
.ws2_c00065{word-spacing:0.122912pt;}
.ws5_c00065{word-spacing:5.126400pt;}
.ws4_c00065{word-spacing:23.699200pt;}
._a_c00065{margin-left:-4.576000pt;}
._9_c00065{margin-left:-3.539200pt;}
._d_c00065{margin-left:-2.272000pt;}
._1_c00065{margin-left:-0.928000pt;}
._5_c00065{width:1.235200pt;}
._0_c00065{width:2.208000pt;}
._4_c00065{width:3.168000pt;}
._e_c00065{width:4.684800pt;}
._2_c00065{width:6.361600pt;}
._3_c00065{width:7.353600pt;}
._f_c00065{width:8.518400pt;}
._7_c00065{width:9.414400pt;}
._6_c00065{width:10.540800pt;}
._8_c00065{width:11.430400pt;}
._10_c00065{width:13.100800pt;}
._11_c00065{width:14.502400pt;}
._b_c00065{width:23.104000pt;}
._c_c00065{width:24.486400pt;}
.fs0_c00065{font-size:53.440000pt;}
.fs1_c00065{font-size:64.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y6_c00065{bottom:50.987067pt;}
.y5_c00065{bottom:69.387067pt;}
.y25_c00065{bottom:118.187067pt;}
.y24_c00065{bottom:145.787067pt;}
.y23_c00065{bottom:173.387067pt;}
.y22_c00065{bottom:200.987067pt;}
.y21_c00065{bottom:239.147067pt;}
.y20_c00065{bottom:266.827067pt;}
.y1f_c00065{bottom:294.427067pt;}
.y1e_c00065{bottom:322.027067pt;}
.y1d_c00065{bottom:349.627067pt;}
.y1c_c00065{bottom:377.227067pt;}
.y1b_c00065{bottom:404.827067pt;}
.y1a_c00065{bottom:432.427067pt;}
.y19_c00065{bottom:460.027067pt;}
.y18_c00065{bottom:498.187067pt;}
.y17_c00065{bottom:525.867067pt;}
.y16_c00065{bottom:553.467067pt;}
.y15_c00065{bottom:581.067067pt;}
.y14_c00065{bottom:619.227067pt;}
.y13_c00065{bottom:646.907067pt;}
.y12_c00065{bottom:674.507067pt;}
.y11_c00065{bottom:702.107067pt;}
.y10_c00065{bottom:729.707067pt;}
.yf_c00065{bottom:757.307067pt;}
.ye_c00065{bottom:795.467067pt;}
.yd_c00065{bottom:823.147067pt;}
.yc_c00065{bottom:850.747067pt;}
.yb_c00065{bottom:878.347067pt;}
.ya_c00065{bottom:905.947067pt;}
.y9_c00065{bottom:933.547067pt;}
.y8_c00065{bottom:971.707067pt;}
.y7_c00065{bottom:999.387067pt;}
.y4_c00065{bottom:1017.227251pt;}
.y3_c00065{bottom:1032.587243pt;}
.y2_c00065{bottom:1047.867075pt;}
.y1_c00065{bottom:1063.227067pt;}
.h1_c00065{height:47.020937pt;}
.h2_c00065{height:56.156250pt;}
.h3_c00065{height:56.312500pt;}
.h0_c00065{height:1122.666667pt;}
.w1_c00065{width:793.333333pt;}
.w0_c00065{width:793.626667pt;}
.x0_c00065{left:0.000000pt;}
.x4_c00065{left:113.440000pt;}
.x1_c00065{left:577.440000pt;}
.x3_c00065{left:664.400000pt;}
.x2_c00065{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8823229ffe97ae2113bedd18.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.095703;font-style:normal;font-weight:normal;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_346ebc44c54997286cc0c60d.woff2')format("woff");}.ff2_c00066{font-family:ff2_c00066;line-height:1.093262;font-style: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:-20.880000px;}
.v0_c00066{vertical-align:0.000000px;}
.v1_c00066{vertical-align:27.000000px;}
.ls1b_c00066{letter-spacing:-0.360000px;}
.ls23_c00066{letter-spacing:-0.270540px;}
.ls1d_c00066{letter-spacing:-0.162324px;}
.ls20_c00066{letter-spacing:-0.138276px;}
.ls10_c00066{letter-spacing:-0.102204px;}
.ls13_c00066{letter-spacing:-0.064800px;}
.ls15_c00066{letter-spacing:-0.057600px;}
.ls14_c00066{letter-spacing:-0.050400px;}
.ls1f_c00066{letter-spacing:-0.048096px;}
.ls16_c00066{letter-spacing:-0.021600px;}
.ls18_c00066{letter-spacing:-0.014400px;}
.ls1e_c00066{letter-spacing:-0.012024px;}
.ls12_c00066{letter-spacing:-0.007200px;}
.ls21_c00066{letter-spacing:-0.006012px;}
.ls11_c00066{letter-spacing:0.000000px;}
.lsc_c00066{letter-spacing:0.006012px;}
.ls1_c00066{letter-spacing:0.007200px;}
.ls2_c00066{letter-spacing:0.014400px;}
.ls0_c00066{letter-spacing:0.021600px;}
.ls7_c00066{letter-spacing:0.028800px;}
.lse_c00066{letter-spacing:0.030060px;}
.ls5_c00066{letter-spacing:0.036000px;}
.lsf_c00066{letter-spacing:0.036072px;}
.ls9_c00066{letter-spacing:0.043200px;}
.ls4_c00066{letter-spacing:0.050400px;}
.ls8_c00066{letter-spacing:0.057600px;}
.lsa_c00066{letter-spacing:0.064800px;}
.lsd_c00066{letter-spacing:0.078156px;}
.lsb_c00066{letter-spacing:0.086400px;}
.ls17_c00066{letter-spacing:0.093600px;}
.ls22_c00066{letter-spacing:0.096192px;}
.ls3_c00066{letter-spacing:0.100800px;}
.ls6_c00066{letter-spacing:0.108000px;}
.ls1a_c00066{letter-spacing:0.181944px;}
.ls19_c00066{letter-spacing:4.284000px;}
.ls1c_c00066{letter-spacing:18.000000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00066{word-spacing:-14.927796px;}
.ws0_c00066{word-spacing:-12.151944px;}
.ws1_c00066{word-spacing:-9.720000px;}
.ws4_c00066{word-spacing:0.000000px;}
.ws3_c00066{word-spacing:0.192384px;}
.ws9_c00066{word-spacing:2.059200px;}
.ws5_c00066{word-spacing:3.621600px;}
.ws7_c00066{word-spacing:3.945600px;}
.ws8_c00066{word-spacing:3.974400px;}
.wsa_c00066{word-spacing:7.164000px;}
.ws6_c00066{word-spacing:37.072800px;}
._11_c00066{margin-left:-18.237600px;}
._12_c00066{margin-left:-16.884000px;}
._d_c00066{margin-left:-5.090400px;}
._8_c00066{margin-left:-3.902400px;}
._1_c00066{margin-left:-2.901600px;}
._2_c00066{margin-left:-1.288800px;}
._0_c00066{width:1.034064px;}
._a_c00066{width:2.340000px;}
._9_c00066{width:3.578400px;}
._e_c00066{width:4.946400px;}
._f_c00066{width:7.171200px;}
._7_c00066{width:8.251200px;}
._4_c00066{width:10.044000px;}
._6_c00066{width:12.520800px;}
._5_c00066{width:13.672800px;}
._10_c00066{width:14.695200px;}
._3_c00066{width:16.185600px;}
._b_c00066{width:36.187200px;}
._c_c00066{width:37.929600px;}
.fc2_c00066{color:rgb(5,99,193);}
.fc1_c00066{color:rgb(0,0,0);}
.fc0_c00066{color:rgb(32,31,30);}
.fs3_c00066{font-size:38.880000px;}
.fs2_c00066{font-size:47.880000px;}
.fs0_c00066{font-size:60.120000px;}
.fs1_c00066{font-size:72.000000px;}
.y0_c00066{bottom:0.000000px;}
.y5_c00066{bottom:57.360450px;}
.y4_c00066{bottom:78.060450px;}
.y26_c00066{bottom:109.920657px;}
.y25_c00066{bottom:127.110468px;}
.y24_c00066{bottom:144.390459px;}
.y23_c00066{bottom:166.890450px;}
.y22_c00066{bottom:179.580450px;}
.y21_c00066{bottom:225.120450px;}
.y20_c00066{bottom:256.170450px;}
.y1f_c00066{bottom:287.220450px;}
.y1e_c00066{bottom:318.270450px;}
.y1d_c00066{bottom:361.200450px;}
.y1c_c00066{bottom:392.340450px;}
.y1b_c00066{bottom:423.390450px;}
.y1a_c00066{bottom:454.440450px;}
.y19_c00066{bottom:485.490450px;}
.y18_c00066{bottom:516.540450px;}
.y17_c00066{bottom:547.590450px;}
.y16_c00066{bottom:590.610450px;}
.y15_c00066{bottom:621.660450px;}
.y14_c00066{bottom:652.710450px;}
.y13_c00066{bottom:683.760450px;}
.y12_c00066{bottom:714.720450px;}
.y11_c00066{bottom:745.860450px;}
.y10_c00066{bottom:776.910450px;}
.yf_c00066{bottom:807.960450px;}
.ye_c00066{bottom:850.980450px;}
.yd_c00066{bottom:882.120450px;}
.yc_c00066{bottom:913.170450px;}
.yb_c00066{bottom:944.220450px;}
.ya_c00066{bottom:975.180450px;}
.y9_c00066{bottom:1006.230450px;}
.y8_c00066{bottom:1049.250450px;}
.y7_c00066{bottom:1080.390450px;}
.y6_c00066{bottom:1111.440450px;}
.y3_c00066{bottom:1132.140450px;}
.y2_c00066{bottom:1165.441023px;}
.y1_c00066{bottom:1196.040600px;}
.h5_c00066{height:34.114922px;}
.h6_c00066{height:52.751777px;}
.h1_c00066{height:52.898555px;}
.h2_c00066{height:63.175781px;}
.h3_c00066{height:63.351562px;}
.h4_c00066{height:69.011895px;}
.h0_c00066{height:1263.000000px;}
.w1_c00066{width:892.500000px;}
.w0_c00066{width:892.830000px;}
.x0_c00066{left:0.000000px;}
.x1_c00066{left:127.620000px;}
.x2_c00066{left:747.450000px;}
@media print{
.v2_c00066{vertical-align:-18.560000pt;}
.v0_c00066{vertical-align:0.000000pt;}
.v1_c00066{vertical-align:24.000000pt;}
.ls1b_c00066{letter-spacing:-0.320000pt;}
.ls23_c00066{letter-spacing:-0.240480pt;}
.ls1d_c00066{letter-spacing:-0.144288pt;}
.ls20_c00066{letter-spacing:-0.122912pt;}
.ls10_c00066{letter-spacing:-0.090848pt;}
.ls13_c00066{letter-spacing:-0.057600pt;}
.ls15_c00066{letter-spacing:-0.051200pt;}
.ls14_c00066{letter-spacing:-0.044800pt;}
.ls1f_c00066{letter-spacing:-0.042752pt;}
.ls16_c00066{letter-spacing:-0.019200pt;}
.ls18_c00066{letter-spacing:-0.012800pt;}
.ls1e_c00066{letter-spacing:-0.010688pt;}
.ls12_c00066{letter-spacing:-0.006400pt;}
.ls21_c00066{letter-spacing:-0.005344pt;}
.ls11_c00066{letter-spacing:0.000000pt;}
.lsc_c00066{letter-spacing:0.005344pt;}
.ls1_c00066{letter-spacing:0.006400pt;}
.ls2_c00066{letter-spacing:0.012800pt;}
.ls0_c00066{letter-spacing:0.019200pt;}
.ls7_c00066{letter-spacing:0.025600pt;}
.lse_c00066{letter-spacing:0.026720pt;}
.ls5_c00066{letter-spacing:0.032000pt;}
.lsf_c00066{letter-spacing:0.032064pt;}
.ls9_c00066{letter-spacing:0.038400pt;}
.ls4_c00066{letter-spacing:0.044800pt;}
.ls8_c00066{letter-spacing:0.051200pt;}
.lsa_c00066{letter-spacing:0.057600pt;}
.lsd_c00066{letter-spacing:0.069472pt;}
.lsb_c00066{letter-spacing:0.076800pt;}
.ls17_c00066{letter-spacing:0.083200pt;}
.ls22_c00066{letter-spacing:0.085504pt;}
.ls3_c00066{letter-spacing:0.089600pt;}
.ls6_c00066{letter-spacing:0.096000pt;}
.ls1a_c00066{letter-spacing:0.161728pt;}
.ls19_c00066{letter-spacing:3.808000pt;}
.ls1c_c00066{letter-spacing:16.000000pt;}
.ws2_c00066{word-spacing:-13.269152pt;}
.ws0_c00066{word-spacing:-10.801728pt;}
.ws1_c00066{word-spacing:-8.640000pt;}
.ws4_c00066{word-spacing:0.000000pt;}
.ws3_c00066{word-spacing:0.171008pt;}
.ws9_c00066{word-spacing:1.830400pt;}
.ws5_c00066{word-spacing:3.219200pt;}
.ws7_c00066{word-spacing:3.507200pt;}
.ws8_c00066{word-spacing:3.532800pt;}
.wsa_c00066{word-spacing:6.368000pt;}
.ws6_c00066{word-spacing:32.953600pt;}
._11_c00066{margin-left:-16.211200pt;}
._12_c00066{margin-left:-15.008000pt;}
._d_c00066{margin-left:-4.524800pt;}
._8_c00066{margin-left:-3.468800pt;}
._1_c00066{margin-left:-2.579200pt;}
._2_c00066{margin-left:-1.145600pt;}
._0_c00066{width:0.919168pt;}
._a_c00066{width:2.080000pt;}
._9_c00066{width:3.180800pt;}
._e_c00066{width:4.396800pt;}
._f_c00066{width:6.374400pt;}
._7_c00066{width:7.334400pt;}
._4_c00066{width:8.928000pt;}
._6_c00066{width:11.129600pt;}
._5_c00066{width:12.153600pt;}
._10_c00066{width:13.062400pt;}
._3_c00066{width:14.387200pt;}
._b_c00066{width:32.166400pt;}
._c_c00066{width:33.715200pt;}
.fs3_c00066{font-size:34.560000pt;}
.fs2_c00066{font-size:42.560000pt;}
.fs0_c00066{font-size:53.440000pt;}
.fs1_c00066{font-size:64.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y5_c00066{bottom:50.987067pt;}
.y4_c00066{bottom:69.387067pt;}
.y26_c00066{bottom:97.707251pt;}
.y25_c00066{bottom:112.987083pt;}
.y24_c00066{bottom:128.347075pt;}
.y23_c00066{bottom:148.347067pt;}
.y22_c00066{bottom:159.627067pt;}
.y21_c00066{bottom:200.107067pt;}
.y20_c00066{bottom:227.707067pt;}
.y1f_c00066{bottom:255.307067pt;}
.y1e_c00066{bottom:282.907067pt;}
.y1d_c00066{bottom:321.067067pt;}
.y1c_c00066{bottom:348.747067pt;}
.y1b_c00066{bottom:376.347067pt;}
.y1a_c00066{bottom:403.947067pt;}
.y19_c00066{bottom:431.547067pt;}
.y18_c00066{bottom:459.147067pt;}
.y17_c00066{bottom:486.747067pt;}
.y16_c00066{bottom:524.987067pt;}
.y15_c00066{bottom:552.587067pt;}
.y14_c00066{bottom:580.187067pt;}
.y13_c00066{bottom:607.787067pt;}
.y12_c00066{bottom:635.307067pt;}
.y11_c00066{bottom:662.987067pt;}
.y10_c00066{bottom:690.587067pt;}
.yf_c00066{bottom:718.187067pt;}
.ye_c00066{bottom:756.427067pt;}
.yd_c00066{bottom:784.107067pt;}
.yc_c00066{bottom:811.707067pt;}
.yb_c00066{bottom:839.307067pt;}
.ya_c00066{bottom:866.827067pt;}
.y9_c00066{bottom:894.427067pt;}
.y8_c00066{bottom:932.667067pt;}
.y7_c00066{bottom:960.347067pt;}
.y6_c00066{bottom:987.947067pt;}
.y3_c00066{bottom:1006.347067pt;}
.y2_c00066{bottom:1035.947576pt;}
.y1_c00066{bottom:1063.147200pt;}
.h5_c00066{height:30.324375pt;}
.h6_c00066{height:46.890469pt;}
.h1_c00066{height:47.020937pt;}
.h2_c00066{height:56.156250pt;}
.h3_c00066{height:56.312500pt;}
.h4_c00066{height:61.343906pt;}
.h0_c00066{height:1122.666667pt;}
.w1_c00066{width:793.333333pt;}
.w0_c00066{width:793.626667pt;}
.x0_c00066{left:0.000000pt;}
.x1_c00066{left:113.440000pt;}
.x2_c00066{left:664.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_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_f3061489e43b23e69a9195a8.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.095703;font-style:normal;font-weight:normal;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_98f1748928c08c693b17155e.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00067{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls17_c00067{letter-spacing:-0.108000px;}
.ls16_c00067{letter-spacing:-0.079200px;}
.ls18_c00067{letter-spacing:-0.064800px;}
.ls10_c00067{letter-spacing:-0.050400px;}
.lse_c00067{letter-spacing:-0.048096px;}
.ls12_c00067{letter-spacing:-0.036000px;}
.ls14_c00067{letter-spacing:-0.028800px;}
.ls15_c00067{letter-spacing:-0.021600px;}
.ls11_c00067{letter-spacing:-0.014400px;}
.ls13_c00067{letter-spacing:-0.007200px;}
.lsf_c00067{letter-spacing:0.000000px;}
.ls0_c00067{letter-spacing:0.007200px;}
.lsa_c00067{letter-spacing:0.014400px;}
.ls8_c00067{letter-spacing:0.021600px;}
.ls1_c00067{letter-spacing:0.028800px;}
.ls6_c00067{letter-spacing:0.036000px;}
.ls3_c00067{letter-spacing:0.043200px;}
.ls2_c00067{letter-spacing:0.050400px;}
.ls4_c00067{letter-spacing:0.057600px;}
.lsc_c00067{letter-spacing:0.064800px;}
.ls5_c00067{letter-spacing:0.072000px;}
.ls9_c00067{letter-spacing:0.079200px;}
.lsb_c00067{letter-spacing:0.086400px;}
.ls7_c00067{letter-spacing:0.093600px;}
.lsd_c00067{letter-spacing:0.115200px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00067{word-spacing:-18.079200px;}
.ws2_c00067{word-spacing:0.000000px;}
.ws1_c00067{word-spacing:0.138276px;}
.ws3_c00067{word-spacing:9.626400px;}
._b_c00067{margin-left:-3.340800px;}
._4_c00067{margin-left:-2.318400px;}
._2_c00067{margin-left:-1.087200px;}
._8_c00067{width:1.202400px;}
._7_c00067{width:2.520000px;}
._6_c00067{width:3.909600px;}
._5_c00067{width:5.004000px;}
._a_c00067{width:8.114400px;}
._9_c00067{width:9.374400px;}
._0_c00067{width:10.792800px;}
._1_c00067{width:11.815200px;}
._3_c00067{width:13.024800px;}
._c_c00067{width:36.676800px;}
._d_c00067{width:37.771200px;}
.fc0_c00067{color:rgb(0,0,0);}
.fs0_c00067{font-size:60.120000px;}
.fs1_c00067{font-size:72.000000px;}
.y0_c00067{bottom:0.000000px;}
.y6_c00067{bottom:57.360450px;}
.y5_c00067{bottom:78.060450px;}
.y24_c00067{bottom:175.890450px;}
.y23_c00067{bottom:207.030450px;}
.y22_c00067{bottom:238.080450px;}
.y21_c00067{bottom:269.130450px;}
.y20_c00067{bottom:300.180450px;}
.y1f_c00067{bottom:343.110450px;}
.y1e_c00067{bottom:374.250450px;}
.y1d_c00067{bottom:405.300450px;}
.y1c_c00067{bottom:436.350450px;}
.y1b_c00067{bottom:467.400450px;}
.y1a_c00067{bottom:498.450450px;}
.y19_c00067{bottom:529.500450px;}
.y18_c00067{bottom:572.430450px;}
.y17_c00067{bottom:603.570450px;}
.y16_c00067{bottom:634.620450px;}
.y15_c00067{bottom:665.670450px;}
.y14_c00067{bottom:696.720450px;}
.y13_c00067{bottom:727.770450px;}
.y12_c00067{bottom:758.820450px;}
.y11_c00067{bottom:801.750450px;}
.y10_c00067{bottom:832.890450px;}
.yf_c00067{bottom:863.940450px;}
.ye_c00067{bottom:894.990450px;}
.yd_c00067{bottom:926.040450px;}
.yc_c00067{bottom:957.090450px;}
.yb_c00067{bottom:988.140450px;}
.ya_c00067{bottom:1019.190450px;}
.y9_c00067{bottom:1062.120450px;}
.y8_c00067{bottom:1093.260450px;}
.y7_c00067{bottom:1124.310450px;}
.y4_c00067{bottom:1144.380657px;}
.y3_c00067{bottom:1161.660648px;}
.y2_c00067{bottom:1178.850459px;}
.y1_c00067{bottom:1196.130450px;}
.h1_c00067{height:52.898555px;}
.h2_c00067{height:63.175781px;}
.h3_c00067{height:63.351562px;}
.h0_c00067{height:1263.000000px;}
.w1_c00067{width:892.500000px;}
.w0_c00067{width:892.830000px;}
.x0_c00067{left:0.000000px;}
.x4_c00067{left:127.620000px;}
.x1_c00067{left:649.620000px;}
.x3_c00067{left:747.450000px;}
.x2_c00067{left:765.450198px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls17_c00067{letter-spacing:-0.096000pt;}
.ls16_c00067{letter-spacing:-0.070400pt;}
.ls18_c00067{letter-spacing:-0.057600pt;}
.ls10_c00067{letter-spacing:-0.044800pt;}
.lse_c00067{letter-spacing:-0.042752pt;}
.ls12_c00067{letter-spacing:-0.032000pt;}
.ls14_c00067{letter-spacing:-0.025600pt;}
.ls15_c00067{letter-spacing:-0.019200pt;}
.ls11_c00067{letter-spacing:-0.012800pt;}
.ls13_c00067{letter-spacing:-0.006400pt;}
.lsf_c00067{letter-spacing:0.000000pt;}
.ls0_c00067{letter-spacing:0.006400pt;}
.lsa_c00067{letter-spacing:0.012800pt;}
.ls8_c00067{letter-spacing:0.019200pt;}
.ls1_c00067{letter-spacing:0.025600pt;}
.ls6_c00067{letter-spacing:0.032000pt;}
.ls3_c00067{letter-spacing:0.038400pt;}
.ls2_c00067{letter-spacing:0.044800pt;}
.ls4_c00067{letter-spacing:0.051200pt;}
.lsc_c00067{letter-spacing:0.057600pt;}
.ls5_c00067{letter-spacing:0.064000pt;}
.ls9_c00067{letter-spacing:0.070400pt;}
.lsb_c00067{letter-spacing:0.076800pt;}
.ls7_c00067{letter-spacing:0.083200pt;}
.lsd_c00067{letter-spacing:0.102400pt;}
.ws0_c00067{word-spacing:-16.070400pt;}
.ws2_c00067{word-spacing:0.000000pt;}
.ws1_c00067{word-spacing:0.122912pt;}
.ws3_c00067{word-spacing:8.556800pt;}
._b_c00067{margin-left:-2.969600pt;}
._4_c00067{margin-left:-2.060800pt;}
._2_c00067{margin-left:-0.966400pt;}
._8_c00067{width:1.068800pt;}
._7_c00067{width:2.240000pt;}
._6_c00067{width:3.475200pt;}
._5_c00067{width:4.448000pt;}
._a_c00067{width:7.212800pt;}
._9_c00067{width:8.332800pt;}
._0_c00067{width:9.593600pt;}
._1_c00067{width:10.502400pt;}
._3_c00067{width:11.577600pt;}
._c_c00067{width:32.601600pt;}
._d_c00067{width:33.574400pt;}
.fs0_c00067{font-size:53.440000pt;}
.fs1_c00067{font-size:64.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y6_c00067{bottom:50.987067pt;}
.y5_c00067{bottom:69.387067pt;}
.y24_c00067{bottom:156.347067pt;}
.y23_c00067{bottom:184.027067pt;}
.y22_c00067{bottom:211.627067pt;}
.y21_c00067{bottom:239.227067pt;}
.y20_c00067{bottom:266.827067pt;}
.y1f_c00067{bottom:304.987067pt;}
.y1e_c00067{bottom:332.667067pt;}
.y1d_c00067{bottom:360.267067pt;}
.y1c_c00067{bottom:387.867067pt;}
.y1b_c00067{bottom:415.467067pt;}
.y1a_c00067{bottom:443.067067pt;}
.y19_c00067{bottom:470.667067pt;}
.y18_c00067{bottom:508.827067pt;}
.y17_c00067{bottom:536.507067pt;}
.y16_c00067{bottom:564.107067pt;}
.y15_c00067{bottom:591.707067pt;}
.y14_c00067{bottom:619.307067pt;}
.y13_c00067{bottom:646.907067pt;}
.y12_c00067{bottom:674.507067pt;}
.y11_c00067{bottom:712.667067pt;}
.y10_c00067{bottom:740.347067pt;}
.yf_c00067{bottom:767.947067pt;}
.ye_c00067{bottom:795.547067pt;}
.yd_c00067{bottom:823.147067pt;}
.yc_c00067{bottom:850.747067pt;}
.yb_c00067{bottom:878.347067pt;}
.ya_c00067{bottom:905.947067pt;}
.y9_c00067{bottom:944.107067pt;}
.y8_c00067{bottom:971.787067pt;}
.y7_c00067{bottom:999.387067pt;}
.y4_c00067{bottom:1017.227251pt;}
.y3_c00067{bottom:1032.587243pt;}
.y2_c00067{bottom:1047.867075pt;}
.y1_c00067{bottom:1063.227067pt;}
.h1_c00067{height:47.020937pt;}
.h2_c00067{height:56.156250pt;}
.h3_c00067{height:56.312500pt;}
.h0_c00067{height:1122.666667pt;}
.w1_c00067{width:793.333333pt;}
.w0_c00067{width:793.626667pt;}
.x0_c00067{left:0.000000pt;}
.x4_c00067{left:113.440000pt;}
.x1_c00067{left:577.440000pt;}
.x3_c00067{left:664.400000pt;}
.x2_c00067{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f6c7a3487842f4735af7669.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.095703;font-style:normal;font-weight:normal;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_ea711cd1fcf390da9540d4f8.woff2')format("woff");}.ff2_c00068{font-family:ff2_c00068;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00068{font-family:ff3_c00068;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls11_c00068{letter-spacing:-0.360000px;}
.ls12_c00068{letter-spacing:-0.316800px;}
.lsc_c00068{letter-spacing:-0.102204px;}
.ls13_c00068{letter-spacing:-0.043200px;}
.ls14_c00068{letter-spacing:-0.036000px;}
.lsf_c00068{letter-spacing:-0.021600px;}
.lse_c00068{letter-spacing:-0.007200px;}
.lsd_c00068{letter-spacing:0.000000px;}
.ls1_c00068{letter-spacing:0.007200px;}
.ls3_c00068{letter-spacing:0.014400px;}
.ls5_c00068{letter-spacing:0.021600px;}
.ls2_c00068{letter-spacing:0.028800px;}
.ls4_c00068{letter-spacing:0.036000px;}
.ls0_c00068{letter-spacing:0.043200px;}
.ls9_c00068{letter-spacing:0.050400px;}
.ls8_c00068{letter-spacing:0.057600px;}
.ls7_c00068{letter-spacing:0.064800px;}
.lsb_c00068{letter-spacing:0.072000px;}
.ls6_c00068{letter-spacing:0.079200px;}
.lsa_c00068{letter-spacing:0.093600px;}
.ls15_c00068{letter-spacing:0.813600px;}
.ls10_c00068{letter-spacing:11.160000px;}
.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:-1.497600px;}
.ws1_c00068{word-spacing:0.000000px;}
.ws0_c00068{word-spacing:0.192384px;}
._b_c00068{margin-left:-11.124000px;}
._f_c00068{margin-left:-5.191200px;}
._7_c00068{margin-left:-4.003200px;}
._8_c00068{margin-left:-2.923200px;}
._6_c00068{margin-left:-1.044000px;}
._0_c00068{width:1.034064px;}
._a_c00068{width:2.087280px;}
._9_c00068{width:3.686400px;}
._e_c00068{width:4.723200px;}
._5_c00068{width:5.752800px;}
._d_c00068{width:7.524000px;}
._1_c00068{width:9.028800px;}
._2_c00068{width:10.324800px;}
._3_c00068{width:12.398400px;}
._4_c00068{width:13.896000px;}
._c_c00068{width:15.012000px;}
.fc1_c00068{color:rgb(0,0,0);}
.fc0_c00068{color:rgb(32,31,30);}
.fs0_c00068{font-size:60.120000px;}
.fs1_c00068{font-size:72.000000px;}
.y0_c00068{bottom:0.000000px;}
.y5_c00068{bottom:57.360450px;}
.y4_c00068{bottom:78.060450px;}
.y24_c00068{bottom:131.880450px;}
.y23_c00068{bottom:163.020450px;}
.y22_c00068{bottom:194.070450px;}
.y21_c00068{bottom:225.120450px;}
.y20_c00068{bottom:256.170450px;}
.y1f_c00068{bottom:299.100450px;}
.y1e_c00068{bottom:330.240450px;}
.y1d_c00068{bottom:361.290450px;}
.y1c_c00068{bottom:392.340450px;}
.y1b_c00068{bottom:423.390450px;}
.y1a_c00068{bottom:454.440450px;}
.y19_c00068{bottom:485.490450px;}
.y18_c00068{bottom:516.540450px;}
.y17_c00068{bottom:547.590450px;}
.y16_c00068{bottom:590.610450px;}
.y15_c00068{bottom:621.660450px;}
.y14_c00068{bottom:652.710450px;}
.y13_c00068{bottom:695.730450px;}
.y12_c00068{bottom:726.870450px;}
.y11_c00068{bottom:757.920450px;}
.y10_c00068{bottom:788.970450px;}
.yf_c00068{bottom:820.020450px;}
.ye_c00068{bottom:851.070450px;}
.yd_c00068{bottom:882.120450px;}
.yc_c00068{bottom:925.050450px;}
.yb_c00068{bottom:956.190450px;}
.ya_c00068{bottom:987.240450px;}
.y9_c00068{bottom:1018.290450px;}
.y8_c00068{bottom:1049.340450px;}
.y7_c00068{bottom:1080.390450px;}
.y6_c00068{bottom:1111.440450px;}
.y3_c00068{bottom:1132.140450px;}
.y2_c00068{bottom:1165.441023px;}
.y1_c00068{bottom:1196.040600px;}
.h1_c00068{height:52.898555px;}
.h2_c00068{height:63.175781px;}
.h4_c00068{height:63.351562px;}
.h3_c00068{height:63.949219px;}
.h0_c00068{height:1263.000000px;}
.w1_c00068{width:892.500000px;}
.w0_c00068{width:892.830000px;}
.x0_c00068{left:0.000000px;}
.x1_c00068{left:127.620000px;}
.x2_c00068{left:747.450000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls11_c00068{letter-spacing:-0.320000pt;}
.ls12_c00068{letter-spacing:-0.281600pt;}
.lsc_c00068{letter-spacing:-0.090848pt;}
.ls13_c00068{letter-spacing:-0.038400pt;}
.ls14_c00068{letter-spacing:-0.032000pt;}
.lsf_c00068{letter-spacing:-0.019200pt;}
.lse_c00068{letter-spacing:-0.006400pt;}
.lsd_c00068{letter-spacing:0.000000pt;}
.ls1_c00068{letter-spacing:0.006400pt;}
.ls3_c00068{letter-spacing:0.012800pt;}
.ls5_c00068{letter-spacing:0.019200pt;}
.ls2_c00068{letter-spacing:0.025600pt;}
.ls4_c00068{letter-spacing:0.032000pt;}
.ls0_c00068{letter-spacing:0.038400pt;}
.ls9_c00068{letter-spacing:0.044800pt;}
.ls8_c00068{letter-spacing:0.051200pt;}
.ls7_c00068{letter-spacing:0.057600pt;}
.lsb_c00068{letter-spacing:0.064000pt;}
.ls6_c00068{letter-spacing:0.070400pt;}
.lsa_c00068{letter-spacing:0.083200pt;}
.ls15_c00068{letter-spacing:0.723200pt;}
.ls10_c00068{letter-spacing:9.920000pt;}
.ws2_c00068{word-spacing:-1.331200pt;}
.ws1_c00068{word-spacing:0.000000pt;}
.ws0_c00068{word-spacing:0.171008pt;}
._b_c00068{margin-left:-9.888000pt;}
._f_c00068{margin-left:-4.614400pt;}
._7_c00068{margin-left:-3.558400pt;}
._8_c00068{margin-left:-2.598400pt;}
._6_c00068{margin-left:-0.928000pt;}
._0_c00068{width:0.919168pt;}
._a_c00068{width:1.855360pt;}
._9_c00068{width:3.276800pt;}
._e_c00068{width:4.198400pt;}
._5_c00068{width:5.113600pt;}
._d_c00068{width:6.688000pt;}
._1_c00068{width:8.025600pt;}
._2_c00068{width:9.177600pt;}
._3_c00068{width:11.020800pt;}
._4_c00068{width:12.352000pt;}
._c_c00068{width:13.344000pt;}
.fs0_c00068{font-size:53.440000pt;}
.fs1_c00068{font-size:64.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y5_c00068{bottom:50.987067pt;}
.y4_c00068{bottom:69.387067pt;}
.y24_c00068{bottom:117.227067pt;}
.y23_c00068{bottom:144.907067pt;}
.y22_c00068{bottom:172.507067pt;}
.y21_c00068{bottom:200.107067pt;}
.y20_c00068{bottom:227.707067pt;}
.y1f_c00068{bottom:265.867067pt;}
.y1e_c00068{bottom:293.547067pt;}
.y1d_c00068{bottom:321.147067pt;}
.y1c_c00068{bottom:348.747067pt;}
.y1b_c00068{bottom:376.347067pt;}
.y1a_c00068{bottom:403.947067pt;}
.y19_c00068{bottom:431.547067pt;}
.y18_c00068{bottom:459.147067pt;}
.y17_c00068{bottom:486.747067pt;}
.y16_c00068{bottom:524.987067pt;}
.y15_c00068{bottom:552.587067pt;}
.y14_c00068{bottom:580.187067pt;}
.y13_c00068{bottom:618.427067pt;}
.y12_c00068{bottom:646.107067pt;}
.y11_c00068{bottom:673.707067pt;}
.y10_c00068{bottom:701.307067pt;}
.yf_c00068{bottom:728.907067pt;}
.ye_c00068{bottom:756.507067pt;}
.yd_c00068{bottom:784.107067pt;}
.yc_c00068{bottom:822.267067pt;}
.yb_c00068{bottom:849.947067pt;}
.ya_c00068{bottom:877.547067pt;}
.y9_c00068{bottom:905.147067pt;}
.y8_c00068{bottom:932.747067pt;}
.y7_c00068{bottom:960.347067pt;}
.y6_c00068{bottom:987.947067pt;}
.y3_c00068{bottom:1006.347067pt;}
.y2_c00068{bottom:1035.947576pt;}
.y1_c00068{bottom:1063.147200pt;}
.h1_c00068{height:47.020937pt;}
.h2_c00068{height:56.156250pt;}
.h4_c00068{height:56.312500pt;}
.h3_c00068{height:56.843750pt;}
.h0_c00068{height:1122.666667pt;}
.w1_c00068{width:793.333333pt;}
.w0_c00068{width:793.626667pt;}
.x0_c00068{left:0.000000pt;}
.x1_c00068{left:113.440000pt;}
.x2_c00068{left:664.400000pt;}
}





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

.ir_c00069:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00069;src:url('chunks/assets/font_67a624802e9ba9f518d7ebe7.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.095703;font-style:normal;font-weight:normal;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_212940d6ac7fa4c1008ee44d.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.093262;font-style: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);}
.v0_c00069{vertical-align:0.000000px;}
.lsd_c00069{letter-spacing:-0.048096px;}
.lsf_c00069{letter-spacing:-0.028800px;}
.ls12_c00069{letter-spacing:-0.021600px;}
.ls10_c00069{letter-spacing:-0.014400px;}
.ls11_c00069{letter-spacing:-0.007200px;}
.lse_c00069{letter-spacing:0.000000px;}
.ls1_c00069{letter-spacing:0.007200px;}
.ls2_c00069{letter-spacing:0.014400px;}
.ls9_c00069{letter-spacing:0.021600px;}
.ls5_c00069{letter-spacing:0.028800px;}
.ls3_c00069{letter-spacing:0.036000px;}
.ls4_c00069{letter-spacing:0.043200px;}
.ls0_c00069{letter-spacing:0.050400px;}
.ls6_c00069{letter-spacing:0.057600px;}
.lsa_c00069{letter-spacing:0.064800px;}
.lsb_c00069{letter-spacing:0.072000px;}
.ls8_c00069{letter-spacing:0.079200px;}
.lsc_c00069{letter-spacing:0.086400px;}
.ls7_c00069{letter-spacing:0.115200px;}
.ls13_c00069{letter-spacing:5.493600px;}
.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;}
}
.ws2_c00069{word-spacing:-3.938400px;}
.ws1_c00069{word-spacing:0.000000px;}
.ws0_c00069{word-spacing:0.138276px;}
._e_c00069{margin-left:-6.451200px;}
._2_c00069{margin-left:-4.795200px;}
._1_c00069{margin-left:-3.585600px;}
._3_c00069{margin-left:-2.584800px;}
._0_c00069{margin-left:-1.123200px;}
._5_c00069{width:1.029600px;}
._6_c00069{width:2.325600px;}
._a_c00069{width:3.355200px;}
._4_c00069{width:4.665600px;}
._9_c00069{width:5.745600px;}
._c_c00069{width:7.171200px;}
._b_c00069{width:19.094400px;}
._d_c00069{width:20.160000px;}
._7_c00069{width:21.974400px;}
._8_c00069{width:22.982400px;}
.fc0_c00069{color:rgb(0,0,0);}
.fs0_c00069{font-size:60.120000px;}
.fs1_c00069{font-size:72.000000px;}
.y0_c00069{bottom:0.000000px;}
.y6_c00069{bottom:57.360450px;}
.y5_c00069{bottom:78.060450px;}
.y26_c00069{bottom:113.790450px;}
.y25_c00069{bottom:144.930450px;}
.y24_c00069{bottom:175.980450px;}
.y23_c00069{bottom:207.030450px;}
.y22_c00069{bottom:238.080450px;}
.y21_c00069{bottom:269.130450px;}
.y20_c00069{bottom:312.060450px;}
.y1f_c00069{bottom:343.200450px;}
.y1e_c00069{bottom:374.250450px;}
.y1d_c00069{bottom:405.300450px;}
.y1c_c00069{bottom:436.350450px;}
.y1b_c00069{bottom:467.400450px;}
.y1a_c00069{bottom:498.450450px;}
.y19_c00069{bottom:541.380450px;}
.y18_c00069{bottom:572.520450px;}
.y17_c00069{bottom:603.570450px;}
.y16_c00069{bottom:634.620450px;}
.y15_c00069{bottom:665.670450px;}
.y14_c00069{bottom:696.720450px;}
.y13_c00069{bottom:727.770450px;}
.y12_c00069{bottom:758.820450px;}
.y11_c00069{bottom:789.870450px;}
.y10_c00069{bottom:832.800450px;}
.yf_c00069{bottom:863.940450px;}
.ye_c00069{bottom:894.990450px;}
.yd_c00069{bottom:926.040450px;}
.yc_c00069{bottom:957.090450px;}
.yb_c00069{bottom:1000.110450px;}
.ya_c00069{bottom:1031.160450px;}
.y9_c00069{bottom:1062.210450px;}
.y8_c00069{bottom:1093.260450px;}
.y7_c00069{bottom:1124.310450px;}
.y4_c00069{bottom:1144.380657px;}
.y3_c00069{bottom:1161.660648px;}
.y2_c00069{bottom:1178.850459px;}
.y1_c00069{bottom:1196.130450px;}
.h1_c00069{height:52.898555px;}
.h2_c00069{height:63.175781px;}
.h3_c00069{height:63.351562px;}
.h0_c00069{height:1263.000000px;}
.w1_c00069{width:892.500000px;}
.w0_c00069{width:892.830000px;}
.x0_c00069{left:0.000000px;}
.x4_c00069{left:127.620000px;}
.x1_c00069{left:649.620000px;}
.x3_c00069{left:747.450000px;}
.x2_c00069{left:765.450198px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.lsd_c00069{letter-spacing:-0.042752pt;}
.lsf_c00069{letter-spacing:-0.025600pt;}
.ls12_c00069{letter-spacing:-0.019200pt;}
.ls10_c00069{letter-spacing:-0.012800pt;}
.ls11_c00069{letter-spacing:-0.006400pt;}
.lse_c00069{letter-spacing:0.000000pt;}
.ls1_c00069{letter-spacing:0.006400pt;}
.ls2_c00069{letter-spacing:0.012800pt;}
.ls9_c00069{letter-spacing:0.019200pt;}
.ls5_c00069{letter-spacing:0.025600pt;}
.ls3_c00069{letter-spacing:0.032000pt;}
.ls4_c00069{letter-spacing:0.038400pt;}
.ls0_c00069{letter-spacing:0.044800pt;}
.ls6_c00069{letter-spacing:0.051200pt;}
.lsa_c00069{letter-spacing:0.057600pt;}
.lsb_c00069{letter-spacing:0.064000pt;}
.ls8_c00069{letter-spacing:0.070400pt;}
.lsc_c00069{letter-spacing:0.076800pt;}
.ls7_c00069{letter-spacing:0.102400pt;}
.ls13_c00069{letter-spacing:4.883200pt;}
.ws2_c00069{word-spacing:-3.500800pt;}
.ws1_c00069{word-spacing:0.000000pt;}
.ws0_c00069{word-spacing:0.122912pt;}
._e_c00069{margin-left:-5.734400pt;}
._2_c00069{margin-left:-4.262400pt;}
._1_c00069{margin-left:-3.187200pt;}
._3_c00069{margin-left:-2.297600pt;}
._0_c00069{margin-left:-0.998400pt;}
._5_c00069{width:0.915200pt;}
._6_c00069{width:2.067200pt;}
._a_c00069{width:2.982400pt;}
._4_c00069{width:4.147200pt;}
._9_c00069{width:5.107200pt;}
._c_c00069{width:6.374400pt;}
._b_c00069{width:16.972800pt;}
._d_c00069{width:17.920000pt;}
._7_c00069{width:19.532800pt;}
._8_c00069{width:20.428800pt;}
.fs0_c00069{font-size:53.440000pt;}
.fs1_c00069{font-size:64.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y6_c00069{bottom:50.987067pt;}
.y5_c00069{bottom:69.387067pt;}
.y26_c00069{bottom:101.147067pt;}
.y25_c00069{bottom:128.827067pt;}
.y24_c00069{bottom:156.427067pt;}
.y23_c00069{bottom:184.027067pt;}
.y22_c00069{bottom:211.627067pt;}
.y21_c00069{bottom:239.227067pt;}
.y20_c00069{bottom:277.387067pt;}
.y1f_c00069{bottom:305.067067pt;}
.y1e_c00069{bottom:332.667067pt;}
.y1d_c00069{bottom:360.267067pt;}
.y1c_c00069{bottom:387.867067pt;}
.y1b_c00069{bottom:415.467067pt;}
.y1a_c00069{bottom:443.067067pt;}
.y19_c00069{bottom:481.227067pt;}
.y18_c00069{bottom:508.907067pt;}
.y17_c00069{bottom:536.507067pt;}
.y16_c00069{bottom:564.107067pt;}
.y15_c00069{bottom:591.707067pt;}
.y14_c00069{bottom:619.307067pt;}
.y13_c00069{bottom:646.907067pt;}
.y12_c00069{bottom:674.507067pt;}
.y11_c00069{bottom:702.107067pt;}
.y10_c00069{bottom:740.267067pt;}
.yf_c00069{bottom:767.947067pt;}
.ye_c00069{bottom:795.547067pt;}
.yd_c00069{bottom:823.147067pt;}
.yc_c00069{bottom:850.747067pt;}
.yb_c00069{bottom:888.987067pt;}
.ya_c00069{bottom:916.587067pt;}
.y9_c00069{bottom:944.187067pt;}
.y8_c00069{bottom:971.787067pt;}
.y7_c00069{bottom:999.387067pt;}
.y4_c00069{bottom:1017.227251pt;}
.y3_c00069{bottom:1032.587243pt;}
.y2_c00069{bottom:1047.867075pt;}
.y1_c00069{bottom:1063.227067pt;}
.h1_c00069{height:47.020937pt;}
.h2_c00069{height:56.156250pt;}
.h3_c00069{height:56.312500pt;}
.h0_c00069{height:1122.666667pt;}
.w1_c00069{width:793.333333pt;}
.w0_c00069{width:793.626667pt;}
.x0_c00069{left:0.000000pt;}
.x4_c00069{left:113.440000pt;}
.x1_c00069{left:577.440000pt;}
.x3_c00069{left:664.400000pt;}
.x2_c00069{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed0a4804eabd6f38b1c86074.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.095703;font-style:normal;font-weight:normal;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_21c98e6b1306808388ff64e7.woff2')format("woff");}.ff2_c00070{font-family:ff2_c00070;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00070{font-family:ff3_c00070;line-height:1.104004;font-style: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;}
.ls17_c00070{letter-spacing:-2.520000px;}
.ls13_c00070{letter-spacing:-0.208800px;}
.lsd_c00070{letter-spacing:-0.102204px;}
.ls18_c00070{letter-spacing:-0.057600px;}
.ls12_c00070{letter-spacing:-0.050400px;}
.lsf_c00070{letter-spacing:-0.036000px;}
.ls15_c00070{letter-spacing:-0.014400px;}
.ls11_c00070{letter-spacing:-0.007200px;}
.lse_c00070{letter-spacing:0.000000px;}
.ls2_c00070{letter-spacing:0.007200px;}
.ls0_c00070{letter-spacing:0.014400px;}
.ls5_c00070{letter-spacing:0.021600px;}
.ls9_c00070{letter-spacing:0.028800px;}
.ls4_c00070{letter-spacing:0.036000px;}
.ls1_c00070{letter-spacing:0.043200px;}
.ls3_c00070{letter-spacing:0.050400px;}
.ls7_c00070{letter-spacing:0.057600px;}
.lsc_c00070{letter-spacing:0.064800px;}
.lsa_c00070{letter-spacing:0.072000px;}
.ls6_c00070{letter-spacing:0.079200px;}
.ls8_c00070{letter-spacing:0.086400px;}
.ls16_c00070{letter-spacing:2.520000px;}
.ls10_c00070{letter-spacing:2.880000px;}
.ls14_c00070{letter-spacing:14.760000px;}
.lsb_c00070{letter-spacing:15.120000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00070{word-spacing:-18.043200px;}
.ws6_c00070{word-spacing:-0.403200px;}
.ws5_c00070{word-spacing:-0.086400px;}
.ws2_c00070{word-spacing:0.000000px;}
.ws1_c00070{word-spacing:0.192384px;}
.ws3_c00070{word-spacing:4.665600px;}
.ws4_c00070{word-spacing:4.680000px;}
.ws7_c00070{word-spacing:10.771200px;}
._d_c00070{margin-left:-15.379200px;}
._e_c00070{margin-left:-13.896000px;}
._f_c00070{margin-left:-5.126400px;}
._5_c00070{margin-left:-3.916800px;}
._3_c00070{margin-left:-2.887200px;}
._4_c00070{margin-left:-1.108800px;}
._0_c00070{width:1.034064px;}
._b_c00070{width:2.217600px;}
._2_c00070{width:3.369600px;}
._1_c00070{width:4.680000px;}
._6_c00070{width:6.084000px;}
._7_c00070{width:7.372800px;}
._a_c00070{width:8.784000px;}
._10_c00070{width:10.771200px;}
._c_c00070{width:13.737600px;}
._8_c00070{width:14.875200px;}
._9_c00070{width:16.231536px;}
.fc1_c00070{color:rgb(0,0,0);}
.fc0_c00070{color:rgb(32,31,30);}
.fs0_c00070{font-size:60.120000px;}
.fs1_c00070{font-size:72.000000px;}
.y0_c00070{bottom:0.000000px;}
.y5_c00070{bottom:57.360450px;}
.y4_c00070{bottom:78.060450px;}
.y24_c00070{bottom:119.910450px;}
.y23_c00070{bottom:151.050450px;}
.y22_c00070{bottom:182.100450px;}
.y21_c00070{bottom:225.030450px;}
.y20_c00070{bottom:256.170450px;}
.y1f_c00070{bottom:287.220450px;}
.y1e_c00070{bottom:330.150450px;}
.y1d_c00070{bottom:361.290450px;}
.y1c_c00070{bottom:392.340450px;}
.y1b_c00070{bottom:423.390450px;}
.y1a_c00070{bottom:454.440450px;}
.y19_c00070{bottom:485.490450px;}
.y18_c00070{bottom:528.510450px;}
.y17_c00070{bottom:559.650450px;}
.y16_c00070{bottom:590.700450px;}
.y15_c00070{bottom:621.660450px;}
.y14_c00070{bottom:652.710450px;}
.y13_c00070{bottom:683.760450px;}
.y12_c00070{bottom:714.810450px;}
.y11_c00070{bottom:745.860450px;}
.y10_c00070{bottom:788.880450px;}
.yf_c00070{bottom:820.020450px;}
.ye_c00070{bottom:851.070450px;}
.yd_c00070{bottom:882.120450px;}
.yc_c00070{bottom:913.170450px;}
.yb_c00070{bottom:944.220450px;}
.ya_c00070{bottom:987.150450px;}
.y9_c00070{bottom:1018.290450px;}
.y8_c00070{bottom:1049.340450px;}
.y7_c00070{bottom:1080.390450px;}
.y6_c00070{bottom:1111.440450px;}
.y3_c00070{bottom:1132.140450px;}
.y2_c00070{bottom:1165.441023px;}
.y1_c00070{bottom:1196.040600px;}
.h1_c00070{height:52.898555px;}
.h2_c00070{height:63.175781px;}
.h4_c00070{height:63.351562px;}
.h3_c00070{height:63.949219px;}
.h0_c00070{height:1263.000000px;}
.w1_c00070{width:892.500000px;}
.w0_c00070{width:892.830000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:127.620000px;}
.x2_c00070{left:747.450000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls17_c00070{letter-spacing:-2.240000pt;}
.ls13_c00070{letter-spacing:-0.185600pt;}
.lsd_c00070{letter-spacing:-0.090848pt;}
.ls18_c00070{letter-spacing:-0.051200pt;}
.ls12_c00070{letter-spacing:-0.044800pt;}
.lsf_c00070{letter-spacing:-0.032000pt;}
.ls15_c00070{letter-spacing:-0.012800pt;}
.ls11_c00070{letter-spacing:-0.006400pt;}
.lse_c00070{letter-spacing:0.000000pt;}
.ls2_c00070{letter-spacing:0.006400pt;}
.ls0_c00070{letter-spacing:0.012800pt;}
.ls5_c00070{letter-spacing:0.019200pt;}
.ls9_c00070{letter-spacing:0.025600pt;}
.ls4_c00070{letter-spacing:0.032000pt;}
.ls1_c00070{letter-spacing:0.038400pt;}
.ls3_c00070{letter-spacing:0.044800pt;}
.ls7_c00070{letter-spacing:0.051200pt;}
.lsc_c00070{letter-spacing:0.057600pt;}
.lsa_c00070{letter-spacing:0.064000pt;}
.ls6_c00070{letter-spacing:0.070400pt;}
.ls8_c00070{letter-spacing:0.076800pt;}
.ls16_c00070{letter-spacing:2.240000pt;}
.ls10_c00070{letter-spacing:2.560000pt;}
.ls14_c00070{letter-spacing:13.120000pt;}
.lsb_c00070{letter-spacing:13.440000pt;}
.ws0_c00070{word-spacing:-16.038400pt;}
.ws6_c00070{word-spacing:-0.358400pt;}
.ws5_c00070{word-spacing:-0.076800pt;}
.ws2_c00070{word-spacing:0.000000pt;}
.ws1_c00070{word-spacing:0.171008pt;}
.ws3_c00070{word-spacing:4.147200pt;}
.ws4_c00070{word-spacing:4.160000pt;}
.ws7_c00070{word-spacing:9.574400pt;}
._d_c00070{margin-left:-13.670400pt;}
._e_c00070{margin-left:-12.352000pt;}
._f_c00070{margin-left:-4.556800pt;}
._5_c00070{margin-left:-3.481600pt;}
._3_c00070{margin-left:-2.566400pt;}
._4_c00070{margin-left:-0.985600pt;}
._0_c00070{width:0.919168pt;}
._b_c00070{width:1.971200pt;}
._2_c00070{width:2.995200pt;}
._1_c00070{width:4.160000pt;}
._6_c00070{width:5.408000pt;}
._7_c00070{width:6.553600pt;}
._a_c00070{width:7.808000pt;}
._10_c00070{width:9.574400pt;}
._c_c00070{width:12.211200pt;}
._8_c00070{width:13.222400pt;}
._9_c00070{width:14.428032pt;}
.fs0_c00070{font-size:53.440000pt;}
.fs1_c00070{font-size:64.000000pt;}
.y0_c00070{bottom:0.000000pt;}
.y5_c00070{bottom:50.987067pt;}
.y4_c00070{bottom:69.387067pt;}
.y24_c00070{bottom:106.587067pt;}
.y23_c00070{bottom:134.267067pt;}
.y22_c00070{bottom:161.867067pt;}
.y21_c00070{bottom:200.027067pt;}
.y20_c00070{bottom:227.707067pt;}
.y1f_c00070{bottom:255.307067pt;}
.y1e_c00070{bottom:293.467067pt;}
.y1d_c00070{bottom:321.147067pt;}
.y1c_c00070{bottom:348.747067pt;}
.y1b_c00070{bottom:376.347067pt;}
.y1a_c00070{bottom:403.947067pt;}
.y19_c00070{bottom:431.547067pt;}
.y18_c00070{bottom:469.787067pt;}
.y17_c00070{bottom:497.467067pt;}
.y16_c00070{bottom:525.067067pt;}
.y15_c00070{bottom:552.587067pt;}
.y14_c00070{bottom:580.187067pt;}
.y13_c00070{bottom:607.787067pt;}
.y12_c00070{bottom:635.387067pt;}
.y11_c00070{bottom:662.987067pt;}
.y10_c00070{bottom:701.227067pt;}
.yf_c00070{bottom:728.907067pt;}
.ye_c00070{bottom:756.507067pt;}
.yd_c00070{bottom:784.107067pt;}
.yc_c00070{bottom:811.707067pt;}
.yb_c00070{bottom:839.307067pt;}
.ya_c00070{bottom:877.467067pt;}
.y9_c00070{bottom:905.147067pt;}
.y8_c00070{bottom:932.747067pt;}
.y7_c00070{bottom:960.347067pt;}
.y6_c00070{bottom:987.947067pt;}
.y3_c00070{bottom:1006.347067pt;}
.y2_c00070{bottom:1035.947576pt;}
.y1_c00070{bottom:1063.147200pt;}
.h1_c00070{height:47.020937pt;}
.h2_c00070{height:56.156250pt;}
.h4_c00070{height:56.312500pt;}
.h3_c00070{height:56.843750pt;}
.h0_c00070{height:1122.666667pt;}
.w1_c00070{width:793.333333pt;}
.w0_c00070{width:793.626667pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:113.440000pt;}
.x2_c00070{left:664.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_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_f6e140fc61a83ba12c1d6c82.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.095703;font-style:normal;font-weight:normal;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_6d08de0b93ad4c2b50ebf809.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00071;src:url('chunks/assets/font_e538c249a1bc4f11bcea1609.woff2')format("woff");}.ff3_c00071{font-family:ff3_c00071;line-height:1.104004;font-style: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;}
.ls13_c00071{letter-spacing:-0.086400px;}
.ls19_c00071{letter-spacing:-0.072000px;}
.ls16_c00071{letter-spacing:-0.064800px;}
.ls14_c00071{letter-spacing:-0.050400px;}
.lse_c00071{letter-spacing:-0.048096px;}
.ls12_c00071{letter-spacing:-0.043200px;}
.ls10_c00071{letter-spacing:-0.021600px;}
.ls17_c00071{letter-spacing:-0.014400px;}
.ls11_c00071{letter-spacing:-0.007200px;}
.lsf_c00071{letter-spacing:0.000000px;}
.ls4_c00071{letter-spacing:0.007200px;}
.ls1_c00071{letter-spacing:0.014400px;}
.ls5_c00071{letter-spacing:0.021600px;}
.ls3_c00071{letter-spacing:0.028800px;}
.ls2_c00071{letter-spacing:0.036000px;}
.lsa_c00071{letter-spacing:0.043200px;}
.ls7_c00071{letter-spacing:0.050400px;}
.lsb_c00071{letter-spacing:0.057600px;}
.lsc_c00071{letter-spacing:0.067104px;}
.ls0_c00071{letter-spacing:0.079200px;}
.ls9_c00071{letter-spacing:0.086400px;}
.ls6_c00071{letter-spacing:0.100800px;}
.lsd_c00071{letter-spacing:0.108000px;}
.ls8_c00071{letter-spacing:0.129600px;}
.ls15_c00071{letter-spacing:3.240000px;}
.ls18_c00071{letter-spacing:14.580000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00071{word-spacing:-18.086400px;}
.ws2_c00071{word-spacing:-18.050400px;}
.ws1_c00071{word-spacing:-17.949600px;}
.ws4_c00071{word-spacing:0.000000px;}
.ws3_c00071{word-spacing:0.138276px;}
.ws5_c00071{word-spacing:14.443200px;}
._f_c00071{margin-left:-15.343200px;}
._e_c00071{margin-left:-13.932000px;}
._7_c00071{margin-left:-5.292000px;}
._2_c00071{margin-left:-4.147200px;}
._3_c00071{margin-left:-3.038400px;}
._4_c00071{margin-left:-2.030400px;}
._1_c00071{margin-left:-1.015200px;}
._b_c00071{width:1.051200px;}
._5_c00071{width:3.211200px;}
._6_c00071{width:4.212000px;}
._0_c00071{width:7.480800px;}
._9_c00071{width:8.726400px;}
._8_c00071{width:9.792000px;}
._12_c00071{width:11.109600px;}
._13_c00071{width:12.196800px;}
._d_c00071{width:13.478400px;}
._a_c00071{width:15.350400px;}
._c_c00071{width:16.394400px;}
._10_c00071{width:29.296800px;}
._11_c00071{width:30.391200px;}
.fc0_c00071{color:rgb(0,0,0);}
.fs0_c00071{font-size:60.120000px;}
.fs1_c00071{font-size:72.000000px;}
.fs2_c00071{font-size:83.880000px;}
.y0_c00071{bottom:0.000000px;}
.y6_c00071{bottom:57.360450px;}
.y5_c00071{bottom:78.060450px;}
.y24_c00071{bottom:131.430450px;}
.y23_c00071{bottom:162.570450px;}
.y22_c00071{bottom:193.620450px;}
.y21_c00071{bottom:224.670450px;}
.y20_c00071{bottom:267.600450px;}
.y1f_c00071{bottom:298.740450px;}
.y1e_c00071{bottom:329.790450px;}
.y1d_c00071{bottom:360.840450px;}
.y1c_c00071{bottom:395.130450px;}
.y1b_c00071{bottom:428.340600px;}
.y1a_c00071{bottom:474.330450px;}
.y19_c00071{bottom:517.440450px;}
.y18_c00071{bottom:548.580450px;}
.y17_c00071{bottom:579.630450px;}
.y16_c00071{bottom:622.560450px;}
.y15_c00071{bottom:653.700450px;}
.y14_c00071{bottom:684.750450px;}
.y13_c00071{bottom:715.800450px;}
.y12_c00071{bottom:758.640450px;}
.y11_c00071{bottom:789.870450px;}
.y10_c00071{bottom:820.920450px;}
.yf_c00071{bottom:863.850450px;}
.ye_c00071{bottom:894.990450px;}
.yd_c00071{bottom:926.040450px;}
.yc_c00071{bottom:957.090450px;}
.yb_c00071{bottom:1000.110450px;}
.ya_c00071{bottom:1031.160450px;}
.y9_c00071{bottom:1062.210450px;}
.y8_c00071{bottom:1093.260450px;}
.y7_c00071{bottom:1124.310450px;}
.y4_c00071{bottom:1144.380657px;}
.y3_c00071{bottom:1161.660648px;}
.y2_c00071{bottom:1178.850459px;}
.y1_c00071{bottom:1196.130450px;}
.h1_c00071{height:52.898555px;}
.h2_c00071{height:63.175781px;}
.h3_c00071{height:63.351562px;}
.h5_c00071{height:63.949219px;}
.h4_c00071{height:74.500840px;}
.h0_c00071{height:1263.000000px;}
.w1_c00071{width:892.500000px;}
.w0_c00071{width:892.830000px;}
.x0_c00071{left:0.000000px;}
.x4_c00071{left:127.620000px;}
.x1_c00071{left:649.620000px;}
.x3_c00071{left:747.450000px;}
.x2_c00071{left:765.450198px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls13_c00071{letter-spacing:-0.076800pt;}
.ls19_c00071{letter-spacing:-0.064000pt;}
.ls16_c00071{letter-spacing:-0.057600pt;}
.ls14_c00071{letter-spacing:-0.044800pt;}
.lse_c00071{letter-spacing:-0.042752pt;}
.ls12_c00071{letter-spacing:-0.038400pt;}
.ls10_c00071{letter-spacing:-0.019200pt;}
.ls17_c00071{letter-spacing:-0.012800pt;}
.ls11_c00071{letter-spacing:-0.006400pt;}
.lsf_c00071{letter-spacing:0.000000pt;}
.ls4_c00071{letter-spacing:0.006400pt;}
.ls1_c00071{letter-spacing:0.012800pt;}
.ls5_c00071{letter-spacing:0.019200pt;}
.ls3_c00071{letter-spacing:0.025600pt;}
.ls2_c00071{letter-spacing:0.032000pt;}
.lsa_c00071{letter-spacing:0.038400pt;}
.ls7_c00071{letter-spacing:0.044800pt;}
.lsb_c00071{letter-spacing:0.051200pt;}
.lsc_c00071{letter-spacing:0.059648pt;}
.ls0_c00071{letter-spacing:0.070400pt;}
.ls9_c00071{letter-spacing:0.076800pt;}
.ls6_c00071{letter-spacing:0.089600pt;}
.lsd_c00071{letter-spacing:0.096000pt;}
.ls8_c00071{letter-spacing:0.115200pt;}
.ls15_c00071{letter-spacing:2.880000pt;}
.ls18_c00071{letter-spacing:12.960000pt;}
.ws0_c00071{word-spacing:-16.076800pt;}
.ws2_c00071{word-spacing:-16.044800pt;}
.ws1_c00071{word-spacing:-15.955200pt;}
.ws4_c00071{word-spacing:0.000000pt;}
.ws3_c00071{word-spacing:0.122912pt;}
.ws5_c00071{word-spacing:12.838400pt;}
._f_c00071{margin-left:-13.638400pt;}
._e_c00071{margin-left:-12.384000pt;}
._7_c00071{margin-left:-4.704000pt;}
._2_c00071{margin-left:-3.686400pt;}
._3_c00071{margin-left:-2.700800pt;}
._4_c00071{margin-left:-1.804800pt;}
._1_c00071{margin-left:-0.902400pt;}
._b_c00071{width:0.934400pt;}
._5_c00071{width:2.854400pt;}
._6_c00071{width:3.744000pt;}
._0_c00071{width:6.649600pt;}
._9_c00071{width:7.756800pt;}
._8_c00071{width:8.704000pt;}
._12_c00071{width:9.875200pt;}
._13_c00071{width:10.841600pt;}
._d_c00071{width:11.980800pt;}
._a_c00071{width:13.644800pt;}
._c_c00071{width:14.572800pt;}
._10_c00071{width:26.041600pt;}
._11_c00071{width:27.014400pt;}
.fs0_c00071{font-size:53.440000pt;}
.fs1_c00071{font-size:64.000000pt;}
.fs2_c00071{font-size:74.560000pt;}
.y0_c00071{bottom:0.000000pt;}
.y6_c00071{bottom:50.987067pt;}
.y5_c00071{bottom:69.387067pt;}
.y24_c00071{bottom:116.827067pt;}
.y23_c00071{bottom:144.507067pt;}
.y22_c00071{bottom:172.107067pt;}
.y21_c00071{bottom:199.707067pt;}
.y20_c00071{bottom:237.867067pt;}
.y1f_c00071{bottom:265.547067pt;}
.y1e_c00071{bottom:293.147067pt;}
.y1d_c00071{bottom:320.747067pt;}
.y1c_c00071{bottom:351.227067pt;}
.y1b_c00071{bottom:380.747200pt;}
.y1a_c00071{bottom:421.627067pt;}
.y19_c00071{bottom:459.947067pt;}
.y18_c00071{bottom:487.627067pt;}
.y17_c00071{bottom:515.227067pt;}
.y16_c00071{bottom:553.387067pt;}
.y15_c00071{bottom:581.067067pt;}
.y14_c00071{bottom:608.667067pt;}
.y13_c00071{bottom:636.267067pt;}
.y12_c00071{bottom:674.347067pt;}
.y11_c00071{bottom:702.107067pt;}
.y10_c00071{bottom:729.707067pt;}
.yf_c00071{bottom:767.867067pt;}
.ye_c00071{bottom:795.547067pt;}
.yd_c00071{bottom:823.147067pt;}
.yc_c00071{bottom:850.747067pt;}
.yb_c00071{bottom:888.987067pt;}
.ya_c00071{bottom:916.587067pt;}
.y9_c00071{bottom:944.187067pt;}
.y8_c00071{bottom:971.787067pt;}
.y7_c00071{bottom:999.387067pt;}
.y4_c00071{bottom:1017.227251pt;}
.y3_c00071{bottom:1032.587243pt;}
.y2_c00071{bottom:1047.867075pt;}
.y1_c00071{bottom:1063.227067pt;}
.h1_c00071{height:47.020937pt;}
.h2_c00071{height:56.156250pt;}
.h3_c00071{height:56.312500pt;}
.h5_c00071{height:56.843750pt;}
.h4_c00071{height:66.222969pt;}
.h0_c00071{height:1122.666667pt;}
.w1_c00071{width:793.333333pt;}
.w0_c00071{width:793.626667pt;}
.x0_c00071{left:0.000000pt;}
.x4_c00071{left:113.440000pt;}
.x1_c00071{left:577.440000pt;}
.x3_c00071{left:664.400000pt;}
.x2_c00071{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.095703;font-style:normal;font-weight:normal;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_e4bbe324d3ea3ee21f7cdb85.woff2')format("woff");}.ff2_c00072{font-family:ff2_c00072;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.lsd_c00072{letter-spacing:-0.102204px;}
.ls11_c00072{letter-spacing:-0.036000px;}
.ls15_c00072{letter-spacing:-0.028800px;}
.ls14_c00072{letter-spacing:-0.021600px;}
.lsf_c00072{letter-spacing:-0.014400px;}
.ls12_c00072{letter-spacing:-0.007200px;}
.lse_c00072{letter-spacing:0.000000px;}
.ls4_c00072{letter-spacing:0.007200px;}
.ls0_c00072{letter-spacing:0.014400px;}
.ls1_c00072{letter-spacing:0.021600px;}
.ls3_c00072{letter-spacing:0.028800px;}
.ls6_c00072{letter-spacing:0.036000px;}
.ls2_c00072{letter-spacing:0.043200px;}
.lsa_c00072{letter-spacing:0.050400px;}
.ls8_c00072{letter-spacing:0.057600px;}
.ls5_c00072{letter-spacing:0.064800px;}
.ls9_c00072{letter-spacing:0.072000px;}
.ls7_c00072{letter-spacing:0.079200px;}
.lsc_c00072{letter-spacing:0.086400px;}
.lsb_c00072{letter-spacing:0.100800px;}
.ls13_c00072{letter-spacing:0.108000px;}
.ls10_c00072{letter-spacing:0.122400px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00072{word-spacing:0.000000px;}
.ws0_c00072{word-spacing:0.192384px;}
._c_c00072{margin-left:-3.268800px;}
._1_c00072{margin-left:-2.174400px;}
._3_c00072{margin-left:-1.051200px;}
._0_c00072{width:1.034064px;}
._4_c00072{width:2.851200px;}
._d_c00072{width:4.010400px;}
._b_c00072{width:5.040000px;}
._a_c00072{width:6.098400px;}
._5_c00072{width:7.495200px;}
._6_c00072{width:8.654400px;}
._2_c00072{width:9.698400px;}
._7_c00072{width:10.706400px;}
._9_c00072{width:15.465600px;}
._8_c00072{width:16.848000px;}
._e_c00072{width:19.864800px;}
._f_c00072{width:30.585600px;}
.fc1_c00072{color:rgb(0,0,0);}
.fc0_c00072{color:rgb(32,31,30);}
.fs0_c00072{font-size:60.120000px;}
.fs1_c00072{font-size:72.000000px;}
.y0_c00072{bottom:0.000000px;}
.y5_c00072{bottom:57.360450px;}
.y4_c00072{bottom:78.060450px;}
.y25_c00072{bottom:124.950450px;}
.y24_c00072{bottom:156.000450px;}
.y23_c00072{bottom:187.050450px;}
.y22_c00072{bottom:218.100450px;}
.y21_c00072{bottom:249.150450px;}
.y20_c00072{bottom:280.200450px;}
.y1f_c00072{bottom:311.250450px;}
.y1e_c00072{bottom:342.300450px;}
.y1d_c00072{bottom:373.350450px;}
.y1c_c00072{bottom:404.400450px;}
.y1b_c00072{bottom:435.450600px;}
.y1a_c00072{bottom:466.500600px;}
.y19_c00072{bottom:497.550450px;}
.y18_c00072{bottom:528.600450px;}
.y17_c00072{bottom:559.650450px;}
.y16_c00072{bottom:590.700450px;}
.y15_c00072{bottom:621.660450px;}
.y14_c00072{bottom:652.710450px;}
.y13_c00072{bottom:695.730450px;}
.y12_c00072{bottom:726.870450px;}
.y11_c00072{bottom:757.920450px;}
.y10_c00072{bottom:788.970450px;}
.yf_c00072{bottom:831.900450px;}
.ye_c00072{bottom:863.040450px;}
.yd_c00072{bottom:894.090450px;}
.yc_c00072{bottom:925.140450px;}
.yb_c00072{bottom:956.190450px;}
.ya_c00072{bottom:987.240450px;}
.y9_c00072{bottom:1018.290450px;}
.y8_c00072{bottom:1049.340450px;}
.y7_c00072{bottom:1080.390450px;}
.y6_c00072{bottom:1111.440450px;}
.y3_c00072{bottom:1132.140450px;}
.y2_c00072{bottom:1165.441023px;}
.y1_c00072{bottom:1196.040600px;}
.h1_c00072{height:52.898555px;}
.h2_c00072{height:63.175781px;}
.h0_c00072{height:1263.000000px;}
.w1_c00072{width:892.500000px;}
.w0_c00072{width:892.830000px;}
.x0_c00072{left:0.000000px;}
.x1_c00072{left:127.620000px;}
.x2_c00072{left:747.450000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.lsd_c00072{letter-spacing:-0.090848pt;}
.ls11_c00072{letter-spacing:-0.032000pt;}
.ls15_c00072{letter-spacing:-0.025600pt;}
.ls14_c00072{letter-spacing:-0.019200pt;}
.lsf_c00072{letter-spacing:-0.012800pt;}
.ls12_c00072{letter-spacing:-0.006400pt;}
.lse_c00072{letter-spacing:0.000000pt;}
.ls4_c00072{letter-spacing:0.006400pt;}
.ls0_c00072{letter-spacing:0.012800pt;}
.ls1_c00072{letter-spacing:0.019200pt;}
.ls3_c00072{letter-spacing:0.025600pt;}
.ls6_c00072{letter-spacing:0.032000pt;}
.ls2_c00072{letter-spacing:0.038400pt;}
.lsa_c00072{letter-spacing:0.044800pt;}
.ls8_c00072{letter-spacing:0.051200pt;}
.ls5_c00072{letter-spacing:0.057600pt;}
.ls9_c00072{letter-spacing:0.064000pt;}
.ls7_c00072{letter-spacing:0.070400pt;}
.lsc_c00072{letter-spacing:0.076800pt;}
.lsb_c00072{letter-spacing:0.089600pt;}
.ls13_c00072{letter-spacing:0.096000pt;}
.ls10_c00072{letter-spacing:0.108800pt;}
.ws1_c00072{word-spacing:0.000000pt;}
.ws0_c00072{word-spacing:0.171008pt;}
._c_c00072{margin-left:-2.905600pt;}
._1_c00072{margin-left:-1.932800pt;}
._3_c00072{margin-left:-0.934400pt;}
._0_c00072{width:0.919168pt;}
._4_c00072{width:2.534400pt;}
._d_c00072{width:3.564800pt;}
._b_c00072{width:4.480000pt;}
._a_c00072{width:5.420800pt;}
._5_c00072{width:6.662400pt;}
._6_c00072{width:7.692800pt;}
._2_c00072{width:8.620800pt;}
._7_c00072{width:9.516800pt;}
._9_c00072{width:13.747200pt;}
._8_c00072{width:14.976000pt;}
._e_c00072{width:17.657600pt;}
._f_c00072{width:27.187200pt;}
.fs0_c00072{font-size:53.440000pt;}
.fs1_c00072{font-size:64.000000pt;}
.y0_c00072{bottom:0.000000pt;}
.y5_c00072{bottom:50.987067pt;}
.y4_c00072{bottom:69.387067pt;}
.y25_c00072{bottom:111.067067pt;}
.y24_c00072{bottom:138.667067pt;}
.y23_c00072{bottom:166.267067pt;}
.y22_c00072{bottom:193.867067pt;}
.y21_c00072{bottom:221.467067pt;}
.y20_c00072{bottom:249.067067pt;}
.y1f_c00072{bottom:276.667067pt;}
.y1e_c00072{bottom:304.267067pt;}
.y1d_c00072{bottom:331.867067pt;}
.y1c_c00072{bottom:359.467067pt;}
.y1b_c00072{bottom:387.067200pt;}
.y1a_c00072{bottom:414.667200pt;}
.y19_c00072{bottom:442.267067pt;}
.y18_c00072{bottom:469.867067pt;}
.y17_c00072{bottom:497.467067pt;}
.y16_c00072{bottom:525.067067pt;}
.y15_c00072{bottom:552.587067pt;}
.y14_c00072{bottom:580.187067pt;}
.y13_c00072{bottom:618.427067pt;}
.y12_c00072{bottom:646.107067pt;}
.y11_c00072{bottom:673.707067pt;}
.y10_c00072{bottom:701.307067pt;}
.yf_c00072{bottom:739.467067pt;}
.ye_c00072{bottom:767.147067pt;}
.yd_c00072{bottom:794.747067pt;}
.yc_c00072{bottom:822.347067pt;}
.yb_c00072{bottom:849.947067pt;}
.ya_c00072{bottom:877.547067pt;}
.y9_c00072{bottom:905.147067pt;}
.y8_c00072{bottom:932.747067pt;}
.y7_c00072{bottom:960.347067pt;}
.y6_c00072{bottom:987.947067pt;}
.y3_c00072{bottom:1006.347067pt;}
.y2_c00072{bottom:1035.947576pt;}
.y1_c00072{bottom:1063.147200pt;}
.h1_c00072{height:47.020937pt;}
.h2_c00072{height:56.156250pt;}
.h0_c00072{height:1122.666667pt;}
.w1_c00072{width:793.333333pt;}
.w0_c00072{width:793.626667pt;}
.x0_c00072{left:0.000000pt;}
.x1_c00072{left:113.440000pt;}
.x2_c00072{left:664.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.095703;font-style:normal;font-weight:normal;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_7b10b5288596099372a76891.woff2')format("woff");}.ff2_c00073{font-family:ff2_c00073;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls19_c00073{letter-spacing:-3.240000px;}
.ls10_c00073{letter-spacing:-0.100800px;}
.ls14_c00073{letter-spacing:-0.086400px;}
.ls11_c00073{letter-spacing:-0.057600px;}
.lse_c00073{letter-spacing:-0.048096px;}
.ls15_c00073{letter-spacing:-0.043200px;}
.ls17_c00073{letter-spacing:-0.036000px;}
.ls12_c00073{letter-spacing:-0.028800px;}
.ls16_c00073{letter-spacing:-0.021600px;}
.ls13_c00073{letter-spacing:-0.014400px;}
.ls18_c00073{letter-spacing:-0.007200px;}
.lsf_c00073{letter-spacing:0.000000px;}
.ls1_c00073{letter-spacing:0.007200px;}
.ls0_c00073{letter-spacing:0.014400px;}
.ls9_c00073{letter-spacing:0.021600px;}
.ls7_c00073{letter-spacing:0.028800px;}
.ls8_c00073{letter-spacing:0.036000px;}
.lsb_c00073{letter-spacing:0.043200px;}
.ls2_c00073{letter-spacing:0.050400px;}
.lsd_c00073{letter-spacing:0.057600px;}
.lsa_c00073{letter-spacing:0.064800px;}
.ls6_c00073{letter-spacing:0.072000px;}
.ls3_c00073{letter-spacing:0.079200px;}
.lsc_c00073{letter-spacing:0.086400px;}
.ls5_c00073{letter-spacing:0.100800px;}
.ls4_c00073{letter-spacing:0.129600px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00073{word-spacing:0.000000px;}
.ws0_c00073{word-spacing:0.138276px;}
._f_c00073{margin-left:-4.363200px;}
._1_c00073{margin-left:-2.872800px;}
._0_c00073{margin-left:-1.814400px;}
._2_c00073{width:1.137600px;}
._9_c00073{width:2.325600px;}
._3_c00073{width:3.888000px;}
._6_c00073{width:5.385600px;}
._10_c00073{width:6.825600px;}
._11_c00073{width:8.668800px;}
._e_c00073{width:10.771200px;}
._b_c00073{width:13.752000px;}
._c_c00073{width:15.076800px;}
._d_c00073{width:16.545600px;}
._a_c00073{width:19.454400px;}
._7_c00073{width:20.793600px;}
._8_c00073{width:22.060800px;}
._4_c00073{width:34.992000px;}
._5_c00073{width:36.201600px;}
.fc0_c00073{color:rgb(0,0,0);}
.fs0_c00073{font-size:60.120000px;}
.fs1_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y6_c00073{bottom:57.360450px;}
.y5_c00073{bottom:78.060450px;}
.y26_c00073{bottom:137.910450px;}
.y25_c00073{bottom:168.960600px;}
.y24_c00073{bottom:200.010450px;}
.y23_c00073{bottom:231.060450px;}
.y22_c00073{bottom:262.110450px;}
.y21_c00073{bottom:293.070450px;}
.y20_c00073{bottom:324.120450px;}
.y1f_c00073{bottom:355.170450px;}
.y1e_c00073{bottom:386.220450px;}
.y1d_c00073{bottom:417.270600px;}
.y1c_c00073{bottom:460.290450px;}
.y1b_c00073{bottom:491.430450px;}
.y1a_c00073{bottom:522.480450px;}
.y19_c00073{bottom:553.530450px;}
.y18_c00073{bottom:584.580450px;}
.y17_c00073{bottom:615.630450px;}
.y16_c00073{bottom:646.680450px;}
.y15_c00073{bottom:677.640450px;}
.y14_c00073{bottom:708.690450px;}
.y13_c00073{bottom:739.740450px;}
.y12_c00073{bottom:782.760450px;}
.y11_c00073{bottom:813.900450px;}
.y10_c00073{bottom:844.950450px;}
.yf_c00073{bottom:876.000450px;}
.ye_c00073{bottom:907.050450px;}
.yd_c00073{bottom:938.100450px;}
.yc_c00073{bottom:969.150450px;}
.yb_c00073{bottom:1000.200450px;}
.ya_c00073{bottom:1031.160450px;}
.y9_c00073{bottom:1062.210450px;}
.y8_c00073{bottom:1093.260450px;}
.y7_c00073{bottom:1124.310450px;}
.y4_c00073{bottom:1144.380657px;}
.y3_c00073{bottom:1161.660648px;}
.y2_c00073{bottom:1178.850459px;}
.y1_c00073{bottom:1196.130450px;}
.h1_c00073{height:52.898555px;}
.h2_c00073{height:63.175781px;}
.h0_c00073{height:1263.000000px;}
.w1_c00073{width:892.500000px;}
.w0_c00073{width:892.830000px;}
.x0_c00073{left:0.000000px;}
.x4_c00073{left:127.620000px;}
.x1_c00073{left:649.620000px;}
.x3_c00073{left:747.450000px;}
.x2_c00073{left:765.450198px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls19_c00073{letter-spacing:-2.880000pt;}
.ls10_c00073{letter-spacing:-0.089600pt;}
.ls14_c00073{letter-spacing:-0.076800pt;}
.ls11_c00073{letter-spacing:-0.051200pt;}
.lse_c00073{letter-spacing:-0.042752pt;}
.ls15_c00073{letter-spacing:-0.038400pt;}
.ls17_c00073{letter-spacing:-0.032000pt;}
.ls12_c00073{letter-spacing:-0.025600pt;}
.ls16_c00073{letter-spacing:-0.019200pt;}
.ls13_c00073{letter-spacing:-0.012800pt;}
.ls18_c00073{letter-spacing:-0.006400pt;}
.lsf_c00073{letter-spacing:0.000000pt;}
.ls1_c00073{letter-spacing:0.006400pt;}
.ls0_c00073{letter-spacing:0.012800pt;}
.ls9_c00073{letter-spacing:0.019200pt;}
.ls7_c00073{letter-spacing:0.025600pt;}
.ls8_c00073{letter-spacing:0.032000pt;}
.lsb_c00073{letter-spacing:0.038400pt;}
.ls2_c00073{letter-spacing:0.044800pt;}
.lsd_c00073{letter-spacing:0.051200pt;}
.lsa_c00073{letter-spacing:0.057600pt;}
.ls6_c00073{letter-spacing:0.064000pt;}
.ls3_c00073{letter-spacing:0.070400pt;}
.lsc_c00073{letter-spacing:0.076800pt;}
.ls5_c00073{letter-spacing:0.089600pt;}
.ls4_c00073{letter-spacing:0.115200pt;}
.ws1_c00073{word-spacing:0.000000pt;}
.ws0_c00073{word-spacing:0.122912pt;}
._f_c00073{margin-left:-3.878400pt;}
._1_c00073{margin-left:-2.553600pt;}
._0_c00073{margin-left:-1.612800pt;}
._2_c00073{width:1.011200pt;}
._9_c00073{width:2.067200pt;}
._3_c00073{width:3.456000pt;}
._6_c00073{width:4.787200pt;}
._10_c00073{width:6.067200pt;}
._11_c00073{width:7.705600pt;}
._e_c00073{width:9.574400pt;}
._b_c00073{width:12.224000pt;}
._c_c00073{width:13.401600pt;}
._d_c00073{width:14.707200pt;}
._a_c00073{width:17.292800pt;}
._7_c00073{width:18.483200pt;}
._8_c00073{width:19.609600pt;}
._4_c00073{width:31.104000pt;}
._5_c00073{width:32.179200pt;}
.fs0_c00073{font-size:53.440000pt;}
.fs1_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y6_c00073{bottom:50.987067pt;}
.y5_c00073{bottom:69.387067pt;}
.y26_c00073{bottom:122.587067pt;}
.y25_c00073{bottom:150.187200pt;}
.y24_c00073{bottom:177.787067pt;}
.y23_c00073{bottom:205.387067pt;}
.y22_c00073{bottom:232.987067pt;}
.y21_c00073{bottom:260.507067pt;}
.y20_c00073{bottom:288.107067pt;}
.y1f_c00073{bottom:315.707067pt;}
.y1e_c00073{bottom:343.307067pt;}
.y1d_c00073{bottom:370.907200pt;}
.y1c_c00073{bottom:409.147067pt;}
.y1b_c00073{bottom:436.827067pt;}
.y1a_c00073{bottom:464.427067pt;}
.y19_c00073{bottom:492.027067pt;}
.y18_c00073{bottom:519.627067pt;}
.y17_c00073{bottom:547.227067pt;}
.y16_c00073{bottom:574.827067pt;}
.y15_c00073{bottom:602.347067pt;}
.y14_c00073{bottom:629.947067pt;}
.y13_c00073{bottom:657.547067pt;}
.y12_c00073{bottom:695.787067pt;}
.y11_c00073{bottom:723.467067pt;}
.y10_c00073{bottom:751.067067pt;}
.yf_c00073{bottom:778.667067pt;}
.ye_c00073{bottom:806.267067pt;}
.yd_c00073{bottom:833.867067pt;}
.yc_c00073{bottom:861.467067pt;}
.yb_c00073{bottom:889.067067pt;}
.ya_c00073{bottom:916.587067pt;}
.y9_c00073{bottom:944.187067pt;}
.y8_c00073{bottom:971.787067pt;}
.y7_c00073{bottom:999.387067pt;}
.y4_c00073{bottom:1017.227251pt;}
.y3_c00073{bottom:1032.587243pt;}
.y2_c00073{bottom:1047.867075pt;}
.y1_c00073{bottom:1063.227067pt;}
.h1_c00073{height:47.020937pt;}
.h2_c00073{height:56.156250pt;}
.h0_c00073{height:1122.666667pt;}
.w1_c00073{width:793.333333pt;}
.w0_c00073{width:793.626667pt;}
.x0_c00073{left:0.000000pt;}
.x4_c00073{left:113.440000pt;}
.x1_c00073{left:577.440000pt;}
.x3_c00073{left:664.400000pt;}
.x2_c00073{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dee4e5010496ff2d07edbf5.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.095703;font-style:normal;font-weight:normal;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_9f3d46f5be7d7ac21574c857.woff2')format("woff");}.ff2_c00074{font-family:ff2_c00074;line-height:1.093262;font-style:normal;font-weight:normal;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_a03a1d5445d97b7cce392532.woff2')format("woff");}.ff3_c00074{font-family:ff3_c00074;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.lse_c00074{letter-spacing:-0.381600px;}
.lsa_c00074{letter-spacing:-0.102204px;}
.ls10_c00074{letter-spacing:-0.100800px;}
.ls11_c00074{letter-spacing:-0.086400px;}
.lsf_c00074{letter-spacing:-0.050400px;}
.ls14_c00074{letter-spacing:-0.043200px;}
.ls13_c00074{letter-spacing:-0.028800px;}
.ls12_c00074{letter-spacing:-0.021600px;}
.lsc_c00074{letter-spacing:-0.014400px;}
.lsd_c00074{letter-spacing:-0.007200px;}
.lsb_c00074{letter-spacing:0.000000px;}
.ls2_c00074{letter-spacing:0.007200px;}
.ls9_c00074{letter-spacing:0.010800px;}
.ls7_c00074{letter-spacing:0.014400px;}
.ls5_c00074{letter-spacing:0.021600px;}
.ls8_c00074{letter-spacing:0.028800px;}
.ls6_c00074{letter-spacing:0.036000px;}
.ls0_c00074{letter-spacing:0.043200px;}
.ls3_c00074{letter-spacing:0.050400px;}
.ls1_c00074{letter-spacing:0.072000px;}
.ls4_c00074{letter-spacing:0.079200px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00074{word-spacing:0.000000px;}
.ws3_c00074{word-spacing:0.167400px;}
.ws2_c00074{word-spacing:0.178200px;}
.ws0_c00074{word-spacing:0.192384px;}
._1_c00074{margin-left:-1.483200px;}
._0_c00074{width:1.034064px;}
._b_c00074{width:2.234736px;}
._a_c00074{width:3.240000px;}
._7_c00074{width:4.298400px;}
._8_c00074{width:5.616000px;}
._9_c00074{width:6.811200px;}
._5_c00074{width:11.232000px;}
._6_c00074{width:12.556800px;}
._c_c00074{width:13.687200px;}
._2_c00074{width:15.472800px;}
._12_c00074{width:19.188000px;}
._4_c00074{width:23.018400px;}
._3_c00074{width:24.120000px;}
._10_c00074{width:529.992000px;}
._f_c00074{width:625.687200px;}
._d_c00074{width:694.036800px;}
._13_c00074{width:773.568000px;}
._14_c00074{width:777.960000px;}
._e_c00074{width:794.095200px;}
._16_c00074{width:849.960000px;}
._1a_c00074{width:901.785600px;}
._18_c00074{width:977.644800px;}
._15_c00074{width:993.384000px;}
._11_c00074{width:1014.141600px;}
._19_c00074{width:1025.928000px;}
._17_c00074{width:1054.454400px;}
.fc2_c00074{color:rgb(68,84,106);}
.fc1_c00074{color:rgb(0,0,0);}
.fc0_c00074{color:rgb(32,31,30);}
.fs2_c00074{font-size:54.000000px;}
.fs0_c00074{font-size:60.120000px;}
.fs1_c00074{font-size:72.000000px;}
.y0_c00074{bottom:0.000000px;}
.y5_c00074{bottom:57.360450px;}
.y4_c00074{bottom:78.060450px;}
.y26_c00074{bottom:129.720450px;}
.y25_c00074{bottom:160.230450px;}
.y24_c00074{bottom:190.740450px;}
.y23_c00074{bottom:221.250450px;}
.y22_c00074{bottom:251.760450px;}
.y21_c00074{bottom:282.270450px;}
.y20_c00074{bottom:312.870450px;}
.y1f_c00074{bottom:343.380450px;}
.y1e_c00074{bottom:364.440450px;}
.y1d_c00074{bottom:385.140450px;}
.y1c_c00074{bottom:415.650450px;}
.y1b_c00074{bottom:446.160450px;}
.y1a_c00074{bottom:476.670450px;}
.y19_c00074{bottom:509.070450px;}
.y18_c00074{bottom:544.890450px;}
.y17_c00074{bottom:583.500450px;}
.y16_c00074{bottom:614.640450px;}
.y15_c00074{bottom:645.690450px;}
.y14_c00074{bottom:676.740450px;}
.y13_c00074{bottom:707.790450px;}
.y12_c00074{bottom:738.840450px;}
.y11_c00074{bottom:769.890450px;}
.y10_c00074{bottom:800.940450px;}
.yf_c00074{bottom:831.990450px;}
.ye_c00074{bottom:863.040600px;}
.yd_c00074{bottom:894.090450px;}
.yc_c00074{bottom:925.140450px;}
.yb_c00074{bottom:956.190450px;}
.ya_c00074{bottom:987.240450px;}
.y9_c00074{bottom:1018.290450px;}
.y8_c00074{bottom:1049.340450px;}
.y7_c00074{bottom:1080.390450px;}
.y6_c00074{bottom:1111.440450px;}
.y3_c00074{bottom:1132.140450px;}
.y2_c00074{bottom:1165.441023px;}
.y1_c00074{bottom:1196.040600px;}
.h3_c00074{height:47.513672px;}
.h1_c00074{height:52.898555px;}
.h2_c00074{height:63.175781px;}
.h4_c00074{height:63.949219px;}
.h0_c00074{height:1263.000000px;}
.w1_c00074{width:892.500000px;}
.w0_c00074{width:892.830000px;}
.x0_c00074{left:0.000000px;}
.x1_c00074{left:127.620000px;}
.x3_c00074{left:136.080000px;}
.x4_c00074{left:485.550000px;}
.x2_c00074{left:747.450000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.lse_c00074{letter-spacing:-0.339200pt;}
.lsa_c00074{letter-spacing:-0.090848pt;}
.ls10_c00074{letter-spacing:-0.089600pt;}
.ls11_c00074{letter-spacing:-0.076800pt;}
.lsf_c00074{letter-spacing:-0.044800pt;}
.ls14_c00074{letter-spacing:-0.038400pt;}
.ls13_c00074{letter-spacing:-0.025600pt;}
.ls12_c00074{letter-spacing:-0.019200pt;}
.lsc_c00074{letter-spacing:-0.012800pt;}
.lsd_c00074{letter-spacing:-0.006400pt;}
.lsb_c00074{letter-spacing:0.000000pt;}
.ls2_c00074{letter-spacing:0.006400pt;}
.ls9_c00074{letter-spacing:0.009600pt;}
.ls7_c00074{letter-spacing:0.012800pt;}
.ls5_c00074{letter-spacing:0.019200pt;}
.ls8_c00074{letter-spacing:0.025600pt;}
.ls6_c00074{letter-spacing:0.032000pt;}
.ls0_c00074{letter-spacing:0.038400pt;}
.ls3_c00074{letter-spacing:0.044800pt;}
.ls1_c00074{letter-spacing:0.064000pt;}
.ls4_c00074{letter-spacing:0.070400pt;}
.ws1_c00074{word-spacing:0.000000pt;}
.ws3_c00074{word-spacing:0.148800pt;}
.ws2_c00074{word-spacing:0.158400pt;}
.ws0_c00074{word-spacing:0.171008pt;}
._1_c00074{margin-left:-1.318400pt;}
._0_c00074{width:0.919168pt;}
._b_c00074{width:1.986432pt;}
._a_c00074{width:2.880000pt;}
._7_c00074{width:3.820800pt;}
._8_c00074{width:4.992000pt;}
._9_c00074{width:6.054400pt;}
._5_c00074{width:9.984000pt;}
._6_c00074{width:11.161600pt;}
._c_c00074{width:12.166400pt;}
._2_c00074{width:13.753600pt;}
._12_c00074{width:17.056000pt;}
._4_c00074{width:20.460800pt;}
._3_c00074{width:21.440000pt;}
._10_c00074{width:471.104000pt;}
._f_c00074{width:556.166400pt;}
._d_c00074{width:616.921600pt;}
._13_c00074{width:687.616000pt;}
._14_c00074{width:691.520000pt;}
._e_c00074{width:705.862400pt;}
._16_c00074{width:755.520000pt;}
._1a_c00074{width:801.587200pt;}
._18_c00074{width:869.017600pt;}
._15_c00074{width:883.008000pt;}
._11_c00074{width:901.459200pt;}
._19_c00074{width:911.936000pt;}
._17_c00074{width:937.292800pt;}
.fs2_c00074{font-size:48.000000pt;}
.fs0_c00074{font-size:53.440000pt;}
.fs1_c00074{font-size:64.000000pt;}
.y0_c00074{bottom:0.000000pt;}
.y5_c00074{bottom:50.987067pt;}
.y4_c00074{bottom:69.387067pt;}
.y26_c00074{bottom:115.307067pt;}
.y25_c00074{bottom:142.427067pt;}
.y24_c00074{bottom:169.547067pt;}
.y23_c00074{bottom:196.667067pt;}
.y22_c00074{bottom:223.787067pt;}
.y21_c00074{bottom:250.907067pt;}
.y20_c00074{bottom:278.107067pt;}
.y1f_c00074{bottom:305.227067pt;}
.y1e_c00074{bottom:323.947067pt;}
.y1d_c00074{bottom:342.347067pt;}
.y1c_c00074{bottom:369.467067pt;}
.y1b_c00074{bottom:396.587067pt;}
.y1a_c00074{bottom:423.707067pt;}
.y19_c00074{bottom:452.507067pt;}
.y18_c00074{bottom:484.347067pt;}
.y17_c00074{bottom:518.667067pt;}
.y16_c00074{bottom:546.347067pt;}
.y15_c00074{bottom:573.947067pt;}
.y14_c00074{bottom:601.547067pt;}
.y13_c00074{bottom:629.147067pt;}
.y12_c00074{bottom:656.747067pt;}
.y11_c00074{bottom:684.347067pt;}
.y10_c00074{bottom:711.947067pt;}
.yf_c00074{bottom:739.547067pt;}
.ye_c00074{bottom:767.147200pt;}
.yd_c00074{bottom:794.747067pt;}
.yc_c00074{bottom:822.347067pt;}
.yb_c00074{bottom:849.947067pt;}
.ya_c00074{bottom:877.547067pt;}
.y9_c00074{bottom:905.147067pt;}
.y8_c00074{bottom:932.747067pt;}
.y7_c00074{bottom:960.347067pt;}
.y6_c00074{bottom:987.947067pt;}
.y3_c00074{bottom:1006.347067pt;}
.y2_c00074{bottom:1035.947576pt;}
.y1_c00074{bottom:1063.147200pt;}
.h3_c00074{height:42.234375pt;}
.h1_c00074{height:47.020937pt;}
.h2_c00074{height:56.156250pt;}
.h4_c00074{height:56.843750pt;}
.h0_c00074{height:1122.666667pt;}
.w1_c00074{width:793.333333pt;}
.w0_c00074{width:793.626667pt;}
.x0_c00074{left:0.000000pt;}
.x1_c00074{left:113.440000pt;}
.x3_c00074{left:120.960000pt;}
.x4_c00074{left:431.600000pt;}
.x2_c00074{left:664.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_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_e10f88b7adf5fbd4d66bbc4d.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.095703;font-style:normal;font-weight:normal;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_4348a076eccc9ff1ac22a328.woff2')format("woff");}.ff2_c00075{font-family:ff2_c00075;line-height:1.093262;font-style:normal;font-weight:normal;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_54cf6efad0d5a598e099cfdc.woff2')format("woff");}.ff3_c00075{font-family:ff3_c00075;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls10_c00075{letter-spacing:-0.115200px;}
.lsb_c00075{letter-spacing:-0.048096px;}
.lse_c00075{letter-spacing:-0.021600px;}
.lsf_c00075{letter-spacing:-0.014400px;}
.lsd_c00075{letter-spacing:-0.007200px;}
.lsc_c00075{letter-spacing:0.000000px;}
.ls0_c00075{letter-spacing:0.007200px;}
.ls1_c00075{letter-spacing:0.014400px;}
.ls2_c00075{letter-spacing:0.021600px;}
.ls6_c00075{letter-spacing:0.028800px;}
.ls3_c00075{letter-spacing:0.036000px;}
.lsa_c00075{letter-spacing:0.050400px;}
.ls7_c00075{letter-spacing:0.057600px;}
.ls4_c00075{letter-spacing:0.072000px;}
.ls5_c00075{letter-spacing:0.079200px;}
.ls8_c00075{letter-spacing:0.086400px;}
.ls9_c00075{letter-spacing:0.115200px;}
.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;}
}
.ws2_c00075{word-spacing:-0.199800px;}
.ws1_c00075{word-spacing:0.000000px;}
.ws0_c00075{word-spacing:0.138276px;}
._1b_c00075{margin-left:-4.435200px;}
._f_c00075{margin-left:-1.260000px;}
._19_c00075{width:1.000800px;}
._11_c00075{width:2.152800px;}
._13_c00075{width:3.952800px;}
._17_c00075{width:11.793600px;}
._12_c00075{width:14.025600px;}
._1d_c00075{width:15.624000px;}
._14_c00075{width:19.152000px;}
._18_c00075{width:20.505600px;}
._1c_c00075{width:25.185600px;}
._1a_c00075{width:26.604000px;}
._16_c00075{width:39.052800px;}
._15_c00075{width:40.262400px;}
._9_c00075{width:73.692000px;}
._b_c00075{width:253.800000px;}
._10_c00075{width:346.068000px;}
._a_c00075{width:404.294400px;}
._7_c00075{width:457.927200px;}
._d_c00075{width:475.466400px;}
._0_c00075{width:503.784000px;}
._2_c00075{width:505.872000px;}
._e_c00075{width:842.040000px;}
._4_c00075{width:845.668800px;}
._6_c00075{width:949.996800px;}
._8_c00075{width:973.764000px;}
._5_c00075{width:1050.105600px;}
._c_c00075{width:1069.920000px;}
._1_c00075{width:1105.905600px;}
._3_c00075{width:1117.792800px;}
.fc1_c00075{color:rgb(68,84,106);}
.fc0_c00075{color:rgb(0,0,0);}
.fs2_c00075{font-size:54.000000px;}
.fs0_c00075{font-size:60.120000px;}
.fs1_c00075{font-size:72.000000px;}
.y0_c00075{bottom:0.000000px;}
.y6_c00075{bottom:57.360450px;}
.y5_c00075{bottom:78.060450px;}
.y27_c00075{bottom:111.450450px;}
.y26_c00075{bottom:142.500450px;}
.y25_c00075{bottom:173.550450px;}
.y24_c00075{bottom:216.480450px;}
.y23_c00075{bottom:247.620450px;}
.y22_c00075{bottom:278.670450px;}
.y21_c00075{bottom:309.720450px;}
.y20_c00075{bottom:340.770450px;}
.y1f_c00075{bottom:371.820450px;}
.y1e_c00075{bottom:414.750450px;}
.y1d_c00075{bottom:445.890450px;}
.y1c_c00075{bottom:476.940450px;}
.y1b_c00075{bottom:507.990450px;}
.y1a_c00075{bottom:539.040450px;}
.y19_c00075{bottom:573.870450px;}
.y18_c00075{bottom:603.840450px;}
.y17_c00075{bottom:634.620450px;}
.y16_c00075{bottom:665.130450px;}
.y15_c00075{bottom:695.730450px;}
.y14_c00075{bottom:726.240450px;}
.y13_c00075{bottom:756.750450px;}
.y12_c00075{bottom:787.260450px;}
.y11_c00075{bottom:817.770450px;}
.y10_c00075{bottom:848.280450px;}
.yf_c00075{bottom:878.880450px;}
.ye_c00075{bottom:909.750450px;}
.yd_c00075{bottom:940.620450px;}
.yc_c00075{bottom:971.130450px;}
.yb_c00075{bottom:1001.730450px;}
.ya_c00075{bottom:1032.240450px;}
.y9_c00075{bottom:1062.750450px;}
.y8_c00075{bottom:1093.260450px;}
.y7_c00075{bottom:1123.770450px;}
.y4_c00075{bottom:1144.380657px;}
.y3_c00075{bottom:1161.660648px;}
.y2_c00075{bottom:1178.850459px;}
.y1_c00075{bottom:1196.130450px;}
.h1_c00075{height:52.898555px;}
.h2_c00075{height:63.175781px;}
.h4_c00075{height:63.351562px;}
.h3_c00075{height:63.949219px;}
.h0_c00075{height:1263.000000px;}
.w1_c00075{width:892.500000px;}
.w0_c00075{width:892.830000px;}
.x0_c00075{left:0.000000px;}
.x4_c00075{left:127.620000px;}
.x5_c00075{left:136.080000px;}
.x1_c00075{left:649.620000px;}
.x3_c00075{left:747.450000px;}
.x2_c00075{left:765.450198px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls10_c00075{letter-spacing:-0.102400pt;}
.lsb_c00075{letter-spacing:-0.042752pt;}
.lse_c00075{letter-spacing:-0.019200pt;}
.lsf_c00075{letter-spacing:-0.012800pt;}
.lsd_c00075{letter-spacing:-0.006400pt;}
.lsc_c00075{letter-spacing:0.000000pt;}
.ls0_c00075{letter-spacing:0.006400pt;}
.ls1_c00075{letter-spacing:0.012800pt;}
.ls2_c00075{letter-spacing:0.019200pt;}
.ls6_c00075{letter-spacing:0.025600pt;}
.ls3_c00075{letter-spacing:0.032000pt;}
.lsa_c00075{letter-spacing:0.044800pt;}
.ls7_c00075{letter-spacing:0.051200pt;}
.ls4_c00075{letter-spacing:0.064000pt;}
.ls5_c00075{letter-spacing:0.070400pt;}
.ls8_c00075{letter-spacing:0.076800pt;}
.ls9_c00075{letter-spacing:0.102400pt;}
.ws2_c00075{word-spacing:-0.177600pt;}
.ws1_c00075{word-spacing:0.000000pt;}
.ws0_c00075{word-spacing:0.122912pt;}
._1b_c00075{margin-left:-3.942400pt;}
._f_c00075{margin-left:-1.120000pt;}
._19_c00075{width:0.889600pt;}
._11_c00075{width:1.913600pt;}
._13_c00075{width:3.513600pt;}
._17_c00075{width:10.483200pt;}
._12_c00075{width:12.467200pt;}
._1d_c00075{width:13.888000pt;}
._14_c00075{width:17.024000pt;}
._18_c00075{width:18.227200pt;}
._1c_c00075{width:22.387200pt;}
._1a_c00075{width:23.648000pt;}
._16_c00075{width:34.713600pt;}
._15_c00075{width:35.788800pt;}
._9_c00075{width:65.504000pt;}
._b_c00075{width:225.600000pt;}
._10_c00075{width:307.616000pt;}
._a_c00075{width:359.372800pt;}
._7_c00075{width:407.046400pt;}
._d_c00075{width:422.636800pt;}
._0_c00075{width:447.808000pt;}
._2_c00075{width:449.664000pt;}
._e_c00075{width:748.480000pt;}
._4_c00075{width:751.705600pt;}
._6_c00075{width:844.441600pt;}
._8_c00075{width:865.568000pt;}
._5_c00075{width:933.427200pt;}
._c_c00075{width:951.040000pt;}
._1_c00075{width:983.027200pt;}
._3_c00075{width:993.593600pt;}
.fs2_c00075{font-size:48.000000pt;}
.fs0_c00075{font-size:53.440000pt;}
.fs1_c00075{font-size:64.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y6_c00075{bottom:50.987067pt;}
.y5_c00075{bottom:69.387067pt;}
.y27_c00075{bottom:99.067067pt;}
.y26_c00075{bottom:126.667067pt;}
.y25_c00075{bottom:154.267067pt;}
.y24_c00075{bottom:192.427067pt;}
.y23_c00075{bottom:220.107067pt;}
.y22_c00075{bottom:247.707067pt;}
.y21_c00075{bottom:275.307067pt;}
.y20_c00075{bottom:302.907067pt;}
.y1f_c00075{bottom:330.507067pt;}
.y1e_c00075{bottom:368.667067pt;}
.y1d_c00075{bottom:396.347067pt;}
.y1c_c00075{bottom:423.947067pt;}
.y1b_c00075{bottom:451.547067pt;}
.y1a_c00075{bottom:479.147067pt;}
.y19_c00075{bottom:510.107067pt;}
.y18_c00075{bottom:536.747067pt;}
.y17_c00075{bottom:564.107067pt;}
.y16_c00075{bottom:591.227067pt;}
.y15_c00075{bottom:618.427067pt;}
.y14_c00075{bottom:645.547067pt;}
.y13_c00075{bottom:672.667067pt;}
.y12_c00075{bottom:699.787067pt;}
.y11_c00075{bottom:726.907067pt;}
.y10_c00075{bottom:754.027067pt;}
.yf_c00075{bottom:781.227067pt;}
.ye_c00075{bottom:808.667067pt;}
.yd_c00075{bottom:836.107067pt;}
.yc_c00075{bottom:863.227067pt;}
.yb_c00075{bottom:890.427067pt;}
.ya_c00075{bottom:917.547067pt;}
.y9_c00075{bottom:944.667067pt;}
.y8_c00075{bottom:971.787067pt;}
.y7_c00075{bottom:998.907067pt;}
.y4_c00075{bottom:1017.227251pt;}
.y3_c00075{bottom:1032.587243pt;}
.y2_c00075{bottom:1047.867075pt;}
.y1_c00075{bottom:1063.227067pt;}
.h1_c00075{height:47.020937pt;}
.h2_c00075{height:56.156250pt;}
.h4_c00075{height:56.312500pt;}
.h3_c00075{height:56.843750pt;}
.h0_c00075{height:1122.666667pt;}
.w1_c00075{width:793.333333pt;}
.w0_c00075{width:793.626667pt;}
.x0_c00075{left:0.000000pt;}
.x4_c00075{left:113.440000pt;}
.x5_c00075{left:120.960000pt;}
.x1_c00075{left:577.440000pt;}
.x3_c00075{left:664.400000pt;}
.x2_c00075{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.095703;font-style:normal;font-weight:normal;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_b4b150d8901534bfcc961b59.woff2')format("woff");}.ff2_c00076{font-family:ff2_c00076;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00076{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls14_c00076{letter-spacing:-3.600000px;}
.ls10_c00076{letter-spacing:-0.129600px;}
.lsc_c00076{letter-spacing:-0.102204px;}
.lsf_c00076{letter-spacing:-0.100800px;}
.ls15_c00076{letter-spacing:-0.050400px;}
.ls13_c00076{letter-spacing:-0.021600px;}
.ls11_c00076{letter-spacing:-0.014400px;}
.lse_c00076{letter-spacing:-0.007200px;}
.lsd_c00076{letter-spacing:0.000000px;}
.ls4_c00076{letter-spacing:0.007200px;}
.ls9_c00076{letter-spacing:0.014400px;}
.ls5_c00076{letter-spacing:0.021600px;}
.ls0_c00076{letter-spacing:0.028800px;}
.ls3_c00076{letter-spacing:0.036000px;}
.ls1_c00076{letter-spacing:0.043200px;}
.ls8_c00076{letter-spacing:0.050400px;}
.ls2_c00076{letter-spacing:0.057600px;}
.ls6_c00076{letter-spacing:0.064800px;}
.lsb_c00076{letter-spacing:0.072000px;}
.ls7_c00076{letter-spacing:0.079200px;}
.lsa_c00076{letter-spacing:0.093600px;}
.ls12_c00076{letter-spacing:8.280000px;}
.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;}
}
.ws1_c00076{word-spacing:0.000000px;}
.ws0_c00076{word-spacing:0.192384px;}
._a_c00076{margin-left:-8.496000px;}
._b_c00076{margin-left:-7.329600px;}
._12_c00076{margin-left:-4.845600px;}
._10_c00076{margin-left:-3.636000px;}
._3_c00076{margin-left:-1.555200px;}
._0_c00076{width:1.034064px;}
._1_c00076{width:2.131200px;}
._5_c00076{width:3.196800px;}
._4_c00076{width:4.276800px;}
._f_c00076{width:5.580000px;}
._8_c00076{width:6.933600px;}
._9_c00076{width:7.963200px;}
._c_c00076{width:9.993600px;}
._2_c00076{width:11.131200px;}
._11_c00076{width:19.389600px;}
._d_c00076{width:22.708800px;}
._e_c00076{width:23.993136px;}
._6_c00076{width:32.724000px;}
._7_c00076{width:33.789600px;}
.fc1_c00076{color:rgb(0,0,0);}
.fc0_c00076{color:rgb(32,31,30);}
.fs0_c00076{font-size:60.120000px;}
.fs1_c00076{font-size:72.000000px;}
.y0_c00076{bottom:0.000000px;}
.y5_c00076{bottom:57.360450px;}
.y4_c00076{bottom:78.060450px;}
.y24_c00076{bottom:156.000600px;}
.y23_c00076{bottom:187.050600px;}
.y22_c00076{bottom:218.100600px;}
.y21_c00076{bottom:249.150600px;}
.y20_c00076{bottom:280.200600px;}
.y1f_c00076{bottom:311.250600px;}
.y1e_c00076{bottom:342.300600px;}
.y1d_c00076{bottom:373.350600px;}
.y1c_c00076{bottom:404.400600px;}
.y1b_c00076{bottom:435.450600px;}
.y1a_c00076{bottom:466.500600px;}
.y19_c00076{bottom:497.550450px;}
.y18_c00076{bottom:528.600450px;}
.y17_c00076{bottom:559.650450px;}
.y16_c00076{bottom:590.700450px;}
.y15_c00076{bottom:621.660450px;}
.y14_c00076{bottom:652.710450px;}
.y13_c00076{bottom:683.760450px;}
.y12_c00076{bottom:714.810450px;}
.y11_c00076{bottom:745.860450px;}
.y10_c00076{bottom:776.910450px;}
.yf_c00076{bottom:819.930450px;}
.ye_c00076{bottom:851.070450px;}
.yd_c00076{bottom:882.120450px;}
.yc_c00076{bottom:913.170450px;}
.yb_c00076{bottom:944.220450px;}
.ya_c00076{bottom:987.150450px;}
.y9_c00076{bottom:1018.290450px;}
.y8_c00076{bottom:1049.340450px;}
.y7_c00076{bottom:1080.390450px;}
.y6_c00076{bottom:1111.440450px;}
.y3_c00076{bottom:1132.140450px;}
.y2_c00076{bottom:1165.441023px;}
.y1_c00076{bottom:1196.040600px;}
.h1_c00076{height:52.898555px;}
.h2_c00076{height:63.175781px;}
.h0_c00076{height:1263.000000px;}
.w1_c00076{width:892.500000px;}
.w0_c00076{width:892.830000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:127.620000px;}
.x2_c00076{left:747.450000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls14_c00076{letter-spacing:-3.200000pt;}
.ls10_c00076{letter-spacing:-0.115200pt;}
.lsc_c00076{letter-spacing:-0.090848pt;}
.lsf_c00076{letter-spacing:-0.089600pt;}
.ls15_c00076{letter-spacing:-0.044800pt;}
.ls13_c00076{letter-spacing:-0.019200pt;}
.ls11_c00076{letter-spacing:-0.012800pt;}
.lse_c00076{letter-spacing:-0.006400pt;}
.lsd_c00076{letter-spacing:0.000000pt;}
.ls4_c00076{letter-spacing:0.006400pt;}
.ls9_c00076{letter-spacing:0.012800pt;}
.ls5_c00076{letter-spacing:0.019200pt;}
.ls0_c00076{letter-spacing:0.025600pt;}
.ls3_c00076{letter-spacing:0.032000pt;}
.ls1_c00076{letter-spacing:0.038400pt;}
.ls8_c00076{letter-spacing:0.044800pt;}
.ls2_c00076{letter-spacing:0.051200pt;}
.ls6_c00076{letter-spacing:0.057600pt;}
.lsb_c00076{letter-spacing:0.064000pt;}
.ls7_c00076{letter-spacing:0.070400pt;}
.lsa_c00076{letter-spacing:0.083200pt;}
.ls12_c00076{letter-spacing:7.360000pt;}
.ws1_c00076{word-spacing:0.000000pt;}
.ws0_c00076{word-spacing:0.171008pt;}
._a_c00076{margin-left:-7.552000pt;}
._b_c00076{margin-left:-6.515200pt;}
._12_c00076{margin-left:-4.307200pt;}
._10_c00076{margin-left:-3.232000pt;}
._3_c00076{margin-left:-1.382400pt;}
._0_c00076{width:0.919168pt;}
._1_c00076{width:1.894400pt;}
._5_c00076{width:2.841600pt;}
._4_c00076{width:3.801600pt;}
._f_c00076{width:4.960000pt;}
._8_c00076{width:6.163200pt;}
._9_c00076{width:7.078400pt;}
._c_c00076{width:8.883200pt;}
._2_c00076{width:9.894400pt;}
._11_c00076{width:17.235200pt;}
._d_c00076{width:20.185600pt;}
._e_c00076{width:21.327232pt;}
._6_c00076{width:29.088000pt;}
._7_c00076{width:30.035200pt;}
.fs0_c00076{font-size:53.440000pt;}
.fs1_c00076{font-size:64.000000pt;}
.y0_c00076{bottom:0.000000pt;}
.y5_c00076{bottom:50.987067pt;}
.y4_c00076{bottom:69.387067pt;}
.y24_c00076{bottom:138.667200pt;}
.y23_c00076{bottom:166.267200pt;}
.y22_c00076{bottom:193.867200pt;}
.y21_c00076{bottom:221.467200pt;}
.y20_c00076{bottom:249.067200pt;}
.y1f_c00076{bottom:276.667200pt;}
.y1e_c00076{bottom:304.267200pt;}
.y1d_c00076{bottom:331.867200pt;}
.y1c_c00076{bottom:359.467200pt;}
.y1b_c00076{bottom:387.067200pt;}
.y1a_c00076{bottom:414.667200pt;}
.y19_c00076{bottom:442.267067pt;}
.y18_c00076{bottom:469.867067pt;}
.y17_c00076{bottom:497.467067pt;}
.y16_c00076{bottom:525.067067pt;}
.y15_c00076{bottom:552.587067pt;}
.y14_c00076{bottom:580.187067pt;}
.y13_c00076{bottom:607.787067pt;}
.y12_c00076{bottom:635.387067pt;}
.y11_c00076{bottom:662.987067pt;}
.y10_c00076{bottom:690.587067pt;}
.yf_c00076{bottom:728.827067pt;}
.ye_c00076{bottom:756.507067pt;}
.yd_c00076{bottom:784.107067pt;}
.yc_c00076{bottom:811.707067pt;}
.yb_c00076{bottom:839.307067pt;}
.ya_c00076{bottom:877.467067pt;}
.y9_c00076{bottom:905.147067pt;}
.y8_c00076{bottom:932.747067pt;}
.y7_c00076{bottom:960.347067pt;}
.y6_c00076{bottom:987.947067pt;}
.y3_c00076{bottom:1006.347067pt;}
.y2_c00076{bottom:1035.947576pt;}
.y1_c00076{bottom:1063.147200pt;}
.h1_c00076{height:47.020937pt;}
.h2_c00076{height:56.156250pt;}
.h0_c00076{height:1122.666667pt;}
.w1_c00076{width:793.333333pt;}
.w0_c00076{width:793.626667pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:113.440000pt;}
.x2_c00076{left:664.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_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_5428a4ec114252b65fa19b15.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.095703;font-style:normal;font-weight:normal;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_594928610eb6aaa792e05787.woff2')format("woff");}.ff2_c00077{font-family:ff2_c00077;line-height:1.093262;font-style:normal;font-weight:normal;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_f9dc2db7dda959aa3cff0ea3.woff2')format("woff");}.ff3_c00077{font-family:ff3_c00077;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls16_c00077{letter-spacing:-0.057600px;}
.ls18_c00077{letter-spacing:-0.050400px;}
.ls11_c00077{letter-spacing:-0.048096px;}
.ls19_c00077{letter-spacing:-0.043200px;}
.ls15_c00077{letter-spacing:-0.021600px;}
.ls17_c00077{letter-spacing:-0.014400px;}
.ls13_c00077{letter-spacing:-0.010800px;}
.ls14_c00077{letter-spacing:-0.007200px;}
.ls12_c00077{letter-spacing:0.000000px;}
.ls9_c00077{letter-spacing:0.005400px;}
.ls0_c00077{letter-spacing:0.007200px;}
.ls6_c00077{letter-spacing:0.014400px;}
.ls7_c00077{letter-spacing:0.021600px;}
.ls2_c00077{letter-spacing:0.028800px;}
.ls4_c00077{letter-spacing:0.036000px;}
.ls3_c00077{letter-spacing:0.043200px;}
.ls5_c00077{letter-spacing:0.050400px;}
.lsc_c00077{letter-spacing:0.057600px;}
.lsa_c00077{letter-spacing:0.064800px;}
.ls1_c00077{letter-spacing:0.072000px;}
.ls8_c00077{letter-spacing:0.079200px;}
.lsf_c00077{letter-spacing:0.086400px;}
.lse_c00077{letter-spacing:0.100800px;}
.lsb_c00077{letter-spacing:0.129600px;}
.lsd_c00077{letter-spacing:0.136800px;}
.ls10_c00077{letter-spacing:0.295200px;}
.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;}
}
.ws1_c00077{word-spacing:0.000000px;}
.ws3_c00077{word-spacing:0.135000px;}
.ws0_c00077{word-spacing:0.138276px;}
.ws4_c00077{word-spacing:0.172800px;}
.ws2_c00077{word-spacing:0.189000px;}
._1f_c00077{margin-left:-4.370400px;}
._25_c00077{margin-left:-2.556000px;}
._2_c00077{margin-left:-1.047600px;}
._1_c00077{width:1.900800px;}
._0_c00077{width:3.232800px;}
._20_c00077{width:5.335200px;}
._21_c00077{width:6.861600px;}
._22_c00077{width:14.349600px;}
._26_c00077{width:19.396800px;}
._23_c00077{width:20.923200px;}
._24_c00077{width:22.118400px;}
._27_c00077{width:29.304000px;}
._28_c00077{width:30.340800px;}
._3_c00077{width:143.841600px;}
._1e_c00077{width:167.040000px;}
._4_c00077{width:185.018400px;}
._1d_c00077{width:362.498400px;}
._12_c00077{width:388.929600px;}
._16_c00077{width:476.834400px;}
._11_c00077{width:480.283200px;}
._14_c00077{width:497.750400px;}
._b_c00077{width:503.964000px;}
._1a_c00077{width:549.014400px;}
._15_c00077{width:577.814400px;}
._f_c00077{width:596.116800px;}
._10_c00077{width:601.416000px;}
._1b_c00077{width:611.323200px;}
._9_c00077{width:613.281600px;}
._19_c00077{width:632.448000px;}
._6_c00077{width:653.040000px;}
._18_c00077{width:664.063200px;}
._d_c00077{width:667.303200px;}
._a_c00077{width:672.134400px;}
._13_c00077{width:677.628000px;}
._1c_c00077{width:681.120000px;}
._c_c00077{width:698.097600px;}
._17_c00077{width:714.117600px;}
._8_c00077{width:717.832800px;}
._7_c00077{width:732.463200px;}
._e_c00077{width:733.608000px;}
._5_c00077{width:742.327200px;}
.fc1_c00077{color:rgb(68,84,106);}
.fc0_c00077{color:rgb(0,0,0);}
.fs2_c00077{font-size:54.000000px;}
.fs0_c00077{font-size:60.120000px;}
.fs1_c00077{font-size:72.000000px;}
.y0_c00077{bottom:0.000000px;}
.y6_c00077{bottom:57.360450px;}
.y5_c00077{bottom:78.060450px;}
.y28_c00077{bottom:137.910450px;}
.y27_c00077{bottom:168.960450px;}
.y26_c00077{bottom:200.010450px;}
.y25_c00077{bottom:231.060450px;}
.y24_c00077{bottom:273.990450px;}
.y23_c00077{bottom:305.130450px;}
.y22_c00077{bottom:336.180450px;}
.y21_c00077{bottom:367.230450px;}
.y20_c00077{bottom:410.160450px;}
.y1f_c00077{bottom:441.300450px;}
.y1e_c00077{bottom:472.350450px;}
.y1d_c00077{bottom:503.400450px;}
.y1c_c00077{bottom:534.450450px;}
.y1b_c00077{bottom:565.500450px;}
.y1a_c00077{bottom:600.330000px;}
.y19_c00077{bottom:630.930450px;}
.y18_c00077{bottom:657.300450px;}
.y17_c00077{bottom:681.330450px;}
.y16_c00077{bottom:705.270450px;}
.y15_c00077{bottom:729.300450px;}
.y14_c00077{bottom:753.330450px;}
.y13_c00077{bottom:777.270450px;}
.y12_c00077{bottom:801.300450px;}
.y11_c00077{bottom:825.330450px;}
.y10_c00077{bottom:849.270450px;}
.yf_c00077{bottom:873.300450px;}
.ye_c00077{bottom:897.330450px;}
.yd_c00077{bottom:921.270450px;}
.yc_c00077{bottom:945.300450px;}
.yb_c00077{bottom:969.330450px;}
.ya_c00077{bottom:1019.010450px;}
.y9_c00077{bottom:1054.560450px;}
.y8_c00077{bottom:1093.170450px;}
.y7_c00077{bottom:1124.310450px;}
.y4_c00077{bottom:1144.380657px;}
.y3_c00077{bottom:1161.660648px;}
.y2_c00077{bottom:1178.850459px;}
.y1_c00077{bottom:1196.130450px;}
.h3_c00077{height:47.513672px;}
.h1_c00077{height:52.898555px;}
.h2_c00077{height:63.175781px;}
.h4_c00077{height:63.949219px;}
.h0_c00077{height:1263.000000px;}
.w1_c00077{width:892.500000px;}
.w0_c00077{width:892.830000px;}
.x0_c00077{left:0.000000px;}
.x5_c00077{left:99.000000px;}
.x4_c00077{left:127.620000px;}
.xe_c00077{left:136.170000px;}
.xb_c00077{left:154.980000px;}
.xd_c00077{left:158.400000px;}
.x9_c00077{left:169.920000px;}
.xa_c00077{left:176.940000px;}
.x7_c00077{left:179.460000px;}
.xc_c00077{left:180.900000px;}
.x8_c00077{left:184.950000px;}
.x6_c00077{left:191.430000px;}
.x1_c00077{left:649.620000px;}
.x3_c00077{left:747.450000px;}
.x2_c00077{left:765.450198px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls16_c00077{letter-spacing:-0.051200pt;}
.ls18_c00077{letter-spacing:-0.044800pt;}
.ls11_c00077{letter-spacing:-0.042752pt;}
.ls19_c00077{letter-spacing:-0.038400pt;}
.ls15_c00077{letter-spacing:-0.019200pt;}
.ls17_c00077{letter-spacing:-0.012800pt;}
.ls13_c00077{letter-spacing:-0.009600pt;}
.ls14_c00077{letter-spacing:-0.006400pt;}
.ls12_c00077{letter-spacing:0.000000pt;}
.ls9_c00077{letter-spacing:0.004800pt;}
.ls0_c00077{letter-spacing:0.006400pt;}
.ls6_c00077{letter-spacing:0.012800pt;}
.ls7_c00077{letter-spacing:0.019200pt;}
.ls2_c00077{letter-spacing:0.025600pt;}
.ls4_c00077{letter-spacing:0.032000pt;}
.ls3_c00077{letter-spacing:0.038400pt;}
.ls5_c00077{letter-spacing:0.044800pt;}
.lsc_c00077{letter-spacing:0.051200pt;}
.lsa_c00077{letter-spacing:0.057600pt;}
.ls1_c00077{letter-spacing:0.064000pt;}
.ls8_c00077{letter-spacing:0.070400pt;}
.lsf_c00077{letter-spacing:0.076800pt;}
.lse_c00077{letter-spacing:0.089600pt;}
.lsb_c00077{letter-spacing:0.115200pt;}
.lsd_c00077{letter-spacing:0.121600pt;}
.ls10_c00077{letter-spacing:0.262400pt;}
.ws1_c00077{word-spacing:0.000000pt;}
.ws3_c00077{word-spacing:0.120000pt;}
.ws0_c00077{word-spacing:0.122912pt;}
.ws4_c00077{word-spacing:0.153600pt;}
.ws2_c00077{word-spacing:0.168000pt;}
._1f_c00077{margin-left:-3.884800pt;}
._25_c00077{margin-left:-2.272000pt;}
._2_c00077{margin-left:-0.931200pt;}
._1_c00077{width:1.689600pt;}
._0_c00077{width:2.873600pt;}
._20_c00077{width:4.742400pt;}
._21_c00077{width:6.099200pt;}
._22_c00077{width:12.755200pt;}
._26_c00077{width:17.241600pt;}
._23_c00077{width:18.598400pt;}
._24_c00077{width:19.660800pt;}
._27_c00077{width:26.048000pt;}
._28_c00077{width:26.969600pt;}
._3_c00077{width:127.859200pt;}
._1e_c00077{width:148.480000pt;}
._4_c00077{width:164.460800pt;}
._1d_c00077{width:322.220800pt;}
._12_c00077{width:345.715200pt;}
._16_c00077{width:423.852800pt;}
._11_c00077{width:426.918400pt;}
._14_c00077{width:442.444800pt;}
._b_c00077{width:447.968000pt;}
._1a_c00077{width:488.012800pt;}
._15_c00077{width:513.612800pt;}
._f_c00077{width:529.881600pt;}
._10_c00077{width:534.592000pt;}
._1b_c00077{width:543.398400pt;}
._9_c00077{width:545.139200pt;}
._19_c00077{width:562.176000pt;}
._6_c00077{width:580.480000pt;}
._18_c00077{width:590.278400pt;}
._d_c00077{width:593.158400pt;}
._a_c00077{width:597.452800pt;}
._13_c00077{width:602.336000pt;}
._1c_c00077{width:605.440000pt;}
._c_c00077{width:620.531200pt;}
._17_c00077{width:634.771200pt;}
._8_c00077{width:638.073600pt;}
._7_c00077{width:651.078400pt;}
._e_c00077{width:652.096000pt;}
._5_c00077{width:659.846400pt;}
.fs2_c00077{font-size:48.000000pt;}
.fs0_c00077{font-size:53.440000pt;}
.fs1_c00077{font-size:64.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y6_c00077{bottom:50.987067pt;}
.y5_c00077{bottom:69.387067pt;}
.y28_c00077{bottom:122.587067pt;}
.y27_c00077{bottom:150.187067pt;}
.y26_c00077{bottom:177.787067pt;}
.y25_c00077{bottom:205.387067pt;}
.y24_c00077{bottom:243.547067pt;}
.y23_c00077{bottom:271.227067pt;}
.y22_c00077{bottom:298.827067pt;}
.y21_c00077{bottom:326.427067pt;}
.y20_c00077{bottom:364.587067pt;}
.y1f_c00077{bottom:392.267067pt;}
.y1e_c00077{bottom:419.867067pt;}
.y1d_c00077{bottom:447.467067pt;}
.y1c_c00077{bottom:475.067067pt;}
.y1b_c00077{bottom:502.667067pt;}
.y1a_c00077{bottom:533.626667pt;}
.y19_c00077{bottom:560.827067pt;}
.y18_c00077{bottom:584.267067pt;}
.y17_c00077{bottom:605.627067pt;}
.y16_c00077{bottom:626.907067pt;}
.y15_c00077{bottom:648.267067pt;}
.y14_c00077{bottom:669.627067pt;}
.y13_c00077{bottom:690.907067pt;}
.y12_c00077{bottom:712.267067pt;}
.y11_c00077{bottom:733.627067pt;}
.y10_c00077{bottom:754.907067pt;}
.yf_c00077{bottom:776.267067pt;}
.ye_c00077{bottom:797.627067pt;}
.yd_c00077{bottom:818.907067pt;}
.yc_c00077{bottom:840.267067pt;}
.yb_c00077{bottom:861.627067pt;}
.ya_c00077{bottom:905.787067pt;}
.y9_c00077{bottom:937.387067pt;}
.y8_c00077{bottom:971.707067pt;}
.y7_c00077{bottom:999.387067pt;}
.y4_c00077{bottom:1017.227251pt;}
.y3_c00077{bottom:1032.587243pt;}
.y2_c00077{bottom:1047.867075pt;}
.y1_c00077{bottom:1063.227067pt;}
.h3_c00077{height:42.234375pt;}
.h1_c00077{height:47.020937pt;}
.h2_c00077{height:56.156250pt;}
.h4_c00077{height:56.843750pt;}
.h0_c00077{height:1122.666667pt;}
.w1_c00077{width:793.333333pt;}
.w0_c00077{width:793.626667pt;}
.x0_c00077{left:0.000000pt;}
.x5_c00077{left:88.000000pt;}
.x4_c00077{left:113.440000pt;}
.xe_c00077{left:121.040000pt;}
.xb_c00077{left:137.760000pt;}
.xd_c00077{left:140.800000pt;}
.x9_c00077{left:151.040000pt;}
.xa_c00077{left:157.280000pt;}
.x7_c00077{left:159.520000pt;}
.xc_c00077{left:160.800000pt;}
.x8_c00077{left:164.400000pt;}
.x6_c00077{left:170.160000pt;}
.x1_c00077{left:577.440000pt;}
.x3_c00077{left:664.400000pt;}
.x2_c00077{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b794d5671b904be45862cd3b.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.095703;font-style:normal;font-weight:normal;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_c26e3fd2e0753c0b2ad23450.woff2')format("woff");}.ff2_c00078{font-family:ff2_c00078;line-height:1.093262;font-style:normal;font-weight:normal;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_854b2956b66c52adabd6e121.woff2')format("woff");}.ff3_c00078{font-family:ff3_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:ff4_c00078;src:url('chunks/assets/font_77d3bef277e0144ddf681d23.woff2')format("woff");}.ff4_c00078{font-family:ff4_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:ff5_c00078;src:url('chunks/assets/font_501275b7fc18e8c0bce3be05.woff2')format("woff");}.ff5_c00078{font-family:ff5_c00078;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00078{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls21_c00078{letter-spacing:-1.800000px;}
.ls22_c00078{letter-spacing:-1.785600px;}
.ls27_c00078{letter-spacing:-1.771200px;}
.ls28_c00078{letter-spacing:-1.728000px;}
.ls2d_c00078{letter-spacing:-1.346400px;}
.ls2c_c00078{letter-spacing:-1.224000px;}
.ls23_c00078{letter-spacing:-1.029600px;}
.ls24_c00078{letter-spacing:-1.008000px;}
.ls2b_c00078{letter-spacing:-0.338400px;}
.ls1c_c00078{letter-spacing:-0.331200px;}
.ls1f_c00078{letter-spacing:-0.324000px;}
.ls1d_c00078{letter-spacing:-0.316800px;}
.ls20_c00078{letter-spacing:-0.309600px;}
.ls2a_c00078{letter-spacing:-0.302400px;}
.ls1e_c00078{letter-spacing:-0.295200px;}
.ls29_c00078{letter-spacing:-0.288000px;}
.ls2e_c00078{letter-spacing:-0.237600px;}
.ls16_c00078{letter-spacing:-0.102204px;}
.ls18_c00078{letter-spacing:-0.036000px;}
.ls19_c00078{letter-spacing:-0.021600px;}
.ls1b_c00078{letter-spacing:-0.016200px;}
.ls25_c00078{letter-spacing:-0.007200px;}
.ls1a_c00078{letter-spacing:-0.005400px;}
.ls17_c00078{letter-spacing:0.000000px;}
.ls8_c00078{letter-spacing:0.014400px;}
.ls3_c00078{letter-spacing:0.021600px;}
.ls4_c00078{letter-spacing:0.028800px;}
.ls0_c00078{letter-spacing:0.036000px;}
.ls1_c00078{letter-spacing:0.043200px;}
.lsd_c00078{letter-spacing:0.050400px;}
.ls2_c00078{letter-spacing:0.057600px;}
.ls11_c00078{letter-spacing:0.417600px;}
.ls26_c00078{letter-spacing:0.446400px;}
.lse_c00078{letter-spacing:0.475200px;}
.ls14_c00078{letter-spacing:0.489600px;}
.lsf_c00078{letter-spacing:0.518400px;}
.lsc_c00078{letter-spacing:0.540000px;}
.ls15_c00078{letter-spacing:0.561600px;}
.ls13_c00078{letter-spacing:0.576000px;}
.ls5_c00078{letter-spacing:0.590400px;}
.ls12_c00078{letter-spacing:0.597600px;}
.ls9_c00078{letter-spacing:0.604800px;}
.ls10_c00078{letter-spacing:0.612000px;}
.lsb_c00078{letter-spacing:0.626400px;}
.ls7_c00078{letter-spacing:0.633600px;}
.ls6_c00078{letter-spacing:0.662400px;}
.lsa_c00078{letter-spacing:0.864000px;}
.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:-18.864000px;}
.ws2_c00078{word-spacing:0.000000px;}
.ws3_c00078{word-spacing:0.183600px;}
.ws1_c00078{word-spacing:0.192384px;}
.ws4_c00078{word-spacing:0.194400px;}
._3_c00078{margin-left:-2.196000px;}
._4_c00078{margin-left:-1.166400px;}
._0_c00078{width:1.034064px;}
._18_c00078{width:2.897136px;}
._1_c00078{width:15.048000px;}
._2_c00078{width:16.358400px;}
._8_c00078{width:106.531200px;}
._2a_c00078{width:115.776000px;}
._2c_c00078{width:127.123200px;}
._1f_c00078{width:135.734400px;}
._c_c00078{width:137.923200px;}
._7_c00078{width:143.064000px;}
._24_c00078{width:154.944000px;}
._6_c00078{width:156.456000px;}
._26_c00078{width:175.089600px;}
._e_c00078{width:186.393600px;}
._1a_c00078{width:205.776000px;}
._29_c00078{width:209.361600px;}
._16_c00078{width:229.636800px;}
._5_c00078{width:235.310400px;}
._1c_c00078{width:238.449600px;}
._25_c00078{width:247.291200px;}
._19_c00078{width:251.951328px;}
._23_c00078{width:255.516336px;}
._20_c00078{width:267.055200px;}
._14_c00078{width:268.905600px;}
._28_c00078{width:270.823536px;}
._11_c00078{width:274.060800px;}
._27_c00078{width:281.697264px;}
._13_c00078{width:282.948336px;}
._d_c00078{width:290.145600px;}
._15_c00078{width:296.712000px;}
._1d_c00078{width:302.860800px;}
._17_c00078{width:327.225600px;}
._12_c00078{width:354.948336px;}
._21_c00078{width:412.236000px;}
._10_c00078{width:422.287200px;}
._b_c00078{width:507.096000px;}
._a_c00078{width:543.096000px;}
._9_c00078{width:548.748000px;}
._f_c00078{width:617.760000px;}
._1e_c00078{width:618.796800px;}
._1b_c00078{width:690.120000px;}
._2b_c00078{width:691.778736px;}
._22_c00078{width:899.697600px;}
.fc2_c00078{color:rgb(68,84,106);}
.fc1_c00078{color:rgb(0,0,0);}
.fc0_c00078{color:rgb(32,31,30);}
.fs2_c00078{font-size:54.000000px;}
.fs0_c00078{font-size:60.120000px;}
.fs3_c00078{font-size:65.880000px;}
.fs1_c00078{font-size:72.000000px;}
.y17_c00078{bottom:-7.559550px;}
.y0_c00078{bottom:0.000000px;}
.y5_c00078{bottom:57.360450px;}
.y4_c00078{bottom:78.060450px;}
.y29_c00078{bottom:125.670450px;}
.y28_c00078{bottom:155.820450px;}
.y27_c00078{bottom:185.970450px;}
.y26_c00078{bottom:216.120600px;}
.y25_c00078{bottom:246.270450px;}
.y24_c00078{bottom:276.420450px;}
.y23_c00078{bottom:306.570450px;}
.y22_c00078{bottom:336.720450px;}
.y21_c00078{bottom:367.410450px;}
.y20_c00078{bottom:397.380450px;}
.y1f_c00078{bottom:428.070450px;}
.y1e_c00078{bottom:458.040600px;}
.y1d_c00078{bottom:488.190600px;}
.y1c_c00078{bottom:518.340600px;}
.y1b_c00078{bottom:548.490450px;}
.y1a_c00078{bottom:578.640450px;}
.y19_c00078{bottom:608.790450px;}
.y16_c00078{bottom:625.980000px;}
.y15_c00078{bottom:638.940450px;}
.y18_c00078{bottom:639.120450px;}
.y14_c00078{bottom:669.090450px;}
.y13_c00078{bottom:699.240450px;}
.y12_c00078{bottom:729.390450px;}
.y11_c00078{bottom:760.080450px;}
.y10_c00078{bottom:790.230450px;}
.yf_c00078{bottom:812.550450px;}
.ye_c00078{bottom:833.340450px;}
.yd_c00078{bottom:880.140450px;}
.yc_c00078{bottom:900.840450px;}
.yb_c00078{bottom:936.480450px;}
.ya_c00078{bottom:975.090450px;}
.y9_c00078{bottom:1006.230450px;}
.y8_c00078{bottom:1037.280450px;}
.y7_c00078{bottom:1080.300450px;}
.y6_c00078{bottom:1111.440450px;}
.y3_c00078{bottom:1132.140450px;}
.y2_c00078{bottom:1165.441023px;}
.y1_c00078{bottom:1196.040600px;}
.h8_c00078{height:8.640000px;}
.h1_c00078{height:52.898555px;}
.h3_c00078{height:57.805840px;}
.h2_c00078{height:63.175781px;}
.h7_c00078{height:63.949219px;}
.h4_c00078{height:64.546875px;}
.h5_c00078{height:64.643906px;}
.h6_c00078{height:65.003906px;}
.h0_c00078{height:1263.000000px;}
.w2_c00078{width:21.420000px;}
.w1_c00078{width:892.500000px;}
.w0_c00078{width:892.830000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:127.620000px;}
.x9_c00078{left:136.080000px;}
.x7_c00078{left:148.860000px;}
.x5_c00078{left:172.350000px;}
.x3_c00078{left:183.960000px;}
.x8_c00078{left:195.210000px;}
.x4_c00078{left:285.480000px;}
.xa_c00078{left:299.520000px;}
.x6_c00078{left:481.050000px;}
.xb_c00078{left:644.580000px;}
.x2_c00078{left:747.450000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls21_c00078{letter-spacing:-1.600000pt;}
.ls22_c00078{letter-spacing:-1.587200pt;}
.ls27_c00078{letter-spacing:-1.574400pt;}
.ls28_c00078{letter-spacing:-1.536000pt;}
.ls2d_c00078{letter-spacing:-1.196800pt;}
.ls2c_c00078{letter-spacing:-1.088000pt;}
.ls23_c00078{letter-spacing:-0.915200pt;}
.ls24_c00078{letter-spacing:-0.896000pt;}
.ls2b_c00078{letter-spacing:-0.300800pt;}
.ls1c_c00078{letter-spacing:-0.294400pt;}
.ls1f_c00078{letter-spacing:-0.288000pt;}
.ls1d_c00078{letter-spacing:-0.281600pt;}
.ls20_c00078{letter-spacing:-0.275200pt;}
.ls2a_c00078{letter-spacing:-0.268800pt;}
.ls1e_c00078{letter-spacing:-0.262400pt;}
.ls29_c00078{letter-spacing:-0.256000pt;}
.ls2e_c00078{letter-spacing:-0.211200pt;}
.ls16_c00078{letter-spacing:-0.090848pt;}
.ls18_c00078{letter-spacing:-0.032000pt;}
.ls19_c00078{letter-spacing:-0.019200pt;}
.ls1b_c00078{letter-spacing:-0.014400pt;}
.ls25_c00078{letter-spacing:-0.006400pt;}
.ls1a_c00078{letter-spacing:-0.004800pt;}
.ls17_c00078{letter-spacing:0.000000pt;}
.ls8_c00078{letter-spacing:0.012800pt;}
.ls3_c00078{letter-spacing:0.019200pt;}
.ls4_c00078{letter-spacing:0.025600pt;}
.ls0_c00078{letter-spacing:0.032000pt;}
.ls1_c00078{letter-spacing:0.038400pt;}
.lsd_c00078{letter-spacing:0.044800pt;}
.ls2_c00078{letter-spacing:0.051200pt;}
.ls11_c00078{letter-spacing:0.371200pt;}
.ls26_c00078{letter-spacing:0.396800pt;}
.lse_c00078{letter-spacing:0.422400pt;}
.ls14_c00078{letter-spacing:0.435200pt;}
.lsf_c00078{letter-spacing:0.460800pt;}
.lsc_c00078{letter-spacing:0.480000pt;}
.ls15_c00078{letter-spacing:0.499200pt;}
.ls13_c00078{letter-spacing:0.512000pt;}
.ls5_c00078{letter-spacing:0.524800pt;}
.ls12_c00078{letter-spacing:0.531200pt;}
.ls9_c00078{letter-spacing:0.537600pt;}
.ls10_c00078{letter-spacing:0.544000pt;}
.lsb_c00078{letter-spacing:0.556800pt;}
.ls7_c00078{letter-spacing:0.563200pt;}
.ls6_c00078{letter-spacing:0.588800pt;}
.lsa_c00078{letter-spacing:0.768000pt;}
.ws0_c00078{word-spacing:-16.768000pt;}
.ws2_c00078{word-spacing:0.000000pt;}
.ws3_c00078{word-spacing:0.163200pt;}
.ws1_c00078{word-spacing:0.171008pt;}
.ws4_c00078{word-spacing:0.172800pt;}
._3_c00078{margin-left:-1.952000pt;}
._4_c00078{margin-left:-1.036800pt;}
._0_c00078{width:0.919168pt;}
._18_c00078{width:2.575232pt;}
._1_c00078{width:13.376000pt;}
._2_c00078{width:14.540800pt;}
._8_c00078{width:94.694400pt;}
._2a_c00078{width:102.912000pt;}
._2c_c00078{width:112.998400pt;}
._1f_c00078{width:120.652800pt;}
._c_c00078{width:122.598400pt;}
._7_c00078{width:127.168000pt;}
._24_c00078{width:137.728000pt;}
._6_c00078{width:139.072000pt;}
._26_c00078{width:155.635200pt;}
._e_c00078{width:165.683200pt;}
._1a_c00078{width:182.912000pt;}
._29_c00078{width:186.099200pt;}
._16_c00078{width:204.121600pt;}
._5_c00078{width:209.164800pt;}
._1c_c00078{width:211.955200pt;}
._25_c00078{width:219.814400pt;}
._19_c00078{width:223.956736pt;}
._23_c00078{width:227.125632pt;}
._20_c00078{width:237.382400pt;}
._14_c00078{width:239.027200pt;}
._28_c00078{width:240.732032pt;}
._11_c00078{width:243.609600pt;}
._27_c00078{width:250.397568pt;}
._13_c00078{width:251.509632pt;}
._d_c00078{width:257.907200pt;}
._15_c00078{width:263.744000pt;}
._1d_c00078{width:269.209600pt;}
._17_c00078{width:290.867200pt;}
._12_c00078{width:315.509632pt;}
._21_c00078{width:366.432000pt;}
._10_c00078{width:375.366400pt;}
._b_c00078{width:450.752000pt;}
._a_c00078{width:482.752000pt;}
._9_c00078{width:487.776000pt;}
._f_c00078{width:549.120000pt;}
._1e_c00078{width:550.041600pt;}
._1b_c00078{width:613.440000pt;}
._2b_c00078{width:614.914432pt;}
._22_c00078{width:799.731200pt;}
.fs2_c00078{font-size:48.000000pt;}
.fs0_c00078{font-size:53.440000pt;}
.fs3_c00078{font-size:58.560000pt;}
.fs1_c00078{font-size:64.000000pt;}
.y17_c00078{bottom:-6.719600pt;}
.y0_c00078{bottom:0.000000pt;}
.y5_c00078{bottom:50.987067pt;}
.y4_c00078{bottom:69.387067pt;}
.y29_c00078{bottom:111.707067pt;}
.y28_c00078{bottom:138.507067pt;}
.y27_c00078{bottom:165.307067pt;}
.y26_c00078{bottom:192.107200pt;}
.y25_c00078{bottom:218.907067pt;}
.y24_c00078{bottom:245.707067pt;}
.y23_c00078{bottom:272.507067pt;}
.y22_c00078{bottom:299.307067pt;}
.y21_c00078{bottom:326.587067pt;}
.y20_c00078{bottom:353.227067pt;}
.y1f_c00078{bottom:380.507067pt;}
.y1e_c00078{bottom:407.147200pt;}
.y1d_c00078{bottom:433.947200pt;}
.y1c_c00078{bottom:460.747200pt;}
.y1b_c00078{bottom:487.547067pt;}
.y1a_c00078{bottom:514.347067pt;}
.y19_c00078{bottom:541.147067pt;}
.y16_c00078{bottom:556.426667pt;}
.y15_c00078{bottom:567.947067pt;}
.y18_c00078{bottom:568.107067pt;}
.y14_c00078{bottom:594.747067pt;}
.y13_c00078{bottom:621.547067pt;}
.y12_c00078{bottom:648.347067pt;}
.y11_c00078{bottom:675.627067pt;}
.y10_c00078{bottom:702.427067pt;}
.yf_c00078{bottom:722.267067pt;}
.ye_c00078{bottom:740.747067pt;}
.yd_c00078{bottom:782.347067pt;}
.yc_c00078{bottom:800.747067pt;}
.yb_c00078{bottom:832.427067pt;}
.ya_c00078{bottom:866.747067pt;}
.y9_c00078{bottom:894.427067pt;}
.y8_c00078{bottom:922.027067pt;}
.y7_c00078{bottom:960.267067pt;}
.y6_c00078{bottom:987.947067pt;}
.y3_c00078{bottom:1006.347067pt;}
.y2_c00078{bottom:1035.947576pt;}
.y1_c00078{bottom:1063.147200pt;}
.h8_c00078{height:7.680000pt;}
.h1_c00078{height:47.020937pt;}
.h3_c00078{height:51.382969pt;}
.h2_c00078{height:56.156250pt;}
.h7_c00078{height:56.843750pt;}
.h4_c00078{height:57.375000pt;}
.h5_c00078{height:57.461250pt;}
.h6_c00078{height:57.781250pt;}
.h0_c00078{height:1122.666667pt;}
.w2_c00078{width:19.040000pt;}
.w1_c00078{width:793.333333pt;}
.w0_c00078{width:793.626667pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:113.440000pt;}
.x9_c00078{left:120.960000pt;}
.x7_c00078{left:132.320000pt;}
.x5_c00078{left:153.200000pt;}
.x3_c00078{left:163.520000pt;}
.x8_c00078{left:173.520000pt;}
.x4_c00078{left:253.760000pt;}
.xa_c00078{left:266.240000pt;}
.x6_c00078{left:427.600000pt;}
.xb_c00078{left:572.960000pt;}
.x2_c00078{left:664.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_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_76283b3f2f179f448c7b8cc8.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.095703;font-style:normal;font-weight:normal;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_823df11a98c3534f21b5cc42.woff2')format("woff");}.ff2_c00079{font-family:ff2_c00079;line-height:1.093262;font-style:normal;font-weight:normal;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_f1b276fe145e67f69ab7980f.woff2')format("woff");}.ff3_c00079{font-family:ff3_c00079;line-height:1.104004;font-style:normal;font-weight:normal;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_7bcb1650736dc25f0d672692.woff2')format("woff");}.ff4_c00079{font-family:ff4_c00079;line-height:0.896973;font-style:normal;font-weight:normal;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_ef88037c365e4a85d00ae25a.woff2')format("woff");}.ff5_c00079{font-family:ff5_c00079;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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:-20.880000px;}
.v0_c00079{vertical-align:0.000000px;}
.v1_c00079{vertical-align:27.000000px;}
.ls10_c00079{letter-spacing:-0.360000px;}
.ls13_c00079{letter-spacing:-0.331200px;}
.ls15_c00079{letter-spacing:-0.309600px;}
.ls14_c00079{letter-spacing:-0.302400px;}
.ls12_c00079{letter-spacing:-0.295200px;}
.ls16_c00079{letter-spacing:-0.216000px;}
.ls20_c00079{letter-spacing:-0.186372px;}
.ls1a_c00079{letter-spacing:-0.064800px;}
.lse_c00079{letter-spacing:-0.048096px;}
.ls1b_c00079{letter-spacing:-0.036000px;}
.ls1f_c00079{letter-spacing:-0.024048px;}
.ls18_c00079{letter-spacing:-0.021600px;}
.ls11_c00079{letter-spacing:-0.014400px;}
.ls19_c00079{letter-spacing:-0.007200px;}
.lsf_c00079{letter-spacing:0.000000px;}
.ls1_c00079{letter-spacing:0.007200px;}
.ls0_c00079{letter-spacing:0.014400px;}
.ls5_c00079{letter-spacing:0.016200px;}
.lsd_c00079{letter-spacing:0.018036px;}
.ls3_c00079{letter-spacing:0.021600px;}
.ls6_c00079{letter-spacing:0.027000px;}
.ls9_c00079{letter-spacing:0.028800px;}
.ls2_c00079{letter-spacing:0.036000px;}
.lsa_c00079{letter-spacing:0.043200px;}
.ls7_c00079{letter-spacing:0.050400px;}
.ls4_c00079{letter-spacing:0.057600px;}
.lsb_c00079{letter-spacing:0.086400px;}
.ls17_c00079{letter-spacing:0.093600px;}
.ls8_c00079{letter-spacing:0.129600px;}
.ls1d_c00079{letter-spacing:0.180360px;}
.ls1c_c00079{letter-spacing:0.181944px;}
.ls1e_c00079{letter-spacing:18.000000px;}
.lsc_c00079{letter-spacing:46.286820px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:-18.043200px;}
.ws2_c00079{word-spacing:-15.210360px;}
.ws1_c00079{word-spacing:-12.151944px;}
.ws3_c00079{word-spacing:-9.720000px;}
.ws5_c00079{word-spacing:0.000000px;}
.ws4_c00079{word-spacing:0.138276px;}
.ws7_c00079{word-spacing:0.151200px;}
.ws6_c00079{word-spacing:0.162000px;}
.ws9_c00079{word-spacing:26.640000px;}
.ws8_c00079{word-spacing:26.654400px;}
._1c_c00079{margin-left:-18.753300px;}
._1d_c00079{margin-left:-17.160300px;}
._10_c00079{margin-left:-5.140800px;}
._f_c00079{margin-left:-4.010400px;}
._6_c00079{margin-left:-1.137600px;}
._e_c00079{width:1.044000px;}
._17_c00079{width:2.361600px;}
._14_c00079{width:3.650400px;}
._15_c00079{width:4.946400px;}
._18_c00079{width:6.076800px;}
._1a_c00079{width:7.920000px;}
._16_c00079{width:9.331200px;}
._1b_c00079{width:11.296800px;}
._19_c00079{width:12.960000px;}
._11_c00079{width:14.184000px;}
._12_c00079{width:15.321600px;}
._13_c00079{width:26.632800px;}
._c_c00079{width:99.187200px;}
._a_c00079{width:112.284000px;}
._b_c00079{width:207.360000px;}
._3_c00079{width:281.757600px;}
._1_c00079{width:289.944000px;}
._7_c00079{width:309.945600px;}
._d_c00079{width:337.269600px;}
._5_c00079{width:341.618400px;}
._2_c00079{width:346.334400px;}
._4_c00079{width:354.146400px;}
._9_c00079{width:365.191200px;}
._0_c00079{width:618.480000px;}
._8_c00079{width:690.415200px;}
.fc2_c00079{color:rgb(85,85,85);}
.fc1_c00079{color:rgb(68,84,106);}
.fc0_c00079{color:rgb(0,0,0);}
.fs4_c00079{font-size:38.880000px;}
.fs3_c00079{font-size:47.880000px;}
.fs2_c00079{font-size:54.000000px;}
.fs0_c00079{font-size:60.120000px;}
.fs1_c00079{font-size:72.000000px;}
.y0_c00079{bottom:0.000000px;}
.y6_c00079{bottom:57.360450px;}
.y5_c00079{bottom:78.060450px;}
.y28_c00079{bottom:115.140450px;}
.y27_c00079{bottom:127.830450px;}
.y26_c00079{bottom:180.300450px;}
.y25_c00079{bottom:211.350450px;}
.y24_c00079{bottom:254.460450px;}
.y23_c00079{bottom:285.600450px;}
.y22_c00079{bottom:316.650450px;}
.y21_c00079{bottom:347.700450px;}
.y20_c00079{bottom:378.750450px;}
.y1f_c00079{bottom:421.680450px;}
.y1e_c00079{bottom:452.820450px;}
.y1d_c00079{bottom:483.870450px;}
.y1c_c00079{bottom:514.920450px;}
.y1b_c00079{bottom:545.970450px;}
.y1a_c00079{bottom:577.020450px;}
.y19_c00079{bottom:619.950450px;}
.y18_c00079{bottom:651.090450px;}
.y17_c00079{bottom:682.140450px;}
.y16_c00079{bottom:713.190450px;}
.y15_c00079{bottom:744.240450px;}
.y14_c00079{bottom:775.290450px;}
.y13_c00079{bottom:806.340450px;}
.y12_c00079{bottom:841.170600px;}
.y11_c00079{bottom:871.680600px;}
.y10_c00079{bottom:891.210450px;}
.yf_c00079{bottom:914.880450px;}
.ye_c00079{bottom:938.820450px;}
.yd_c00079{bottom:962.490450px;}
.yc_c00079{bottom:986.070450px;}
.yb_c00079{bottom:1009.740450px;}
.ya_c00079{bottom:1033.320450px;}
.y9_c00079{bottom:1063.470450px;}
.y8_c00079{bottom:1093.620450px;}
.y7_c00079{bottom:1123.770450px;}
.y4_c00079{bottom:1144.380657px;}
.y3_c00079{bottom:1161.660648px;}
.y2_c00079{bottom:1178.850459px;}
.y1_c00079{bottom:1196.130450px;}
.h7_c00079{height:34.114922px;}
.h4_c00079{height:47.513672px;}
.h1_c00079{height:52.898555px;}
.h2_c00079{height:63.175781px;}
.h5_c00079{height:63.351562px;}
.h3_c00079{height:63.949219px;}
.h6_c00079{height:69.011895px;}
.h0_c00079{height:1263.000000px;}
.w1_c00079{width:892.500000px;}
.w0_c00079{width:892.830000px;}
.x0_c00079{left:0.000000px;}
.x4_c00079{left:127.620000px;}
.x5_c00079{left:136.080000px;}
.x6_c00079{left:154.620000px;}
.x7_c00079{left:181.620000px;}
.x1_c00079{left:649.620000px;}
.x3_c00079{left:747.450000px;}
.x2_c00079{left:765.450198px;}
@media print{
.v2_c00079{vertical-align:-18.560000pt;}
.v0_c00079{vertical-align:0.000000pt;}
.v1_c00079{vertical-align:24.000000pt;}
.ls10_c00079{letter-spacing:-0.320000pt;}
.ls13_c00079{letter-spacing:-0.294400pt;}
.ls15_c00079{letter-spacing:-0.275200pt;}
.ls14_c00079{letter-spacing:-0.268800pt;}
.ls12_c00079{letter-spacing:-0.262400pt;}
.ls16_c00079{letter-spacing:-0.192000pt;}
.ls20_c00079{letter-spacing:-0.165664pt;}
.ls1a_c00079{letter-spacing:-0.057600pt;}
.lse_c00079{letter-spacing:-0.042752pt;}
.ls1b_c00079{letter-spacing:-0.032000pt;}
.ls1f_c00079{letter-spacing:-0.021376pt;}
.ls18_c00079{letter-spacing:-0.019200pt;}
.ls11_c00079{letter-spacing:-0.012800pt;}
.ls19_c00079{letter-spacing:-0.006400pt;}
.lsf_c00079{letter-spacing:0.000000pt;}
.ls1_c00079{letter-spacing:0.006400pt;}
.ls0_c00079{letter-spacing:0.012800pt;}
.ls5_c00079{letter-spacing:0.014400pt;}
.lsd_c00079{letter-spacing:0.016032pt;}
.ls3_c00079{letter-spacing:0.019200pt;}
.ls6_c00079{letter-spacing:0.024000pt;}
.ls9_c00079{letter-spacing:0.025600pt;}
.ls2_c00079{letter-spacing:0.032000pt;}
.lsa_c00079{letter-spacing:0.038400pt;}
.ls7_c00079{letter-spacing:0.044800pt;}
.ls4_c00079{letter-spacing:0.051200pt;}
.lsb_c00079{letter-spacing:0.076800pt;}
.ls17_c00079{letter-spacing:0.083200pt;}
.ls8_c00079{letter-spacing:0.115200pt;}
.ls1d_c00079{letter-spacing:0.160320pt;}
.ls1c_c00079{letter-spacing:0.161728pt;}
.ls1e_c00079{letter-spacing:16.000000pt;}
.lsc_c00079{letter-spacing:41.143840pt;}
.ws0_c00079{word-spacing:-16.038400pt;}
.ws2_c00079{word-spacing:-13.520320pt;}
.ws1_c00079{word-spacing:-10.801728pt;}
.ws3_c00079{word-spacing:-8.640000pt;}
.ws5_c00079{word-spacing:0.000000pt;}
.ws4_c00079{word-spacing:0.122912pt;}
.ws7_c00079{word-spacing:0.134400pt;}
.ws6_c00079{word-spacing:0.144000pt;}
.ws9_c00079{word-spacing:23.680000pt;}
.ws8_c00079{word-spacing:23.692800pt;}
._1c_c00079{margin-left:-16.669600pt;}
._1d_c00079{margin-left:-15.253600pt;}
._10_c00079{margin-left:-4.569600pt;}
._f_c00079{margin-left:-3.564800pt;}
._6_c00079{margin-left:-1.011200pt;}
._e_c00079{width:0.928000pt;}
._17_c00079{width:2.099200pt;}
._14_c00079{width:3.244800pt;}
._15_c00079{width:4.396800pt;}
._18_c00079{width:5.401600pt;}
._1a_c00079{width:7.040000pt;}
._16_c00079{width:8.294400pt;}
._1b_c00079{width:10.041600pt;}
._19_c00079{width:11.520000pt;}
._11_c00079{width:12.608000pt;}
._12_c00079{width:13.619200pt;}
._13_c00079{width:23.673600pt;}
._c_c00079{width:88.166400pt;}
._a_c00079{width:99.808000pt;}
._b_c00079{width:184.320000pt;}
._3_c00079{width:250.451200pt;}
._1_c00079{width:257.728000pt;}
._7_c00079{width:275.507200pt;}
._d_c00079{width:299.795200pt;}
._5_c00079{width:303.660800pt;}
._2_c00079{width:307.852800pt;}
._4_c00079{width:314.796800pt;}
._9_c00079{width:324.614400pt;}
._0_c00079{width:549.760000pt;}
._8_c00079{width:613.702400pt;}
.fs4_c00079{font-size:34.560000pt;}
.fs3_c00079{font-size:42.560000pt;}
.fs2_c00079{font-size:48.000000pt;}
.fs0_c00079{font-size:53.440000pt;}
.fs1_c00079{font-size:64.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y6_c00079{bottom:50.987067pt;}
.y5_c00079{bottom:69.387067pt;}
.y28_c00079{bottom:102.347067pt;}
.y27_c00079{bottom:113.627067pt;}
.y26_c00079{bottom:160.267067pt;}
.y25_c00079{bottom:187.867067pt;}
.y24_c00079{bottom:226.187067pt;}
.y23_c00079{bottom:253.867067pt;}
.y22_c00079{bottom:281.467067pt;}
.y21_c00079{bottom:309.067067pt;}
.y20_c00079{bottom:336.667067pt;}
.y1f_c00079{bottom:374.827067pt;}
.y1e_c00079{bottom:402.507067pt;}
.y1d_c00079{bottom:430.107067pt;}
.y1c_c00079{bottom:457.707067pt;}
.y1b_c00079{bottom:485.307067pt;}
.y1a_c00079{bottom:512.907067pt;}
.y19_c00079{bottom:551.067067pt;}
.y18_c00079{bottom:578.747067pt;}
.y17_c00079{bottom:606.347067pt;}
.y16_c00079{bottom:633.947067pt;}
.y15_c00079{bottom:661.547067pt;}
.y14_c00079{bottom:689.147067pt;}
.y13_c00079{bottom:716.747067pt;}
.y12_c00079{bottom:747.707200pt;}
.y11_c00079{bottom:774.827200pt;}
.y10_c00079{bottom:792.187067pt;}
.yf_c00079{bottom:813.227067pt;}
.ye_c00079{bottom:834.507067pt;}
.yd_c00079{bottom:855.547067pt;}
.yc_c00079{bottom:876.507067pt;}
.yb_c00079{bottom:897.547067pt;}
.ya_c00079{bottom:918.507067pt;}
.y9_c00079{bottom:945.307067pt;}
.y8_c00079{bottom:972.107067pt;}
.y7_c00079{bottom:998.907067pt;}
.y4_c00079{bottom:1017.227251pt;}
.y3_c00079{bottom:1032.587243pt;}
.y2_c00079{bottom:1047.867075pt;}
.y1_c00079{bottom:1063.227067pt;}
.h7_c00079{height:30.324375pt;}
.h4_c00079{height:42.234375pt;}
.h1_c00079{height:47.020937pt;}
.h2_c00079{height:56.156250pt;}
.h5_c00079{height:56.312500pt;}
.h3_c00079{height:56.843750pt;}
.h6_c00079{height:61.343906pt;}
.h0_c00079{height:1122.666667pt;}
.w1_c00079{width:793.333333pt;}
.w0_c00079{width:793.626667pt;}
.x0_c00079{left:0.000000pt;}
.x4_c00079{left:113.440000pt;}
.x5_c00079{left:120.960000pt;}
.x6_c00079{left:137.440000pt;}
.x7_c00079{left:161.440000pt;}
.x1_c00079{left:577.440000pt;}
.x3_c00079{left:664.400000pt;}
.x2_c00079{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.095703;font-style:normal;font-weight:normal;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_5755e1e78f46c140afc1d3bc.woff2')format("woff");}.ff2_c00080{font-family:ff2_c00080;line-height:1.093262;font-style:normal;font-weight:normal;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_3f5667bbd42853d37cc60035.woff2')format("woff");}.ff3_c00080{font-family:ff3_c00080;line-height:0.896973;font-style:normal;font-weight:normal;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_ef88037c365e4a85d00ae25a.woff2')format("woff");}.ff4_c00080{font-family:ff4_c00080;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00080;src:url('chunks/assets/font_c90f156c92a323fe78580836.woff2')format("woff");}.ff5_c00080{font-family:ff5_c00080;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.lse_c00080{letter-spacing:-0.102204px;}
.ls11_c00080{letter-spacing:-0.086400px;}
.ls12_c00080{letter-spacing:-0.043200px;}
.ls13_c00080{letter-spacing:-0.028800px;}
.ls15_c00080{letter-spacing:-0.014400px;}
.ls14_c00080{letter-spacing:-0.007200px;}
.lsf_c00080{letter-spacing:0.000000px;}
.ls2_c00080{letter-spacing:0.007200px;}
.ls1_c00080{letter-spacing:0.014400px;}
.ls4_c00080{letter-spacing:0.021600px;}
.lsa_c00080{letter-spacing:0.028800px;}
.ls9_c00080{letter-spacing:0.036000px;}
.ls8_c00080{letter-spacing:0.043200px;}
.ls6_c00080{letter-spacing:0.050400px;}
.ls5_c00080{letter-spacing:0.057600px;}
.ls7_c00080{letter-spacing:0.064800px;}
.lsd_c00080{letter-spacing:0.079200px;}
.lsc_c00080{letter-spacing:0.086400px;}
.ls3_c00080{letter-spacing:0.100800px;}
.ls10_c00080{letter-spacing:0.180360px;}
.ls16_c00080{letter-spacing:13.320000px;}
.lsb_c00080{letter-spacing:16.407180px;}
.ls0_c00080{letter-spacing:46.286820px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00080{word-spacing:-18.100800px;}
.ws4_c00080{word-spacing:-18.064800px;}
.ws3_c00080{word-spacing:-18.057600px;}
.ws2_c00080{word-spacing:-18.007200px;}
.ws0_c00080{word-spacing:-15.210360px;}
.ws6_c00080{word-spacing:0.000000px;}
.ws5_c00080{word-spacing:0.192384px;}
._e_c00080{margin-left:-13.152420px;}
._5_c00080{margin-left:-3.705300px;}
._6_c00080{margin-left:-2.605464px;}
._9_c00080{margin-left:-1.012500px;}
._0_c00080{width:1.034064px;}
._b_c00080{width:2.109600px;}
._a_c00080{width:3.454236px;}
._3_c00080{width:4.949100px;}
._4_c00080{width:5.999400px;}
._1_c00080{width:9.974700px;}
._2_c00080{width:11.120400px;}
._c_c00080{width:12.472380px;}
._d_c00080{width:13.812840px;}
._7_c00080{width:31.207500px;}
._8_c00080{width:32.540400px;}
.fc2_c00080{color:rgb(85,85,85);}
.fc1_c00080{color:rgb(0,0,0);}
.fc0_c00080{color:rgb(32,31,30);}
.fs0_c00080{font-size:60.120000px;}
.fs1_c00080{font-size:72.000000px;}
.y0_c00080{bottom:0.000000px;}
.y5_c00080{bottom:57.360450px;}
.y4_c00080{bottom:78.060450px;}
.y23_c00080{bottom:138.990450px;}
.y22_c00080{bottom:182.010450px;}
.y21_c00080{bottom:225.030450px;}
.y20_c00080{bottom:268.050450px;}
.y1f_c00080{bottom:311.160450px;}
.y1e_c00080{bottom:354.180450px;}
.y1d_c00080{bottom:385.320450px;}
.y1c_c00080{bottom:416.370450px;}
.y1b_c00080{bottom:447.420450px;}
.y1a_c00080{bottom:478.470450px;}
.y19_c00080{bottom:509.520450px;}
.y18_c00080{bottom:552.270450px;}
.y17_c00080{bottom:583.410450px;}
.y16_c00080{bottom:614.460450px;}
.y15_c00080{bottom:645.510450px;}
.y14_c00080{bottom:676.560450px;}
.y13_c00080{bottom:707.610450px;}
.y12_c00080{bottom:738.660450px;}
.y11_c00080{bottom:769.710450px;}
.y10_c00080{bottom:800.760450px;}
.yf_c00080{bottom:831.810450px;}
.ye_c00080{bottom:862.860600px;}
.yd_c00080{bottom:893.910450px;}
.yc_c00080{bottom:924.960450px;}
.yb_c00080{bottom:956.010450px;}
.ya_c00080{bottom:987.060450px;}
.y9_c00080{bottom:1018.110450px;}
.y8_c00080{bottom:1049.160450px;}
.y7_c00080{bottom:1080.210450px;}
.y6_c00080{bottom:1111.260450px;}
.y3_c00080{bottom:1132.140450px;}
.y2_c00080{bottom:1165.441023px;}
.y1_c00080{bottom:1196.040600px;}
.h1_c00080{height:52.898555px;}
.h2_c00080{height:63.175781px;}
.h3_c00080{height:63.949219px;}
.h0_c00080{height:1263.000000px;}
.w1_c00080{width:892.500000px;}
.w0_c00080{width:892.830000px;}
.x0_c00080{left:0.000000px;}
.x1_c00080{left:127.620000px;}
.x3_c00080{left:154.620000px;}
.x4_c00080{left:181.620000px;}
.x2_c00080{left:747.450000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.lse_c00080{letter-spacing:-0.090848pt;}
.ls11_c00080{letter-spacing:-0.076800pt;}
.ls12_c00080{letter-spacing:-0.038400pt;}
.ls13_c00080{letter-spacing:-0.025600pt;}
.ls15_c00080{letter-spacing:-0.012800pt;}
.ls14_c00080{letter-spacing:-0.006400pt;}
.lsf_c00080{letter-spacing:0.000000pt;}
.ls2_c00080{letter-spacing:0.006400pt;}
.ls1_c00080{letter-spacing:0.012800pt;}
.ls4_c00080{letter-spacing:0.019200pt;}
.lsa_c00080{letter-spacing:0.025600pt;}
.ls9_c00080{letter-spacing:0.032000pt;}
.ls8_c00080{letter-spacing:0.038400pt;}
.ls6_c00080{letter-spacing:0.044800pt;}
.ls5_c00080{letter-spacing:0.051200pt;}
.ls7_c00080{letter-spacing:0.057600pt;}
.lsd_c00080{letter-spacing:0.070400pt;}
.lsc_c00080{letter-spacing:0.076800pt;}
.ls3_c00080{letter-spacing:0.089600pt;}
.ls10_c00080{letter-spacing:0.160320pt;}
.ls16_c00080{letter-spacing:11.840000pt;}
.lsb_c00080{letter-spacing:14.584160pt;}
.ls0_c00080{letter-spacing:41.143840pt;}
.ws1_c00080{word-spacing:-16.089600pt;}
.ws4_c00080{word-spacing:-16.057600pt;}
.ws3_c00080{word-spacing:-16.051200pt;}
.ws2_c00080{word-spacing:-16.006400pt;}
.ws0_c00080{word-spacing:-13.520320pt;}
.ws6_c00080{word-spacing:0.000000pt;}
.ws5_c00080{word-spacing:0.171008pt;}
._e_c00080{margin-left:-11.691040pt;}
._5_c00080{margin-left:-3.293600pt;}
._6_c00080{margin-left:-2.315968pt;}
._9_c00080{margin-left:-0.900000pt;}
._0_c00080{width:0.919168pt;}
._b_c00080{width:1.875200pt;}
._a_c00080{width:3.070432pt;}
._3_c00080{width:4.399200pt;}
._4_c00080{width:5.332800pt;}
._1_c00080{width:8.866400pt;}
._2_c00080{width:9.884800pt;}
._c_c00080{width:11.086560pt;}
._d_c00080{width:12.278080pt;}
._7_c00080{width:27.740000pt;}
._8_c00080{width:28.924800pt;}
.fs0_c00080{font-size:53.440000pt;}
.fs1_c00080{font-size:64.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y5_c00080{bottom:50.987067pt;}
.y4_c00080{bottom:69.387067pt;}
.y23_c00080{bottom:123.547067pt;}
.y22_c00080{bottom:161.787067pt;}
.y21_c00080{bottom:200.027067pt;}
.y20_c00080{bottom:238.267067pt;}
.y1f_c00080{bottom:276.587067pt;}
.y1e_c00080{bottom:314.827067pt;}
.y1d_c00080{bottom:342.507067pt;}
.y1c_c00080{bottom:370.107067pt;}
.y1b_c00080{bottom:397.707067pt;}
.y1a_c00080{bottom:425.307067pt;}
.y19_c00080{bottom:452.907067pt;}
.y18_c00080{bottom:490.907067pt;}
.y17_c00080{bottom:518.587067pt;}
.y16_c00080{bottom:546.187067pt;}
.y15_c00080{bottom:573.787067pt;}
.y14_c00080{bottom:601.387067pt;}
.y13_c00080{bottom:628.987067pt;}
.y12_c00080{bottom:656.587067pt;}
.y11_c00080{bottom:684.187067pt;}
.y10_c00080{bottom:711.787067pt;}
.yf_c00080{bottom:739.387067pt;}
.ye_c00080{bottom:766.987200pt;}
.yd_c00080{bottom:794.587067pt;}
.yc_c00080{bottom:822.187067pt;}
.yb_c00080{bottom:849.787067pt;}
.ya_c00080{bottom:877.387067pt;}
.y9_c00080{bottom:904.987067pt;}
.y8_c00080{bottom:932.587067pt;}
.y7_c00080{bottom:960.187067pt;}
.y6_c00080{bottom:987.787067pt;}
.y3_c00080{bottom:1006.347067pt;}
.y2_c00080{bottom:1035.947576pt;}
.y1_c00080{bottom:1063.147200pt;}
.h1_c00080{height:47.020937pt;}
.h2_c00080{height:56.156250pt;}
.h3_c00080{height:56.843750pt;}
.h0_c00080{height:1122.666667pt;}
.w1_c00080{width:793.333333pt;}
.w0_c00080{width:793.626667pt;}
.x0_c00080{left:0.000000pt;}
.x1_c00080{left:113.440000pt;}
.x3_c00080{left:137.440000pt;}
.x4_c00080{left:161.440000pt;}
.x2_c00080{left:664.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_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_3783d3251c1217a2fd372be0.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.095703;font-style:normal;font-weight:normal;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_4495896018e6855cae252720.woff2')format("woff");}.ff2_c00081{font-family:ff2_c00081;line-height:1.093262;font-style:normal;font-weight:normal;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_4a1e657e278db9033a94f795.woff2')format("woff");}.ff3_c00081{font-family:ff3_c00081;line-height:1.104004;font-style:normal;font-weight:normal;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_2db61c84a992ca8f608e07b6.woff2')format("woff");}.ff4_c00081{font-family:ff4_c00081;line-height:0.896973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00081{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls11_c00081{letter-spacing:-3.672000px;}
.lsf_c00081{letter-spacing:-0.048096px;}
.ls16_c00081{letter-spacing:-0.043200px;}
.ls15_c00081{letter-spacing:-0.028800px;}
.ls17_c00081{letter-spacing:-0.021600px;}
.ls13_c00081{letter-spacing:-0.014400px;}
.ls12_c00081{letter-spacing:-0.007200px;}
.ls10_c00081{letter-spacing:0.000000px;}
.lsd_c00081{letter-spacing:0.005400px;}
.ls6_c00081{letter-spacing:0.007200px;}
.ls0_c00081{letter-spacing:0.010800px;}
.ls2_c00081{letter-spacing:0.014400px;}
.ls1_c00081{letter-spacing:0.016200px;}
.ls9_c00081{letter-spacing:0.021600px;}
.ls4_c00081{letter-spacing:0.028800px;}
.lse_c00081{letter-spacing:0.032400px;}
.ls3_c00081{letter-spacing:0.036000px;}
.ls8_c00081{letter-spacing:0.050400px;}
.lsa_c00081{letter-spacing:0.057600px;}
.lsc_c00081{letter-spacing:0.079200px;}
.ls7_c00081{letter-spacing:0.086400px;}
.lsb_c00081{letter-spacing:0.115200px;}
.ls5_c00081{letter-spacing:0.122400px;}
.ls14_c00081{letter-spacing:10.440000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00081{word-spacing:0.000000px;}
.ws0_c00081{word-spacing:0.138276px;}
.ws5_c00081{word-spacing:0.145800px;}
.ws3_c00081{word-spacing:0.162000px;}
.ws2_c00081{word-spacing:0.167400px;}
.ws4_c00081{word-spacing:0.172800px;}
.ws6_c00081{word-spacing:0.178200px;}
._7_c00081{margin-left:-10.497600px;}
._8_c00081{margin-left:-9.489600px;}
._14_c00081{margin-left:-3.967200px;}
._1b_c00081{margin-left:-2.646000px;}
._0_c00081{margin-left:-1.258200px;}
._5_c00081{width:1.296000px;}
._2_c00081{width:3.528000px;}
._3_c00081{width:4.536000px;}
._4_c00081{width:8.640000px;}
._c_c00081{width:9.806400px;}
._f_c00081{width:11.052000px;}
._e_c00081{width:12.218400px;}
._b_c00081{width:16.660800px;}
._17_c00081{width:20.203200px;}
._18_c00081{width:21.247200px;}
._19_c00081{width:22.320000px;}
._1d_c00081{width:41.198400px;}
._1c_c00081{width:42.480000px;}
._13_c00081{width:47.894400px;}
._9_c00081{width:50.400000px;}
._10_c00081{width:52.502400px;}
._16_c00081{width:127.814400px;}
._a_c00081{width:575.920800px;}
._11_c00081{width:636.256800px;}
._1e_c00081{width:644.414400px;}
._15_c00081{width:673.689600px;}
._d_c00081{width:694.137600px;}
._12_c00081{width:703.843200px;}
._1a_c00081{width:788.184000px;}
._6_c00081{width:864.086400px;}
._1_c00081{width:867.931200px;}
.fc1_c00081{color:rgb(68,84,106);}
.fc0_c00081{color:rgb(0,0,0);}
.fs2_c00081{font-size:54.000000px;}
.fs0_c00081{font-size:60.120000px;}
.fs1_c00081{font-size:72.000000px;}
.y0_c00081{bottom:0.000000px;}
.y6_c00081{bottom:57.360450px;}
.y5_c00081{bottom:78.060450px;}
.y28_c00081{bottom:114.780000px;}
.y27_c00081{bottom:145.380450px;}
.y26_c00081{bottom:175.890150px;}
.y25_c00081{bottom:191.370600px;}
.y24_c00081{bottom:218.910450px;}
.y23_c00081{bottom:249.780450px;}
.y22_c00081{bottom:281.370450px;}
.y21_c00081{bottom:312.420450px;}
.y20_c00081{bottom:343.290450px;}
.y1f_c00081{bottom:374.880450px;}
.y1e_c00081{bottom:405.930450px;}
.y1d_c00081{bottom:436.980450px;}
.y1c_c00081{bottom:467.850450px;}
.y1b_c00081{bottom:499.440600px;}
.y1a_c00081{bottom:530.490450px;}
.y19_c00081{bottom:561.540450px;}
.y18_c00081{bottom:592.410450px;}
.y17_c00081{bottom:623.820450px;}
.y16_c00081{bottom:655.410450px;}
.y15_c00081{bottom:686.460450px;}
.y14_c00081{bottom:717.330450px;}
.y13_c00081{bottom:748.920450px;}
.y12_c00081{bottom:779.970450px;}
.y11_c00081{bottom:811.020450px;}
.y10_c00081{bottom:841.890450px;}
.yf_c00081{bottom:873.480450px;}
.ye_c00081{bottom:904.530450px;}
.yd_c00081{bottom:935.400450px;}
.yc_c00081{bottom:968.700450px;}
.yb_c00081{bottom:999.750450px;}
.ya_c00081{bottom:1030.800450px;}
.y9_c00081{bottom:1061.850450px;}
.y8_c00081{bottom:1092.900450px;}
.y7_c00081{bottom:1128.630450px;}
.y4_c00081{bottom:1144.380657px;}
.y3_c00081{bottom:1161.660648px;}
.y2_c00081{bottom:1178.850459px;}
.y1_c00081{bottom:1196.130450px;}
.h6_c00081{height:47.513672px;}
.h1_c00081{height:52.898555px;}
.h2_c00081{height:63.175781px;}
.h3_c00081{height:63.351562px;}
.h7_c00081{height:63.352762px;}
.h5_c00081{height:63.895781px;}
.h4_c00081{height:63.949219px;}
.h0_c00081{height:1263.000000px;}
.w1_c00081{width:892.500000px;}
.w0_c00081{width:892.830000px;}
.x0_c00081{left:0.000000px;}
.x4_c00081{left:127.620000px;}
.x5_c00081{left:136.080000px;}
.x6_c00081{left:454.590000px;}
.x1_c00081{left:649.620000px;}
.x3_c00081{left:747.450000px;}
.x2_c00081{left:765.450198px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls11_c00081{letter-spacing:-3.264000pt;}
.lsf_c00081{letter-spacing:-0.042752pt;}
.ls16_c00081{letter-spacing:-0.038400pt;}
.ls15_c00081{letter-spacing:-0.025600pt;}
.ls17_c00081{letter-spacing:-0.019200pt;}
.ls13_c00081{letter-spacing:-0.012800pt;}
.ls12_c00081{letter-spacing:-0.006400pt;}
.ls10_c00081{letter-spacing:0.000000pt;}
.lsd_c00081{letter-spacing:0.004800pt;}
.ls6_c00081{letter-spacing:0.006400pt;}
.ls0_c00081{letter-spacing:0.009600pt;}
.ls2_c00081{letter-spacing:0.012800pt;}
.ls1_c00081{letter-spacing:0.014400pt;}
.ls9_c00081{letter-spacing:0.019200pt;}
.ls4_c00081{letter-spacing:0.025600pt;}
.lse_c00081{letter-spacing:0.028800pt;}
.ls3_c00081{letter-spacing:0.032000pt;}
.ls8_c00081{letter-spacing:0.044800pt;}
.lsa_c00081{letter-spacing:0.051200pt;}
.lsc_c00081{letter-spacing:0.070400pt;}
.ls7_c00081{letter-spacing:0.076800pt;}
.lsb_c00081{letter-spacing:0.102400pt;}
.ls5_c00081{letter-spacing:0.108800pt;}
.ls14_c00081{letter-spacing:9.280000pt;}
.ws1_c00081{word-spacing:0.000000pt;}
.ws0_c00081{word-spacing:0.122912pt;}
.ws5_c00081{word-spacing:0.129600pt;}
.ws3_c00081{word-spacing:0.144000pt;}
.ws2_c00081{word-spacing:0.148800pt;}
.ws4_c00081{word-spacing:0.153600pt;}
.ws6_c00081{word-spacing:0.158400pt;}
._7_c00081{margin-left:-9.331200pt;}
._8_c00081{margin-left:-8.435200pt;}
._14_c00081{margin-left:-3.526400pt;}
._1b_c00081{margin-left:-2.352000pt;}
._0_c00081{margin-left:-1.118400pt;}
._5_c00081{width:1.152000pt;}
._2_c00081{width:3.136000pt;}
._3_c00081{width:4.032000pt;}
._4_c00081{width:7.680000pt;}
._c_c00081{width:8.716800pt;}
._f_c00081{width:9.824000pt;}
._e_c00081{width:10.860800pt;}
._b_c00081{width:14.809600pt;}
._17_c00081{width:17.958400pt;}
._18_c00081{width:18.886400pt;}
._19_c00081{width:19.840000pt;}
._1d_c00081{width:36.620800pt;}
._1c_c00081{width:37.760000pt;}
._13_c00081{width:42.572800pt;}
._9_c00081{width:44.800000pt;}
._10_c00081{width:46.668800pt;}
._16_c00081{width:113.612800pt;}
._a_c00081{width:511.929600pt;}
._11_c00081{width:565.561600pt;}
._1e_c00081{width:572.812800pt;}
._15_c00081{width:598.835200pt;}
._d_c00081{width:617.011200pt;}
._12_c00081{width:625.638400pt;}
._1a_c00081{width:700.608000pt;}
._6_c00081{width:768.076800pt;}
._1_c00081{width:771.494400pt;}
.fs2_c00081{font-size:48.000000pt;}
.fs0_c00081{font-size:53.440000pt;}
.fs1_c00081{font-size:64.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.y6_c00081{bottom:50.987067pt;}
.y5_c00081{bottom:69.387067pt;}
.y28_c00081{bottom:102.026667pt;}
.y27_c00081{bottom:129.227067pt;}
.y26_c00081{bottom:156.346800pt;}
.y25_c00081{bottom:170.107200pt;}
.y24_c00081{bottom:194.587067pt;}
.y23_c00081{bottom:222.027067pt;}
.y22_c00081{bottom:250.107067pt;}
.y21_c00081{bottom:277.707067pt;}
.y20_c00081{bottom:305.147067pt;}
.y1f_c00081{bottom:333.227067pt;}
.y1e_c00081{bottom:360.827067pt;}
.y1d_c00081{bottom:388.427067pt;}
.y1c_c00081{bottom:415.867067pt;}
.y1b_c00081{bottom:443.947200pt;}
.y1a_c00081{bottom:471.547067pt;}
.y19_c00081{bottom:499.147067pt;}
.y18_c00081{bottom:526.587067pt;}
.y17_c00081{bottom:554.507067pt;}
.y16_c00081{bottom:582.587067pt;}
.y15_c00081{bottom:610.187067pt;}
.y14_c00081{bottom:637.627067pt;}
.y13_c00081{bottom:665.707067pt;}
.y12_c00081{bottom:693.307067pt;}
.y11_c00081{bottom:720.907067pt;}
.y10_c00081{bottom:748.347067pt;}
.yf_c00081{bottom:776.427067pt;}
.ye_c00081{bottom:804.027067pt;}
.yd_c00081{bottom:831.467067pt;}
.yc_c00081{bottom:861.067067pt;}
.yb_c00081{bottom:888.667067pt;}
.ya_c00081{bottom:916.267067pt;}
.y9_c00081{bottom:943.867067pt;}
.y8_c00081{bottom:971.467067pt;}
.y7_c00081{bottom:1003.227067pt;}
.y4_c00081{bottom:1017.227251pt;}
.y3_c00081{bottom:1032.587243pt;}
.y2_c00081{bottom:1047.867075pt;}
.y1_c00081{bottom:1063.227067pt;}
.h6_c00081{height:42.234375pt;}
.h1_c00081{height:47.020937pt;}
.h2_c00081{height:56.156250pt;}
.h3_c00081{height:56.312500pt;}
.h7_c00081{height:56.313567pt;}
.h5_c00081{height:56.796250pt;}
.h4_c00081{height:56.843750pt;}
.h0_c00081{height:1122.666667pt;}
.w1_c00081{width:793.333333pt;}
.w0_c00081{width:793.626667pt;}
.x0_c00081{left:0.000000pt;}
.x4_c00081{left:113.440000pt;}
.x5_c00081{left:120.960000pt;}
.x6_c00081{left:404.080000pt;}
.x1_c00081{left:577.440000pt;}
.x3_c00081{left:664.400000pt;}
.x2_c00081{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94f548bfa422121eaec1bd40.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.095703;font-style:normal;font-weight:normal;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_9fd1b6a90132281c486c7e86.woff2')format("woff");}.ff2_c00082{font-family:ff2_c00082;line-height:1.093262;font-style:normal;font-weight:normal;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_00cb0b902ca9ec6e00afee5f.woff2')format("woff");}.ff3_c00082{font-family:ff3_c00082;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00082{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.lse_c00082{letter-spacing:-0.102204px;}
.ls11_c00082{letter-spacing:-0.050400px;}
.ls14_c00082{letter-spacing:-0.028800px;}
.ls12_c00082{letter-spacing:-0.021600px;}
.ls10_c00082{letter-spacing:-0.014400px;}
.ls15_c00082{letter-spacing:-0.007200px;}
.lsf_c00082{letter-spacing:0.000000px;}
.ls8_c00082{letter-spacing:0.005400px;}
.ls7_c00082{letter-spacing:0.007200px;}
.ls0_c00082{letter-spacing:0.010800px;}
.ls5_c00082{letter-spacing:0.014400px;}
.ls1_c00082{letter-spacing:0.016200px;}
.ls2_c00082{letter-spacing:0.021600px;}
.lsa_c00082{letter-spacing:0.028800px;}
.ls9_c00082{letter-spacing:0.032400px;}
.ls3_c00082{letter-spacing:0.036000px;}
.ls4_c00082{letter-spacing:0.043200px;}
.lsd_c00082{letter-spacing:0.050400px;}
.ls6_c00082{letter-spacing:0.064800px;}
.lsb_c00082{letter-spacing:0.079200px;}
.ls13_c00082{letter-spacing:0.086400px;}
.lsc_c00082{letter-spacing:0.108000px;}
.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;}
}
.ws1_c00082{word-spacing:0.000000px;}
.ws5_c00082{word-spacing:0.145800px;}
.ws3_c00082{word-spacing:0.162000px;}
.ws2_c00082{word-spacing:0.167400px;}
.ws4_c00082{word-spacing:0.172800px;}
.ws0_c00082{word-spacing:0.192384px;}
._14_c00082{margin-left:-5.032800px;}
._15_c00082{margin-left:-3.626064px;}
._9_c00082{margin-left:-2.584800px;}
._1_c00082{margin-left:-1.258200px;}
._0_c00082{width:1.034064px;}
._e_c00082{width:3.182400px;}
._8_c00082{width:4.593600px;}
._12_c00082{width:8.100000px;}
._13_c00082{width:9.288000px;}
._6_c00082{width:10.440000px;}
._16_c00082{width:12.333600px;}
._17_c00082{width:13.680000px;}
._10_c00082{width:16.876800px;}
._b_c00082{width:19.764000px;}
._c_c00082{width:36.698400px;}
._3_c00082{width:137.174400px;}
._d_c00082{width:549.705600px;}
._f_c00082{width:591.372000px;}
._2_c00082{width:638.064000px;}
._a_c00082{width:644.414400px;}
._5_c00082{width:704.995200px;}
._4_c00082{width:817.668000px;}
._7_c00082{width:906.307200px;}
._11_c00082{width:910.080000px;}
.fc2_c00082{color:rgb(68,84,106);}
.fc1_c00082{color:rgb(0,0,0);}
.fc0_c00082{color:rgb(32,31,30);}
.fs2_c00082{font-size:54.000000px;}
.fs0_c00082{font-size:60.120000px;}
.fs1_c00082{font-size:72.000000px;}
.y0_c00082{bottom:0.000000px;}
.y5_c00082{bottom:57.360450px;}
.y4_c00082{bottom:78.060450px;}
.y25_c00082{bottom:144.120450px;}
.y24_c00082{bottom:175.260450px;}
.y23_c00082{bottom:206.310450px;}
.y22_c00082{bottom:237.360450px;}
.y21_c00082{bottom:280.290450px;}
.y20_c00082{bottom:311.430450px;}
.y1f_c00082{bottom:342.480450px;}
.y1e_c00082{bottom:373.530450px;}
.y1d_c00082{bottom:404.580450px;}
.y1c_c00082{bottom:435.630450px;}
.y1b_c00082{bottom:469.920450px;}
.y1a_c00082{bottom:504.840000px;}
.y19_c00082{bottom:520.320450px;}
.y18_c00082{bottom:547.860450px;}
.y17_c00082{bottom:578.730450px;}
.y16_c00082{bottom:610.320450px;}
.y15_c00082{bottom:641.190450px;}
.y14_c00082{bottom:672.780450px;}
.y13_c00082{bottom:703.650450px;}
.y12_c00082{bottom:735.240450px;}
.y11_c00082{bottom:766.290450px;}
.y10_c00082{bottom:797.160450px;}
.yf_c00082{bottom:828.750450px;}
.ye_c00082{bottom:859.800450px;}
.yd_c00082{bottom:890.670450px;}
.yc_c00082{bottom:922.260450px;}
.yb_c00082{bottom:953.130450px;}
.ya_c00082{bottom:984.720450px;}
.y9_c00082{bottom:1015.590450px;}
.y8_c00082{bottom:1048.890450px;}
.y7_c00082{bottom:1079.940450px;}
.y6_c00082{bottom:1115.760450px;}
.y3_c00082{bottom:1132.140450px;}
.y2_c00082{bottom:1165.441023px;}
.y1_c00082{bottom:1196.040600px;}
.h5_c00082{height:47.513672px;}
.h1_c00082{height:52.898555px;}
.h2_c00082{height:63.175781px;}
.h3_c00082{height:63.351562px;}
.h4_c00082{height:63.949219px;}
.h0_c00082{height:1263.000000px;}
.w1_c00082{width:892.500000px;}
.w0_c00082{width:892.830000px;}
.x0_c00082{left:0.000000px;}
.x1_c00082{left:127.620000px;}
.x3_c00082{left:136.080000px;}
.x4_c00082{left:454.590000px;}
.x2_c00082{left:747.450000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.lse_c00082{letter-spacing:-0.090848pt;}
.ls11_c00082{letter-spacing:-0.044800pt;}
.ls14_c00082{letter-spacing:-0.025600pt;}
.ls12_c00082{letter-spacing:-0.019200pt;}
.ls10_c00082{letter-spacing:-0.012800pt;}
.ls15_c00082{letter-spacing:-0.006400pt;}
.lsf_c00082{letter-spacing:0.000000pt;}
.ls8_c00082{letter-spacing:0.004800pt;}
.ls7_c00082{letter-spacing:0.006400pt;}
.ls0_c00082{letter-spacing:0.009600pt;}
.ls5_c00082{letter-spacing:0.012800pt;}
.ls1_c00082{letter-spacing:0.014400pt;}
.ls2_c00082{letter-spacing:0.019200pt;}
.lsa_c00082{letter-spacing:0.025600pt;}
.ls9_c00082{letter-spacing:0.028800pt;}
.ls3_c00082{letter-spacing:0.032000pt;}
.ls4_c00082{letter-spacing:0.038400pt;}
.lsd_c00082{letter-spacing:0.044800pt;}
.ls6_c00082{letter-spacing:0.057600pt;}
.lsb_c00082{letter-spacing:0.070400pt;}
.ls13_c00082{letter-spacing:0.076800pt;}
.lsc_c00082{letter-spacing:0.096000pt;}
.ws1_c00082{word-spacing:0.000000pt;}
.ws5_c00082{word-spacing:0.129600pt;}
.ws3_c00082{word-spacing:0.144000pt;}
.ws2_c00082{word-spacing:0.148800pt;}
.ws4_c00082{word-spacing:0.153600pt;}
.ws0_c00082{word-spacing:0.171008pt;}
._14_c00082{margin-left:-4.473600pt;}
._15_c00082{margin-left:-3.223168pt;}
._9_c00082{margin-left:-2.297600pt;}
._1_c00082{margin-left:-1.118400pt;}
._0_c00082{width:0.919168pt;}
._e_c00082{width:2.828800pt;}
._8_c00082{width:4.083200pt;}
._12_c00082{width:7.200000pt;}
._13_c00082{width:8.256000pt;}
._6_c00082{width:9.280000pt;}
._16_c00082{width:10.963200pt;}
._17_c00082{width:12.160000pt;}
._10_c00082{width:15.001600pt;}
._b_c00082{width:17.568000pt;}
._c_c00082{width:32.620800pt;}
._3_c00082{width:121.932800pt;}
._d_c00082{width:488.627200pt;}
._f_c00082{width:525.664000pt;}
._2_c00082{width:567.168000pt;}
._a_c00082{width:572.812800pt;}
._5_c00082{width:626.662400pt;}
._4_c00082{width:726.816000pt;}
._7_c00082{width:805.606400pt;}
._11_c00082{width:808.960000pt;}
.fs2_c00082{font-size:48.000000pt;}
.fs0_c00082{font-size:53.440000pt;}
.fs1_c00082{font-size:64.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y5_c00082{bottom:50.987067pt;}
.y4_c00082{bottom:69.387067pt;}
.y25_c00082{bottom:128.107067pt;}
.y24_c00082{bottom:155.787067pt;}
.y23_c00082{bottom:183.387067pt;}
.y22_c00082{bottom:210.987067pt;}
.y21_c00082{bottom:249.147067pt;}
.y20_c00082{bottom:276.827067pt;}
.y1f_c00082{bottom:304.427067pt;}
.y1e_c00082{bottom:332.027067pt;}
.y1d_c00082{bottom:359.627067pt;}
.y1c_c00082{bottom:387.227067pt;}
.y1b_c00082{bottom:417.707067pt;}
.y1a_c00082{bottom:448.746667pt;}
.y19_c00082{bottom:462.507067pt;}
.y18_c00082{bottom:486.987067pt;}
.y17_c00082{bottom:514.427067pt;}
.y16_c00082{bottom:542.507067pt;}
.y15_c00082{bottom:569.947067pt;}
.y14_c00082{bottom:598.027067pt;}
.y13_c00082{bottom:625.467067pt;}
.y12_c00082{bottom:653.547067pt;}
.y11_c00082{bottom:681.147067pt;}
.y10_c00082{bottom:708.587067pt;}
.yf_c00082{bottom:736.667067pt;}
.ye_c00082{bottom:764.267067pt;}
.yd_c00082{bottom:791.707067pt;}
.yc_c00082{bottom:819.787067pt;}
.yb_c00082{bottom:847.227067pt;}
.ya_c00082{bottom:875.307067pt;}
.y9_c00082{bottom:902.747067pt;}
.y8_c00082{bottom:932.347067pt;}
.y7_c00082{bottom:959.947067pt;}
.y6_c00082{bottom:991.787067pt;}
.y3_c00082{bottom:1006.347067pt;}
.y2_c00082{bottom:1035.947576pt;}
.y1_c00082{bottom:1063.147200pt;}
.h5_c00082{height:42.234375pt;}
.h1_c00082{height:47.020937pt;}
.h2_c00082{height:56.156250pt;}
.h3_c00082{height:56.312500pt;}
.h4_c00082{height:56.843750pt;}
.h0_c00082{height:1122.666667pt;}
.w1_c00082{width:793.333333pt;}
.w0_c00082{width:793.626667pt;}
.x0_c00082{left:0.000000pt;}
.x1_c00082{left:113.440000pt;}
.x3_c00082{left:120.960000pt;}
.x4_c00082{left:404.080000pt;}
.x2_c00082{left:664.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.095703;font-style:normal;font-weight:normal;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_f7bc12effe915cc0fe37424c.woff2')format("woff");}.ff2_c00083{font-family:ff2_c00083;line-height:1.093262;font-style: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);}
.v2_c00083{vertical-align:-20.880000px;}
.v0_c00083{vertical-align:0.000000px;}
.v1_c00083{vertical-align:27.000000px;}
.ls18_c00083{letter-spacing:-0.222444px;}
.ls15_c00083{letter-spacing:-0.100800px;}
.ls16_c00083{letter-spacing:-0.072144px;}
.lsa_c00083{letter-spacing:-0.048096px;}
.ls13_c00083{letter-spacing:-0.043200px;}
.lsd_c00083{letter-spacing:-0.036000px;}
.lsf_c00083{letter-spacing:-0.028800px;}
.ls12_c00083{letter-spacing:-0.021600px;}
.ls14_c00083{letter-spacing:-0.014400px;}
.lsc_c00083{letter-spacing:-0.007200px;}
.lsb_c00083{letter-spacing:0.000000px;}
.ls7_c00083{letter-spacing:0.007200px;}
.ls6_c00083{letter-spacing:0.014400px;}
.ls5_c00083{letter-spacing:0.021600px;}
.ls1_c00083{letter-spacing:0.028800px;}
.ls3_c00083{letter-spacing:0.036000px;}
.ls9_c00083{letter-spacing:0.043200px;}
.ls2_c00083{letter-spacing:0.050400px;}
.ls0_c00083{letter-spacing:0.057600px;}
.ls4_c00083{letter-spacing:0.064800px;}
.ls17_c00083{letter-spacing:0.078156px;}
.ls8_c00083{letter-spacing:0.079200px;}
.ls10_c00083{letter-spacing:0.093600px;}
.ls11_c00083{letter-spacing:0.181944px;}
.lse_c00083{letter-spacing:16.200000px;}
.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;}
}
.ws3_c00083{word-spacing:-15.108156px;}
.ws2_c00083{word-spacing:-14.957856px;}
.ws0_c00083{word-spacing:-12.151944px;}
.ws1_c00083{word-spacing:-9.720000px;}
.ws5_c00083{word-spacing:0.000000px;}
.ws4_c00083{word-spacing:0.138276px;}
._5_c00083{margin-left:-16.300800px;}
._6_c00083{margin-left:-15.285600px;}
._9_c00083{margin-left:-2.908800px;}
._1_c00083{margin-left:-1.022400px;}
._2_c00083{width:1.807200px;}
._c_c00083{width:2.844000px;}
._a_c00083{width:3.880800px;}
._8_c00083{width:5.378400px;}
._11_c00083{width:6.408000px;}
._0_c00083{width:7.502400px;}
._b_c00083{width:8.632800px;}
._d_c00083{width:10.058400px;}
._10_c00083{width:11.836800px;}
._3_c00083{width:15.789600px;}
._4_c00083{width:17.035200px;}
._7_c00083{width:23.724000px;}
._e_c00083{width:25.336800px;}
._f_c00083{width:26.553600px;}
.fc0_c00083{color:rgb(0,0,0);}
.fs3_c00083{font-size:38.880000px;}
.fs2_c00083{font-size:47.880000px;}
.fs0_c00083{font-size:60.120000px;}
.fs1_c00083{font-size:72.000000px;}
.y0_c00083{bottom:0.000000px;}
.y6_c00083{bottom:57.360450px;}
.y5_c00083{bottom:78.060450px;}
.y26_c00083{bottom:109.920648px;}
.y25_c00083{bottom:127.110459px;}
.y24_c00083{bottom:149.610450px;}
.y23_c00083{bottom:162.300450px;}
.y22_c00083{bottom:250.050450px;}
.y21_c00083{bottom:281.100450px;}
.y20_c00083{bottom:312.150450px;}
.y1f_c00083{bottom:343.200450px;}
.y1e_c00083{bottom:374.250450px;}
.y1d_c00083{bottom:405.300450px;}
.y1c_c00083{bottom:448.230450px;}
.y1b_c00083{bottom:479.370450px;}
.y1a_c00083{bottom:510.420450px;}
.y19_c00083{bottom:541.470450px;}
.y18_c00083{bottom:572.520450px;}
.y17_c00083{bottom:603.570450px;}
.y16_c00083{bottom:634.620450px;}
.y15_c00083{bottom:665.670450px;}
.y14_c00083{bottom:708.600450px;}
.y13_c00083{bottom:739.740450px;}
.y12_c00083{bottom:770.790450px;}
.y11_c00083{bottom:801.840450px;}
.y10_c00083{bottom:832.890450px;}
.yf_c00083{bottom:863.940450px;}
.ye_c00083{bottom:906.960450px;}
.yd_c00083{bottom:938.100450px;}
.yc_c00083{bottom:969.150450px;}
.yb_c00083{bottom:1000.200450px;}
.ya_c00083{bottom:1031.160450px;}
.y9_c00083{bottom:1062.210450px;}
.y8_c00083{bottom:1093.260450px;}
.y7_c00083{bottom:1124.310450px;}
.y4_c00083{bottom:1144.380657px;}
.y3_c00083{bottom:1161.660648px;}
.y2_c00083{bottom:1178.850459px;}
.y1_c00083{bottom:1196.130450px;}
.h4_c00083{height:34.114922px;}
.h5_c00083{height:52.751777px;}
.h1_c00083{height:52.898555px;}
.h2_c00083{height:63.175781px;}
.h3_c00083{height:69.011895px;}
.h0_c00083{height:1263.000000px;}
.w1_c00083{width:892.500000px;}
.w0_c00083{width:892.830000px;}
.x0_c00083{left:0.000000px;}
.x4_c00083{left:127.620000px;}
.x1_c00083{left:649.620000px;}
.x3_c00083{left:747.450000px;}
.x2_c00083{left:765.450198px;}
@media print{
.v2_c00083{vertical-align:-18.560000pt;}
.v0_c00083{vertical-align:0.000000pt;}
.v1_c00083{vertical-align:24.000000pt;}
.ls18_c00083{letter-spacing:-0.197728pt;}
.ls15_c00083{letter-spacing:-0.089600pt;}
.ls16_c00083{letter-spacing:-0.064128pt;}
.lsa_c00083{letter-spacing:-0.042752pt;}
.ls13_c00083{letter-spacing:-0.038400pt;}
.lsd_c00083{letter-spacing:-0.032000pt;}
.lsf_c00083{letter-spacing:-0.025600pt;}
.ls12_c00083{letter-spacing:-0.019200pt;}
.ls14_c00083{letter-spacing:-0.012800pt;}
.lsc_c00083{letter-spacing:-0.006400pt;}
.lsb_c00083{letter-spacing:0.000000pt;}
.ls7_c00083{letter-spacing:0.006400pt;}
.ls6_c00083{letter-spacing:0.012800pt;}
.ls5_c00083{letter-spacing:0.019200pt;}
.ls1_c00083{letter-spacing:0.025600pt;}
.ls3_c00083{letter-spacing:0.032000pt;}
.ls9_c00083{letter-spacing:0.038400pt;}
.ls2_c00083{letter-spacing:0.044800pt;}
.ls0_c00083{letter-spacing:0.051200pt;}
.ls4_c00083{letter-spacing:0.057600pt;}
.ls17_c00083{letter-spacing:0.069472pt;}
.ls8_c00083{letter-spacing:0.070400pt;}
.ls10_c00083{letter-spacing:0.083200pt;}
.ls11_c00083{letter-spacing:0.161728pt;}
.lse_c00083{letter-spacing:14.400000pt;}
.ws3_c00083{word-spacing:-13.429472pt;}
.ws2_c00083{word-spacing:-13.295872pt;}
.ws0_c00083{word-spacing:-10.801728pt;}
.ws1_c00083{word-spacing:-8.640000pt;}
.ws5_c00083{word-spacing:0.000000pt;}
.ws4_c00083{word-spacing:0.122912pt;}
._5_c00083{margin-left:-14.489600pt;}
._6_c00083{margin-left:-13.587200pt;}
._9_c00083{margin-left:-2.585600pt;}
._1_c00083{margin-left:-0.908800pt;}
._2_c00083{width:1.606400pt;}
._c_c00083{width:2.528000pt;}
._a_c00083{width:3.449600pt;}
._8_c00083{width:4.780800pt;}
._11_c00083{width:5.696000pt;}
._0_c00083{width:6.668800pt;}
._b_c00083{width:7.673600pt;}
._d_c00083{width:8.940800pt;}
._10_c00083{width:10.521600pt;}
._3_c00083{width:14.035200pt;}
._4_c00083{width:15.142400pt;}
._7_c00083{width:21.088000pt;}
._e_c00083{width:22.521600pt;}
._f_c00083{width:23.603200pt;}
.fs3_c00083{font-size:34.560000pt;}
.fs2_c00083{font-size:42.560000pt;}
.fs0_c00083{font-size:53.440000pt;}
.fs1_c00083{font-size:64.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y6_c00083{bottom:50.987067pt;}
.y5_c00083{bottom:69.387067pt;}
.y26_c00083{bottom:97.707243pt;}
.y25_c00083{bottom:112.987075pt;}
.y24_c00083{bottom:132.987067pt;}
.y23_c00083{bottom:144.267067pt;}
.y22_c00083{bottom:222.267067pt;}
.y21_c00083{bottom:249.867067pt;}
.y20_c00083{bottom:277.467067pt;}
.y1f_c00083{bottom:305.067067pt;}
.y1e_c00083{bottom:332.667067pt;}
.y1d_c00083{bottom:360.267067pt;}
.y1c_c00083{bottom:398.427067pt;}
.y1b_c00083{bottom:426.107067pt;}
.y1a_c00083{bottom:453.707067pt;}
.y19_c00083{bottom:481.307067pt;}
.y18_c00083{bottom:508.907067pt;}
.y17_c00083{bottom:536.507067pt;}
.y16_c00083{bottom:564.107067pt;}
.y15_c00083{bottom:591.707067pt;}
.y14_c00083{bottom:629.867067pt;}
.y13_c00083{bottom:657.547067pt;}
.y12_c00083{bottom:685.147067pt;}
.y11_c00083{bottom:712.747067pt;}
.y10_c00083{bottom:740.347067pt;}
.yf_c00083{bottom:767.947067pt;}
.ye_c00083{bottom:806.187067pt;}
.yd_c00083{bottom:833.867067pt;}
.yc_c00083{bottom:861.467067pt;}
.yb_c00083{bottom:889.067067pt;}
.ya_c00083{bottom:916.587067pt;}
.y9_c00083{bottom:944.187067pt;}
.y8_c00083{bottom:971.787067pt;}
.y7_c00083{bottom:999.387067pt;}
.y4_c00083{bottom:1017.227251pt;}
.y3_c00083{bottom:1032.587243pt;}
.y2_c00083{bottom:1047.867075pt;}
.y1_c00083{bottom:1063.227067pt;}
.h4_c00083{height:30.324375pt;}
.h5_c00083{height:46.890469pt;}
.h1_c00083{height:47.020937pt;}
.h2_c00083{height:56.156250pt;}
.h3_c00083{height:61.343906pt;}
.h0_c00083{height:1122.666667pt;}
.w1_c00083{width:793.333333pt;}
.w0_c00083{width:793.626667pt;}
.x0_c00083{left:0.000000pt;}
.x4_c00083{left:113.440000pt;}
.x1_c00083{left:577.440000pt;}
.x3_c00083{left:664.400000pt;}
.x2_c00083{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6da45fb1c2db7e07275cf79e.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.095703;font-style:normal;font-weight:normal;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_c191a727fe2ff3fea675c37b.woff2')format("woff");}.ff2_c00084{font-family:ff2_c00084;line-height:1.093262;font-style: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;}
.ls19_c00084{letter-spacing:-0.288000px;}
.ls15_c00084{letter-spacing:-0.216000px;}
.lse_c00084{letter-spacing:-0.102204px;}
.ls17_c00084{letter-spacing:-0.064800px;}
.ls16_c00084{letter-spacing:-0.057600px;}
.ls18_c00084{letter-spacing:-0.050400px;}
.ls10_c00084{letter-spacing:-0.043200px;}
.ls11_c00084{letter-spacing:-0.036000px;}
.ls12_c00084{letter-spacing:-0.021600px;}
.ls14_c00084{letter-spacing:-0.014400px;}
.ls13_c00084{letter-spacing:-0.007200px;}
.lsf_c00084{letter-spacing:0.000000px;}
.ls7_c00084{letter-spacing:0.007200px;}
.ls1_c00084{letter-spacing:0.014400px;}
.lsb_c00084{letter-spacing:0.021600px;}
.ls2_c00084{letter-spacing:0.028800px;}
.ls3_c00084{letter-spacing:0.036000px;}
.lsc_c00084{letter-spacing:0.043200px;}
.ls8_c00084{letter-spacing:0.050400px;}
.ls5_c00084{letter-spacing:0.057600px;}
.lsa_c00084{letter-spacing:0.072000px;}
.ls0_c00084{letter-spacing:0.079200px;}
.ls9_c00084{letter-spacing:0.086400px;}
.lsd_c00084{letter-spacing:0.093600px;}
.ls6_c00084{letter-spacing:0.100800px;}
.ls4_c00084{letter-spacing:0.129600px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00084{word-spacing:-18.093600px;}
.ws4_c00084{word-spacing:-0.028800px;}
.ws2_c00084{word-spacing:0.000000px;}
.ws3_c00084{word-spacing:0.151200px;}
.ws1_c00084{word-spacing:0.192384px;}
._a_c00084{margin-left:-4.284000px;}
._7_c00084{margin-left:-2.988000px;}
._2_c00084{margin-left:-1.224000px;}
._0_c00084{width:1.034064px;}
._1_c00084{width:2.080800px;}
._6_c00084{width:3.564000px;}
._c_c00084{width:4.773600px;}
._d_c00084{width:5.774400px;}
._5_c00084{width:7.524000px;}
._4_c00084{width:8.985600px;}
._3_c00084{width:10.051200px;}
._b_c00084{width:11.181600px;}
._9_c00084{width:15.408000px;}
._8_c00084{width:16.545600px;}
.fc1_c00084{color:rgb(0,0,0);}
.fc0_c00084{color:rgb(32,31,30);}
.fs0_c00084{font-size:60.120000px;}
.fs1_c00084{font-size:72.000000px;}
.y0_c00084{bottom:0.000000px;}
.y5_c00084{bottom:57.360450px;}
.y4_c00084{bottom:78.060450px;}
.y23_c00084{bottom:162.210450px;}
.y22_c00084{bottom:193.260450px;}
.y21_c00084{bottom:224.310450px;}
.y20_c00084{bottom:255.270450px;}
.y1f_c00084{bottom:286.320450px;}
.y1e_c00084{bottom:317.370450px;}
.y1d_c00084{bottom:360.390450px;}
.y1c_c00084{bottom:391.530450px;}
.y1b_c00084{bottom:422.580450px;}
.y1a_c00084{bottom:453.630450px;}
.y19_c00084{bottom:484.680450px;}
.y18_c00084{bottom:515.730450px;}
.y17_c00084{bottom:558.660450px;}
.y16_c00084{bottom:589.800450px;}
.y15_c00084{bottom:620.850450px;}
.y14_c00084{bottom:651.900450px;}
.y13_c00084{bottom:686.100450px;}
.y12_c00084{bottom:708.420450px;}
.y11_c00084{bottom:733.800450px;}
.y10_c00084{bottom:776.820450px;}
.yf_c00084{bottom:807.960450px;}
.ye_c00084{bottom:839.010450px;}
.yd_c00084{bottom:882.030450px;}
.yc_c00084{bottom:913.170450px;}
.yb_c00084{bottom:944.220450px;}
.ya_c00084{bottom:975.180450px;}
.y9_c00084{bottom:1006.230450px;}
.y8_c00084{bottom:1037.280450px;}
.y7_c00084{bottom:1080.300450px;}
.y6_c00084{bottom:1111.440450px;}
.y3_c00084{bottom:1132.140450px;}
.y2_c00084{bottom:1165.441023px;}
.y1_c00084{bottom:1196.040600px;}
.h1_c00084{height:52.898555px;}
.h2_c00084{height:63.175781px;}
.h3_c00084{height:63.351562px;}
.h0_c00084{height:1263.000000px;}
.w1_c00084{width:892.500000px;}
.w0_c00084{width:892.830000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:127.620000px;}
.x2_c00084{left:747.450000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls19_c00084{letter-spacing:-0.256000pt;}
.ls15_c00084{letter-spacing:-0.192000pt;}
.lse_c00084{letter-spacing:-0.090848pt;}
.ls17_c00084{letter-spacing:-0.057600pt;}
.ls16_c00084{letter-spacing:-0.051200pt;}
.ls18_c00084{letter-spacing:-0.044800pt;}
.ls10_c00084{letter-spacing:-0.038400pt;}
.ls11_c00084{letter-spacing:-0.032000pt;}
.ls12_c00084{letter-spacing:-0.019200pt;}
.ls14_c00084{letter-spacing:-0.012800pt;}
.ls13_c00084{letter-spacing:-0.006400pt;}
.lsf_c00084{letter-spacing:0.000000pt;}
.ls7_c00084{letter-spacing:0.006400pt;}
.ls1_c00084{letter-spacing:0.012800pt;}
.lsb_c00084{letter-spacing:0.019200pt;}
.ls2_c00084{letter-spacing:0.025600pt;}
.ls3_c00084{letter-spacing:0.032000pt;}
.lsc_c00084{letter-spacing:0.038400pt;}
.ls8_c00084{letter-spacing:0.044800pt;}
.ls5_c00084{letter-spacing:0.051200pt;}
.lsa_c00084{letter-spacing:0.064000pt;}
.ls0_c00084{letter-spacing:0.070400pt;}
.ls9_c00084{letter-spacing:0.076800pt;}
.lsd_c00084{letter-spacing:0.083200pt;}
.ls6_c00084{letter-spacing:0.089600pt;}
.ls4_c00084{letter-spacing:0.115200pt;}
.ws0_c00084{word-spacing:-16.083200pt;}
.ws4_c00084{word-spacing:-0.025600pt;}
.ws2_c00084{word-spacing:0.000000pt;}
.ws3_c00084{word-spacing:0.134400pt;}
.ws1_c00084{word-spacing:0.171008pt;}
._a_c00084{margin-left:-3.808000pt;}
._7_c00084{margin-left:-2.656000pt;}
._2_c00084{margin-left:-1.088000pt;}
._0_c00084{width:0.919168pt;}
._1_c00084{width:1.849600pt;}
._6_c00084{width:3.168000pt;}
._c_c00084{width:4.243200pt;}
._d_c00084{width:5.132800pt;}
._5_c00084{width:6.688000pt;}
._4_c00084{width:7.987200pt;}
._3_c00084{width:8.934400pt;}
._b_c00084{width:9.939200pt;}
._9_c00084{width:13.696000pt;}
._8_c00084{width:14.707200pt;}
.fs0_c00084{font-size:53.440000pt;}
.fs1_c00084{font-size:64.000000pt;}
.y0_c00084{bottom:0.000000pt;}
.y5_c00084{bottom:50.987067pt;}
.y4_c00084{bottom:69.387067pt;}
.y23_c00084{bottom:144.187067pt;}
.y22_c00084{bottom:171.787067pt;}
.y21_c00084{bottom:199.387067pt;}
.y20_c00084{bottom:226.907067pt;}
.y1f_c00084{bottom:254.507067pt;}
.y1e_c00084{bottom:282.107067pt;}
.y1d_c00084{bottom:320.347067pt;}
.y1c_c00084{bottom:348.027067pt;}
.y1b_c00084{bottom:375.627067pt;}
.y1a_c00084{bottom:403.227067pt;}
.y19_c00084{bottom:430.827067pt;}
.y18_c00084{bottom:458.427067pt;}
.y17_c00084{bottom:496.587067pt;}
.y16_c00084{bottom:524.267067pt;}
.y15_c00084{bottom:551.867067pt;}
.y14_c00084{bottom:579.467067pt;}
.y13_c00084{bottom:609.867067pt;}
.y12_c00084{bottom:629.707067pt;}
.y11_c00084{bottom:652.267067pt;}
.y10_c00084{bottom:690.507067pt;}
.yf_c00084{bottom:718.187067pt;}
.ye_c00084{bottom:745.787067pt;}
.yd_c00084{bottom:784.027067pt;}
.yc_c00084{bottom:811.707067pt;}
.yb_c00084{bottom:839.307067pt;}
.ya_c00084{bottom:866.827067pt;}
.y9_c00084{bottom:894.427067pt;}
.y8_c00084{bottom:922.027067pt;}
.y7_c00084{bottom:960.267067pt;}
.y6_c00084{bottom:987.947067pt;}
.y3_c00084{bottom:1006.347067pt;}
.y2_c00084{bottom:1035.947576pt;}
.y1_c00084{bottom:1063.147200pt;}
.h1_c00084{height:47.020937pt;}
.h2_c00084{height:56.156250pt;}
.h3_c00084{height:56.312500pt;}
.h0_c00084{height:1122.666667pt;}
.w1_c00084{width:793.333333pt;}
.w0_c00084{width:793.626667pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:113.440000pt;}
.x2_c00084{left:664.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_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_563a12e9024d7decb015472e.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.095703;font-style:normal;font-weight:normal;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_2f8bceaa326a53bfc264bebd.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00085{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls15_c00085{letter-spacing:-0.064800px;}
.lsf_c00085{letter-spacing:-0.048096px;}
.ls12_c00085{letter-spacing:-0.043200px;}
.ls19_c00085{letter-spacing:-0.028800px;}
.ls13_c00085{letter-spacing:-0.021600px;}
.ls11_c00085{letter-spacing:-0.014400px;}
.ls14_c00085{letter-spacing:-0.007200px;}
.ls10_c00085{letter-spacing:0.000000px;}
.ls3_c00085{letter-spacing:0.007200px;}
.lsa_c00085{letter-spacing:0.014400px;}
.ls4_c00085{letter-spacing:0.021600px;}
.ls0_c00085{letter-spacing:0.028800px;}
.ls2_c00085{letter-spacing:0.036000px;}
.ls1_c00085{letter-spacing:0.043200px;}
.ls6_c00085{letter-spacing:0.057600px;}
.lsb_c00085{letter-spacing:0.064800px;}
.ls5_c00085{letter-spacing:0.072000px;}
.lsd_c00085{letter-spacing:0.079200px;}
.ls8_c00085{letter-spacing:0.086400px;}
.lsc_c00085{letter-spacing:0.093600px;}
.ls16_c00085{letter-spacing:0.100800px;}
.ls7_c00085{letter-spacing:0.122400px;}
.lse_c00085{letter-spacing:0.136800px;}
.ls9_c00085{letter-spacing:0.158400px;}
.ls18_c00085{letter-spacing:3.600000px;}
.ls17_c00085{letter-spacing:4.320000px;}
.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;}
}
.ws2_c00085{word-spacing:-0.007200px;}
.ws1_c00085{word-spacing:0.000000px;}
.ws0_c00085{word-spacing:0.138276px;}
._c_c00085{margin-left:-5.652000px;}
._d_c00085{margin-left:-4.615200px;}
._b_c00085{margin-left:-3.492000px;}
._7_c00085{margin-left:-2.419200px;}
._1_c00085{margin-left:-1.094400px;}
._9_c00085{width:1.051200px;}
._10_c00085{width:2.152800px;}
._6_c00085{width:3.232800px;}
._a_c00085{width:4.694400px;}
._3_c00085{width:5.918400px;}
._4_c00085{width:10.008000px;}
._5_c00085{width:11.246400px;}
._2_c00085{width:14.803200px;}
._0_c00085{width:15.811200px;}
._8_c00085{width:19.080000px;}
._e_c00085{width:28.353600px;}
._f_c00085{width:29.822400px;}
.fc0_c00085{color:rgb(0,0,0);}
.fs0_c00085{font-size:60.120000px;}
.fs1_c00085{font-size:72.000000px;}
.y0_c00085{bottom:0.000000px;}
.y6_c00085{bottom:57.360450px;}
.y5_c00085{bottom:78.060450px;}
.y25_c00085{bottom:132.960450px;}
.y24_c00085{bottom:164.010450px;}
.y23_c00085{bottom:195.060450px;}
.y22_c00085{bottom:226.110450px;}
.y21_c00085{bottom:257.070450px;}
.y20_c00085{bottom:300.090450px;}
.y1f_c00085{bottom:331.230450px;}
.y1e_c00085{bottom:362.280450px;}
.y1d_c00085{bottom:393.330450px;}
.y1c_c00085{bottom:424.380450px;}
.y1b_c00085{bottom:455.430450px;}
.y1a_c00085{bottom:486.480450px;}
.y19_c00085{bottom:517.530450px;}
.y18_c00085{bottom:548.580450px;}
.y17_c00085{bottom:591.510450px;}
.y16_c00085{bottom:622.650450px;}
.y15_c00085{bottom:653.700450px;}
.y14_c00085{bottom:684.750450px;}
.y13_c00085{bottom:727.680450px;}
.y12_c00085{bottom:758.820450px;}
.y11_c00085{bottom:789.870450px;}
.y10_c00085{bottom:820.920450px;}
.yf_c00085{bottom:851.970450px;}
.ye_c00085{bottom:883.020450px;}
.yd_c00085{bottom:914.070450px;}
.yc_c00085{bottom:957.000450px;}
.yb_c00085{bottom:988.140450px;}
.ya_c00085{bottom:1019.190450px;}
.y9_c00085{bottom:1050.240450px;}
.y8_c00085{bottom:1093.170450px;}
.y7_c00085{bottom:1124.310450px;}
.y4_c00085{bottom:1144.380657px;}
.y3_c00085{bottom:1161.660648px;}
.y2_c00085{bottom:1178.850459px;}
.y1_c00085{bottom:1196.130450px;}
.h1_c00085{height:52.898555px;}
.h2_c00085{height:63.175781px;}
.h3_c00085{height:63.351562px;}
.h0_c00085{height:1263.000000px;}
.w1_c00085{width:892.500000px;}
.w0_c00085{width:892.830000px;}
.x0_c00085{left:0.000000px;}
.x4_c00085{left:127.620000px;}
.x1_c00085{left:649.620000px;}
.x3_c00085{left:747.450000px;}
.x2_c00085{left:765.450198px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls15_c00085{letter-spacing:-0.057600pt;}
.lsf_c00085{letter-spacing:-0.042752pt;}
.ls12_c00085{letter-spacing:-0.038400pt;}
.ls19_c00085{letter-spacing:-0.025600pt;}
.ls13_c00085{letter-spacing:-0.019200pt;}
.ls11_c00085{letter-spacing:-0.012800pt;}
.ls14_c00085{letter-spacing:-0.006400pt;}
.ls10_c00085{letter-spacing:0.000000pt;}
.ls3_c00085{letter-spacing:0.006400pt;}
.lsa_c00085{letter-spacing:0.012800pt;}
.ls4_c00085{letter-spacing:0.019200pt;}
.ls0_c00085{letter-spacing:0.025600pt;}
.ls2_c00085{letter-spacing:0.032000pt;}
.ls1_c00085{letter-spacing:0.038400pt;}
.ls6_c00085{letter-spacing:0.051200pt;}
.lsb_c00085{letter-spacing:0.057600pt;}
.ls5_c00085{letter-spacing:0.064000pt;}
.lsd_c00085{letter-spacing:0.070400pt;}
.ls8_c00085{letter-spacing:0.076800pt;}
.lsc_c00085{letter-spacing:0.083200pt;}
.ls16_c00085{letter-spacing:0.089600pt;}
.ls7_c00085{letter-spacing:0.108800pt;}
.lse_c00085{letter-spacing:0.121600pt;}
.ls9_c00085{letter-spacing:0.140800pt;}
.ls18_c00085{letter-spacing:3.200000pt;}
.ls17_c00085{letter-spacing:3.840000pt;}
.ws2_c00085{word-spacing:-0.006400pt;}
.ws1_c00085{word-spacing:0.000000pt;}
.ws0_c00085{word-spacing:0.122912pt;}
._c_c00085{margin-left:-5.024000pt;}
._d_c00085{margin-left:-4.102400pt;}
._b_c00085{margin-left:-3.104000pt;}
._7_c00085{margin-left:-2.150400pt;}
._1_c00085{margin-left:-0.972800pt;}
._9_c00085{width:0.934400pt;}
._10_c00085{width:1.913600pt;}
._6_c00085{width:2.873600pt;}
._a_c00085{width:4.172800pt;}
._3_c00085{width:5.260800pt;}
._4_c00085{width:8.896000pt;}
._5_c00085{width:9.996800pt;}
._2_c00085{width:13.158400pt;}
._0_c00085{width:14.054400pt;}
._8_c00085{width:16.960000pt;}
._e_c00085{width:25.203200pt;}
._f_c00085{width:26.508800pt;}
.fs0_c00085{font-size:53.440000pt;}
.fs1_c00085{font-size:64.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y6_c00085{bottom:50.987067pt;}
.y5_c00085{bottom:69.387067pt;}
.y25_c00085{bottom:118.187067pt;}
.y24_c00085{bottom:145.787067pt;}
.y23_c00085{bottom:173.387067pt;}
.y22_c00085{bottom:200.987067pt;}
.y21_c00085{bottom:228.507067pt;}
.y20_c00085{bottom:266.747067pt;}
.y1f_c00085{bottom:294.427067pt;}
.y1e_c00085{bottom:322.027067pt;}
.y1d_c00085{bottom:349.627067pt;}
.y1c_c00085{bottom:377.227067pt;}
.y1b_c00085{bottom:404.827067pt;}
.y1a_c00085{bottom:432.427067pt;}
.y19_c00085{bottom:460.027067pt;}
.y18_c00085{bottom:487.627067pt;}
.y17_c00085{bottom:525.787067pt;}
.y16_c00085{bottom:553.467067pt;}
.y15_c00085{bottom:581.067067pt;}
.y14_c00085{bottom:608.667067pt;}
.y13_c00085{bottom:646.827067pt;}
.y12_c00085{bottom:674.507067pt;}
.y11_c00085{bottom:702.107067pt;}
.y10_c00085{bottom:729.707067pt;}
.yf_c00085{bottom:757.307067pt;}
.ye_c00085{bottom:784.907067pt;}
.yd_c00085{bottom:812.507067pt;}
.yc_c00085{bottom:850.667067pt;}
.yb_c00085{bottom:878.347067pt;}
.ya_c00085{bottom:905.947067pt;}
.y9_c00085{bottom:933.547067pt;}
.y8_c00085{bottom:971.707067pt;}
.y7_c00085{bottom:999.387067pt;}
.y4_c00085{bottom:1017.227251pt;}
.y3_c00085{bottom:1032.587243pt;}
.y2_c00085{bottom:1047.867075pt;}
.y1_c00085{bottom:1063.227067pt;}
.h1_c00085{height:47.020937pt;}
.h2_c00085{height:56.156250pt;}
.h3_c00085{height:56.312500pt;}
.h0_c00085{height:1122.666667pt;}
.w1_c00085{width:793.333333pt;}
.w0_c00085{width:793.626667pt;}
.x0_c00085{left:0.000000pt;}
.x4_c00085{left:113.440000pt;}
.x1_c00085{left:577.440000pt;}
.x3_c00085{left:664.400000pt;}
.x2_c00085{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb5c2459001907b24169e976.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.095703;font-style:normal;font-weight:normal;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_ecfa406a291cde7fa0fcfadd.woff2')format("woff");}.ff2_c00086{font-family:ff2_c00086;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.lse_c00086{letter-spacing:-0.102204px;}
.ls18_c00086{letter-spacing:-0.064800px;}
.ls13_c00086{letter-spacing:-0.050400px;}
.ls1a_c00086{letter-spacing:-0.043200px;}
.ls11_c00086{letter-spacing:-0.036000px;}
.ls17_c00086{letter-spacing:-0.028800px;}
.ls19_c00086{letter-spacing:-0.021600px;}
.ls16_c00086{letter-spacing:-0.014400px;}
.ls12_c00086{letter-spacing:-0.007200px;}
.lsf_c00086{letter-spacing:0.000000px;}
.lsc_c00086{letter-spacing:0.007200px;}
.ls3_c00086{letter-spacing:0.014400px;}
.lsa_c00086{letter-spacing:0.021600px;}
.ls5_c00086{letter-spacing:0.028800px;}
.ls4_c00086{letter-spacing:0.036000px;}
.ls6_c00086{letter-spacing:0.043200px;}
.ls8_c00086{letter-spacing:0.050400px;}
.ls2_c00086{letter-spacing:0.057600px;}
.ls0_c00086{letter-spacing:0.064800px;}
.ls9_c00086{letter-spacing:0.072000px;}
.lsb_c00086{letter-spacing:0.079200px;}
.lsd_c00086{letter-spacing:0.086400px;}
.ls7_c00086{letter-spacing:0.093600px;}
.ls1_c00086{letter-spacing:0.108000px;}
.ls14_c00086{letter-spacing:5.400000px;}
.ls15_c00086{letter-spacing:7.920000px;}
.ls10_c00086{letter-spacing:9.000000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:-18.057600px;}
.ws6_c00086{word-spacing:-4.593600px;}
.ws5_c00086{word-spacing:-4.442400px;}
.ws4_c00086{word-spacing:-3.621600px;}
.ws2_c00086{word-spacing:0.000000px;}
.ws1_c00086{word-spacing:0.192384px;}
.ws3_c00086{word-spacing:10.036800px;}
._6_c00086{margin-left:-10.065600px;}
._5_c00086{margin-left:-8.899200px;}
._e_c00086{margin-left:-7.891200px;}
._d_c00086{margin-left:-6.696000px;}
._8_c00086{margin-left:-4.860000px;}
._7_c00086{margin-left:-3.636000px;}
._11_c00086{margin-left:-2.534400px;}
._2_c00086{margin-left:-1.015200px;}
._0_c00086{width:1.034064px;}
._f_c00086{width:2.053008px;}
._10_c00086{width:3.071088px;}
._c_c00086{width:4.442400px;}
._b_c00086{width:5.544000px;}
._1_c00086{width:6.775200px;}
._3_c00086{width:8.424000px;}
._4_c00086{width:9.792000px;}
._a_c00086{width:10.922400px;}
._9_c00086{width:15.840000px;}
._12_c00086{width:27.619200px;}
.fc1_c00086{color:rgb(0,0,0);}
.fc0_c00086{color:rgb(32,31,30);}
.fs0_c00086{font-size:60.120000px;}
.fs1_c00086{font-size:72.000000px;}
.y0_c00086{bottom:0.000000px;}
.y5_c00086{bottom:57.360450px;}
.y4_c00086{bottom:78.060450px;}
.y22_c00086{bottom:193.980450px;}
.y21_c00086{bottom:225.120450px;}
.y20_c00086{bottom:256.170450px;}
.y1f_c00086{bottom:287.220450px;}
.y1e_c00086{bottom:330.150450px;}
.y1d_c00086{bottom:361.290450px;}
.y1c_c00086{bottom:392.340450px;}
.y1b_c00086{bottom:423.390450px;}
.y1a_c00086{bottom:454.440450px;}
.y19_c00086{bottom:485.490450px;}
.y18_c00086{bottom:516.540450px;}
.y17_c00086{bottom:547.590450px;}
.y16_c00086{bottom:578.640450px;}
.y15_c00086{bottom:609.690450px;}
.y14_c00086{bottom:652.620450px;}
.y13_c00086{bottom:683.760450px;}
.y12_c00086{bottom:714.810450px;}
.y11_c00086{bottom:745.860450px;}
.y10_c00086{bottom:776.910450px;}
.yf_c00086{bottom:819.930450px;}
.ye_c00086{bottom:851.070450px;}
.yd_c00086{bottom:882.120450px;}
.yc_c00086{bottom:913.170450px;}
.yb_c00086{bottom:944.220450px;}
.ya_c00086{bottom:975.180450px;}
.y9_c00086{bottom:1006.230450px;}
.y8_c00086{bottom:1049.250450px;}
.y7_c00086{bottom:1080.390450px;}
.y6_c00086{bottom:1111.440450px;}
.y3_c00086{bottom:1132.140450px;}
.y2_c00086{bottom:1165.441023px;}
.y1_c00086{bottom:1196.040600px;}
.h1_c00086{height:52.898555px;}
.h2_c00086{height:63.175781px;}
.h3_c00086{height:63.351562px;}
.h0_c00086{height:1263.000000px;}
.w1_c00086{width:892.500000px;}
.w0_c00086{width:892.830000px;}
.x0_c00086{left:0.000000px;}
.x1_c00086{left:127.620000px;}
.x2_c00086{left:747.450000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.lse_c00086{letter-spacing:-0.090848pt;}
.ls18_c00086{letter-spacing:-0.057600pt;}
.ls13_c00086{letter-spacing:-0.044800pt;}
.ls1a_c00086{letter-spacing:-0.038400pt;}
.ls11_c00086{letter-spacing:-0.032000pt;}
.ls17_c00086{letter-spacing:-0.025600pt;}
.ls19_c00086{letter-spacing:-0.019200pt;}
.ls16_c00086{letter-spacing:-0.012800pt;}
.ls12_c00086{letter-spacing:-0.006400pt;}
.lsf_c00086{letter-spacing:0.000000pt;}
.lsc_c00086{letter-spacing:0.006400pt;}
.ls3_c00086{letter-spacing:0.012800pt;}
.lsa_c00086{letter-spacing:0.019200pt;}
.ls5_c00086{letter-spacing:0.025600pt;}
.ls4_c00086{letter-spacing:0.032000pt;}
.ls6_c00086{letter-spacing:0.038400pt;}
.ls8_c00086{letter-spacing:0.044800pt;}
.ls2_c00086{letter-spacing:0.051200pt;}
.ls0_c00086{letter-spacing:0.057600pt;}
.ls9_c00086{letter-spacing:0.064000pt;}
.lsb_c00086{letter-spacing:0.070400pt;}
.lsd_c00086{letter-spacing:0.076800pt;}
.ls7_c00086{letter-spacing:0.083200pt;}
.ls1_c00086{letter-spacing:0.096000pt;}
.ls14_c00086{letter-spacing:4.800000pt;}
.ls15_c00086{letter-spacing:7.040000pt;}
.ls10_c00086{letter-spacing:8.000000pt;}
.ws0_c00086{word-spacing:-16.051200pt;}
.ws6_c00086{word-spacing:-4.083200pt;}
.ws5_c00086{word-spacing:-3.948800pt;}
.ws4_c00086{word-spacing:-3.219200pt;}
.ws2_c00086{word-spacing:0.000000pt;}
.ws1_c00086{word-spacing:0.171008pt;}
.ws3_c00086{word-spacing:8.921600pt;}
._6_c00086{margin-left:-8.947200pt;}
._5_c00086{margin-left:-7.910400pt;}
._e_c00086{margin-left:-7.014400pt;}
._d_c00086{margin-left:-5.952000pt;}
._8_c00086{margin-left:-4.320000pt;}
._7_c00086{margin-left:-3.232000pt;}
._11_c00086{margin-left:-2.252800pt;}
._2_c00086{margin-left:-0.902400pt;}
._0_c00086{width:0.919168pt;}
._f_c00086{width:1.824896pt;}
._10_c00086{width:2.729856pt;}
._c_c00086{width:3.948800pt;}
._b_c00086{width:4.928000pt;}
._1_c00086{width:6.022400pt;}
._3_c00086{width:7.488000pt;}
._4_c00086{width:8.704000pt;}
._a_c00086{width:9.708800pt;}
._9_c00086{width:14.080000pt;}
._12_c00086{width:24.550400pt;}
.fs0_c00086{font-size:53.440000pt;}
.fs1_c00086{font-size:64.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y5_c00086{bottom:50.987067pt;}
.y4_c00086{bottom:69.387067pt;}
.y22_c00086{bottom:172.427067pt;}
.y21_c00086{bottom:200.107067pt;}
.y20_c00086{bottom:227.707067pt;}
.y1f_c00086{bottom:255.307067pt;}
.y1e_c00086{bottom:293.467067pt;}
.y1d_c00086{bottom:321.147067pt;}
.y1c_c00086{bottom:348.747067pt;}
.y1b_c00086{bottom:376.347067pt;}
.y1a_c00086{bottom:403.947067pt;}
.y19_c00086{bottom:431.547067pt;}
.y18_c00086{bottom:459.147067pt;}
.y17_c00086{bottom:486.747067pt;}
.y16_c00086{bottom:514.347067pt;}
.y15_c00086{bottom:541.947067pt;}
.y14_c00086{bottom:580.107067pt;}
.y13_c00086{bottom:607.787067pt;}
.y12_c00086{bottom:635.387067pt;}
.y11_c00086{bottom:662.987067pt;}
.y10_c00086{bottom:690.587067pt;}
.yf_c00086{bottom:728.827067pt;}
.ye_c00086{bottom:756.507067pt;}
.yd_c00086{bottom:784.107067pt;}
.yc_c00086{bottom:811.707067pt;}
.yb_c00086{bottom:839.307067pt;}
.ya_c00086{bottom:866.827067pt;}
.y9_c00086{bottom:894.427067pt;}
.y8_c00086{bottom:932.667067pt;}
.y7_c00086{bottom:960.347067pt;}
.y6_c00086{bottom:987.947067pt;}
.y3_c00086{bottom:1006.347067pt;}
.y2_c00086{bottom:1035.947576pt;}
.y1_c00086{bottom:1063.147200pt;}
.h1_c00086{height:47.020937pt;}
.h2_c00086{height:56.156250pt;}
.h3_c00086{height:56.312500pt;}
.h0_c00086{height:1122.666667pt;}
.w1_c00086{width:793.333333pt;}
.w0_c00086{width:793.626667pt;}
.x0_c00086{left:0.000000pt;}
.x1_c00086{left:113.440000pt;}
.x2_c00086{left:664.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_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_e4d377cb1f8d00bf775e9c58.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.095703;font-style:normal;font-weight:normal;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_12dd91776ff98c5824b68207.woff2')format("woff");}.ff2_c00087{font-family:ff2_c00087;line-height:1.093262;font-style: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;}
.lsd_c00087{letter-spacing:-0.048096px;}
.ls14_c00087{letter-spacing:-0.043200px;}
.ls10_c00087{letter-spacing:-0.036000px;}
.ls11_c00087{letter-spacing:-0.028800px;}
.ls17_c00087{letter-spacing:-0.021600px;}
.ls12_c00087{letter-spacing:-0.014400px;}
.lsf_c00087{letter-spacing:-0.007200px;}
.lse_c00087{letter-spacing:0.000000px;}
.ls5_c00087{letter-spacing:0.007200px;}
.ls6_c00087{letter-spacing:0.014400px;}
.ls4_c00087{letter-spacing:0.021600px;}
.ls3_c00087{letter-spacing:0.028800px;}
.ls0_c00087{letter-spacing:0.036000px;}
.ls7_c00087{letter-spacing:0.043200px;}
.ls2_c00087{letter-spacing:0.050400px;}
.lsa_c00087{letter-spacing:0.057600px;}
.ls1_c00087{letter-spacing:0.064800px;}
.ls8_c00087{letter-spacing:0.072000px;}
.ls9_c00087{letter-spacing:0.079200px;}
.lsc_c00087{letter-spacing:0.086400px;}
.ls18_c00087{letter-spacing:0.108000px;}
.ls13_c00087{letter-spacing:0.144000px;}
.lsb_c00087{letter-spacing:0.201600px;}
.ls16_c00087{letter-spacing:3.240000px;}
.ls15_c00087{letter-spacing:7.560000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00087{word-spacing:-18.021600px;}
.ws2_c00087{word-spacing:0.000000px;}
.ws1_c00087{word-spacing:0.138276px;}
.ws3_c00087{word-spacing:2.160000px;}
.ws4_c00087{word-spacing:2.563200px;}
.ws5_c00087{word-spacing:7.545600px;}
._9_c00087{margin-left:-7.660800px;}
._a_c00087{margin-left:-6.609600px;}
._b_c00087{margin-left:-4.147200px;}
._0_c00087{margin-left:-2.916000px;}
._1_c00087{margin-left:-1.526400px;}
._5_c00087{width:1.051200px;}
._2_c00087{width:2.469600px;}
._4_c00087{width:3.945600px;}
._8_c00087{width:6.076800px;}
._7_c00087{width:7.905600px;}
._3_c00087{width:9.331200px;}
._c_c00087{width:10.800000px;}
._6_c00087{width:13.651200px;}
._d_c00087{width:19.771200px;}
._e_c00087{width:20.980800px;}
._f_c00087{width:30.542400px;}
.fc0_c00087{color:rgb(0,0,0);}
.fs0_c00087{font-size:60.120000px;}
.fs1_c00087{font-size:72.000000px;}
.y0_c00087{bottom:0.000000px;}
.y6_c00087{bottom:57.360450px;}
.y5_c00087{bottom:78.060450px;}
.y25_c00087{bottom:156.810450px;}
.y24_c00087{bottom:187.950450px;}
.y23_c00087{bottom:219.000450px;}
.y22_c00087{bottom:250.050450px;}
.y21_c00087{bottom:281.100450px;}
.y20_c00087{bottom:312.150450px;}
.y1f_c00087{bottom:343.200450px;}
.y1e_c00087{bottom:374.250450px;}
.y1d_c00087{bottom:417.180450px;}
.y1c_c00087{bottom:448.320450px;}
.y1b_c00087{bottom:479.370450px;}
.y1a_c00087{bottom:510.420450px;}
.y19_c00087{bottom:541.470450px;}
.y18_c00087{bottom:572.520450px;}
.y17_c00087{bottom:603.570450px;}
.y16_c00087{bottom:634.620450px;}
.y15_c00087{bottom:677.550450px;}
.y14_c00087{bottom:708.690450px;}
.y13_c00087{bottom:739.740450px;}
.y12_c00087{bottom:770.790450px;}
.y11_c00087{bottom:801.840450px;}
.y10_c00087{bottom:832.890450px;}
.yf_c00087{bottom:863.940450px;}
.ye_c00087{bottom:894.990450px;}
.yd_c00087{bottom:926.040450px;}
.yc_c00087{bottom:957.090450px;}
.yb_c00087{bottom:988.140450px;}
.ya_c00087{bottom:1019.190450px;}
.y9_c00087{bottom:1062.120450px;}
.y8_c00087{bottom:1093.260450px;}
.y7_c00087{bottom:1124.310450px;}
.y4_c00087{bottom:1144.380657px;}
.y3_c00087{bottom:1161.660648px;}
.y2_c00087{bottom:1178.850459px;}
.y1_c00087{bottom:1196.130450px;}
.h1_c00087{height:52.898555px;}
.h2_c00087{height:63.175781px;}
.h3_c00087{height:63.351562px;}
.h0_c00087{height:1263.000000px;}
.w1_c00087{width:892.500000px;}
.w0_c00087{width:892.830000px;}
.x0_c00087{left:0.000000px;}
.x4_c00087{left:127.620000px;}
.x1_c00087{left:649.620000px;}
.x3_c00087{left:747.450000px;}
.x2_c00087{left:765.450198px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.lsd_c00087{letter-spacing:-0.042752pt;}
.ls14_c00087{letter-spacing:-0.038400pt;}
.ls10_c00087{letter-spacing:-0.032000pt;}
.ls11_c00087{letter-spacing:-0.025600pt;}
.ls17_c00087{letter-spacing:-0.019200pt;}
.ls12_c00087{letter-spacing:-0.012800pt;}
.lsf_c00087{letter-spacing:-0.006400pt;}
.lse_c00087{letter-spacing:0.000000pt;}
.ls5_c00087{letter-spacing:0.006400pt;}
.ls6_c00087{letter-spacing:0.012800pt;}
.ls4_c00087{letter-spacing:0.019200pt;}
.ls3_c00087{letter-spacing:0.025600pt;}
.ls0_c00087{letter-spacing:0.032000pt;}
.ls7_c00087{letter-spacing:0.038400pt;}
.ls2_c00087{letter-spacing:0.044800pt;}
.lsa_c00087{letter-spacing:0.051200pt;}
.ls1_c00087{letter-spacing:0.057600pt;}
.ls8_c00087{letter-spacing:0.064000pt;}
.ls9_c00087{letter-spacing:0.070400pt;}
.lsc_c00087{letter-spacing:0.076800pt;}
.ls18_c00087{letter-spacing:0.096000pt;}
.ls13_c00087{letter-spacing:0.128000pt;}
.lsb_c00087{letter-spacing:0.179200pt;}
.ls16_c00087{letter-spacing:2.880000pt;}
.ls15_c00087{letter-spacing:6.720000pt;}
.ws0_c00087{word-spacing:-16.019200pt;}
.ws2_c00087{word-spacing:0.000000pt;}
.ws1_c00087{word-spacing:0.122912pt;}
.ws3_c00087{word-spacing:1.920000pt;}
.ws4_c00087{word-spacing:2.278400pt;}
.ws5_c00087{word-spacing:6.707200pt;}
._9_c00087{margin-left:-6.809600pt;}
._a_c00087{margin-left:-5.875200pt;}
._b_c00087{margin-left:-3.686400pt;}
._0_c00087{margin-left:-2.592000pt;}
._1_c00087{margin-left:-1.356800pt;}
._5_c00087{width:0.934400pt;}
._2_c00087{width:2.195200pt;}
._4_c00087{width:3.507200pt;}
._8_c00087{width:5.401600pt;}
._7_c00087{width:7.027200pt;}
._3_c00087{width:8.294400pt;}
._c_c00087{width:9.600000pt;}
._6_c00087{width:12.134400pt;}
._d_c00087{width:17.574400pt;}
._e_c00087{width:18.649600pt;}
._f_c00087{width:27.148800pt;}
.fs0_c00087{font-size:53.440000pt;}
.fs1_c00087{font-size:64.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y6_c00087{bottom:50.987067pt;}
.y5_c00087{bottom:69.387067pt;}
.y25_c00087{bottom:139.387067pt;}
.y24_c00087{bottom:167.067067pt;}
.y23_c00087{bottom:194.667067pt;}
.y22_c00087{bottom:222.267067pt;}
.y21_c00087{bottom:249.867067pt;}
.y20_c00087{bottom:277.467067pt;}
.y1f_c00087{bottom:305.067067pt;}
.y1e_c00087{bottom:332.667067pt;}
.y1d_c00087{bottom:370.827067pt;}
.y1c_c00087{bottom:398.507067pt;}
.y1b_c00087{bottom:426.107067pt;}
.y1a_c00087{bottom:453.707067pt;}
.y19_c00087{bottom:481.307067pt;}
.y18_c00087{bottom:508.907067pt;}
.y17_c00087{bottom:536.507067pt;}
.y16_c00087{bottom:564.107067pt;}
.y15_c00087{bottom:602.267067pt;}
.y14_c00087{bottom:629.947067pt;}
.y13_c00087{bottom:657.547067pt;}
.y12_c00087{bottom:685.147067pt;}
.y11_c00087{bottom:712.747067pt;}
.y10_c00087{bottom:740.347067pt;}
.yf_c00087{bottom:767.947067pt;}
.ye_c00087{bottom:795.547067pt;}
.yd_c00087{bottom:823.147067pt;}
.yc_c00087{bottom:850.747067pt;}
.yb_c00087{bottom:878.347067pt;}
.ya_c00087{bottom:905.947067pt;}
.y9_c00087{bottom:944.107067pt;}
.y8_c00087{bottom:971.787067pt;}
.y7_c00087{bottom:999.387067pt;}
.y4_c00087{bottom:1017.227251pt;}
.y3_c00087{bottom:1032.587243pt;}
.y2_c00087{bottom:1047.867075pt;}
.y1_c00087{bottom:1063.227067pt;}
.h1_c00087{height:47.020937pt;}
.h2_c00087{height:56.156250pt;}
.h3_c00087{height:56.312500pt;}
.h0_c00087{height:1122.666667pt;}
.w1_c00087{width:793.333333pt;}
.w0_c00087{width:793.626667pt;}
.x0_c00087{left:0.000000pt;}
.x4_c00087{left:113.440000pt;}
.x1_c00087{left:577.440000pt;}
.x3_c00087{left:664.400000pt;}
.x2_c00087{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7c4d892445253ce506aa1c3.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.095703;font-style:normal;font-weight:normal;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_0013078613f8a7214281d51f.woff2')format("woff");}.ff2_c00088{font-family:ff2_c00088;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls10_c00088{letter-spacing:-0.102204px;}
.ls19_c00088{letter-spacing:-0.079200px;}
.ls16_c00088{letter-spacing:-0.050400px;}
.ls13_c00088{letter-spacing:-0.036000px;}
.ls18_c00088{letter-spacing:-0.021600px;}
.ls12_c00088{letter-spacing:-0.014400px;}
.ls14_c00088{letter-spacing:-0.007200px;}
.ls11_c00088{letter-spacing:0.000000px;}
.ls2_c00088{letter-spacing:0.007200px;}
.ls6_c00088{letter-spacing:0.014400px;}
.lsc_c00088{letter-spacing:0.021600px;}
.ls0_c00088{letter-spacing:0.028800px;}
.ls7_c00088{letter-spacing:0.036000px;}
.ls5_c00088{letter-spacing:0.043200px;}
.lsb_c00088{letter-spacing:0.050400px;}
.lsa_c00088{letter-spacing:0.057600px;}
.ls1_c00088{letter-spacing:0.064800px;}
.lse_c00088{letter-spacing:0.072000px;}
.ls8_c00088{letter-spacing:0.079200px;}
.ls9_c00088{letter-spacing:0.086400px;}
.ls3_c00088{letter-spacing:0.093600px;}
.lsd_c00088{letter-spacing:0.100800px;}
.lsf_c00088{letter-spacing:0.108000px;}
.ls4_c00088{letter-spacing:0.122400px;}
.ls17_c00088{letter-spacing:2.160000px;}
.ls15_c00088{letter-spacing:19.440000px;}
.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;}
}
.ws7_c00088{word-spacing:-0.352800px;}
.ws1_c00088{word-spacing:0.000000px;}
.ws0_c00088{word-spacing:0.192384px;}
.ws5_c00088{word-spacing:1.404000px;}
.ws3_c00088{word-spacing:2.865600px;}
.ws6_c00088{word-spacing:12.196800px;}
.ws2_c00088{word-spacing:19.418400px;}
.ws4_c00088{word-spacing:19.447200px;}
._d_c00088{margin-left:-19.713600px;}
._b_c00088{margin-left:-5.328000px;}
._7_c00088{margin-left:-4.276800px;}
._1_c00088{margin-left:-3.268800px;}
._2_c00088{margin-left:-1.238400px;}
._0_c00088{width:1.034064px;}
._a_c00088{width:2.295072px;}
._e_c00088{width:3.394656px;}
._8_c00088{width:5.054400px;}
._6_c00088{width:6.084000px;}
._12_c00088{width:7.732800px;}
._9_c00088{width:8.992800px;}
._f_c00088{width:10.411200px;}
._10_c00088{width:11.484000px;}
._11_c00088{width:12.571200px;}
._3_c00088{width:13.680000px;}
._13_c00088{width:14.976000px;}
._c_c00088{width:20.066400px;}
._4_c00088{width:23.263200px;}
._5_c00088{width:24.732000px;}
.fc1_c00088{color:rgb(0,0,0);}
.fc0_c00088{color:rgb(32,31,30);}
.fs0_c00088{font-size:60.120000px;}
.fs1_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y5_c00088{bottom:57.360450px;}
.y4_c00088{bottom:78.060450px;}
.y25_c00088{bottom:112.980450px;}
.y24_c00088{bottom:144.030450px;}
.y23_c00088{bottom:175.080450px;}
.y22_c00088{bottom:206.130450px;}
.y21_c00088{bottom:237.090450px;}
.y20_c00088{bottom:268.140450px;}
.y1f_c00088{bottom:299.190450px;}
.y1e_c00088{bottom:342.210450px;}
.y1d_c00088{bottom:373.350450px;}
.y1c_c00088{bottom:404.400450px;}
.y1b_c00088{bottom:435.450450px;}
.y1a_c00088{bottom:466.500450px;}
.y19_c00088{bottom:497.550450px;}
.y18_c00088{bottom:528.600450px;}
.y17_c00088{bottom:559.650450px;}
.y16_c00088{bottom:590.700450px;}
.y15_c00088{bottom:621.660450px;}
.y14_c00088{bottom:652.710450px;}
.y13_c00088{bottom:683.760450px;}
.y12_c00088{bottom:714.810450px;}
.y11_c00088{bottom:757.830450px;}
.y10_c00088{bottom:788.970450px;}
.yf_c00088{bottom:820.020450px;}
.ye_c00088{bottom:851.070450px;}
.yd_c00088{bottom:882.120450px;}
.yc_c00088{bottom:913.170450px;}
.yb_c00088{bottom:944.220450px;}
.ya_c00088{bottom:987.150450px;}
.y9_c00088{bottom:1018.290450px;}
.y8_c00088{bottom:1049.340450px;}
.y7_c00088{bottom:1080.390450px;}
.y6_c00088{bottom:1111.440450px;}
.y3_c00088{bottom:1132.140450px;}
.y2_c00088{bottom:1165.441023px;}
.y1_c00088{bottom:1196.040600px;}
.h1_c00088{height:52.898555px;}
.h2_c00088{height:63.175781px;}
.h3_c00088{height:63.351562px;}
.h0_c00088{height:1263.000000px;}
.w1_c00088{width:892.500000px;}
.w0_c00088{width:892.830000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:127.620000px;}
.x2_c00088{left:747.450000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls10_c00088{letter-spacing:-0.090848pt;}
.ls19_c00088{letter-spacing:-0.070400pt;}
.ls16_c00088{letter-spacing:-0.044800pt;}
.ls13_c00088{letter-spacing:-0.032000pt;}
.ls18_c00088{letter-spacing:-0.019200pt;}
.ls12_c00088{letter-spacing:-0.012800pt;}
.ls14_c00088{letter-spacing:-0.006400pt;}
.ls11_c00088{letter-spacing:0.000000pt;}
.ls2_c00088{letter-spacing:0.006400pt;}
.ls6_c00088{letter-spacing:0.012800pt;}
.lsc_c00088{letter-spacing:0.019200pt;}
.ls0_c00088{letter-spacing:0.025600pt;}
.ls7_c00088{letter-spacing:0.032000pt;}
.ls5_c00088{letter-spacing:0.038400pt;}
.lsb_c00088{letter-spacing:0.044800pt;}
.lsa_c00088{letter-spacing:0.051200pt;}
.ls1_c00088{letter-spacing:0.057600pt;}
.lse_c00088{letter-spacing:0.064000pt;}
.ls8_c00088{letter-spacing:0.070400pt;}
.ls9_c00088{letter-spacing:0.076800pt;}
.ls3_c00088{letter-spacing:0.083200pt;}
.lsd_c00088{letter-spacing:0.089600pt;}
.lsf_c00088{letter-spacing:0.096000pt;}
.ls4_c00088{letter-spacing:0.108800pt;}
.ls17_c00088{letter-spacing:1.920000pt;}
.ls15_c00088{letter-spacing:17.280000pt;}
.ws7_c00088{word-spacing:-0.313600pt;}
.ws1_c00088{word-spacing:0.000000pt;}
.ws0_c00088{word-spacing:0.171008pt;}
.ws5_c00088{word-spacing:1.248000pt;}
.ws3_c00088{word-spacing:2.547200pt;}
.ws6_c00088{word-spacing:10.841600pt;}
.ws2_c00088{word-spacing:17.260800pt;}
.ws4_c00088{word-spacing:17.286400pt;}
._d_c00088{margin-left:-17.523200pt;}
._b_c00088{margin-left:-4.736000pt;}
._7_c00088{margin-left:-3.801600pt;}
._1_c00088{margin-left:-2.905600pt;}
._2_c00088{margin-left:-1.100800pt;}
._0_c00088{width:0.919168pt;}
._a_c00088{width:2.040064pt;}
._e_c00088{width:3.017472pt;}
._8_c00088{width:4.492800pt;}
._6_c00088{width:5.408000pt;}
._12_c00088{width:6.873600pt;}
._9_c00088{width:7.993600pt;}
._f_c00088{width:9.254400pt;}
._10_c00088{width:10.208000pt;}
._11_c00088{width:11.174400pt;}
._3_c00088{width:12.160000pt;}
._13_c00088{width:13.312000pt;}
._c_c00088{width:17.836800pt;}
._4_c00088{width:20.678400pt;}
._5_c00088{width:21.984000pt;}
.fs0_c00088{font-size:53.440000pt;}
.fs1_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y5_c00088{bottom:50.987067pt;}
.y4_c00088{bottom:69.387067pt;}
.y25_c00088{bottom:100.427067pt;}
.y24_c00088{bottom:128.027067pt;}
.y23_c00088{bottom:155.627067pt;}
.y22_c00088{bottom:183.227067pt;}
.y21_c00088{bottom:210.747067pt;}
.y20_c00088{bottom:238.347067pt;}
.y1f_c00088{bottom:265.947067pt;}
.y1e_c00088{bottom:304.187067pt;}
.y1d_c00088{bottom:331.867067pt;}
.y1c_c00088{bottom:359.467067pt;}
.y1b_c00088{bottom:387.067067pt;}
.y1a_c00088{bottom:414.667067pt;}
.y19_c00088{bottom:442.267067pt;}
.y18_c00088{bottom:469.867067pt;}
.y17_c00088{bottom:497.467067pt;}
.y16_c00088{bottom:525.067067pt;}
.y15_c00088{bottom:552.587067pt;}
.y14_c00088{bottom:580.187067pt;}
.y13_c00088{bottom:607.787067pt;}
.y12_c00088{bottom:635.387067pt;}
.y11_c00088{bottom:673.627067pt;}
.y10_c00088{bottom:701.307067pt;}
.yf_c00088{bottom:728.907067pt;}
.ye_c00088{bottom:756.507067pt;}
.yd_c00088{bottom:784.107067pt;}
.yc_c00088{bottom:811.707067pt;}
.yb_c00088{bottom:839.307067pt;}
.ya_c00088{bottom:877.467067pt;}
.y9_c00088{bottom:905.147067pt;}
.y8_c00088{bottom:932.747067pt;}
.y7_c00088{bottom:960.347067pt;}
.y6_c00088{bottom:987.947067pt;}
.y3_c00088{bottom:1006.347067pt;}
.y2_c00088{bottom:1035.947576pt;}
.y1_c00088{bottom:1063.147200pt;}
.h1_c00088{height:47.020937pt;}
.h2_c00088{height:56.156250pt;}
.h3_c00088{height:56.312500pt;}
.h0_c00088{height:1122.666667pt;}
.w1_c00088{width:793.333333pt;}
.w0_c00088{width:793.626667pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:113.440000pt;}
.x2_c00088{left:664.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_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_7d2430b57654e9ade411bf55.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.095703;font-style:normal;font-weight:normal;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_a26adeec3aeff150868d1227.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00089{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls11_c00089{letter-spacing:-1.440000px;}
.ls16_c00089{letter-spacing:-0.208800px;}
.ls13_c00089{letter-spacing:-0.172800px;}
.lsd_c00089{letter-spacing:-0.048096px;}
.ls10_c00089{letter-spacing:-0.021600px;}
.ls12_c00089{letter-spacing:-0.014400px;}
.lsf_c00089{letter-spacing:-0.007200px;}
.lse_c00089{letter-spacing:0.000000px;}
.ls6_c00089{letter-spacing:0.007200px;}
.ls4_c00089{letter-spacing:0.014400px;}
.ls1_c00089{letter-spacing:0.021600px;}
.ls9_c00089{letter-spacing:0.028800px;}
.ls3_c00089{letter-spacing:0.036000px;}
.ls0_c00089{letter-spacing:0.050400px;}
.ls7_c00089{letter-spacing:0.057600px;}
.ls8_c00089{letter-spacing:0.064800px;}
.lsa_c00089{letter-spacing:0.072000px;}
.lsc_c00089{letter-spacing:0.079200px;}
.ls5_c00089{letter-spacing:0.086400px;}
.lsb_c00089{letter-spacing:0.093600px;}
.ls2_c00089{letter-spacing:0.108000px;}
.ls15_c00089{letter-spacing:5.760000px;}
.ls14_c00089{letter-spacing:12.240000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00089{word-spacing:-18.036000px;}
.ws2_c00089{word-spacing:0.000000px;}
.ws1_c00089{word-spacing:0.138276px;}
.ws4_c00089{word-spacing:0.288000px;}
.ws3_c00089{word-spacing:10.058400px;}
.ws5_c00089{word-spacing:17.452800px;}
._c_c00089{margin-left:-13.291200px;}
._b_c00089{margin-left:-11.966400px;}
._d_c00089{margin-left:-10.850400px;}
._11_c00089{margin-left:-6.300000px;}
._6_c00089{margin-left:-4.327200px;}
._7_c00089{margin-left:-2.678400px;}
._4_c00089{margin-left:-1.425600px;}
._1_c00089{width:1.130400px;}
._8_c00089{width:2.152800px;}
._5_c00089{width:3.218400px;}
._f_c00089{width:4.334400px;}
._10_c00089{width:5.414400px;}
._0_c00089{width:7.567200px;}
._2_c00089{width:8.935200px;}
._3_c00089{width:10.922400px;}
._a_c00089{width:12.751200px;}
._9_c00089{width:16.387200px;}
._e_c00089{width:20.865600px;}
.fc0_c00089{color:rgb(0,0,0);}
.fs0_c00089{font-size:60.120000px;}
.fs1_c00089{font-size:72.000000px;}
.y0_c00089{bottom:0.000000px;}
.y6_c00089{bottom:57.360450px;}
.y5_c00089{bottom:78.060450px;}
.y24_c00089{bottom:175.890450px;}
.y23_c00089{bottom:207.030450px;}
.y22_c00089{bottom:238.080450px;}
.y21_c00089{bottom:269.130450px;}
.y20_c00089{bottom:300.180450px;}
.y1f_c00089{bottom:331.230450px;}
.y1e_c00089{bottom:362.280450px;}
.y1d_c00089{bottom:393.330450px;}
.y1c_c00089{bottom:424.380450px;}
.y1b_c00089{bottom:467.310450px;}
.y1a_c00089{bottom:498.450450px;}
.y19_c00089{bottom:529.500450px;}
.y18_c00089{bottom:560.550450px;}
.y17_c00089{bottom:603.480450px;}
.y16_c00089{bottom:634.620450px;}
.y15_c00089{bottom:665.670450px;}
.y14_c00089{bottom:696.720450px;}
.y13_c00089{bottom:727.770450px;}
.y12_c00089{bottom:758.820450px;}
.y11_c00089{bottom:789.870450px;}
.y10_c00089{bottom:820.920450px;}
.yf_c00089{bottom:863.850450px;}
.ye_c00089{bottom:894.990450px;}
.yd_c00089{bottom:926.040450px;}
.yc_c00089{bottom:969.060450px;}
.yb_c00089{bottom:1000.200450px;}
.ya_c00089{bottom:1031.160450px;}
.y9_c00089{bottom:1062.210450px;}
.y8_c00089{bottom:1093.260450px;}
.y7_c00089{bottom:1124.310450px;}
.y4_c00089{bottom:1144.380657px;}
.y3_c00089{bottom:1161.660648px;}
.y2_c00089{bottom:1178.850459px;}
.y1_c00089{bottom:1196.130450px;}
.h1_c00089{height:52.898555px;}
.h2_c00089{height:63.175781px;}
.h3_c00089{height:63.351562px;}
.h0_c00089{height:1263.000000px;}
.w1_c00089{width:892.500000px;}
.w0_c00089{width:892.830000px;}
.x0_c00089{left:0.000000px;}
.x4_c00089{left:127.620000px;}
.x1_c00089{left:649.620000px;}
.x3_c00089{left:747.450000px;}
.x2_c00089{left:765.450198px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls11_c00089{letter-spacing:-1.280000pt;}
.ls16_c00089{letter-spacing:-0.185600pt;}
.ls13_c00089{letter-spacing:-0.153600pt;}
.lsd_c00089{letter-spacing:-0.042752pt;}
.ls10_c00089{letter-spacing:-0.019200pt;}
.ls12_c00089{letter-spacing:-0.012800pt;}
.lsf_c00089{letter-spacing:-0.006400pt;}
.lse_c00089{letter-spacing:0.000000pt;}
.ls6_c00089{letter-spacing:0.006400pt;}
.ls4_c00089{letter-spacing:0.012800pt;}
.ls1_c00089{letter-spacing:0.019200pt;}
.ls9_c00089{letter-spacing:0.025600pt;}
.ls3_c00089{letter-spacing:0.032000pt;}
.ls0_c00089{letter-spacing:0.044800pt;}
.ls7_c00089{letter-spacing:0.051200pt;}
.ls8_c00089{letter-spacing:0.057600pt;}
.lsa_c00089{letter-spacing:0.064000pt;}
.lsc_c00089{letter-spacing:0.070400pt;}
.ls5_c00089{letter-spacing:0.076800pt;}
.lsb_c00089{letter-spacing:0.083200pt;}
.ls2_c00089{letter-spacing:0.096000pt;}
.ls15_c00089{letter-spacing:5.120000pt;}
.ls14_c00089{letter-spacing:10.880000pt;}
.ws0_c00089{word-spacing:-16.032000pt;}
.ws2_c00089{word-spacing:0.000000pt;}
.ws1_c00089{word-spacing:0.122912pt;}
.ws4_c00089{word-spacing:0.256000pt;}
.ws3_c00089{word-spacing:8.940800pt;}
.ws5_c00089{word-spacing:15.513600pt;}
._c_c00089{margin-left:-11.814400pt;}
._b_c00089{margin-left:-10.636800pt;}
._d_c00089{margin-left:-9.644800pt;}
._11_c00089{margin-left:-5.600000pt;}
._6_c00089{margin-left:-3.846400pt;}
._7_c00089{margin-left:-2.380800pt;}
._4_c00089{margin-left:-1.267200pt;}
._1_c00089{width:1.004800pt;}
._8_c00089{width:1.913600pt;}
._5_c00089{width:2.860800pt;}
._f_c00089{width:3.852800pt;}
._10_c00089{width:4.812800pt;}
._0_c00089{width:6.726400pt;}
._2_c00089{width:7.942400pt;}
._3_c00089{width:9.708800pt;}
._a_c00089{width:11.334400pt;}
._9_c00089{width:14.566400pt;}
._e_c00089{width:18.547200pt;}
.fs0_c00089{font-size:53.440000pt;}
.fs1_c00089{font-size:64.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y6_c00089{bottom:50.987067pt;}
.y5_c00089{bottom:69.387067pt;}
.y24_c00089{bottom:156.347067pt;}
.y23_c00089{bottom:184.027067pt;}
.y22_c00089{bottom:211.627067pt;}
.y21_c00089{bottom:239.227067pt;}
.y20_c00089{bottom:266.827067pt;}
.y1f_c00089{bottom:294.427067pt;}
.y1e_c00089{bottom:322.027067pt;}
.y1d_c00089{bottom:349.627067pt;}
.y1c_c00089{bottom:377.227067pt;}
.y1b_c00089{bottom:415.387067pt;}
.y1a_c00089{bottom:443.067067pt;}
.y19_c00089{bottom:470.667067pt;}
.y18_c00089{bottom:498.267067pt;}
.y17_c00089{bottom:536.427067pt;}
.y16_c00089{bottom:564.107067pt;}
.y15_c00089{bottom:591.707067pt;}
.y14_c00089{bottom:619.307067pt;}
.y13_c00089{bottom:646.907067pt;}
.y12_c00089{bottom:674.507067pt;}
.y11_c00089{bottom:702.107067pt;}
.y10_c00089{bottom:729.707067pt;}
.yf_c00089{bottom:767.867067pt;}
.ye_c00089{bottom:795.547067pt;}
.yd_c00089{bottom:823.147067pt;}
.yc_c00089{bottom:861.387067pt;}
.yb_c00089{bottom:889.067067pt;}
.ya_c00089{bottom:916.587067pt;}
.y9_c00089{bottom:944.187067pt;}
.y8_c00089{bottom:971.787067pt;}
.y7_c00089{bottom:999.387067pt;}
.y4_c00089{bottom:1017.227251pt;}
.y3_c00089{bottom:1032.587243pt;}
.y2_c00089{bottom:1047.867075pt;}
.y1_c00089{bottom:1063.227067pt;}
.h1_c00089{height:47.020937pt;}
.h2_c00089{height:56.156250pt;}
.h3_c00089{height:56.312500pt;}
.h0_c00089{height:1122.666667pt;}
.w1_c00089{width:793.333333pt;}
.w0_c00089{width:793.626667pt;}
.x0_c00089{left:0.000000pt;}
.x4_c00089{left:113.440000pt;}
.x1_c00089{left:577.440000pt;}
.x3_c00089{left:664.400000pt;}
.x2_c00089{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_223b4cb966bc7d551f3560ce.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.095703;font-style:normal;font-weight:normal;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_90b8b37c532e932550d2f0a4.woff2')format("woff");}.ff2_c00090{font-family:ff2_c00090;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00090{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls1a_c00090{letter-spacing:-1.440000px;}
.ls19_c00090{letter-spacing:-0.108000px;}
.ls10_c00090{letter-spacing:-0.102204px;}
.ls18_c00090{letter-spacing:-0.036000px;}
.ls16_c00090{letter-spacing:-0.028800px;}
.ls12_c00090{letter-spacing:-0.021600px;}
.ls14_c00090{letter-spacing:-0.014400px;}
.ls13_c00090{letter-spacing:-0.007200px;}
.ls11_c00090{letter-spacing:0.000000px;}
.ls2_c00090{letter-spacing:0.007200px;}
.lsb_c00090{letter-spacing:0.014400px;}
.ls7_c00090{letter-spacing:0.021600px;}
.ls4_c00090{letter-spacing:0.028800px;}
.ls3_c00090{letter-spacing:0.036000px;}
.lsc_c00090{letter-spacing:0.043200px;}
.ls9_c00090{letter-spacing:0.050400px;}
.ls1_c00090{letter-spacing:0.057600px;}
.ls0_c00090{letter-spacing:0.064800px;}
.lsa_c00090{letter-spacing:0.072000px;}
.ls5_c00090{letter-spacing:0.079200px;}
.ls6_c00090{letter-spacing:0.086400px;}
.ls15_c00090{letter-spacing:0.100800px;}
.lsd_c00090{letter-spacing:0.108000px;}
.ls8_c00090{letter-spacing:0.136800px;}
.lsf_c00090{letter-spacing:0.151200px;}
.ls1b_c00090{letter-spacing:2.160000px;}
.lse_c00090{letter-spacing:8.280000px;}
.ls17_c00090{letter-spacing:9.360000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00090{word-spacing:-18.000000px;}
.ws4_c00090{word-spacing:-1.440000px;}
.ws2_c00090{word-spacing:0.000000px;}
.ws1_c00090{word-spacing:0.192384px;}
.ws7_c00090{word-spacing:5.040000px;}
.ws6_c00090{word-spacing:9.000000px;}
.ws3_c00090{word-spacing:9.374400px;}
.ws5_c00090{word-spacing:41.781600px;}
._e_c00090{margin-left:-9.072000px;}
._2_c00090{margin-left:-3.009600px;}
._1_c00090{margin-left:-1.864800px;}
._0_c00090{width:1.034064px;}
._3_c00090{width:2.341008px;}
._4_c00090{width:3.564000px;}
._5_c00090{width:5.407200px;}
._c_c00090{width:6.408000px;}
._9_c00090{width:7.804800px;}
._a_c00090{width:8.841600px;}
._d_c00090{width:9.907200px;}
._7_c00090{width:12.693600px;}
._8_c00090{width:14.126400px;}
._b_c00090{width:16.876800px;}
._6_c00090{width:34.178400px;}
._f_c00090{width:41.781600px;}
.fc1_c00090{color:rgb(0,0,0);}
.fc0_c00090{color:rgb(32,31,30);}
.fs0_c00090{font-size:60.120000px;}
.fs1_c00090{font-size:72.000000px;}
.y0_c00090{bottom:0.000000px;}
.y5_c00090{bottom:57.360450px;}
.y4_c00090{bottom:78.060450px;}
.y24_c00090{bottom:131.970450px;}
.y23_c00090{bottom:163.020450px;}
.y22_c00090{bottom:206.040450px;}
.y21_c00090{bottom:237.090450px;}
.y20_c00090{bottom:268.140450px;}
.y1f_c00090{bottom:299.190450px;}
.y1e_c00090{bottom:330.240450px;}
.y1d_c00090{bottom:361.290450px;}
.y1c_c00090{bottom:392.340450px;}
.y1b_c00090{bottom:423.390450px;}
.y1a_c00090{bottom:454.440450px;}
.y19_c00090{bottom:485.490450px;}
.y18_c00090{bottom:516.540450px;}
.y17_c00090{bottom:559.560450px;}
.y16_c00090{bottom:590.700450px;}
.y15_c00090{bottom:621.660450px;}
.y14_c00090{bottom:652.710450px;}
.y13_c00090{bottom:695.730450px;}
.y12_c00090{bottom:726.870450px;}
.y11_c00090{bottom:757.920450px;}
.y10_c00090{bottom:788.970450px;}
.yf_c00090{bottom:820.020450px;}
.ye_c00090{bottom:851.070450px;}
.yd_c00090{bottom:894.000450px;}
.yc_c00090{bottom:925.140450px;}
.yb_c00090{bottom:956.190450px;}
.ya_c00090{bottom:987.240450px;}
.y9_c00090{bottom:1018.290450px;}
.y8_c00090{bottom:1049.340450px;}
.y7_c00090{bottom:1080.390450px;}
.y6_c00090{bottom:1111.440450px;}
.y3_c00090{bottom:1132.140450px;}
.y2_c00090{bottom:1165.441023px;}
.y1_c00090{bottom:1196.040600px;}
.h1_c00090{height:52.898555px;}
.h2_c00090{height:63.175781px;}
.h3_c00090{height:63.351562px;}
.h0_c00090{height:1263.000000px;}
.w1_c00090{width:892.500000px;}
.w0_c00090{width:892.830000px;}
.x0_c00090{left:0.000000px;}
.x1_c00090{left:127.620000px;}
.x2_c00090{left:747.450000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls1a_c00090{letter-spacing:-1.280000pt;}
.ls19_c00090{letter-spacing:-0.096000pt;}
.ls10_c00090{letter-spacing:-0.090848pt;}
.ls18_c00090{letter-spacing:-0.032000pt;}
.ls16_c00090{letter-spacing:-0.025600pt;}
.ls12_c00090{letter-spacing:-0.019200pt;}
.ls14_c00090{letter-spacing:-0.012800pt;}
.ls13_c00090{letter-spacing:-0.006400pt;}
.ls11_c00090{letter-spacing:0.000000pt;}
.ls2_c00090{letter-spacing:0.006400pt;}
.lsb_c00090{letter-spacing:0.012800pt;}
.ls7_c00090{letter-spacing:0.019200pt;}
.ls4_c00090{letter-spacing:0.025600pt;}
.ls3_c00090{letter-spacing:0.032000pt;}
.lsc_c00090{letter-spacing:0.038400pt;}
.ls9_c00090{letter-spacing:0.044800pt;}
.ls1_c00090{letter-spacing:0.051200pt;}
.ls0_c00090{letter-spacing:0.057600pt;}
.lsa_c00090{letter-spacing:0.064000pt;}
.ls5_c00090{letter-spacing:0.070400pt;}
.ls6_c00090{letter-spacing:0.076800pt;}
.ls15_c00090{letter-spacing:0.089600pt;}
.lsd_c00090{letter-spacing:0.096000pt;}
.ls8_c00090{letter-spacing:0.121600pt;}
.lsf_c00090{letter-spacing:0.134400pt;}
.ls1b_c00090{letter-spacing:1.920000pt;}
.lse_c00090{letter-spacing:7.360000pt;}
.ls17_c00090{letter-spacing:8.320000pt;}
.ws0_c00090{word-spacing:-16.000000pt;}
.ws4_c00090{word-spacing:-1.280000pt;}
.ws2_c00090{word-spacing:0.000000pt;}
.ws1_c00090{word-spacing:0.171008pt;}
.ws7_c00090{word-spacing:4.480000pt;}
.ws6_c00090{word-spacing:8.000000pt;}
.ws3_c00090{word-spacing:8.332800pt;}
.ws5_c00090{word-spacing:37.139200pt;}
._e_c00090{margin-left:-8.064000pt;}
._2_c00090{margin-left:-2.675200pt;}
._1_c00090{margin-left:-1.657600pt;}
._0_c00090{width:0.919168pt;}
._3_c00090{width:2.080896pt;}
._4_c00090{width:3.168000pt;}
._5_c00090{width:4.806400pt;}
._c_c00090{width:5.696000pt;}
._9_c00090{width:6.937600pt;}
._a_c00090{width:7.859200pt;}
._d_c00090{width:8.806400pt;}
._7_c00090{width:11.283200pt;}
._8_c00090{width:12.556800pt;}
._b_c00090{width:15.001600pt;}
._6_c00090{width:30.380800pt;}
._f_c00090{width:37.139200pt;}
.fs0_c00090{font-size:53.440000pt;}
.fs1_c00090{font-size:64.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y5_c00090{bottom:50.987067pt;}
.y4_c00090{bottom:69.387067pt;}
.y24_c00090{bottom:117.307067pt;}
.y23_c00090{bottom:144.907067pt;}
.y22_c00090{bottom:183.147067pt;}
.y21_c00090{bottom:210.747067pt;}
.y20_c00090{bottom:238.347067pt;}
.y1f_c00090{bottom:265.947067pt;}
.y1e_c00090{bottom:293.547067pt;}
.y1d_c00090{bottom:321.147067pt;}
.y1c_c00090{bottom:348.747067pt;}
.y1b_c00090{bottom:376.347067pt;}
.y1a_c00090{bottom:403.947067pt;}
.y19_c00090{bottom:431.547067pt;}
.y18_c00090{bottom:459.147067pt;}
.y17_c00090{bottom:497.387067pt;}
.y16_c00090{bottom:525.067067pt;}
.y15_c00090{bottom:552.587067pt;}
.y14_c00090{bottom:580.187067pt;}
.y13_c00090{bottom:618.427067pt;}
.y12_c00090{bottom:646.107067pt;}
.y11_c00090{bottom:673.707067pt;}
.y10_c00090{bottom:701.307067pt;}
.yf_c00090{bottom:728.907067pt;}
.ye_c00090{bottom:756.507067pt;}
.yd_c00090{bottom:794.667067pt;}
.yc_c00090{bottom:822.347067pt;}
.yb_c00090{bottom:849.947067pt;}
.ya_c00090{bottom:877.547067pt;}
.y9_c00090{bottom:905.147067pt;}
.y8_c00090{bottom:932.747067pt;}
.y7_c00090{bottom:960.347067pt;}
.y6_c00090{bottom:987.947067pt;}
.y3_c00090{bottom:1006.347067pt;}
.y2_c00090{bottom:1035.947576pt;}
.y1_c00090{bottom:1063.147200pt;}
.h1_c00090{height:47.020937pt;}
.h2_c00090{height:56.156250pt;}
.h3_c00090{height:56.312500pt;}
.h0_c00090{height:1122.666667pt;}
.w1_c00090{width:793.333333pt;}
.w0_c00090{width:793.626667pt;}
.x0_c00090{left:0.000000pt;}
.x1_c00090{left:113.440000pt;}
.x2_c00090{left:664.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_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_d5fb820d3064fca9b6e94fb8.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.095703;font-style:normal;font-weight:normal;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_130e29f18ce74f60d8e0db27.woff2')format("woff");}.ff2_c00091{font-family:ff2_c00091;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00091{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls14_c00091{letter-spacing:-3.960000px;}
.ls1b_c00091{letter-spacing:-0.136800px;}
.ls19_c00091{letter-spacing:-0.100800px;}
.ls18_c00091{letter-spacing:-0.064800px;}
.ls1a_c00091{letter-spacing:-0.057600px;}
.ls11_c00091{letter-spacing:-0.048096px;}
.ls15_c00091{letter-spacing:-0.043200px;}
.ls16_c00091{letter-spacing:-0.021600px;}
.ls13_c00091{letter-spacing:-0.014400px;}
.ls17_c00091{letter-spacing:-0.007200px;}
.ls12_c00091{letter-spacing:0.000000px;}
.ls4_c00091{letter-spacing:0.007200px;}
.lsf_c00091{letter-spacing:0.014400px;}
.ls3_c00091{letter-spacing:0.021600px;}
.ls1_c00091{letter-spacing:0.028800px;}
.ls0_c00091{letter-spacing:0.036000px;}
.ls5_c00091{letter-spacing:0.043200px;}
.lsa_c00091{letter-spacing:0.050400px;}
.lsd_c00091{letter-spacing:0.057600px;}
.ls6_c00091{letter-spacing:0.064800px;}
.ls8_c00091{letter-spacing:0.072000px;}
.ls7_c00091{letter-spacing:0.079200px;}
.lse_c00091{letter-spacing:0.086400px;}
.ls10_c00091{letter-spacing:0.093600px;}
.lsc_c00091{letter-spacing:0.115200px;}
.lsb_c00091{letter-spacing:0.158400px;}
.ls2_c00091{letter-spacing:0.223200px;}
.ls9_c00091{letter-spacing:7.920000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00091{word-spacing:-18.158400px;}
.ws0_c00091{word-spacing:-18.036000px;}
.wsb_c00091{word-spacing:-4.320000px;}
.ws5_c00091{word-spacing:-3.600000px;}
.ws13_c00091{word-spacing:-3.254400px;}
.ws6_c00091{word-spacing:-0.158400px;}
.ws14_c00091{word-spacing:-0.079200px;}
.ws3_c00091{word-spacing:0.000000px;}
.ws4_c00091{word-spacing:0.014400px;}
.ws15_c00091{word-spacing:0.086400px;}
.ws2_c00091{word-spacing:0.138276px;}
.ws10_c00091{word-spacing:2.743200px;}
.wsf_c00091{word-spacing:2.858400px;}
.wsc_c00091{word-spacing:4.262400px;}
.ws8_c00091{word-spacing:7.711200px;}
.ws7_c00091{word-spacing:7.934400px;}
.wsa_c00091{word-spacing:7.941600px;}
.ws9_c00091{word-spacing:7.963200px;}
.ws11_c00091{word-spacing:9.986400px;}
.ws12_c00091{word-spacing:10.094400px;}
.wse_c00091{word-spacing:19.843200px;}
.wsd_c00091{word-spacing:24.429600px;}
._8_c00091{margin-left:-7.617600px;}
._a_c00091{margin-left:-4.989600px;}
._2_c00091{margin-left:-3.967200px;}
._5_c00091{margin-left:-2.743200px;}
._6_c00091{margin-left:-1.202400px;}
._0_c00091{width:1.087200px;}
._1_c00091{width:2.124000px;}
._4_c00091{width:3.168000px;}
._3_c00091{width:4.831200px;}
._9_c00091{width:6.861600px;}
._7_c00091{width:7.862400px;}
._10_c00091{width:9.676800px;}
._b_c00091{width:19.072800px;}
._11_c00091{width:20.541600px;}
._f_c00091{width:23.140800px;}
._c_c00091{width:24.422400px;}
._12_c00091{width:32.040000px;}
._d_c00091{width:33.105600px;}
._e_c00091{width:34.185600px;}
.fc0_c00091{color:rgb(0,0,0);}
.fs0_c00091{font-size:60.120000px;}
.fs1_c00091{font-size:72.000000px;}
.y0_c00091{bottom:0.000000px;}
.y6_c00091{bottom:57.360450px;}
.y5_c00091{bottom:78.060450px;}
.y26_c00091{bottom:112.980450px;}
.y25_c00091{bottom:144.030450px;}
.y24_c00091{bottom:175.080450px;}
.y23_c00091{bottom:206.130450px;}
.y22_c00091{bottom:240.420450px;}
.y21_c00091{bottom:262.650450px;}
.y20_c00091{bottom:287.940450px;}
.y1f_c00091{bottom:331.140450px;}
.y1e_c00091{bottom:362.190450px;}
.y1d_c00091{bottom:393.240450px;}
.y1c_c00091{bottom:424.290450px;}
.y1b_c00091{bottom:455.430450px;}
.y1a_c00091{bottom:486.480450px;}
.y19_c00091{bottom:529.410450px;}
.y18_c00091{bottom:560.550450px;}
.y17_c00091{bottom:591.600450px;}
.y16_c00091{bottom:622.650450px;}
.y15_c00091{bottom:653.700450px;}
.y14_c00091{bottom:696.630450px;}
.y13_c00091{bottom:727.770450px;}
.y12_c00091{bottom:758.820450px;}
.y11_c00091{bottom:789.870450px;}
.y10_c00091{bottom:820.920450px;}
.yf_c00091{bottom:851.970450px;}
.ye_c00091{bottom:883.020450px;}
.yd_c00091{bottom:914.070450px;}
.yc_c00091{bottom:945.120450px;}
.yb_c00091{bottom:988.050450px;}
.ya_c00091{bottom:1019.190450px;}
.y9_c00091{bottom:1050.240450px;}
.y8_c00091{bottom:1093.170450px;}
.y7_c00091{bottom:1124.310450px;}
.y4_c00091{bottom:1144.380657px;}
.y3_c00091{bottom:1161.660648px;}
.y2_c00091{bottom:1178.850459px;}
.y1_c00091{bottom:1196.130450px;}
.h1_c00091{height:52.898555px;}
.h2_c00091{height:63.175781px;}
.h3_c00091{height:63.351562px;}
.h0_c00091{height:1263.000000px;}
.w1_c00091{width:892.500000px;}
.w0_c00091{width:892.830000px;}
.x0_c00091{left:0.000000px;}
.x4_c00091{left:127.620000px;}
.x1_c00091{left:649.620000px;}
.x3_c00091{left:747.450000px;}
.x2_c00091{left:765.450198px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls14_c00091{letter-spacing:-3.520000pt;}
.ls1b_c00091{letter-spacing:-0.121600pt;}
.ls19_c00091{letter-spacing:-0.089600pt;}
.ls18_c00091{letter-spacing:-0.057600pt;}
.ls1a_c00091{letter-spacing:-0.051200pt;}
.ls11_c00091{letter-spacing:-0.042752pt;}
.ls15_c00091{letter-spacing:-0.038400pt;}
.ls16_c00091{letter-spacing:-0.019200pt;}
.ls13_c00091{letter-spacing:-0.012800pt;}
.ls17_c00091{letter-spacing:-0.006400pt;}
.ls12_c00091{letter-spacing:0.000000pt;}
.ls4_c00091{letter-spacing:0.006400pt;}
.lsf_c00091{letter-spacing:0.012800pt;}
.ls3_c00091{letter-spacing:0.019200pt;}
.ls1_c00091{letter-spacing:0.025600pt;}
.ls0_c00091{letter-spacing:0.032000pt;}
.ls5_c00091{letter-spacing:0.038400pt;}
.lsa_c00091{letter-spacing:0.044800pt;}
.lsd_c00091{letter-spacing:0.051200pt;}
.ls6_c00091{letter-spacing:0.057600pt;}
.ls8_c00091{letter-spacing:0.064000pt;}
.ls7_c00091{letter-spacing:0.070400pt;}
.lse_c00091{letter-spacing:0.076800pt;}
.ls10_c00091{letter-spacing:0.083200pt;}
.lsc_c00091{letter-spacing:0.102400pt;}
.lsb_c00091{letter-spacing:0.140800pt;}
.ls2_c00091{letter-spacing:0.198400pt;}
.ls9_c00091{letter-spacing:7.040000pt;}
.ws1_c00091{word-spacing:-16.140800pt;}
.ws0_c00091{word-spacing:-16.032000pt;}
.wsb_c00091{word-spacing:-3.840000pt;}
.ws5_c00091{word-spacing:-3.200000pt;}
.ws13_c00091{word-spacing:-2.892800pt;}
.ws6_c00091{word-spacing:-0.140800pt;}
.ws14_c00091{word-spacing:-0.070400pt;}
.ws3_c00091{word-spacing:0.000000pt;}
.ws4_c00091{word-spacing:0.012800pt;}
.ws15_c00091{word-spacing:0.076800pt;}
.ws2_c00091{word-spacing:0.122912pt;}
.ws10_c00091{word-spacing:2.438400pt;}
.wsf_c00091{word-spacing:2.540800pt;}
.wsc_c00091{word-spacing:3.788800pt;}
.ws8_c00091{word-spacing:6.854400pt;}
.ws7_c00091{word-spacing:7.052800pt;}
.wsa_c00091{word-spacing:7.059200pt;}
.ws9_c00091{word-spacing:7.078400pt;}
.ws11_c00091{word-spacing:8.876800pt;}
.ws12_c00091{word-spacing:8.972800pt;}
.wse_c00091{word-spacing:17.638400pt;}
.wsd_c00091{word-spacing:21.715200pt;}
._8_c00091{margin-left:-6.771200pt;}
._a_c00091{margin-left:-4.435200pt;}
._2_c00091{margin-left:-3.526400pt;}
._5_c00091{margin-left:-2.438400pt;}
._6_c00091{margin-left:-1.068800pt;}
._0_c00091{width:0.966400pt;}
._1_c00091{width:1.888000pt;}
._4_c00091{width:2.816000pt;}
._3_c00091{width:4.294400pt;}
._9_c00091{width:6.099200pt;}
._7_c00091{width:6.988800pt;}
._10_c00091{width:8.601600pt;}
._b_c00091{width:16.953600pt;}
._11_c00091{width:18.259200pt;}
._f_c00091{width:20.569600pt;}
._c_c00091{width:21.708800pt;}
._12_c00091{width:28.480000pt;}
._d_c00091{width:29.427200pt;}
._e_c00091{width:30.387200pt;}
.fs0_c00091{font-size:53.440000pt;}
.fs1_c00091{font-size:64.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y6_c00091{bottom:50.987067pt;}
.y5_c00091{bottom:69.387067pt;}
.y26_c00091{bottom:100.427067pt;}
.y25_c00091{bottom:128.027067pt;}
.y24_c00091{bottom:155.627067pt;}
.y23_c00091{bottom:183.227067pt;}
.y22_c00091{bottom:213.707067pt;}
.y21_c00091{bottom:233.467067pt;}
.y20_c00091{bottom:255.947067pt;}
.y1f_c00091{bottom:294.347067pt;}
.y1e_c00091{bottom:321.947067pt;}
.y1d_c00091{bottom:349.547067pt;}
.y1c_c00091{bottom:377.147067pt;}
.y1b_c00091{bottom:404.827067pt;}
.y1a_c00091{bottom:432.427067pt;}
.y19_c00091{bottom:470.587067pt;}
.y18_c00091{bottom:498.267067pt;}
.y17_c00091{bottom:525.867067pt;}
.y16_c00091{bottom:553.467067pt;}
.y15_c00091{bottom:581.067067pt;}
.y14_c00091{bottom:619.227067pt;}
.y13_c00091{bottom:646.907067pt;}
.y12_c00091{bottom:674.507067pt;}
.y11_c00091{bottom:702.107067pt;}
.y10_c00091{bottom:729.707067pt;}
.yf_c00091{bottom:757.307067pt;}
.ye_c00091{bottom:784.907067pt;}
.yd_c00091{bottom:812.507067pt;}
.yc_c00091{bottom:840.107067pt;}
.yb_c00091{bottom:878.267067pt;}
.ya_c00091{bottom:905.947067pt;}
.y9_c00091{bottom:933.547067pt;}
.y8_c00091{bottom:971.707067pt;}
.y7_c00091{bottom:999.387067pt;}
.y4_c00091{bottom:1017.227251pt;}
.y3_c00091{bottom:1032.587243pt;}
.y2_c00091{bottom:1047.867075pt;}
.y1_c00091{bottom:1063.227067pt;}
.h1_c00091{height:47.020937pt;}
.h2_c00091{height:56.156250pt;}
.h3_c00091{height:56.312500pt;}
.h0_c00091{height:1122.666667pt;}
.w1_c00091{width:793.333333pt;}
.w0_c00091{width:793.626667pt;}
.x0_c00091{left:0.000000pt;}
.x4_c00091{left:113.440000pt;}
.x1_c00091{left:577.440000pt;}
.x3_c00091{left:664.400000pt;}
.x2_c00091{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c52fdd108d40d7cf3ab922cc.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.095703;font-style:normal;font-weight:normal;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_773f930c002c5eeecf36b97f.woff2')format("woff");}.ff2_c00092{font-family:ff2_c00092;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00092{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.lsd_c00092{letter-spacing:-0.102204px;}
.ls15_c00092{letter-spacing:-0.072000px;}
.ls13_c00092{letter-spacing:-0.057600px;}
.ls12_c00092{letter-spacing:-0.050400px;}
.ls14_c00092{letter-spacing:-0.043200px;}
.ls11_c00092{letter-spacing:-0.036000px;}
.ls16_c00092{letter-spacing:-0.028800px;}
.lsf_c00092{letter-spacing:-0.014400px;}
.ls10_c00092{letter-spacing:-0.007200px;}
.lse_c00092{letter-spacing:0.000000px;}
.ls4_c00092{letter-spacing:0.014400px;}
.ls2_c00092{letter-spacing:0.021600px;}
.lsc_c00092{letter-spacing:0.028800px;}
.ls1_c00092{letter-spacing:0.036000px;}
.lsa_c00092{letter-spacing:0.043200px;}
.ls0_c00092{letter-spacing:0.050400px;}
.ls8_c00092{letter-spacing:0.057600px;}
.ls5_c00092{letter-spacing:0.064800px;}
.ls6_c00092{letter-spacing:0.072000px;}
.ls7_c00092{letter-spacing:0.086400px;}
.ls3_c00092{letter-spacing:0.093600px;}
.lsb_c00092{letter-spacing:0.100800px;}
.ls9_c00092{letter-spacing:0.115200px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00092{word-spacing:-18.050400px;}
.ws2_c00092{word-spacing:0.000000px;}
.ws1_c00092{word-spacing:0.192384px;}
.ws3_c00092{word-spacing:1.836000px;}
._8_c00092{margin-left:-4.716000px;}
._9_c00092{margin-left:-3.636000px;}
._a_c00092{margin-left:-2.592000px;}
._5_c00092{margin-left:-1.346400px;}
._0_c00092{width:1.034064px;}
._1_c00092{width:2.253600px;}
._2_c00092{width:3.657600px;}
._b_c00092{width:5.342400px;}
._6_c00092{width:6.940800px;}
._d_c00092{width:9.288000px;}
._4_c00092{width:15.429600px;}
._3_c00092{width:20.498400px;}
._7_c00092{width:21.600000px;}
._c_c00092{width:26.265600px;}
.fc1_c00092{color:rgb(0,0,0);}
.fc0_c00092{color:rgb(32,31,30);}
.fs0_c00092{font-size:60.120000px;}
.fs1_c00092{font-size:72.000000px;}
.y0_c00092{bottom:0.000000px;}
.y5_c00092{bottom:57.360450px;}
.y4_c00092{bottom:78.060450px;}
.y23_c00092{bottom:151.050450px;}
.y22_c00092{bottom:182.100450px;}
.y21_c00092{bottom:213.150450px;}
.y20_c00092{bottom:244.200450px;}
.y1f_c00092{bottom:275.250450px;}
.y1e_c00092{bottom:318.180450px;}
.y1d_c00092{bottom:349.320450px;}
.y1c_c00092{bottom:380.370450px;}
.y1b_c00092{bottom:423.300450px;}
.y1a_c00092{bottom:454.440450px;}
.y19_c00092{bottom:485.490450px;}
.y18_c00092{bottom:516.540450px;}
.y17_c00092{bottom:547.590450px;}
.y16_c00092{bottom:578.640450px;}
.y15_c00092{bottom:609.690450px;}
.y14_c00092{bottom:640.740450px;}
.y13_c00092{bottom:683.670450px;}
.y12_c00092{bottom:714.810450px;}
.y11_c00092{bottom:745.860450px;}
.y10_c00092{bottom:776.910450px;}
.yf_c00092{bottom:807.960450px;}
.ye_c00092{bottom:850.980450px;}
.yd_c00092{bottom:882.120450px;}
.yc_c00092{bottom:913.170450px;}
.yb_c00092{bottom:944.220450px;}
.ya_c00092{bottom:975.180450px;}
.y9_c00092{bottom:1006.230450px;}
.y8_c00092{bottom:1049.250450px;}
.y7_c00092{bottom:1080.390450px;}
.y6_c00092{bottom:1111.440450px;}
.y3_c00092{bottom:1132.140450px;}
.y2_c00092{bottom:1165.441023px;}
.y1_c00092{bottom:1196.040600px;}
.h1_c00092{height:52.898555px;}
.h2_c00092{height:63.175781px;}
.h3_c00092{height:63.351562px;}
.h0_c00092{height:1263.000000px;}
.w1_c00092{width:892.500000px;}
.w0_c00092{width:892.830000px;}
.x0_c00092{left:0.000000px;}
.x1_c00092{left:127.620000px;}
.x2_c00092{left:747.450000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.lsd_c00092{letter-spacing:-0.090848pt;}
.ls15_c00092{letter-spacing:-0.064000pt;}
.ls13_c00092{letter-spacing:-0.051200pt;}
.ls12_c00092{letter-spacing:-0.044800pt;}
.ls14_c00092{letter-spacing:-0.038400pt;}
.ls11_c00092{letter-spacing:-0.032000pt;}
.ls16_c00092{letter-spacing:-0.025600pt;}
.lsf_c00092{letter-spacing:-0.012800pt;}
.ls10_c00092{letter-spacing:-0.006400pt;}
.lse_c00092{letter-spacing:0.000000pt;}
.ls4_c00092{letter-spacing:0.012800pt;}
.ls2_c00092{letter-spacing:0.019200pt;}
.lsc_c00092{letter-spacing:0.025600pt;}
.ls1_c00092{letter-spacing:0.032000pt;}
.lsa_c00092{letter-spacing:0.038400pt;}
.ls0_c00092{letter-spacing:0.044800pt;}
.ls8_c00092{letter-spacing:0.051200pt;}
.ls5_c00092{letter-spacing:0.057600pt;}
.ls6_c00092{letter-spacing:0.064000pt;}
.ls7_c00092{letter-spacing:0.076800pt;}
.ls3_c00092{letter-spacing:0.083200pt;}
.lsb_c00092{letter-spacing:0.089600pt;}
.ls9_c00092{letter-spacing:0.102400pt;}
.ws0_c00092{word-spacing:-16.044800pt;}
.ws2_c00092{word-spacing:0.000000pt;}
.ws1_c00092{word-spacing:0.171008pt;}
.ws3_c00092{word-spacing:1.632000pt;}
._8_c00092{margin-left:-4.192000pt;}
._9_c00092{margin-left:-3.232000pt;}
._a_c00092{margin-left:-2.304000pt;}
._5_c00092{margin-left:-1.196800pt;}
._0_c00092{width:0.919168pt;}
._1_c00092{width:2.003200pt;}
._2_c00092{width:3.251200pt;}
._b_c00092{width:4.748800pt;}
._6_c00092{width:6.169600pt;}
._d_c00092{width:8.256000pt;}
._4_c00092{width:13.715200pt;}
._3_c00092{width:18.220800pt;}
._7_c00092{width:19.200000pt;}
._c_c00092{width:23.347200pt;}
.fs0_c00092{font-size:53.440000pt;}
.fs1_c00092{font-size:64.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y5_c00092{bottom:50.987067pt;}
.y4_c00092{bottom:69.387067pt;}
.y23_c00092{bottom:134.267067pt;}
.y22_c00092{bottom:161.867067pt;}
.y21_c00092{bottom:189.467067pt;}
.y20_c00092{bottom:217.067067pt;}
.y1f_c00092{bottom:244.667067pt;}
.y1e_c00092{bottom:282.827067pt;}
.y1d_c00092{bottom:310.507067pt;}
.y1c_c00092{bottom:338.107067pt;}
.y1b_c00092{bottom:376.267067pt;}
.y1a_c00092{bottom:403.947067pt;}
.y19_c00092{bottom:431.547067pt;}
.y18_c00092{bottom:459.147067pt;}
.y17_c00092{bottom:486.747067pt;}
.y16_c00092{bottom:514.347067pt;}
.y15_c00092{bottom:541.947067pt;}
.y14_c00092{bottom:569.547067pt;}
.y13_c00092{bottom:607.707067pt;}
.y12_c00092{bottom:635.387067pt;}
.y11_c00092{bottom:662.987067pt;}
.y10_c00092{bottom:690.587067pt;}
.yf_c00092{bottom:718.187067pt;}
.ye_c00092{bottom:756.427067pt;}
.yd_c00092{bottom:784.107067pt;}
.yc_c00092{bottom:811.707067pt;}
.yb_c00092{bottom:839.307067pt;}
.ya_c00092{bottom:866.827067pt;}
.y9_c00092{bottom:894.427067pt;}
.y8_c00092{bottom:932.667067pt;}
.y7_c00092{bottom:960.347067pt;}
.y6_c00092{bottom:987.947067pt;}
.y3_c00092{bottom:1006.347067pt;}
.y2_c00092{bottom:1035.947576pt;}
.y1_c00092{bottom:1063.147200pt;}
.h1_c00092{height:47.020937pt;}
.h2_c00092{height:56.156250pt;}
.h3_c00092{height:56.312500pt;}
.h0_c00092{height:1122.666667pt;}
.w1_c00092{width:793.333333pt;}
.w0_c00092{width:793.626667pt;}
.x0_c00092{left:0.000000pt;}
.x1_c00092{left:113.440000pt;}
.x2_c00092{left:664.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_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_5ea248f6f36aaa01da340312.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.095703;font-style:normal;font-weight:normal;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_efd745ad3a52ff2780a57a3f.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00093{font-family:ff3_c00093;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00093{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls17_c00093{letter-spacing:-0.050400px;}
.ls11_c00093{letter-spacing:-0.048096px;}
.ls15_c00093{letter-spacing:-0.036000px;}
.ls16_c00093{letter-spacing:-0.028800px;}
.ls13_c00093{letter-spacing:-0.014400px;}
.ls14_c00093{letter-spacing:-0.007200px;}
.ls12_c00093{letter-spacing:0.000000px;}
.ls6_c00093{letter-spacing:0.007200px;}
.ls3_c00093{letter-spacing:0.014400px;}
.ls7_c00093{letter-spacing:0.021600px;}
.lse_c00093{letter-spacing:0.028800px;}
.ls2_c00093{letter-spacing:0.036000px;}
.lsd_c00093{letter-spacing:0.043200px;}
.ls5_c00093{letter-spacing:0.050400px;}
.ls1_c00093{letter-spacing:0.057600px;}
.lsb_c00093{letter-spacing:0.064800px;}
.lsa_c00093{letter-spacing:0.072000px;}
.ls0_c00093{letter-spacing:0.079200px;}
.ls9_c00093{letter-spacing:0.086400px;}
.ls8_c00093{letter-spacing:0.093600px;}
.ls4_c00093{letter-spacing:0.108000px;}
.ls10_c00093{letter-spacing:3.600000px;}
.lsc_c00093{letter-spacing:21.240000px;}
.lsf_c00093{letter-spacing:25.560000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00093{word-spacing:-18.021600px;}
.ws1_c00093{word-spacing:-18.014400px;}
.wsa_c00093{word-spacing:-2.210400px;}
.ws5_c00093{word-spacing:-0.007200px;}
.ws3_c00093{word-spacing:0.000000px;}
.ws2_c00093{word-spacing:0.138276px;}
.ws4_c00093{word-spacing:1.814400px;}
.ws9_c00093{word-spacing:6.091200px;}
.ws7_c00093{word-spacing:11.527200px;}
.ws6_c00093{word-spacing:21.067200px;}
.ws8_c00093{word-spacing:25.538400px;}
._f_c00093{margin-left:-2.563200px;}
._1_c00093{margin-left:-1.252800px;}
._2_c00093{width:1.764000px;}
._c_c00093{width:2.836800px;}
._3_c00093{width:3.909600px;}
._6_c00093{width:5.760000px;}
._9_c00093{width:6.890400px;}
._0_c00093{width:8.200800px;}
._a_c00093{width:9.756000px;}
._b_c00093{width:10.850400px;}
._4_c00093{width:12.204000px;}
._5_c00093{width:14.097600px;}
._7_c00093{width:20.815200px;}
._8_c00093{width:22.104000px;}
._d_c00093{width:25.207200px;}
._e_c00093{width:26.380800px;}
.fc0_c00093{color:rgb(0,0,0);}
.fs0_c00093{font-size:60.120000px;}
.fs1_c00093{font-size:72.000000px;}
.y0_c00093{bottom:0.000000px;}
.y6_c00093{bottom:57.360450px;}
.y5_c00093{bottom:78.060450px;}
.y26_c00093{bottom:125.760450px;}
.y25_c00093{bottom:156.900450px;}
.y24_c00093{bottom:187.950450px;}
.y23_c00093{bottom:219.000450px;}
.y22_c00093{bottom:250.050450px;}
.y21_c00093{bottom:281.100450px;}
.y20_c00093{bottom:312.150450px;}
.y1f_c00093{bottom:343.200450px;}
.y1e_c00093{bottom:374.250450px;}
.y1d_c00093{bottom:405.300450px;}
.y1c_c00093{bottom:436.350450px;}
.y1b_c00093{bottom:467.400450px;}
.y1a_c00093{bottom:498.450450px;}
.y19_c00093{bottom:541.380450px;}
.y18_c00093{bottom:572.520450px;}
.y17_c00093{bottom:603.570450px;}
.y16_c00093{bottom:634.620450px;}
.y15_c00093{bottom:665.670450px;}
.y14_c00093{bottom:696.720450px;}
.y13_c00093{bottom:739.650450px;}
.y12_c00093{bottom:770.790450px;}
.y11_c00093{bottom:801.840450px;}
.y10_c00093{bottom:832.890450px;}
.yf_c00093{bottom:863.940450px;}
.ye_c00093{bottom:894.990450px;}
.yd_c00093{bottom:926.040450px;}
.yc_c00093{bottom:957.090450px;}
.yb_c00093{bottom:988.140450px;}
.ya_c00093{bottom:1019.190450px;}
.y9_c00093{bottom:1050.240450px;}
.y8_c00093{bottom:1093.170450px;}
.y7_c00093{bottom:1124.310450px;}
.y4_c00093{bottom:1144.380657px;}
.y3_c00093{bottom:1161.660648px;}
.y2_c00093{bottom:1178.850459px;}
.y1_c00093{bottom:1196.130450px;}
.h1_c00093{height:52.898555px;}
.h2_c00093{height:63.175781px;}
.h3_c00093{height:63.351562px;}
.h4_c00093{height:63.949219px;}
.h0_c00093{height:1263.000000px;}
.w1_c00093{width:892.500000px;}
.w0_c00093{width:892.830000px;}
.x0_c00093{left:0.000000px;}
.x4_c00093{left:127.620000px;}
.x1_c00093{left:649.620000px;}
.x3_c00093{left:747.450000px;}
.x2_c00093{left:765.450198px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls17_c00093{letter-spacing:-0.044800pt;}
.ls11_c00093{letter-spacing:-0.042752pt;}
.ls15_c00093{letter-spacing:-0.032000pt;}
.ls16_c00093{letter-spacing:-0.025600pt;}
.ls13_c00093{letter-spacing:-0.012800pt;}
.ls14_c00093{letter-spacing:-0.006400pt;}
.ls12_c00093{letter-spacing:0.000000pt;}
.ls6_c00093{letter-spacing:0.006400pt;}
.ls3_c00093{letter-spacing:0.012800pt;}
.ls7_c00093{letter-spacing:0.019200pt;}
.lse_c00093{letter-spacing:0.025600pt;}
.ls2_c00093{letter-spacing:0.032000pt;}
.lsd_c00093{letter-spacing:0.038400pt;}
.ls5_c00093{letter-spacing:0.044800pt;}
.ls1_c00093{letter-spacing:0.051200pt;}
.lsb_c00093{letter-spacing:0.057600pt;}
.lsa_c00093{letter-spacing:0.064000pt;}
.ls0_c00093{letter-spacing:0.070400pt;}
.ls9_c00093{letter-spacing:0.076800pt;}
.ls8_c00093{letter-spacing:0.083200pt;}
.ls4_c00093{letter-spacing:0.096000pt;}
.ls10_c00093{letter-spacing:3.200000pt;}
.lsc_c00093{letter-spacing:18.880000pt;}
.lsf_c00093{letter-spacing:22.720000pt;}
.ws0_c00093{word-spacing:-16.019200pt;}
.ws1_c00093{word-spacing:-16.012800pt;}
.wsa_c00093{word-spacing:-1.964800pt;}
.ws5_c00093{word-spacing:-0.006400pt;}
.ws3_c00093{word-spacing:0.000000pt;}
.ws2_c00093{word-spacing:0.122912pt;}
.ws4_c00093{word-spacing:1.612800pt;}
.ws9_c00093{word-spacing:5.414400pt;}
.ws7_c00093{word-spacing:10.246400pt;}
.ws6_c00093{word-spacing:18.726400pt;}
.ws8_c00093{word-spacing:22.700800pt;}
._f_c00093{margin-left:-2.278400pt;}
._1_c00093{margin-left:-1.113600pt;}
._2_c00093{width:1.568000pt;}
._c_c00093{width:2.521600pt;}
._3_c00093{width:3.475200pt;}
._6_c00093{width:5.120000pt;}
._9_c00093{width:6.124800pt;}
._0_c00093{width:7.289600pt;}
._a_c00093{width:8.672000pt;}
._b_c00093{width:9.644800pt;}
._4_c00093{width:10.848000pt;}
._5_c00093{width:12.531200pt;}
._7_c00093{width:18.502400pt;}
._8_c00093{width:19.648000pt;}
._d_c00093{width:22.406400pt;}
._e_c00093{width:23.449600pt;}
.fs0_c00093{font-size:53.440000pt;}
.fs1_c00093{font-size:64.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.y6_c00093{bottom:50.987067pt;}
.y5_c00093{bottom:69.387067pt;}
.y26_c00093{bottom:111.787067pt;}
.y25_c00093{bottom:139.467067pt;}
.y24_c00093{bottom:167.067067pt;}
.y23_c00093{bottom:194.667067pt;}
.y22_c00093{bottom:222.267067pt;}
.y21_c00093{bottom:249.867067pt;}
.y20_c00093{bottom:277.467067pt;}
.y1f_c00093{bottom:305.067067pt;}
.y1e_c00093{bottom:332.667067pt;}
.y1d_c00093{bottom:360.267067pt;}
.y1c_c00093{bottom:387.867067pt;}
.y1b_c00093{bottom:415.467067pt;}
.y1a_c00093{bottom:443.067067pt;}
.y19_c00093{bottom:481.227067pt;}
.y18_c00093{bottom:508.907067pt;}
.y17_c00093{bottom:536.507067pt;}
.y16_c00093{bottom:564.107067pt;}
.y15_c00093{bottom:591.707067pt;}
.y14_c00093{bottom:619.307067pt;}
.y13_c00093{bottom:657.467067pt;}
.y12_c00093{bottom:685.147067pt;}
.y11_c00093{bottom:712.747067pt;}
.y10_c00093{bottom:740.347067pt;}
.yf_c00093{bottom:767.947067pt;}
.ye_c00093{bottom:795.547067pt;}
.yd_c00093{bottom:823.147067pt;}
.yc_c00093{bottom:850.747067pt;}
.yb_c00093{bottom:878.347067pt;}
.ya_c00093{bottom:905.947067pt;}
.y9_c00093{bottom:933.547067pt;}
.y8_c00093{bottom:971.707067pt;}
.y7_c00093{bottom:999.387067pt;}
.y4_c00093{bottom:1017.227251pt;}
.y3_c00093{bottom:1032.587243pt;}
.y2_c00093{bottom:1047.867075pt;}
.y1_c00093{bottom:1063.227067pt;}
.h1_c00093{height:47.020937pt;}
.h2_c00093{height:56.156250pt;}
.h3_c00093{height:56.312500pt;}
.h4_c00093{height:56.843750pt;}
.h0_c00093{height:1122.666667pt;}
.w1_c00093{width:793.333333pt;}
.w0_c00093{width:793.626667pt;}
.x0_c00093{left:0.000000pt;}
.x4_c00093{left:113.440000pt;}
.x1_c00093{left:577.440000pt;}
.x3_c00093{left:664.400000pt;}
.x2_c00093{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce3314a716f31666dfb79c9a.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.095703;font-style:normal;font-weight:normal;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_b4518bda5fd348ac25356c75.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.093262;font-style:normal;font-weight:normal;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_c8dfab225d05de53a14a72e9.woff2')format("woff");}.ff3_c00094{font-family:ff3_c00094;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00094{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls14_c00094{letter-spacing:-1.440000px;}
.lsf_c00094{letter-spacing:-0.102204px;}
.ls19_c00094{letter-spacing:-0.064800px;}
.ls17_c00094{letter-spacing:-0.050400px;}
.ls1b_c00094{letter-spacing:-0.036000px;}
.ls15_c00094{letter-spacing:-0.021600px;}
.ls12_c00094{letter-spacing:-0.014400px;}
.ls11_c00094{letter-spacing:-0.007200px;}
.ls10_c00094{letter-spacing:0.000000px;}
.ls1_c00094{letter-spacing:0.007200px;}
.lsa_c00094{letter-spacing:0.014400px;}
.ls0_c00094{letter-spacing:0.021600px;}
.ls8_c00094{letter-spacing:0.028800px;}
.ls3_c00094{letter-spacing:0.036000px;}
.lsb_c00094{letter-spacing:0.043200px;}
.ls2_c00094{letter-spacing:0.050400px;}
.ls5_c00094{letter-spacing:0.057600px;}
.ls7_c00094{letter-spacing:0.064800px;}
.lsd_c00094{letter-spacing:0.072000px;}
.lsc_c00094{letter-spacing:0.079200px;}
.ls9_c00094{letter-spacing:0.093600px;}
.ls4_c00094{letter-spacing:0.100800px;}
.ls6_c00094{letter-spacing:0.108000px;}
.lse_c00094{letter-spacing:0.122400px;}
.ls13_c00094{letter-spacing:0.720000px;}
.ls18_c00094{letter-spacing:2.520000px;}
.ls16_c00094{letter-spacing:9.360000px;}
.ls1a_c00094{letter-spacing:10.800000px;}
.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;}
}
.ws2_c00094{word-spacing:-18.064800px;}
.ws1_c00094{word-spacing:-18.028800px;}
.ws0_c00094{word-spacing:-18.000000px;}
.ws4_c00094{word-spacing:-17.978400px;}
.ws3_c00094{word-spacing:-17.935200px;}
.ws9_c00094{word-spacing:-1.454400px;}
.ws8_c00094{word-spacing:-0.036000px;}
.ws6_c00094{word-spacing:0.000000px;}
.ws5_c00094{word-spacing:0.192384px;}
.wsb_c00094{word-spacing:2.916000px;}
.ws7_c00094{word-spacing:3.232800px;}
.wsa_c00094{word-spacing:9.338400px;}
._f_c00094{margin-left:-10.252800px;}
._d_c00094{margin-left:-8.971200px;}
._5_c00094{margin-left:-4.010400px;}
._9_c00094{margin-left:-2.049984px;}
._2_c00094{margin-left:-1.008000px;}
._0_c00094{width:1.034064px;}
._a_c00094{width:2.086560px;}
._1_c00094{width:3.218400px;}
._10_c00094{width:4.476384px;}
._c_c00094{width:5.587200px;}
._8_c00094{width:6.818400px;}
._b_c00094{width:8.035200px;}
._e_c00094{width:9.057600px;}
._4_c00094{width:10.144800px;}
._3_c00094{width:11.469600px;}
._6_c00094{width:23.097600px;}
._7_c00094{width:24.429600px;}
.fc1_c00094{color:rgb(0,0,0);}
.fc0_c00094{color:rgb(32,31,30);}
.fs0_c00094{font-size:60.120000px;}
.fs1_c00094{font-size:72.000000px;}
.y0_c00094{bottom:0.000000px;}
.y5_c00094{bottom:57.360450px;}
.y4_c00094{bottom:78.060450px;}
.y23_c00094{bottom:150.960450px;}
.y22_c00094{bottom:182.100450px;}
.y21_c00094{bottom:213.150450px;}
.y20_c00094{bottom:244.200450px;}
.y1f_c00094{bottom:275.250450px;}
.y1e_c00094{bottom:318.180450px;}
.y1d_c00094{bottom:349.320450px;}
.y1c_c00094{bottom:380.370450px;}
.y1b_c00094{bottom:411.420450px;}
.y1a_c00094{bottom:442.470450px;}
.y19_c00094{bottom:485.400450px;}
.y18_c00094{bottom:516.540450px;}
.y17_c00094{bottom:547.590450px;}
.y16_c00094{bottom:578.640450px;}
.y15_c00094{bottom:609.690450px;}
.y14_c00094{bottom:640.740450px;}
.y13_c00094{bottom:671.790450px;}
.y12_c00094{bottom:702.840450px;}
.y11_c00094{bottom:733.890450px;}
.y10_c00094{bottom:776.820450px;}
.yf_c00094{bottom:807.960450px;}
.ye_c00094{bottom:839.010450px;}
.yd_c00094{bottom:870.060450px;}
.yc_c00094{bottom:901.110450px;}
.yb_c00094{bottom:944.130450px;}
.ya_c00094{bottom:975.180450px;}
.y9_c00094{bottom:1006.230450px;}
.y8_c00094{bottom:1037.280450px;}
.y7_c00094{bottom:1080.300450px;}
.y6_c00094{bottom:1111.440450px;}
.y3_c00094{bottom:1132.140450px;}
.y2_c00094{bottom:1165.441023px;}
.y1_c00094{bottom:1196.040600px;}
.h1_c00094{height:52.898555px;}
.h2_c00094{height:63.175781px;}
.h4_c00094{height:63.351562px;}
.h3_c00094{height:63.949219px;}
.h0_c00094{height:1263.000000px;}
.w1_c00094{width:892.500000px;}
.w0_c00094{width:892.830000px;}
.x0_c00094{left:0.000000px;}
.x1_c00094{left:127.620000px;}
.x2_c00094{left:747.450000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls14_c00094{letter-spacing:-1.280000pt;}
.lsf_c00094{letter-spacing:-0.090848pt;}
.ls19_c00094{letter-spacing:-0.057600pt;}
.ls17_c00094{letter-spacing:-0.044800pt;}
.ls1b_c00094{letter-spacing:-0.032000pt;}
.ls15_c00094{letter-spacing:-0.019200pt;}
.ls12_c00094{letter-spacing:-0.012800pt;}
.ls11_c00094{letter-spacing:-0.006400pt;}
.ls10_c00094{letter-spacing:0.000000pt;}
.ls1_c00094{letter-spacing:0.006400pt;}
.lsa_c00094{letter-spacing:0.012800pt;}
.ls0_c00094{letter-spacing:0.019200pt;}
.ls8_c00094{letter-spacing:0.025600pt;}
.ls3_c00094{letter-spacing:0.032000pt;}
.lsb_c00094{letter-spacing:0.038400pt;}
.ls2_c00094{letter-spacing:0.044800pt;}
.ls5_c00094{letter-spacing:0.051200pt;}
.ls7_c00094{letter-spacing:0.057600pt;}
.lsd_c00094{letter-spacing:0.064000pt;}
.lsc_c00094{letter-spacing:0.070400pt;}
.ls9_c00094{letter-spacing:0.083200pt;}
.ls4_c00094{letter-spacing:0.089600pt;}
.ls6_c00094{letter-spacing:0.096000pt;}
.lse_c00094{letter-spacing:0.108800pt;}
.ls13_c00094{letter-spacing:0.640000pt;}
.ls18_c00094{letter-spacing:2.240000pt;}
.ls16_c00094{letter-spacing:8.320000pt;}
.ls1a_c00094{letter-spacing:9.600000pt;}
.ws2_c00094{word-spacing:-16.057600pt;}
.ws1_c00094{word-spacing:-16.025600pt;}
.ws0_c00094{word-spacing:-16.000000pt;}
.ws4_c00094{word-spacing:-15.980800pt;}
.ws3_c00094{word-spacing:-15.942400pt;}
.ws9_c00094{word-spacing:-1.292800pt;}
.ws8_c00094{word-spacing:-0.032000pt;}
.ws6_c00094{word-spacing:0.000000pt;}
.ws5_c00094{word-spacing:0.171008pt;}
.wsb_c00094{word-spacing:2.592000pt;}
.ws7_c00094{word-spacing:2.873600pt;}
.wsa_c00094{word-spacing:8.300800pt;}
._f_c00094{margin-left:-9.113600pt;}
._d_c00094{margin-left:-7.974400pt;}
._5_c00094{margin-left:-3.564800pt;}
._9_c00094{margin-left:-1.822208pt;}
._2_c00094{margin-left:-0.896000pt;}
._0_c00094{width:0.919168pt;}
._a_c00094{width:1.854720pt;}
._1_c00094{width:2.860800pt;}
._10_c00094{width:3.979008pt;}
._c_c00094{width:4.966400pt;}
._8_c00094{width:6.060800pt;}
._b_c00094{width:7.142400pt;}
._e_c00094{width:8.051200pt;}
._4_c00094{width:9.017600pt;}
._3_c00094{width:10.195200pt;}
._6_c00094{width:20.531200pt;}
._7_c00094{width:21.715200pt;}
.fs0_c00094{font-size:53.440000pt;}
.fs1_c00094{font-size:64.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y5_c00094{bottom:50.987067pt;}
.y4_c00094{bottom:69.387067pt;}
.y23_c00094{bottom:134.187067pt;}
.y22_c00094{bottom:161.867067pt;}
.y21_c00094{bottom:189.467067pt;}
.y20_c00094{bottom:217.067067pt;}
.y1f_c00094{bottom:244.667067pt;}
.y1e_c00094{bottom:282.827067pt;}
.y1d_c00094{bottom:310.507067pt;}
.y1c_c00094{bottom:338.107067pt;}
.y1b_c00094{bottom:365.707067pt;}
.y1a_c00094{bottom:393.307067pt;}
.y19_c00094{bottom:431.467067pt;}
.y18_c00094{bottom:459.147067pt;}
.y17_c00094{bottom:486.747067pt;}
.y16_c00094{bottom:514.347067pt;}
.y15_c00094{bottom:541.947067pt;}
.y14_c00094{bottom:569.547067pt;}
.y13_c00094{bottom:597.147067pt;}
.y12_c00094{bottom:624.747067pt;}
.y11_c00094{bottom:652.347067pt;}
.y10_c00094{bottom:690.507067pt;}
.yf_c00094{bottom:718.187067pt;}
.ye_c00094{bottom:745.787067pt;}
.yd_c00094{bottom:773.387067pt;}
.yc_c00094{bottom:800.987067pt;}
.yb_c00094{bottom:839.227067pt;}
.ya_c00094{bottom:866.827067pt;}
.y9_c00094{bottom:894.427067pt;}
.y8_c00094{bottom:922.027067pt;}
.y7_c00094{bottom:960.267067pt;}
.y6_c00094{bottom:987.947067pt;}
.y3_c00094{bottom:1006.347067pt;}
.y2_c00094{bottom:1035.947576pt;}
.y1_c00094{bottom:1063.147200pt;}
.h1_c00094{height:47.020937pt;}
.h2_c00094{height:56.156250pt;}
.h4_c00094{height:56.312500pt;}
.h3_c00094{height:56.843750pt;}
.h0_c00094{height:1122.666667pt;}
.w1_c00094{width:793.333333pt;}
.w0_c00094{width:793.626667pt;}
.x0_c00094{left:0.000000pt;}
.x1_c00094{left:113.440000pt;}
.x2_c00094{left:664.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_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_82e443645557ff9775135e99.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.095703;font-style:normal;font-weight:normal;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_20d73f3d5847956d65e4220d.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.093262;font-style: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;}
.ls18_c00095{letter-spacing:-0.064800px;}
.ls17_c00095{letter-spacing:-0.057600px;}
.ls13_c00095{letter-spacing:-0.050400px;}
.lsf_c00095{letter-spacing:-0.048096px;}
.ls1a_c00095{letter-spacing:-0.043200px;}
.ls19_c00095{letter-spacing:-0.021600px;}
.ls12_c00095{letter-spacing:-0.014400px;}
.ls14_c00095{letter-spacing:-0.007200px;}
.ls10_c00095{letter-spacing:0.000000px;}
.ls8_c00095{letter-spacing:0.007200px;}
.ls4_c00095{letter-spacing:0.014400px;}
.ls2_c00095{letter-spacing:0.021600px;}
.ls0_c00095{letter-spacing:0.028800px;}
.ls6_c00095{letter-spacing:0.036000px;}
.ls1_c00095{letter-spacing:0.043200px;}
.ls7_c00095{letter-spacing:0.050400px;}
.ls5_c00095{letter-spacing:0.057600px;}
.lsa_c00095{letter-spacing:0.064800px;}
.lsb_c00095{letter-spacing:0.072000px;}
.ls3_c00095{letter-spacing:0.079200px;}
.lse_c00095{letter-spacing:0.086400px;}
.lsc_c00095{letter-spacing:0.115200px;}
.ls9_c00095{letter-spacing:0.129600px;}
.lsd_c00095{letter-spacing:0.144000px;}
.ls16_c00095{letter-spacing:5.220000px;}
.ls11_c00095{letter-spacing:5.400000px;}
.ls15_c00095{letter-spacing:27.360000px;}
.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;}
}
.ws1_c00095{word-spacing:-18.036000px;}
.ws0_c00095{word-spacing:-18.000000px;}
.ws4_c00095{word-spacing:-1.800000px;}
.ws5_c00095{word-spacing:-1.454400px;}
.ws7_c00095{word-spacing:-0.410400px;}
.ws6_c00095{word-spacing:-0.036000px;}
.ws3_c00095{word-spacing:0.000000px;}
.ws2_c00095{word-spacing:0.138276px;}
._d_c00095{margin-left:-27.417600px;}
._3_c00095{margin-left:-5.630400px;}
._4_c00095{margin-left:-4.478400px;}
._6_c00095{margin-left:-2.959200px;}
._0_c00095{margin-left:-1.828800px;}
._c_c00095{width:1.044000px;}
._5_c00095{width:3.254400px;}
._2_c00095{width:4.435200px;}
._1_c00095{width:5.716800px;}
._7_c00095{width:9.000000px;}
._a_c00095{width:10.418400px;}
._b_c00095{width:11.433600px;}
._9_c00095{width:20.656800px;}
._8_c00095{width:21.952800px;}
._10_c00095{width:24.667200px;}
._f_c00095{width:25.876800px;}
._e_c00095{width:27.482400px;}
.fc0_c00095{color:rgb(0,0,0);}
.fs0_c00095{font-size:60.120000px;}
.fs1_c00095{font-size:72.000000px;}
.y0_c00095{bottom:0.000000px;}
.y6_c00095{bottom:57.360450px;}
.y5_c00095{bottom:78.060450px;}
.y25_c00095{bottom:120.900450px;}
.y24_c00095{bottom:151.950450px;}
.y23_c00095{bottom:194.970450px;}
.y22_c00095{bottom:226.110450px;}
.y21_c00095{bottom:257.070450px;}
.y20_c00095{bottom:288.120450px;}
.y1f_c00095{bottom:319.170450px;}
.y1e_c00095{bottom:362.190450px;}
.y1d_c00095{bottom:393.330450px;}
.y1c_c00095{bottom:424.380450px;}
.y1b_c00095{bottom:455.430450px;}
.y1a_c00095{bottom:498.360450px;}
.y19_c00095{bottom:529.500450px;}
.y18_c00095{bottom:560.550450px;}
.y17_c00095{bottom:591.600450px;}
.y16_c00095{bottom:634.530450px;}
.y15_c00095{bottom:665.670450px;}
.y14_c00095{bottom:696.720450px;}
.y13_c00095{bottom:727.770450px;}
.y12_c00095{bottom:758.820450px;}
.y11_c00095{bottom:801.750450px;}
.y10_c00095{bottom:832.890450px;}
.yf_c00095{bottom:863.940450px;}
.ye_c00095{bottom:894.990450px;}
.yd_c00095{bottom:926.040450px;}
.yc_c00095{bottom:957.090450px;}
.yb_c00095{bottom:988.140450px;}
.ya_c00095{bottom:1019.190450px;}
.y9_c00095{bottom:1062.120450px;}
.y8_c00095{bottom:1093.260450px;}
.y7_c00095{bottom:1124.310450px;}
.y4_c00095{bottom:1144.380657px;}
.y3_c00095{bottom:1161.660648px;}
.y2_c00095{bottom:1178.850459px;}
.y1_c00095{bottom:1196.130450px;}
.h1_c00095{height:52.898555px;}
.h2_c00095{height:63.175781px;}
.h3_c00095{height:63.351562px;}
.h0_c00095{height:1263.000000px;}
.w1_c00095{width:892.500000px;}
.w0_c00095{width:892.830000px;}
.x0_c00095{left:0.000000px;}
.x4_c00095{left:127.620000px;}
.x1_c00095{left:649.620000px;}
.x3_c00095{left:747.450000px;}
.x2_c00095{left:765.450198px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls18_c00095{letter-spacing:-0.057600pt;}
.ls17_c00095{letter-spacing:-0.051200pt;}
.ls13_c00095{letter-spacing:-0.044800pt;}
.lsf_c00095{letter-spacing:-0.042752pt;}
.ls1a_c00095{letter-spacing:-0.038400pt;}
.ls19_c00095{letter-spacing:-0.019200pt;}
.ls12_c00095{letter-spacing:-0.012800pt;}
.ls14_c00095{letter-spacing:-0.006400pt;}
.ls10_c00095{letter-spacing:0.000000pt;}
.ls8_c00095{letter-spacing:0.006400pt;}
.ls4_c00095{letter-spacing:0.012800pt;}
.ls2_c00095{letter-spacing:0.019200pt;}
.ls0_c00095{letter-spacing:0.025600pt;}
.ls6_c00095{letter-spacing:0.032000pt;}
.ls1_c00095{letter-spacing:0.038400pt;}
.ls7_c00095{letter-spacing:0.044800pt;}
.ls5_c00095{letter-spacing:0.051200pt;}
.lsa_c00095{letter-spacing:0.057600pt;}
.lsb_c00095{letter-spacing:0.064000pt;}
.ls3_c00095{letter-spacing:0.070400pt;}
.lse_c00095{letter-spacing:0.076800pt;}
.lsc_c00095{letter-spacing:0.102400pt;}
.ls9_c00095{letter-spacing:0.115200pt;}
.lsd_c00095{letter-spacing:0.128000pt;}
.ls16_c00095{letter-spacing:4.640000pt;}
.ls11_c00095{letter-spacing:4.800000pt;}
.ls15_c00095{letter-spacing:24.320000pt;}
.ws1_c00095{word-spacing:-16.032000pt;}
.ws0_c00095{word-spacing:-16.000000pt;}
.ws4_c00095{word-spacing:-1.600000pt;}
.ws5_c00095{word-spacing:-1.292800pt;}
.ws7_c00095{word-spacing:-0.364800pt;}
.ws6_c00095{word-spacing:-0.032000pt;}
.ws3_c00095{word-spacing:0.000000pt;}
.ws2_c00095{word-spacing:0.122912pt;}
._d_c00095{margin-left:-24.371200pt;}
._3_c00095{margin-left:-5.004800pt;}
._4_c00095{margin-left:-3.980800pt;}
._6_c00095{margin-left:-2.630400pt;}
._0_c00095{margin-left:-1.625600pt;}
._c_c00095{width:0.928000pt;}
._5_c00095{width:2.892800pt;}
._2_c00095{width:3.942400pt;}
._1_c00095{width:5.081600pt;}
._7_c00095{width:8.000000pt;}
._a_c00095{width:9.260800pt;}
._b_c00095{width:10.163200pt;}
._9_c00095{width:18.361600pt;}
._8_c00095{width:19.513600pt;}
._10_c00095{width:21.926400pt;}
._f_c00095{width:23.001600pt;}
._e_c00095{width:24.428800pt;}
.fs0_c00095{font-size:53.440000pt;}
.fs1_c00095{font-size:64.000000pt;}
.y0_c00095{bottom:0.000000pt;}
.y6_c00095{bottom:50.987067pt;}
.y5_c00095{bottom:69.387067pt;}
.y25_c00095{bottom:107.467067pt;}
.y24_c00095{bottom:135.067067pt;}
.y23_c00095{bottom:173.307067pt;}
.y22_c00095{bottom:200.987067pt;}
.y21_c00095{bottom:228.507067pt;}
.y20_c00095{bottom:256.107067pt;}
.y1f_c00095{bottom:283.707067pt;}
.y1e_c00095{bottom:321.947067pt;}
.y1d_c00095{bottom:349.627067pt;}
.y1c_c00095{bottom:377.227067pt;}
.y1b_c00095{bottom:404.827067pt;}
.y1a_c00095{bottom:442.987067pt;}
.y19_c00095{bottom:470.667067pt;}
.y18_c00095{bottom:498.267067pt;}
.y17_c00095{bottom:525.867067pt;}
.y16_c00095{bottom:564.027067pt;}
.y15_c00095{bottom:591.707067pt;}
.y14_c00095{bottom:619.307067pt;}
.y13_c00095{bottom:646.907067pt;}
.y12_c00095{bottom:674.507067pt;}
.y11_c00095{bottom:712.667067pt;}
.y10_c00095{bottom:740.347067pt;}
.yf_c00095{bottom:767.947067pt;}
.ye_c00095{bottom:795.547067pt;}
.yd_c00095{bottom:823.147067pt;}
.yc_c00095{bottom:850.747067pt;}
.yb_c00095{bottom:878.347067pt;}
.ya_c00095{bottom:905.947067pt;}
.y9_c00095{bottom:944.107067pt;}
.y8_c00095{bottom:971.787067pt;}
.y7_c00095{bottom:999.387067pt;}
.y4_c00095{bottom:1017.227251pt;}
.y3_c00095{bottom:1032.587243pt;}
.y2_c00095{bottom:1047.867075pt;}
.y1_c00095{bottom:1063.227067pt;}
.h1_c00095{height:47.020937pt;}
.h2_c00095{height:56.156250pt;}
.h3_c00095{height:56.312500pt;}
.h0_c00095{height:1122.666667pt;}
.w1_c00095{width:793.333333pt;}
.w0_c00095{width:793.626667pt;}
.x0_c00095{left:0.000000pt;}
.x4_c00095{left:113.440000pt;}
.x1_c00095{left:577.440000pt;}
.x3_c00095{left:664.400000pt;}
.x2_c00095{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7232afdad5daefc244421d0d.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.095703;font-style:normal;font-weight:normal;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_cb1f627afbf89b563d14df56.woff2')format("woff");}.ff2_c00096{font-family:ff2_c00096;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00096{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls15_c00096{letter-spacing:-1.893600px;}
.ls1a_c00096{letter-spacing:-0.360000px;}
.ls1b_c00096{letter-spacing:-0.288000px;}
.ls18_c00096{letter-spacing:-0.230400px;}
.ls11_c00096{letter-spacing:-0.102204px;}
.ls19_c00096{letter-spacing:-0.036000px;}
.ls13_c00096{letter-spacing:-0.028800px;}
.ls17_c00096{letter-spacing:-0.021600px;}
.ls14_c00096{letter-spacing:-0.014400px;}
.ls16_c00096{letter-spacing:-0.007200px;}
.ls12_c00096{letter-spacing:0.000000px;}
.ls5_c00096{letter-spacing:0.007200px;}
.lsb_c00096{letter-spacing:0.014400px;}
.ls6_c00096{letter-spacing:0.021600px;}
.lsa_c00096{letter-spacing:0.028800px;}
.lsc_c00096{letter-spacing:0.036000px;}
.ls0_c00096{letter-spacing:0.043200px;}
.ls4_c00096{letter-spacing:0.050400px;}
.ls7_c00096{letter-spacing:0.057600px;}
.ls9_c00096{letter-spacing:0.064800px;}
.ls1_c00096{letter-spacing:0.072000px;}
.ls3_c00096{letter-spacing:0.079200px;}
.ls2_c00096{letter-spacing:0.086400px;}
.ls10_c00096{letter-spacing:0.093600px;}
.ls8_c00096{letter-spacing:0.100800px;}
.lse_c00096{letter-spacing:0.136800px;}
.lsf_c00096{letter-spacing:0.144000px;}
.lsd_c00096{letter-spacing:0.172800px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00096{word-spacing:-17.971200px;}
.ws3_c00096{word-spacing:-3.614400px;}
.ws7_c00096{word-spacing:-3.225600px;}
.ws8_c00096{word-spacing:-0.007200px;}
.ws2_c00096{word-spacing:0.000000px;}
.ws1_c00096{word-spacing:0.192384px;}
.ws9_c00096{word-spacing:0.374400px;}
.ws4_c00096{word-spacing:8.992800px;}
.ws6_c00096{word-spacing:10.468800px;}
.ws5_c00096{word-spacing:10.476000px;}
._d_c00096{margin-left:-5.299200px;}
._e_c00096{margin-left:-4.262400px;}
._2_c00096{margin-left:-3.240000px;}
._1_c00096{margin-left:-2.203200px;}
._4_c00096{margin-left:-1.036800px;}
._0_c00096{width:1.034064px;}
._5_c00096{width:2.404800px;}
._3_c00096{width:3.542400px;}
._c_c00096{width:4.953600px;}
._9_c00096{width:6.141600px;}
._f_c00096{width:7.545600px;}
._8_c00096{width:8.971200px;}
._a_c00096{width:10.850400px;}
._b_c00096{width:12.117600px;}
._6_c00096{width:14.083200px;}
._7_c00096{width:15.292800px;}
.fc1_c00096{color:rgb(0,0,0);}
.fc0_c00096{color:rgb(32,31,30);}
.fs0_c00096{font-size:60.120000px;}
.fs1_c00096{font-size:72.000000px;}
.y0_c00096{bottom:0.000000px;}
.y5_c00096{bottom:57.360450px;}
.y4_c00096{bottom:78.060450px;}
.y24_c00096{bottom:131.880450px;}
.y23_c00096{bottom:163.020450px;}
.y22_c00096{bottom:194.070450px;}
.y21_c00096{bottom:237.000450px;}
.y20_c00096{bottom:268.140450px;}
.y1f_c00096{bottom:299.190450px;}
.y1e_c00096{bottom:330.240450px;}
.y1d_c00096{bottom:361.290450px;}
.y1c_c00096{bottom:392.340450px;}
.y1b_c00096{bottom:435.360450px;}
.y1a_c00096{bottom:466.500450px;}
.y19_c00096{bottom:497.550450px;}
.y18_c00096{bottom:528.600450px;}
.y17_c00096{bottom:571.530450px;}
.y16_c00096{bottom:602.670450px;}
.y15_c00096{bottom:633.720450px;}
.y14_c00096{bottom:664.770450px;}
.y13_c00096{bottom:695.820450px;}
.y12_c00096{bottom:738.750450px;}
.y11_c00096{bottom:769.890450px;}
.y10_c00096{bottom:800.940450px;}
.yf_c00096{bottom:831.990450px;}
.ye_c00096{bottom:863.040450px;}
.yd_c00096{bottom:894.090450px;}
.yc_c00096{bottom:925.140450px;}
.yb_c00096{bottom:956.190450px;}
.ya_c00096{bottom:987.240450px;}
.y9_c00096{bottom:1018.290450px;}
.y8_c00096{bottom:1049.340450px;}
.y7_c00096{bottom:1080.390450px;}
.y6_c00096{bottom:1111.440450px;}
.y3_c00096{bottom:1132.140450px;}
.y2_c00096{bottom:1165.441023px;}
.y1_c00096{bottom:1196.040600px;}
.h1_c00096{height:52.898555px;}
.h2_c00096{height:63.175781px;}
.h3_c00096{height:63.351562px;}
.h0_c00096{height:1263.000000px;}
.w1_c00096{width:892.500000px;}
.w0_c00096{width:892.830000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:127.620000px;}
.x2_c00096{left:747.450000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls15_c00096{letter-spacing:-1.683200pt;}
.ls1a_c00096{letter-spacing:-0.320000pt;}
.ls1b_c00096{letter-spacing:-0.256000pt;}
.ls18_c00096{letter-spacing:-0.204800pt;}
.ls11_c00096{letter-spacing:-0.090848pt;}
.ls19_c00096{letter-spacing:-0.032000pt;}
.ls13_c00096{letter-spacing:-0.025600pt;}
.ls17_c00096{letter-spacing:-0.019200pt;}
.ls14_c00096{letter-spacing:-0.012800pt;}
.ls16_c00096{letter-spacing:-0.006400pt;}
.ls12_c00096{letter-spacing:0.000000pt;}
.ls5_c00096{letter-spacing:0.006400pt;}
.lsb_c00096{letter-spacing:0.012800pt;}
.ls6_c00096{letter-spacing:0.019200pt;}
.lsa_c00096{letter-spacing:0.025600pt;}
.lsc_c00096{letter-spacing:0.032000pt;}
.ls0_c00096{letter-spacing:0.038400pt;}
.ls4_c00096{letter-spacing:0.044800pt;}
.ls7_c00096{letter-spacing:0.051200pt;}
.ls9_c00096{letter-spacing:0.057600pt;}
.ls1_c00096{letter-spacing:0.064000pt;}
.ls3_c00096{letter-spacing:0.070400pt;}
.ls2_c00096{letter-spacing:0.076800pt;}
.ls10_c00096{letter-spacing:0.083200pt;}
.ls8_c00096{letter-spacing:0.089600pt;}
.lse_c00096{letter-spacing:0.121600pt;}
.lsf_c00096{letter-spacing:0.128000pt;}
.lsd_c00096{letter-spacing:0.153600pt;}
.ws0_c00096{word-spacing:-15.974400pt;}
.ws3_c00096{word-spacing:-3.212800pt;}
.ws7_c00096{word-spacing:-2.867200pt;}
.ws8_c00096{word-spacing:-0.006400pt;}
.ws2_c00096{word-spacing:0.000000pt;}
.ws1_c00096{word-spacing:0.171008pt;}
.ws9_c00096{word-spacing:0.332800pt;}
.ws4_c00096{word-spacing:7.993600pt;}
.ws6_c00096{word-spacing:9.305600pt;}
.ws5_c00096{word-spacing:9.312000pt;}
._d_c00096{margin-left:-4.710400pt;}
._e_c00096{margin-left:-3.788800pt;}
._2_c00096{margin-left:-2.880000pt;}
._1_c00096{margin-left:-1.958400pt;}
._4_c00096{margin-left:-0.921600pt;}
._0_c00096{width:0.919168pt;}
._5_c00096{width:2.137600pt;}
._3_c00096{width:3.148800pt;}
._c_c00096{width:4.403200pt;}
._9_c00096{width:5.459200pt;}
._f_c00096{width:6.707200pt;}
._8_c00096{width:7.974400pt;}
._a_c00096{width:9.644800pt;}
._b_c00096{width:10.771200pt;}
._6_c00096{width:12.518400pt;}
._7_c00096{width:13.593600pt;}
.fs0_c00096{font-size:53.440000pt;}
.fs1_c00096{font-size:64.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y5_c00096{bottom:50.987067pt;}
.y4_c00096{bottom:69.387067pt;}
.y24_c00096{bottom:117.227067pt;}
.y23_c00096{bottom:144.907067pt;}
.y22_c00096{bottom:172.507067pt;}
.y21_c00096{bottom:210.667067pt;}
.y20_c00096{bottom:238.347067pt;}
.y1f_c00096{bottom:265.947067pt;}
.y1e_c00096{bottom:293.547067pt;}
.y1d_c00096{bottom:321.147067pt;}
.y1c_c00096{bottom:348.747067pt;}
.y1b_c00096{bottom:386.987067pt;}
.y1a_c00096{bottom:414.667067pt;}
.y19_c00096{bottom:442.267067pt;}
.y18_c00096{bottom:469.867067pt;}
.y17_c00096{bottom:508.027067pt;}
.y16_c00096{bottom:535.707067pt;}
.y15_c00096{bottom:563.307067pt;}
.y14_c00096{bottom:590.907067pt;}
.y13_c00096{bottom:618.507067pt;}
.y12_c00096{bottom:656.667067pt;}
.y11_c00096{bottom:684.347067pt;}
.y10_c00096{bottom:711.947067pt;}
.yf_c00096{bottom:739.547067pt;}
.ye_c00096{bottom:767.147067pt;}
.yd_c00096{bottom:794.747067pt;}
.yc_c00096{bottom:822.347067pt;}
.yb_c00096{bottom:849.947067pt;}
.ya_c00096{bottom:877.547067pt;}
.y9_c00096{bottom:905.147067pt;}
.y8_c00096{bottom:932.747067pt;}
.y7_c00096{bottom:960.347067pt;}
.y6_c00096{bottom:987.947067pt;}
.y3_c00096{bottom:1006.347067pt;}
.y2_c00096{bottom:1035.947576pt;}
.y1_c00096{bottom:1063.147200pt;}
.h1_c00096{height:47.020937pt;}
.h2_c00096{height:56.156250pt;}
.h3_c00096{height:56.312500pt;}
.h0_c00096{height:1122.666667pt;}
.w1_c00096{width:793.333333pt;}
.w0_c00096{width:793.626667pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:113.440000pt;}
.x2_c00096{left:664.400000pt;}
}





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

.ir_c00097:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00097;src:url('chunks/assets/font_920a8ed0165fd4de801db123.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.095703;font-style:normal;font-weight:normal;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_29c5ee8b05c5610dada0da16.woff2')format("woff");}.ff2_c00097{font-family:ff2_c00097;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00097{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls14_c00097{letter-spacing:-0.180000px;}
.ls15_c00097{letter-spacing:-0.072000px;}
.lse_c00097{letter-spacing:-0.048096px;}
.ls12_c00097{letter-spacing:-0.036000px;}
.ls16_c00097{letter-spacing:-0.028800px;}
.ls11_c00097{letter-spacing:-0.014400px;}
.ls13_c00097{letter-spacing:-0.007200px;}
.lsf_c00097{letter-spacing:0.000000px;}
.lsb_c00097{letter-spacing:0.007200px;}
.ls2_c00097{letter-spacing:0.014400px;}
.ls5_c00097{letter-spacing:0.021600px;}
.ls6_c00097{letter-spacing:0.028800px;}
.ls4_c00097{letter-spacing:0.036000px;}
.ls7_c00097{letter-spacing:0.043200px;}
.ls0_c00097{letter-spacing:0.050400px;}
.ls1_c00097{letter-spacing:0.057600px;}
.lsc_c00097{letter-spacing:0.064800px;}
.ls3_c00097{letter-spacing:0.072000px;}
.lsa_c00097{letter-spacing:0.079200px;}
.ls9_c00097{letter-spacing:0.086400px;}
.ls8_c00097{letter-spacing:0.093600px;}
.lsd_c00097{letter-spacing:0.100800px;}
.ls10_c00097{letter-spacing:0.590400px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00097{word-spacing:-18.050400px;}
.ws1_c00097{word-spacing:-18.036000px;}
.ws2_c00097{word-spacing:-17.992800px;}
.ws9_c00097{word-spacing:-2.210400px;}
.ws4_c00097{word-spacing:0.000000px;}
.ws3_c00097{word-spacing:0.138276px;}
.ws8_c00097{word-spacing:3.254400px;}
.ws7_c00097{word-spacing:5.414400px;}
.ws6_c00097{word-spacing:12.636000px;}
.wsa_c00097{word-spacing:18.007200px;}
.ws5_c00097{word-spacing:24.451200px;}
._e_c00097{margin-left:-5.112000px;}
._d_c00097{margin-left:-4.010400px;}
._4_c00097{margin-left:-2.440800px;}
._1_c00097{margin-left:-1.267200px;}
._0_c00097{width:1.288800px;}
._b_c00097{width:2.476800px;}
._2_c00097{width:3.607200px;}
._3_c00097{width:5.054400px;}
._f_c00097{width:6.134400px;}
._10_c00097{width:8.366400px;}
._a_c00097{width:9.374400px;}
._9_c00097{width:10.418400px;}
._7_c00097{width:12.218400px;}
._8_c00097{width:13.399200px;}
._12_c00097{width:14.961600px;}
._11_c00097{width:16.624800px;}
._c_c00097{width:19.216800px;}
._6_c00097{width:23.191200px;}
._5_c00097{width:24.400800px;}
.fc0_c00097{color:rgb(0,0,0);}
.fs0_c00097{font-size:60.120000px;}
.fs1_c00097{font-size:72.000000px;}
.y0_c00097{bottom:0.000000px;}
.y6_c00097{bottom:57.360450px;}
.y5_c00097{bottom:78.060450px;}
.y25_c00097{bottom:132.870450px;}
.y24_c00097{bottom:164.010450px;}
.y23_c00097{bottom:206.940450px;}
.y22_c00097{bottom:238.080450px;}
.y21_c00097{bottom:269.130450px;}
.y20_c00097{bottom:300.180450px;}
.y1f_c00097{bottom:331.230450px;}
.y1e_c00097{bottom:362.280450px;}
.y1d_c00097{bottom:393.330450px;}
.y1c_c00097{bottom:436.260450px;}
.y1b_c00097{bottom:467.400450px;}
.y1a_c00097{bottom:498.450450px;}
.y19_c00097{bottom:529.500450px;}
.y18_c00097{bottom:560.550450px;}
.y17_c00097{bottom:591.600450px;}
.y16_c00097{bottom:622.650450px;}
.y15_c00097{bottom:665.580450px;}
.y14_c00097{bottom:696.720450px;}
.y13_c00097{bottom:727.770450px;}
.y12_c00097{bottom:770.700450px;}
.y11_c00097{bottom:801.840450px;}
.y10_c00097{bottom:832.890450px;}
.yf_c00097{bottom:863.940450px;}
.ye_c00097{bottom:894.990450px;}
.yd_c00097{bottom:926.040450px;}
.yc_c00097{bottom:957.090450px;}
.yb_c00097{bottom:988.140450px;}
.ya_c00097{bottom:1031.070450px;}
.y9_c00097{bottom:1062.210450px;}
.y8_c00097{bottom:1093.260450px;}
.y7_c00097{bottom:1124.310450px;}
.y4_c00097{bottom:1144.380657px;}
.y3_c00097{bottom:1161.660648px;}
.y2_c00097{bottom:1178.850459px;}
.y1_c00097{bottom:1196.130450px;}
.h1_c00097{height:52.898555px;}
.h2_c00097{height:63.175781px;}
.h3_c00097{height:63.351562px;}
.h0_c00097{height:1263.000000px;}
.w1_c00097{width:892.500000px;}
.w0_c00097{width:892.830000px;}
.x0_c00097{left:0.000000px;}
.x4_c00097{left:127.620000px;}
.x1_c00097{left:649.620000px;}
.x3_c00097{left:747.450000px;}
.x2_c00097{left:765.450198px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls14_c00097{letter-spacing:-0.160000pt;}
.ls15_c00097{letter-spacing:-0.064000pt;}
.lse_c00097{letter-spacing:-0.042752pt;}
.ls12_c00097{letter-spacing:-0.032000pt;}
.ls16_c00097{letter-spacing:-0.025600pt;}
.ls11_c00097{letter-spacing:-0.012800pt;}
.ls13_c00097{letter-spacing:-0.006400pt;}
.lsf_c00097{letter-spacing:0.000000pt;}
.lsb_c00097{letter-spacing:0.006400pt;}
.ls2_c00097{letter-spacing:0.012800pt;}
.ls5_c00097{letter-spacing:0.019200pt;}
.ls6_c00097{letter-spacing:0.025600pt;}
.ls4_c00097{letter-spacing:0.032000pt;}
.ls7_c00097{letter-spacing:0.038400pt;}
.ls0_c00097{letter-spacing:0.044800pt;}
.ls1_c00097{letter-spacing:0.051200pt;}
.lsc_c00097{letter-spacing:0.057600pt;}
.ls3_c00097{letter-spacing:0.064000pt;}
.lsa_c00097{letter-spacing:0.070400pt;}
.ls9_c00097{letter-spacing:0.076800pt;}
.ls8_c00097{letter-spacing:0.083200pt;}
.lsd_c00097{letter-spacing:0.089600pt;}
.ls10_c00097{letter-spacing:0.524800pt;}
.ws0_c00097{word-spacing:-16.044800pt;}
.ws1_c00097{word-spacing:-16.032000pt;}
.ws2_c00097{word-spacing:-15.993600pt;}
.ws9_c00097{word-spacing:-1.964800pt;}
.ws4_c00097{word-spacing:0.000000pt;}
.ws3_c00097{word-spacing:0.122912pt;}
.ws8_c00097{word-spacing:2.892800pt;}
.ws7_c00097{word-spacing:4.812800pt;}
.ws6_c00097{word-spacing:11.232000pt;}
.wsa_c00097{word-spacing:16.006400pt;}
.ws5_c00097{word-spacing:21.734400pt;}
._e_c00097{margin-left:-4.544000pt;}
._d_c00097{margin-left:-3.564800pt;}
._4_c00097{margin-left:-2.169600pt;}
._1_c00097{margin-left:-1.126400pt;}
._0_c00097{width:1.145600pt;}
._b_c00097{width:2.201600pt;}
._2_c00097{width:3.206400pt;}
._3_c00097{width:4.492800pt;}
._f_c00097{width:5.452800pt;}
._10_c00097{width:7.436800pt;}
._a_c00097{width:8.332800pt;}
._9_c00097{width:9.260800pt;}
._7_c00097{width:10.860800pt;}
._8_c00097{width:11.910400pt;}
._12_c00097{width:13.299200pt;}
._11_c00097{width:14.777600pt;}
._c_c00097{width:17.081600pt;}
._6_c00097{width:20.614400pt;}
._5_c00097{width:21.689600pt;}
.fs0_c00097{font-size:53.440000pt;}
.fs1_c00097{font-size:64.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y6_c00097{bottom:50.987067pt;}
.y5_c00097{bottom:69.387067pt;}
.y25_c00097{bottom:118.107067pt;}
.y24_c00097{bottom:145.787067pt;}
.y23_c00097{bottom:183.947067pt;}
.y22_c00097{bottom:211.627067pt;}
.y21_c00097{bottom:239.227067pt;}
.y20_c00097{bottom:266.827067pt;}
.y1f_c00097{bottom:294.427067pt;}
.y1e_c00097{bottom:322.027067pt;}
.y1d_c00097{bottom:349.627067pt;}
.y1c_c00097{bottom:387.787067pt;}
.y1b_c00097{bottom:415.467067pt;}
.y1a_c00097{bottom:443.067067pt;}
.y19_c00097{bottom:470.667067pt;}
.y18_c00097{bottom:498.267067pt;}
.y17_c00097{bottom:525.867067pt;}
.y16_c00097{bottom:553.467067pt;}
.y15_c00097{bottom:591.627067pt;}
.y14_c00097{bottom:619.307067pt;}
.y13_c00097{bottom:646.907067pt;}
.y12_c00097{bottom:685.067067pt;}
.y11_c00097{bottom:712.747067pt;}
.y10_c00097{bottom:740.347067pt;}
.yf_c00097{bottom:767.947067pt;}
.ye_c00097{bottom:795.547067pt;}
.yd_c00097{bottom:823.147067pt;}
.yc_c00097{bottom:850.747067pt;}
.yb_c00097{bottom:878.347067pt;}
.ya_c00097{bottom:916.507067pt;}
.y9_c00097{bottom:944.187067pt;}
.y8_c00097{bottom:971.787067pt;}
.y7_c00097{bottom:999.387067pt;}
.y4_c00097{bottom:1017.227251pt;}
.y3_c00097{bottom:1032.587243pt;}
.y2_c00097{bottom:1047.867075pt;}
.y1_c00097{bottom:1063.227067pt;}
.h1_c00097{height:47.020937pt;}
.h2_c00097{height:56.156250pt;}
.h3_c00097{height:56.312500pt;}
.h0_c00097{height:1122.666667pt;}
.w1_c00097{width:793.333333pt;}
.w0_c00097{width:793.626667pt;}
.x0_c00097{left:0.000000pt;}
.x4_c00097{left:113.440000pt;}
.x1_c00097{left:577.440000pt;}
.x3_c00097{left:664.400000pt;}
.x2_c00097{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f972fde5ee9df868778f1808.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.095703;font-style:normal;font-weight:normal;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_faf707a074e679122a4d0d31.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00098{font-family:ff3_c00098;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls13_c00098{letter-spacing:-0.273600px;}
.lsb_c00098{letter-spacing:-0.102204px;}
.lsf_c00098{letter-spacing:-0.064800px;}
.lse_c00098{letter-spacing:-0.057600px;}
.ls17_c00098{letter-spacing:-0.043200px;}
.ls11_c00098{letter-spacing:-0.036000px;}
.ls16_c00098{letter-spacing:-0.021600px;}
.lsd_c00098{letter-spacing:-0.014400px;}
.ls19_c00098{letter-spacing:-0.007200px;}
.lsc_c00098{letter-spacing:0.000000px;}
.ls3_c00098{letter-spacing:0.007200px;}
.ls4_c00098{letter-spacing:0.014400px;}
.ls7_c00098{letter-spacing:0.021600px;}
.ls2_c00098{letter-spacing:0.028800px;}
.ls1_c00098{letter-spacing:0.036000px;}
.ls5_c00098{letter-spacing:0.043200px;}
.ls0_c00098{letter-spacing:0.050400px;}
.ls9_c00098{letter-spacing:0.057600px;}
.ls8_c00098{letter-spacing:0.064800px;}
.lsa_c00098{letter-spacing:0.072000px;}
.ls6_c00098{letter-spacing:0.115200px;}
.ls14_c00098{letter-spacing:0.158400px;}
.ls15_c00098{letter-spacing:2.160000px;}
.ls10_c00098{letter-spacing:5.760000px;}
.ls12_c00098{letter-spacing:6.120000px;}
.ls18_c00098{letter-spacing:7.149600px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00098{word-spacing:-18.036000px;}
.ws1_c00098{word-spacing:-18.028800px;}
.ws2_c00098{word-spacing:-18.014400px;}
.ws4_c00098{word-spacing:-18.007200px;}
.ws3_c00098{word-spacing:-18.000000px;}
.ws7_c00098{word-spacing:-0.115200px;}
.ws6_c00098{word-spacing:0.000000px;}
.wsc_c00098{word-spacing:0.014400px;}
.ws5_c00098{word-spacing:0.192384px;}
.wsa_c00098{word-spacing:2.217600px;}
.ws9_c00098{word-spacing:5.731200px;}
.ws8_c00098{word-spacing:5.760000px;}
.wsd_c00098{word-spacing:6.350400px;}
.wsb_c00098{word-spacing:8.280000px;}
._b_c00098{margin-left:-7.840800px;}
._7_c00098{margin-left:-6.825600px;}
._2_c00098{margin-left:-5.803200px;}
._5_c00098{margin-left:-4.348800px;}
._8_c00098{margin-left:-3.234528px;}
._1_c00098{margin-left:-1.267200px;}
._0_c00098{width:1.034064px;}
._6_c00098{width:2.954736px;}
._4_c00098{width:4.845600px;}
._3_c00098{width:6.033600px;}
._a_c00098{width:7.142400px;}
._9_c00098{width:8.229600px;}
._c_c00098{width:10.555200px;}
._d_c00098{width:11.944800px;}
.fc1_c00098{color:rgb(0,0,0);}
.fc0_c00098{color:rgb(32,31,30);}
.fs0_c00098{font-size:60.120000px;}
.fs1_c00098{font-size:72.000000px;}
.y0_c00098{bottom:0.000000px;}
.y5_c00098{bottom:57.360450px;}
.y4_c00098{bottom:78.060450px;}
.y1f_c00098{bottom:299.100450px;}
.y1e_c00098{bottom:330.240450px;}
.y1d_c00098{bottom:361.290450px;}
.y1c_c00098{bottom:392.340450px;}
.y1b_c00098{bottom:423.390450px;}
.y1a_c00098{bottom:466.410450px;}
.y19_c00098{bottom:497.550450px;}
.y18_c00098{bottom:528.600450px;}
.y17_c00098{bottom:559.650450px;}
.y16_c00098{bottom:590.700450px;}
.y15_c00098{bottom:621.660450px;}
.y14_c00098{bottom:652.710450px;}
.y13_c00098{bottom:695.730450px;}
.y12_c00098{bottom:726.870450px;}
.y11_c00098{bottom:757.920450px;}
.y10_c00098{bottom:788.970450px;}
.yf_c00098{bottom:820.020450px;}
.ye_c00098{bottom:851.070450px;}
.yd_c00098{bottom:882.120450px;}
.yc_c00098{bottom:913.170450px;}
.yb_c00098{bottom:956.100450px;}
.ya_c00098{bottom:987.240450px;}
.y9_c00098{bottom:1018.290450px;}
.y8_c00098{bottom:1049.340450px;}
.y7_c00098{bottom:1080.390450px;}
.y6_c00098{bottom:1111.440450px;}
.y3_c00098{bottom:1132.140450px;}
.y2_c00098{bottom:1165.441023px;}
.y1_c00098{bottom:1196.040600px;}
.h1_c00098{height:52.898555px;}
.h2_c00098{height:63.175781px;}
.h3_c00098{height:63.351562px;}
.h4_c00098{height:63.949219px;}
.h0_c00098{height:1263.000000px;}
.w1_c00098{width:892.500000px;}
.w0_c00098{width:892.830000px;}
.x0_c00098{left:0.000000px;}
.x1_c00098{left:127.620000px;}
.x2_c00098{left:747.450000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls13_c00098{letter-spacing:-0.243200pt;}
.lsb_c00098{letter-spacing:-0.090848pt;}
.lsf_c00098{letter-spacing:-0.057600pt;}
.lse_c00098{letter-spacing:-0.051200pt;}
.ls17_c00098{letter-spacing:-0.038400pt;}
.ls11_c00098{letter-spacing:-0.032000pt;}
.ls16_c00098{letter-spacing:-0.019200pt;}
.lsd_c00098{letter-spacing:-0.012800pt;}
.ls19_c00098{letter-spacing:-0.006400pt;}
.lsc_c00098{letter-spacing:0.000000pt;}
.ls3_c00098{letter-spacing:0.006400pt;}
.ls4_c00098{letter-spacing:0.012800pt;}
.ls7_c00098{letter-spacing:0.019200pt;}
.ls2_c00098{letter-spacing:0.025600pt;}
.ls1_c00098{letter-spacing:0.032000pt;}
.ls5_c00098{letter-spacing:0.038400pt;}
.ls0_c00098{letter-spacing:0.044800pt;}
.ls9_c00098{letter-spacing:0.051200pt;}
.ls8_c00098{letter-spacing:0.057600pt;}
.lsa_c00098{letter-spacing:0.064000pt;}
.ls6_c00098{letter-spacing:0.102400pt;}
.ls14_c00098{letter-spacing:0.140800pt;}
.ls15_c00098{letter-spacing:1.920000pt;}
.ls10_c00098{letter-spacing:5.120000pt;}
.ls12_c00098{letter-spacing:5.440000pt;}
.ls18_c00098{letter-spacing:6.355200pt;}
.ws0_c00098{word-spacing:-16.032000pt;}
.ws1_c00098{word-spacing:-16.025600pt;}
.ws2_c00098{word-spacing:-16.012800pt;}
.ws4_c00098{word-spacing:-16.006400pt;}
.ws3_c00098{word-spacing:-16.000000pt;}
.ws7_c00098{word-spacing:-0.102400pt;}
.ws6_c00098{word-spacing:0.000000pt;}
.wsc_c00098{word-spacing:0.012800pt;}
.ws5_c00098{word-spacing:0.171008pt;}
.wsa_c00098{word-spacing:1.971200pt;}
.ws9_c00098{word-spacing:5.094400pt;}
.ws8_c00098{word-spacing:5.120000pt;}
.wsd_c00098{word-spacing:5.644800pt;}
.wsb_c00098{word-spacing:7.360000pt;}
._b_c00098{margin-left:-6.969600pt;}
._7_c00098{margin-left:-6.067200pt;}
._2_c00098{margin-left:-5.158400pt;}
._5_c00098{margin-left:-3.865600pt;}
._8_c00098{margin-left:-2.875136pt;}
._1_c00098{margin-left:-1.126400pt;}
._0_c00098{width:0.919168pt;}
._6_c00098{width:2.626432pt;}
._4_c00098{width:4.307200pt;}
._3_c00098{width:5.363200pt;}
._a_c00098{width:6.348800pt;}
._9_c00098{width:7.315200pt;}
._c_c00098{width:9.382400pt;}
._d_c00098{width:10.617600pt;}
.fs0_c00098{font-size:53.440000pt;}
.fs1_c00098{font-size:64.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.y5_c00098{bottom:50.987067pt;}
.y4_c00098{bottom:69.387067pt;}
.y1f_c00098{bottom:265.867067pt;}
.y1e_c00098{bottom:293.547067pt;}
.y1d_c00098{bottom:321.147067pt;}
.y1c_c00098{bottom:348.747067pt;}
.y1b_c00098{bottom:376.347067pt;}
.y1a_c00098{bottom:414.587067pt;}
.y19_c00098{bottom:442.267067pt;}
.y18_c00098{bottom:469.867067pt;}
.y17_c00098{bottom:497.467067pt;}
.y16_c00098{bottom:525.067067pt;}
.y15_c00098{bottom:552.587067pt;}
.y14_c00098{bottom:580.187067pt;}
.y13_c00098{bottom:618.427067pt;}
.y12_c00098{bottom:646.107067pt;}
.y11_c00098{bottom:673.707067pt;}
.y10_c00098{bottom:701.307067pt;}
.yf_c00098{bottom:728.907067pt;}
.ye_c00098{bottom:756.507067pt;}
.yd_c00098{bottom:784.107067pt;}
.yc_c00098{bottom:811.707067pt;}
.yb_c00098{bottom:849.867067pt;}
.ya_c00098{bottom:877.547067pt;}
.y9_c00098{bottom:905.147067pt;}
.y8_c00098{bottom:932.747067pt;}
.y7_c00098{bottom:960.347067pt;}
.y6_c00098{bottom:987.947067pt;}
.y3_c00098{bottom:1006.347067pt;}
.y2_c00098{bottom:1035.947576pt;}
.y1_c00098{bottom:1063.147200pt;}
.h1_c00098{height:47.020937pt;}
.h2_c00098{height:56.156250pt;}
.h3_c00098{height:56.312500pt;}
.h4_c00098{height:56.843750pt;}
.h0_c00098{height:1122.666667pt;}
.w1_c00098{width:793.333333pt;}
.w0_c00098{width:793.626667pt;}
.x0_c00098{left:0.000000pt;}
.x1_c00098{left:113.440000pt;}
.x2_c00098{left:664.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_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_c66798210ca389590bd17c1d.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.095703;font-style:normal;font-weight:normal;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_69fc0b1c7b0e8f913b80e177.woff2')format("woff");}.ff2_c00099{font-family:ff2_c00099;line-height:1.093262;font-style:normal;font-weight:normal;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_a9ce0559d38be5a3cc8e9252.woff2')format("woff");}.ff3_c00099{font-family:ff3_c00099;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00099{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.lse_c00099{letter-spacing:-0.048096px;}
.ls10_c00099{letter-spacing:-0.014400px;}
.ls11_c00099{letter-spacing:-0.007200px;}
.lsf_c00099{letter-spacing:0.000000px;}
.ls5_c00099{letter-spacing:0.007200px;}
.ls3_c00099{letter-spacing:0.010800px;}
.lsb_c00099{letter-spacing:0.014400px;}
.ls0_c00099{letter-spacing:0.021600px;}
.ls4_c00099{letter-spacing:0.028800px;}
.ls8_c00099{letter-spacing:0.036000px;}
.ls2_c00099{letter-spacing:0.043200px;}
.lsa_c00099{letter-spacing:0.050400px;}
.ls1_c00099{letter-spacing:0.054000px;}
.ls9_c00099{letter-spacing:0.057600px;}
.ls7_c00099{letter-spacing:0.067104px;}
.lsd_c00099{letter-spacing:0.072000px;}
.ls6_c00099{letter-spacing:0.079200px;}
.lsc_c00099{letter-spacing:0.100800px;}
.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:-13.543200px;}
.ws1_c00099{word-spacing:-13.510800px;}
.ws6_c00099{word-spacing:-0.014400px;}
.ws3_c00099{word-spacing:0.000000px;}
.ws2_c00099{word-spacing:0.138276px;}
.ws4_c00099{word-spacing:0.156600px;}
.ws5_c00099{word-spacing:10.778400px;}
._a_c00099{margin-left:-3.477600px;}
._3_c00099{margin-left:-2.070000px;}
._0_c00099{margin-left:-1.020600px;}
._7_c00099{width:1.339200px;}
._6_c00099{width:2.836800px;}
._5_c00099{width:3.945600px;}
._4_c00099{width:5.349600px;}
._8_c00099{width:6.782400px;}
._9_c00099{width:8.046000px;}
._b_c00099{width:9.417600px;}
._1_c00099{width:10.454400px;}
._2_c00099{width:11.491200px;}
.fc2_c00099{color:rgb(5,99,193);}
.fc1_c00099{color:rgb(68,84,106);}
.fc0_c00099{color:rgb(0,0,0);}
.fs2_c00099{font-size:54.000000px;}
.fs0_c00099{font-size:60.120000px;}
.fs1_c00099{font-size:72.000000px;}
.fs3_c00099{font-size:83.880000px;}
.y0_c00099{bottom:0.000000px;}
.y6_c00099{bottom:57.360450px;}
.y5_c00099{bottom:78.060450px;}
.y1c_c00099{bottom:124.770450px;}
.y1b_c00099{bottom:155.910450px;}
.y1a_c00099{bottom:186.960450px;}
.y19_c00099{bottom:218.010450px;}
.y18_c00099{bottom:249.060450px;}
.y17_c00099{bottom:280.110450px;}
.y16_c00099{bottom:311.160450px;}
.y15_c00099{bottom:354.090450px;}
.y14_c00099{bottom:385.230450px;}
.y13_c00099{bottom:416.280450px;}
.y12_c00099{bottom:447.330450px;}
.y11_c00099{bottom:478.380450px;}
.y10_c00099{bottom:509.430450px;}
.yf_c00099{bottom:543.720450px;}
.ye_c00099{bottom:576.930450px;}
.yd_c00099{bottom:623.010450px;}
.yc_c00099{bottom:666.030450px;}
.yb_c00099{bottom:697.170450px;}
.ya_c00099{bottom:728.220450px;}
.y9_c00099{bottom:763.050450px;}
.y8_c00099{bottom:797.610600px;}
.y7_c00099{bottom:1128.630450px;}
.y4_c00099{bottom:1144.380657px;}
.y3_c00099{bottom:1161.660648px;}
.y2_c00099{bottom:1178.850459px;}
.y1_c00099{bottom:1196.130450px;}
.h3_c00099{height:47.513672px;}
.h1_c00099{height:52.898555px;}
.h2_c00099{height:63.175781px;}
.h4_c00099{height:63.351562px;}
.h5_c00099{height:74.500840px;}
.h0_c00099{height:1263.000000px;}
.w1_c00099{width:892.500000px;}
.w0_c00099{width:892.830000px;}
.x0_c00099{left:0.000000px;}
.x4_c00099{left:127.620000px;}
.x1_c00099{left:649.620000px;}
.x5_c00099{left:655.200000px;}
.x3_c00099{left:747.450000px;}
.x2_c00099{left:765.450198px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.lse_c00099{letter-spacing:-0.042752pt;}
.ls10_c00099{letter-spacing:-0.012800pt;}
.ls11_c00099{letter-spacing:-0.006400pt;}
.lsf_c00099{letter-spacing:0.000000pt;}
.ls5_c00099{letter-spacing:0.006400pt;}
.ls3_c00099{letter-spacing:0.009600pt;}
.lsb_c00099{letter-spacing:0.012800pt;}
.ls0_c00099{letter-spacing:0.019200pt;}
.ls4_c00099{letter-spacing:0.025600pt;}
.ls8_c00099{letter-spacing:0.032000pt;}
.ls2_c00099{letter-spacing:0.038400pt;}
.lsa_c00099{letter-spacing:0.044800pt;}
.ls1_c00099{letter-spacing:0.048000pt;}
.ls9_c00099{letter-spacing:0.051200pt;}
.ls7_c00099{letter-spacing:0.059648pt;}
.lsd_c00099{letter-spacing:0.064000pt;}
.ls6_c00099{letter-spacing:0.070400pt;}
.lsc_c00099{letter-spacing:0.089600pt;}
.ws0_c00099{word-spacing:-12.038400pt;}
.ws1_c00099{word-spacing:-12.009600pt;}
.ws6_c00099{word-spacing:-0.012800pt;}
.ws3_c00099{word-spacing:0.000000pt;}
.ws2_c00099{word-spacing:0.122912pt;}
.ws4_c00099{word-spacing:0.139200pt;}
.ws5_c00099{word-spacing:9.580800pt;}
._a_c00099{margin-left:-3.091200pt;}
._3_c00099{margin-left:-1.840000pt;}
._0_c00099{margin-left:-0.907200pt;}
._7_c00099{width:1.190400pt;}
._6_c00099{width:2.521600pt;}
._5_c00099{width:3.507200pt;}
._4_c00099{width:4.755200pt;}
._8_c00099{width:6.028800pt;}
._9_c00099{width:7.152000pt;}
._b_c00099{width:8.371200pt;}
._1_c00099{width:9.292800pt;}
._2_c00099{width:10.214400pt;}
.fs2_c00099{font-size:48.000000pt;}
.fs0_c00099{font-size:53.440000pt;}
.fs1_c00099{font-size:64.000000pt;}
.fs3_c00099{font-size:74.560000pt;}
.y0_c00099{bottom:0.000000pt;}
.y6_c00099{bottom:50.987067pt;}
.y5_c00099{bottom:69.387067pt;}
.y1c_c00099{bottom:110.907067pt;}
.y1b_c00099{bottom:138.587067pt;}
.y1a_c00099{bottom:166.187067pt;}
.y19_c00099{bottom:193.787067pt;}
.y18_c00099{bottom:221.387067pt;}
.y17_c00099{bottom:248.987067pt;}
.y16_c00099{bottom:276.587067pt;}
.y15_c00099{bottom:314.747067pt;}
.y14_c00099{bottom:342.427067pt;}
.y13_c00099{bottom:370.027067pt;}
.y12_c00099{bottom:397.627067pt;}
.y11_c00099{bottom:425.227067pt;}
.y10_c00099{bottom:452.827067pt;}
.yf_c00099{bottom:483.307067pt;}
.ye_c00099{bottom:512.827067pt;}
.yd_c00099{bottom:553.787067pt;}
.yc_c00099{bottom:592.027067pt;}
.yb_c00099{bottom:619.707067pt;}
.ya_c00099{bottom:647.307067pt;}
.y9_c00099{bottom:678.267067pt;}
.y8_c00099{bottom:708.987200pt;}
.y7_c00099{bottom:1003.227067pt;}
.y4_c00099{bottom:1017.227251pt;}
.y3_c00099{bottom:1032.587243pt;}
.y2_c00099{bottom:1047.867075pt;}
.y1_c00099{bottom:1063.227067pt;}
.h3_c00099{height:42.234375pt;}
.h1_c00099{height:47.020937pt;}
.h2_c00099{height:56.156250pt;}
.h4_c00099{height:56.312500pt;}
.h5_c00099{height:66.222969pt;}
.h0_c00099{height:1122.666667pt;}
.w1_c00099{width:793.333333pt;}
.w0_c00099{width:793.626667pt;}
.x0_c00099{left:0.000000pt;}
.x4_c00099{left:113.440000pt;}
.x1_c00099{left:577.440000pt;}
.x5_c00099{left:582.400000pt;}
.x3_c00099{left:664.400000pt;}
.x2_c00099{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.095703;font-style:normal;font-weight:normal;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_a015f2542870c10f3e0c951c.woff2')format("woff");}.ff2_c00100{font-family:ff2_c00100;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00100{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.lse_c00100{letter-spacing:-0.102204px;}
.ls13_c00100{letter-spacing:-0.050400px;}
.ls12_c00100{letter-spacing:-0.043200px;}
.ls10_c00100{letter-spacing:-0.036000px;}
.ls14_c00100{letter-spacing:-0.028800px;}
.ls11_c00100{letter-spacing:-0.007200px;}
.lsf_c00100{letter-spacing:0.000000px;}
.ls1_c00100{letter-spacing:0.007200px;}
.ls4_c00100{letter-spacing:0.014400px;}
.ls2_c00100{letter-spacing:0.021600px;}
.ls6_c00100{letter-spacing:0.028800px;}
.ls9_c00100{letter-spacing:0.036000px;}
.ls0_c00100{letter-spacing:0.043200px;}
.ls3_c00100{letter-spacing:0.050400px;}
.lsb_c00100{letter-spacing:0.057600px;}
.lsc_c00100{letter-spacing:0.064800px;}
.ls5_c00100{letter-spacing:0.072000px;}
.lsa_c00100{letter-spacing:0.079200px;}
.ls8_c00100{letter-spacing:0.086400px;}
.lsd_c00100{letter-spacing:0.100800px;}
.ls7_c00100{letter-spacing:0.115200px;}
.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:-18.028800px;}
.ws2_c00100{word-spacing:0.000000px;}
.ws1_c00100{word-spacing:0.192384px;}
._c_c00100{margin-left:-4.348800px;}
._4_c00100{margin-left:-2.786400px;}
._1_c00100{margin-left:-1.483200px;}
._0_c00100{width:1.034064px;}
._3_c00100{width:2.700000px;}
._2_c00100{width:3.938400px;}
._7_c00100{width:5.515200px;}
._6_c00100{width:6.825600px;}
._d_c00100{width:7.848000px;}
._e_c00100{width:9.007200px;}
._b_c00100{width:10.404000px;}
._a_c00100{width:11.505600px;}
._8_c00100{width:13.032000px;}
._9_c00100{width:14.068800px;}
._5_c00100{width:16.711200px;}
.fc1_c00100{color:rgb(0,0,0);}
.fc0_c00100{color:rgb(32,31,30);}
.fs0_c00100{font-size:60.120000px;}
.fs1_c00100{font-size:72.000000px;}
.y0_c00100{bottom:0.000000px;}
.y5_c00100{bottom:57.360450px;}
.y4_c00100{bottom:78.060450px;}
.y24_c00100{bottom:144.030450px;}
.y23_c00100{bottom:175.080450px;}
.y22_c00100{bottom:206.130450px;}
.y21_c00100{bottom:237.090450px;}
.y20_c00100{bottom:268.140450px;}
.y1f_c00100{bottom:311.160450px;}
.y1e_c00100{bottom:342.300450px;}
.y1d_c00100{bottom:373.350450px;}
.y1c_c00100{bottom:404.400450px;}
.y1b_c00100{bottom:435.450450px;}
.y1a_c00100{bottom:466.500450px;}
.y19_c00100{bottom:497.550450px;}
.y18_c00100{bottom:540.480450px;}
.y17_c00100{bottom:571.620450px;}
.y16_c00100{bottom:602.670450px;}
.y15_c00100{bottom:633.720450px;}
.y14_c00100{bottom:664.770450px;}
.y13_c00100{bottom:695.820450px;}
.y12_c00100{bottom:726.870450px;}
.y11_c00100{bottom:757.920450px;}
.y10_c00100{bottom:788.970450px;}
.yf_c00100{bottom:820.020450px;}
.ye_c00100{bottom:851.070450px;}
.yd_c00100{bottom:882.120450px;}
.yc_c00100{bottom:913.170450px;}
.yb_c00100{bottom:944.220450px;}
.ya_c00100{bottom:987.150450px;}
.y9_c00100{bottom:1018.290450px;}
.y8_c00100{bottom:1049.340450px;}
.y7_c00100{bottom:1080.390450px;}
.y6_c00100{bottom:1111.440450px;}
.y3_c00100{bottom:1132.140450px;}
.y2_c00100{bottom:1165.441023px;}
.y1_c00100{bottom:1196.040600px;}
.h1_c00100{height:52.898555px;}
.h2_c00100{height:63.175781px;}
.h0_c00100{height:1263.000000px;}
.w1_c00100{width:892.500000px;}
.w0_c00100{width:892.830000px;}
.x0_c00100{left:0.000000px;}
.x1_c00100{left:127.620000px;}
.x2_c00100{left:747.450000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.lse_c00100{letter-spacing:-0.090848pt;}
.ls13_c00100{letter-spacing:-0.044800pt;}
.ls12_c00100{letter-spacing:-0.038400pt;}
.ls10_c00100{letter-spacing:-0.032000pt;}
.ls14_c00100{letter-spacing:-0.025600pt;}
.ls11_c00100{letter-spacing:-0.006400pt;}
.lsf_c00100{letter-spacing:0.000000pt;}
.ls1_c00100{letter-spacing:0.006400pt;}
.ls4_c00100{letter-spacing:0.012800pt;}
.ls2_c00100{letter-spacing:0.019200pt;}
.ls6_c00100{letter-spacing:0.025600pt;}
.ls9_c00100{letter-spacing:0.032000pt;}
.ls0_c00100{letter-spacing:0.038400pt;}
.ls3_c00100{letter-spacing:0.044800pt;}
.lsb_c00100{letter-spacing:0.051200pt;}
.lsc_c00100{letter-spacing:0.057600pt;}
.ls5_c00100{letter-spacing:0.064000pt;}
.lsa_c00100{letter-spacing:0.070400pt;}
.ls8_c00100{letter-spacing:0.076800pt;}
.lsd_c00100{letter-spacing:0.089600pt;}
.ls7_c00100{letter-spacing:0.102400pt;}
.ws0_c00100{word-spacing:-16.025600pt;}
.ws2_c00100{word-spacing:0.000000pt;}
.ws1_c00100{word-spacing:0.171008pt;}
._c_c00100{margin-left:-3.865600pt;}
._4_c00100{margin-left:-2.476800pt;}
._1_c00100{margin-left:-1.318400pt;}
._0_c00100{width:0.919168pt;}
._3_c00100{width:2.400000pt;}
._2_c00100{width:3.500800pt;}
._7_c00100{width:4.902400pt;}
._6_c00100{width:6.067200pt;}
._d_c00100{width:6.976000pt;}
._e_c00100{width:8.006400pt;}
._b_c00100{width:9.248000pt;}
._a_c00100{width:10.227200pt;}
._8_c00100{width:11.584000pt;}
._9_c00100{width:12.505600pt;}
._5_c00100{width:14.854400pt;}
.fs0_c00100{font-size:53.440000pt;}
.fs1_c00100{font-size:64.000000pt;}
.y0_c00100{bottom:0.000000pt;}
.y5_c00100{bottom:50.987067pt;}
.y4_c00100{bottom:69.387067pt;}
.y24_c00100{bottom:128.027067pt;}
.y23_c00100{bottom:155.627067pt;}
.y22_c00100{bottom:183.227067pt;}
.y21_c00100{bottom:210.747067pt;}
.y20_c00100{bottom:238.347067pt;}
.y1f_c00100{bottom:276.587067pt;}
.y1e_c00100{bottom:304.267067pt;}
.y1d_c00100{bottom:331.867067pt;}
.y1c_c00100{bottom:359.467067pt;}
.y1b_c00100{bottom:387.067067pt;}
.y1a_c00100{bottom:414.667067pt;}
.y19_c00100{bottom:442.267067pt;}
.y18_c00100{bottom:480.427067pt;}
.y17_c00100{bottom:508.107067pt;}
.y16_c00100{bottom:535.707067pt;}
.y15_c00100{bottom:563.307067pt;}
.y14_c00100{bottom:590.907067pt;}
.y13_c00100{bottom:618.507067pt;}
.y12_c00100{bottom:646.107067pt;}
.y11_c00100{bottom:673.707067pt;}
.y10_c00100{bottom:701.307067pt;}
.yf_c00100{bottom:728.907067pt;}
.ye_c00100{bottom:756.507067pt;}
.yd_c00100{bottom:784.107067pt;}
.yc_c00100{bottom:811.707067pt;}
.yb_c00100{bottom:839.307067pt;}
.ya_c00100{bottom:877.467067pt;}
.y9_c00100{bottom:905.147067pt;}
.y8_c00100{bottom:932.747067pt;}
.y7_c00100{bottom:960.347067pt;}
.y6_c00100{bottom:987.947067pt;}
.y3_c00100{bottom:1006.347067pt;}
.y2_c00100{bottom:1035.947576pt;}
.y1_c00100{bottom:1063.147200pt;}
.h1_c00100{height:47.020937pt;}
.h2_c00100{height:56.156250pt;}
.h0_c00100{height:1122.666667pt;}
.w1_c00100{width:793.333333pt;}
.w0_c00100{width:793.626667pt;}
.x0_c00100{left:0.000000pt;}
.x1_c00100{left:113.440000pt;}
.x2_c00100{left:664.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_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_f18413c8c2e48ff77e606954.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.095703;font-style:normal;font-weight:normal;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_8c84bf4e4752555f797bf494.woff2')format("woff");}.ff2_c00101{font-family:ff2_c00101;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00101{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls13_c00101{letter-spacing:-0.050400px;}
.lse_c00101{letter-spacing:-0.048096px;}
.ls15_c00101{letter-spacing:-0.036000px;}
.ls16_c00101{letter-spacing:-0.028800px;}
.ls14_c00101{letter-spacing:-0.021600px;}
.ls11_c00101{letter-spacing:-0.014400px;}
.ls10_c00101{letter-spacing:-0.007200px;}
.lsf_c00101{letter-spacing:0.000000px;}
.ls8_c00101{letter-spacing:0.007200px;}
.ls1_c00101{letter-spacing:0.014400px;}
.lsc_c00101{letter-spacing:0.021600px;}
.ls5_c00101{letter-spacing:0.028800px;}
.lsa_c00101{letter-spacing:0.036000px;}
.ls4_c00101{letter-spacing:0.043200px;}
.ls6_c00101{letter-spacing:0.050400px;}
.ls2_c00101{letter-spacing:0.057600px;}
.ls0_c00101{letter-spacing:0.064800px;}
.lsb_c00101{letter-spacing:0.072000px;}
.ls3_c00101{letter-spacing:0.079200px;}
.ls7_c00101{letter-spacing:0.093600px;}
.lsd_c00101{letter-spacing:0.136800px;}
.ls9_c00101{letter-spacing:0.223200px;}
.ls12_c00101{letter-spacing:7.560000px;}
.ls17_c00101{letter-spacing:14.040000px;}
.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;}
}
.ws5_c00101{word-spacing:-2.606400px;}
.ws6_c00101{word-spacing:-2.548800px;}
.wsa_c00101{word-spacing:-1.159200px;}
.ws7_c00101{word-spacing:-0.086400px;}
.ws1_c00101{word-spacing:0.000000px;}
.ws0_c00101{word-spacing:0.138276px;}
.ws3_c00101{word-spacing:2.030400px;}
.ws2_c00101{word-spacing:2.066400px;}
.ws4_c00101{word-spacing:4.672800px;}
.ws8_c00101{word-spacing:6.876000px;}
.wsc_c00101{word-spacing:8.820000px;}
.wsb_c00101{word-spacing:9.028800px;}
.ws9_c00101{word-spacing:9.712800px;}
._f_c00101{margin-left:-14.601600px;}
._10_c00101{margin-left:-12.960000px;}
._7_c00101{margin-left:-8.798400px;}
._6_c00101{margin-left:-6.897600px;}
._b_c00101{margin-left:-4.269600px;}
._8_c00101{margin-left:-2.685600px;}
._1_c00101{margin-left:-1.029600px;}
._4_c00101{width:1.137600px;}
._2_c00101{width:2.145600px;}
._0_c00101{width:3.175200px;}
._a_c00101{width:4.399200px;}
._9_c00101{width:5.421600px;}
._3_c00101{width:6.796800px;}
._5_c00101{width:8.352000px;}
._11_c00101{width:9.475200px;}
._c_c00101{width:10.512000px;}
._d_c00101{width:13.752000px;}
._e_c00101{width:14.817600px;}
.fc0_c00101{color:rgb(0,0,0);}
.fs0_c00101{font-size:60.120000px;}
.fs1_c00101{font-size:72.000000px;}
.y0_c00101{bottom:0.000000px;}
.y6_c00101{bottom:57.360450px;}
.y5_c00101{bottom:78.060450px;}
.y25_c00101{bottom:120.900450px;}
.y24_c00101{bottom:151.950450px;}
.y23_c00101{bottom:194.970450px;}
.y22_c00101{bottom:226.110450px;}
.y21_c00101{bottom:257.070450px;}
.y20_c00101{bottom:288.120450px;}
.y1f_c00101{bottom:319.170450px;}
.y1e_c00101{bottom:350.220450px;}
.y1d_c00101{bottom:393.240450px;}
.y1c_c00101{bottom:424.380450px;}
.y1b_c00101{bottom:455.430450px;}
.y1a_c00101{bottom:486.480450px;}
.y19_c00101{bottom:517.530450px;}
.y18_c00101{bottom:560.460450px;}
.y17_c00101{bottom:591.600450px;}
.y16_c00101{bottom:622.650450px;}
.y15_c00101{bottom:653.700450px;}
.y14_c00101{bottom:684.750450px;}
.y13_c00101{bottom:715.800450px;}
.y12_c00101{bottom:758.640450px;}
.y11_c00101{bottom:789.780450px;}
.y10_c00101{bottom:820.920450px;}
.yf_c00101{bottom:851.970450px;}
.ye_c00101{bottom:883.020450px;}
.yd_c00101{bottom:925.950450px;}
.yc_c00101{bottom:957.090450px;}
.yb_c00101{bottom:988.140450px;}
.ya_c00101{bottom:1019.190450px;}
.y9_c00101{bottom:1050.240450px;}
.y8_c00101{bottom:1093.170450px;}
.y7_c00101{bottom:1124.310450px;}
.y4_c00101{bottom:1144.380657px;}
.y3_c00101{bottom:1161.660648px;}
.y2_c00101{bottom:1178.850459px;}
.y1_c00101{bottom:1196.130450px;}
.h1_c00101{height:52.898555px;}
.h2_c00101{height:63.175781px;}
.h3_c00101{height:63.351562px;}
.h0_c00101{height:1263.000000px;}
.w1_c00101{width:892.500000px;}
.w0_c00101{width:892.830000px;}
.x0_c00101{left:0.000000px;}
.x4_c00101{left:127.620000px;}
.x1_c00101{left:649.620000px;}
.x3_c00101{left:747.450000px;}
.x2_c00101{left:765.450198px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls13_c00101{letter-spacing:-0.044800pt;}
.lse_c00101{letter-spacing:-0.042752pt;}
.ls15_c00101{letter-spacing:-0.032000pt;}
.ls16_c00101{letter-spacing:-0.025600pt;}
.ls14_c00101{letter-spacing:-0.019200pt;}
.ls11_c00101{letter-spacing:-0.012800pt;}
.ls10_c00101{letter-spacing:-0.006400pt;}
.lsf_c00101{letter-spacing:0.000000pt;}
.ls8_c00101{letter-spacing:0.006400pt;}
.ls1_c00101{letter-spacing:0.012800pt;}
.lsc_c00101{letter-spacing:0.019200pt;}
.ls5_c00101{letter-spacing:0.025600pt;}
.lsa_c00101{letter-spacing:0.032000pt;}
.ls4_c00101{letter-spacing:0.038400pt;}
.ls6_c00101{letter-spacing:0.044800pt;}
.ls2_c00101{letter-spacing:0.051200pt;}
.ls0_c00101{letter-spacing:0.057600pt;}
.lsb_c00101{letter-spacing:0.064000pt;}
.ls3_c00101{letter-spacing:0.070400pt;}
.ls7_c00101{letter-spacing:0.083200pt;}
.lsd_c00101{letter-spacing:0.121600pt;}
.ls9_c00101{letter-spacing:0.198400pt;}
.ls12_c00101{letter-spacing:6.720000pt;}
.ls17_c00101{letter-spacing:12.480000pt;}
.ws5_c00101{word-spacing:-2.316800pt;}
.ws6_c00101{word-spacing:-2.265600pt;}
.wsa_c00101{word-spacing:-1.030400pt;}
.ws7_c00101{word-spacing:-0.076800pt;}
.ws1_c00101{word-spacing:0.000000pt;}
.ws0_c00101{word-spacing:0.122912pt;}
.ws3_c00101{word-spacing:1.804800pt;}
.ws2_c00101{word-spacing:1.836800pt;}
.ws4_c00101{word-spacing:4.153600pt;}
.ws8_c00101{word-spacing:6.112000pt;}
.wsc_c00101{word-spacing:7.840000pt;}
.wsb_c00101{word-spacing:8.025600pt;}
.ws9_c00101{word-spacing:8.633600pt;}
._f_c00101{margin-left:-12.979200pt;}
._10_c00101{margin-left:-11.520000pt;}
._7_c00101{margin-left:-7.820800pt;}
._6_c00101{margin-left:-6.131200pt;}
._b_c00101{margin-left:-3.795200pt;}
._8_c00101{margin-left:-2.387200pt;}
._1_c00101{margin-left:-0.915200pt;}
._4_c00101{width:1.011200pt;}
._2_c00101{width:1.907200pt;}
._0_c00101{width:2.822400pt;}
._a_c00101{width:3.910400pt;}
._9_c00101{width:4.819200pt;}
._3_c00101{width:6.041600pt;}
._5_c00101{width:7.424000pt;}
._11_c00101{width:8.422400pt;}
._c_c00101{width:9.344000pt;}
._d_c00101{width:12.224000pt;}
._e_c00101{width:13.171200pt;}
.fs0_c00101{font-size:53.440000pt;}
.fs1_c00101{font-size:64.000000pt;}
.y0_c00101{bottom:0.000000pt;}
.y6_c00101{bottom:50.987067pt;}
.y5_c00101{bottom:69.387067pt;}
.y25_c00101{bottom:107.467067pt;}
.y24_c00101{bottom:135.067067pt;}
.y23_c00101{bottom:173.307067pt;}
.y22_c00101{bottom:200.987067pt;}
.y21_c00101{bottom:228.507067pt;}
.y20_c00101{bottom:256.107067pt;}
.y1f_c00101{bottom:283.707067pt;}
.y1e_c00101{bottom:311.307067pt;}
.y1d_c00101{bottom:349.547067pt;}
.y1c_c00101{bottom:377.227067pt;}
.y1b_c00101{bottom:404.827067pt;}
.y1a_c00101{bottom:432.427067pt;}
.y19_c00101{bottom:460.027067pt;}
.y18_c00101{bottom:498.187067pt;}
.y17_c00101{bottom:525.867067pt;}
.y16_c00101{bottom:553.467067pt;}
.y15_c00101{bottom:581.067067pt;}
.y14_c00101{bottom:608.667067pt;}
.y13_c00101{bottom:636.267067pt;}
.y12_c00101{bottom:674.347067pt;}
.y11_c00101{bottom:702.027067pt;}
.y10_c00101{bottom:729.707067pt;}
.yf_c00101{bottom:757.307067pt;}
.ye_c00101{bottom:784.907067pt;}
.yd_c00101{bottom:823.067067pt;}
.yc_c00101{bottom:850.747067pt;}
.yb_c00101{bottom:878.347067pt;}
.ya_c00101{bottom:905.947067pt;}
.y9_c00101{bottom:933.547067pt;}
.y8_c00101{bottom:971.707067pt;}
.y7_c00101{bottom:999.387067pt;}
.y4_c00101{bottom:1017.227251pt;}
.y3_c00101{bottom:1032.587243pt;}
.y2_c00101{bottom:1047.867075pt;}
.y1_c00101{bottom:1063.227067pt;}
.h1_c00101{height:47.020937pt;}
.h2_c00101{height:56.156250pt;}
.h3_c00101{height:56.312500pt;}
.h0_c00101{height:1122.666667pt;}
.w1_c00101{width:793.333333pt;}
.w0_c00101{width:793.626667pt;}
.x0_c00101{left:0.000000pt;}
.x4_c00101{left:113.440000pt;}
.x1_c00101{left:577.440000pt;}
.x3_c00101{left:664.400000pt;}
.x2_c00101{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b6012beaffff2568366cc9c.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.095703;font-style:normal;font-weight:normal;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_90d1b0b4a1abc6d558c0e235.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00102{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.v1_c00102{vertical-align:18.000000px;}
.ls10_c00102{letter-spacing:-0.102204px;}
.ls17_c00102{letter-spacing:-0.050400px;}
.ls15_c00102{letter-spacing:-0.043200px;}
.ls19_c00102{letter-spacing:-0.036000px;}
.ls16_c00102{letter-spacing:-0.028800px;}
.ls12_c00102{letter-spacing:-0.021600px;}
.ls14_c00102{letter-spacing:-0.014400px;}
.ls13_c00102{letter-spacing:-0.007200px;}
.ls11_c00102{letter-spacing:0.000000px;}
.ls1a_c00102{letter-spacing:0.005400px;}
.ls4_c00102{letter-spacing:0.007200px;}
.lsc_c00102{letter-spacing:0.014400px;}
.lsf_c00102{letter-spacing:0.016200px;}
.ls2_c00102{letter-spacing:0.021600px;}
.ls0_c00102{letter-spacing:0.028800px;}
.ls8_c00102{letter-spacing:0.036000px;}
.ls1_c00102{letter-spacing:0.050400px;}
.lsb_c00102{letter-spacing:0.057600px;}
.ls6_c00102{letter-spacing:0.064800px;}
.lsa_c00102{letter-spacing:0.072000px;}
.ls5_c00102{letter-spacing:0.079200px;}
.ls7_c00102{letter-spacing:0.086400px;}
.ls3_c00102{letter-spacing:0.093600px;}
.lse_c00102{letter-spacing:0.102600px;}
.ls9_c00102{letter-spacing:0.144000px;}
.ls1b_c00102{letter-spacing:0.178200px;}
.lsd_c00102{letter-spacing:0.360000px;}
.ls18_c00102{letter-spacing:19.440000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00102{word-spacing:-13.602600px;}
.ws1_c00102{word-spacing:-9.000000px;}
.ws6_c00102{word-spacing:-2.592000px;}
.ws7_c00102{word-spacing:-1.116000px;}
.ws3_c00102{word-spacing:0.000000px;}
.wsa_c00102{word-spacing:0.162000px;}
.ws2_c00102{word-spacing:0.192384px;}
.ws5_c00102{word-spacing:2.851200px;}
.ws4_c00102{word-spacing:7.135200px;}
.ws9_c00102{word-spacing:16.021800px;}
.ws8_c00102{word-spacing:30.061800px;}
._11_c00102{margin-left:-20.592000px;}
._10_c00102{margin-left:-18.964800px;}
._d_c00102{margin-left:-4.636800px;}
._f_c00102{margin-left:-3.621600px;}
._4_c00102{margin-left:-2.548800px;}
._2_c00102{margin-left:-1.540800px;}
._0_c00102{width:1.034064px;}
._7_c00102{width:2.061216px;}
._1_c00102{width:3.211200px;}
._3_c00102{width:4.629600px;}
._b_c00102{width:5.762736px;}
._6_c00102{width:7.192800px;}
._e_c00102{width:8.956800px;}
._5_c00102{width:11.491200px;}
._a_c00102{width:12.628800px;}
._9_c00102{width:14.025600px;}
._8_c00102{width:15.112800px;}
._c_c00102{width:19.778400px;}
.fc2_c00102{color:rgb(68,84,106);}
.fc1_c00102{color:rgb(0,0,0);}
.fc0_c00102{color:rgb(32,31,30);}
.fs3_c00102{font-size:36.000000px;}
.fs2_c00102{font-size:54.000000px;}
.fs0_c00102{font-size:60.120000px;}
.fs1_c00102{font-size:72.000000px;}
.y0_c00102{bottom:0.000000px;}
.y25_c00102{bottom:3.240450px;}
.y2a_c00102{bottom:3.240600px;}
.y5_c00102{bottom:57.360450px;}
.y4_c00102{bottom:78.060450px;}
.y23_c00102{bottom:123.600450px;}
.y22_c00102{bottom:154.650450px;}
.y21_c00102{bottom:197.580450px;}
.y20_c00102{bottom:228.720450px;}
.y1f_c00102{bottom:259.770450px;}
.y1e_c00102{bottom:290.820450px;}
.y29_c00102{bottom:319.260000px;}
.y2b_c00102{bottom:322.500600px;}
.y1d_c00102{bottom:361.200450px;}
.y1c_c00102{bottom:392.340450px;}
.y1b_c00102{bottom:423.390450px;}
.y1a_c00102{bottom:454.440450px;}
.y19_c00102{bottom:485.490450px;}
.y18_c00102{bottom:516.540450px;}
.y17_c00102{bottom:547.590450px;}
.y28_c00102{bottom:550.290450px;}
.y27_c00102{bottom:565.770900px;}
.y24_c00102{bottom:578.100000px;}
.y16_c00102{bottom:578.640450px;}
.y26_c00102{bottom:581.340450px;}
.y15_c00102{bottom:621.570450px;}
.y14_c00102{bottom:652.710450px;}
.y13_c00102{bottom:683.760450px;}
.y12_c00102{bottom:714.810450px;}
.y11_c00102{bottom:745.860450px;}
.y10_c00102{bottom:776.910450px;}
.yf_c00102{bottom:819.930450px;}
.ye_c00102{bottom:851.070450px;}
.yd_c00102{bottom:882.120450px;}
.yc_c00102{bottom:913.170450px;}
.yb_c00102{bottom:956.100450px;}
.ya_c00102{bottom:987.240450px;}
.y9_c00102{bottom:1018.290450px;}
.y8_c00102{bottom:1049.340450px;}
.y7_c00102{bottom:1080.390450px;}
.y6_c00102{bottom:1111.440450px;}
.y3_c00102{bottom:1132.140450px;}
.y2_c00102{bottom:1165.441023px;}
.y1_c00102{bottom:1196.040600px;}
.h4_c00102{height:15.300000px;}
.h5_c00102{height:47.513672px;}
.h1_c00102{height:52.898555px;}
.h2_c00102{height:63.175781px;}
.h3_c00102{height:63.351562px;}
.h0_c00102{height:1263.000000px;}
.w2_c00102{width:40.500000px;}
.w4_c00102{width:74.340000px;}
.w3_c00102{width:109.800000px;}
.w1_c00102{width:892.500000px;}
.w0_c00102{width:892.830000px;}
.x0_c00102{left:0.000000px;}
.x8_c00102{left:126.360000px;}
.x1_c00102{left:127.620000px;}
.x5_c00102{left:132.120000px;}
.x9_c00102{left:134.640000px;}
.x6_c00102{left:185.400000px;}
.x7_c00102{left:193.230000px;}
.x3_c00102{left:309.870000px;}
.x4_c00102{left:312.120000px;}
.x2_c00102{left:747.450000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.v1_c00102{vertical-align:16.000000pt;}
.ls10_c00102{letter-spacing:-0.090848pt;}
.ls17_c00102{letter-spacing:-0.044800pt;}
.ls15_c00102{letter-spacing:-0.038400pt;}
.ls19_c00102{letter-spacing:-0.032000pt;}
.ls16_c00102{letter-spacing:-0.025600pt;}
.ls12_c00102{letter-spacing:-0.019200pt;}
.ls14_c00102{letter-spacing:-0.012800pt;}
.ls13_c00102{letter-spacing:-0.006400pt;}
.ls11_c00102{letter-spacing:0.000000pt;}
.ls1a_c00102{letter-spacing:0.004800pt;}
.ls4_c00102{letter-spacing:0.006400pt;}
.lsc_c00102{letter-spacing:0.012800pt;}
.lsf_c00102{letter-spacing:0.014400pt;}
.ls2_c00102{letter-spacing:0.019200pt;}
.ls0_c00102{letter-spacing:0.025600pt;}
.ls8_c00102{letter-spacing:0.032000pt;}
.ls1_c00102{letter-spacing:0.044800pt;}
.lsb_c00102{letter-spacing:0.051200pt;}
.ls6_c00102{letter-spacing:0.057600pt;}
.lsa_c00102{letter-spacing:0.064000pt;}
.ls5_c00102{letter-spacing:0.070400pt;}
.ls7_c00102{letter-spacing:0.076800pt;}
.ls3_c00102{letter-spacing:0.083200pt;}
.lse_c00102{letter-spacing:0.091200pt;}
.ls9_c00102{letter-spacing:0.128000pt;}
.ls1b_c00102{letter-spacing:0.158400pt;}
.lsd_c00102{letter-spacing:0.320000pt;}
.ls18_c00102{letter-spacing:17.280000pt;}
.ws0_c00102{word-spacing:-12.091200pt;}
.ws1_c00102{word-spacing:-8.000000pt;}
.ws6_c00102{word-spacing:-2.304000pt;}
.ws7_c00102{word-spacing:-0.992000pt;}
.ws3_c00102{word-spacing:0.000000pt;}
.wsa_c00102{word-spacing:0.144000pt;}
.ws2_c00102{word-spacing:0.171008pt;}
.ws5_c00102{word-spacing:2.534400pt;}
.ws4_c00102{word-spacing:6.342400pt;}
.ws9_c00102{word-spacing:14.241600pt;}
.ws8_c00102{word-spacing:26.721600pt;}
._11_c00102{margin-left:-18.304000pt;}
._10_c00102{margin-left:-16.857600pt;}
._d_c00102{margin-left:-4.121600pt;}
._f_c00102{margin-left:-3.219200pt;}
._4_c00102{margin-left:-2.265600pt;}
._2_c00102{margin-left:-1.369600pt;}
._0_c00102{width:0.919168pt;}
._7_c00102{width:1.832192pt;}
._1_c00102{width:2.854400pt;}
._3_c00102{width:4.115200pt;}
._b_c00102{width:5.122432pt;}
._6_c00102{width:6.393600pt;}
._e_c00102{width:7.961600pt;}
._5_c00102{width:10.214400pt;}
._a_c00102{width:11.225600pt;}
._9_c00102{width:12.467200pt;}
._8_c00102{width:13.433600pt;}
._c_c00102{width:17.580800pt;}
.fs3_c00102{font-size:32.000000pt;}
.fs2_c00102{font-size:48.000000pt;}
.fs0_c00102{font-size:53.440000pt;}
.fs1_c00102{font-size:64.000000pt;}
.y0_c00102{bottom:0.000000pt;}
.y25_c00102{bottom:2.880400pt;}
.y2a_c00102{bottom:2.880533pt;}
.y5_c00102{bottom:50.987067pt;}
.y4_c00102{bottom:69.387067pt;}
.y23_c00102{bottom:109.867067pt;}
.y22_c00102{bottom:137.467067pt;}
.y21_c00102{bottom:175.627067pt;}
.y20_c00102{bottom:203.307067pt;}
.y1f_c00102{bottom:230.907067pt;}
.y1e_c00102{bottom:258.507067pt;}
.y29_c00102{bottom:283.786667pt;}
.y2b_c00102{bottom:286.667200pt;}
.y1d_c00102{bottom:321.067067pt;}
.y1c_c00102{bottom:348.747067pt;}
.y1b_c00102{bottom:376.347067pt;}
.y1a_c00102{bottom:403.947067pt;}
.y19_c00102{bottom:431.547067pt;}
.y18_c00102{bottom:459.147067pt;}
.y17_c00102{bottom:486.747067pt;}
.y28_c00102{bottom:489.147067pt;}
.y27_c00102{bottom:502.907467pt;}
.y24_c00102{bottom:513.866667pt;}
.y16_c00102{bottom:514.347067pt;}
.y26_c00102{bottom:516.747067pt;}
.y15_c00102{bottom:552.507067pt;}
.y14_c00102{bottom:580.187067pt;}
.y13_c00102{bottom:607.787067pt;}
.y12_c00102{bottom:635.387067pt;}
.y11_c00102{bottom:662.987067pt;}
.y10_c00102{bottom:690.587067pt;}
.yf_c00102{bottom:728.827067pt;}
.ye_c00102{bottom:756.507067pt;}
.yd_c00102{bottom:784.107067pt;}
.yc_c00102{bottom:811.707067pt;}
.yb_c00102{bottom:849.867067pt;}
.ya_c00102{bottom:877.547067pt;}
.y9_c00102{bottom:905.147067pt;}
.y8_c00102{bottom:932.747067pt;}
.y7_c00102{bottom:960.347067pt;}
.y6_c00102{bottom:987.947067pt;}
.y3_c00102{bottom:1006.347067pt;}
.y2_c00102{bottom:1035.947576pt;}
.y1_c00102{bottom:1063.147200pt;}
.h4_c00102{height:13.600000pt;}
.h5_c00102{height:42.234375pt;}
.h1_c00102{height:47.020937pt;}
.h2_c00102{height:56.156250pt;}
.h3_c00102{height:56.312500pt;}
.h0_c00102{height:1122.666667pt;}
.w2_c00102{width:36.000000pt;}
.w4_c00102{width:66.080000pt;}
.w3_c00102{width:97.600000pt;}
.w1_c00102{width:793.333333pt;}
.w0_c00102{width:793.626667pt;}
.x0_c00102{left:0.000000pt;}
.x8_c00102{left:112.320000pt;}
.x1_c00102{left:113.440000pt;}
.x5_c00102{left:117.440000pt;}
.x9_c00102{left:119.680000pt;}
.x6_c00102{left:164.800000pt;}
.x7_c00102{left:171.760000pt;}
.x3_c00102{left:275.440000pt;}
.x4_c00102{left:277.440000pt;}
.x2_c00102{left:664.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_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_b015da9a2e5dd31bddf5a818.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.095703;font-style:normal;font-weight:normal;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_8aa90bda68dabe536f784dc5.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls12_c00103{letter-spacing:-0.064800px;}
.lsd_c00103{letter-spacing:-0.048096px;}
.ls11_c00103{letter-spacing:-0.028800px;}
.ls10_c00103{letter-spacing:-0.014400px;}
.lsf_c00103{letter-spacing:-0.007200px;}
.lse_c00103{letter-spacing:0.000000px;}
.ls4_c00103{letter-spacing:0.007200px;}
.ls2_c00103{letter-spacing:0.014400px;}
.ls3_c00103{letter-spacing:0.021600px;}
.ls8_c00103{letter-spacing:0.028800px;}
.ls0_c00103{letter-spacing:0.036000px;}
.ls1_c00103{letter-spacing:0.043200px;}
.ls9_c00103{letter-spacing:0.050400px;}
.ls7_c00103{letter-spacing:0.057600px;}
.ls5_c00103{letter-spacing:0.072000px;}
.lsb_c00103{letter-spacing:0.079200px;}
.lsc_c00103{letter-spacing:0.093600px;}
.ls6_c00103{letter-spacing:0.122400px;}
.lsa_c00103{letter-spacing:0.201600px;}
.ls14_c00103{letter-spacing:5.040000px;}
.ls13_c00103{letter-spacing:7.200000px;}
.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:-0.014400px;}
.ws1_c00103{word-spacing:0.000000px;}
.ws0_c00103{word-spacing:0.138276px;}
._10_c00103{margin-left:-7.646400px;}
._f_c00103{margin-left:-6.609600px;}
._11_c00103{margin-left:-4.701600px;}
._7_c00103{margin-left:-3.261600px;}
._1_c00103{margin-left:-1.224000px;}
._4_c00103{width:1.058400px;}
._2_c00103{width:2.210400px;}
._3_c00103{width:3.276000px;}
._0_c00103{width:4.327200px;}
._5_c00103{width:6.040800px;}
._8_c00103{width:7.596000px;}
._e_c00103{width:8.697600px;}
._b_c00103{width:10.216800px;}
._a_c00103{width:11.484000px;}
._6_c00103{width:12.916800px;}
._c_c00103{width:26.078400px;}
._9_c00103{width:27.900000px;}
._d_c00103{width:31.312800px;}
.fc0_c00103{color:rgb(0,0,0);}
.fs0_c00103{font-size:60.120000px;}
.fs1_c00103{font-size:72.000000px;}
.y0_c00103{bottom:0.000000px;}
.y6_c00103{bottom:57.360450px;}
.y5_c00103{bottom:78.060450px;}
.y25_c00103{bottom:144.930450px;}
.y24_c00103{bottom:175.980450px;}
.y23_c00103{bottom:207.030450px;}
.y22_c00103{bottom:238.080450px;}
.y21_c00103{bottom:269.130450px;}
.y20_c00103{bottom:300.180450px;}
.y1f_c00103{bottom:331.230450px;}
.y1e_c00103{bottom:374.160450px;}
.y1d_c00103{bottom:405.300450px;}
.y1c_c00103{bottom:436.350450px;}
.y1b_c00103{bottom:467.400450px;}
.y1a_c00103{bottom:498.450450px;}
.y19_c00103{bottom:529.500450px;}
.y18_c00103{bottom:572.430450px;}
.y17_c00103{bottom:603.570450px;}
.y16_c00103{bottom:634.620450px;}
.y15_c00103{bottom:665.670450px;}
.y14_c00103{bottom:696.720450px;}
.y13_c00103{bottom:727.770450px;}
.y12_c00103{bottom:758.820450px;}
.y11_c00103{bottom:789.870450px;}
.y10_c00103{bottom:820.920450px;}
.yf_c00103{bottom:851.970450px;}
.ye_c00103{bottom:883.020450px;}
.yd_c00103{bottom:925.950450px;}
.yc_c00103{bottom:957.090450px;}
.yb_c00103{bottom:988.140450px;}
.ya_c00103{bottom:1019.190450px;}
.y9_c00103{bottom:1062.120450px;}
.y8_c00103{bottom:1093.260450px;}
.y7_c00103{bottom:1124.310450px;}
.y4_c00103{bottom:1144.380657px;}
.y3_c00103{bottom:1161.660648px;}
.y2_c00103{bottom:1178.850459px;}
.y1_c00103{bottom:1196.130450px;}
.h1_c00103{height:52.898555px;}
.h2_c00103{height:63.175781px;}
.h3_c00103{height:63.351562px;}
.h0_c00103{height:1263.000000px;}
.w1_c00103{width:892.500000px;}
.w0_c00103{width:892.830000px;}
.x0_c00103{left:0.000000px;}
.x4_c00103{left:127.620000px;}
.x1_c00103{left:649.620000px;}
.x3_c00103{left:747.450000px;}
.x2_c00103{left:765.450198px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls12_c00103{letter-spacing:-0.057600pt;}
.lsd_c00103{letter-spacing:-0.042752pt;}
.ls11_c00103{letter-spacing:-0.025600pt;}
.ls10_c00103{letter-spacing:-0.012800pt;}
.lsf_c00103{letter-spacing:-0.006400pt;}
.lse_c00103{letter-spacing:0.000000pt;}
.ls4_c00103{letter-spacing:0.006400pt;}
.ls2_c00103{letter-spacing:0.012800pt;}
.ls3_c00103{letter-spacing:0.019200pt;}
.ls8_c00103{letter-spacing:0.025600pt;}
.ls0_c00103{letter-spacing:0.032000pt;}
.ls1_c00103{letter-spacing:0.038400pt;}
.ls9_c00103{letter-spacing:0.044800pt;}
.ls7_c00103{letter-spacing:0.051200pt;}
.ls5_c00103{letter-spacing:0.064000pt;}
.lsb_c00103{letter-spacing:0.070400pt;}
.lsc_c00103{letter-spacing:0.083200pt;}
.ls6_c00103{letter-spacing:0.108800pt;}
.lsa_c00103{letter-spacing:0.179200pt;}
.ls14_c00103{letter-spacing:4.480000pt;}
.ls13_c00103{letter-spacing:6.400000pt;}
.ws2_c00103{word-spacing:-0.012800pt;}
.ws1_c00103{word-spacing:0.000000pt;}
.ws0_c00103{word-spacing:0.122912pt;}
._10_c00103{margin-left:-6.796800pt;}
._f_c00103{margin-left:-5.875200pt;}
._11_c00103{margin-left:-4.179200pt;}
._7_c00103{margin-left:-2.899200pt;}
._1_c00103{margin-left:-1.088000pt;}
._4_c00103{width:0.940800pt;}
._2_c00103{width:1.964800pt;}
._3_c00103{width:2.912000pt;}
._0_c00103{width:3.846400pt;}
._5_c00103{width:5.369600pt;}
._8_c00103{width:6.752000pt;}
._e_c00103{width:7.731200pt;}
._b_c00103{width:9.081600pt;}
._a_c00103{width:10.208000pt;}
._6_c00103{width:11.481600pt;}
._c_c00103{width:23.180800pt;}
._9_c00103{width:24.800000pt;}
._d_c00103{width:27.833600pt;}
.fs0_c00103{font-size:53.440000pt;}
.fs1_c00103{font-size:64.000000pt;}
.y0_c00103{bottom:0.000000pt;}
.y6_c00103{bottom:50.987067pt;}
.y5_c00103{bottom:69.387067pt;}
.y25_c00103{bottom:128.827067pt;}
.y24_c00103{bottom:156.427067pt;}
.y23_c00103{bottom:184.027067pt;}
.y22_c00103{bottom:211.627067pt;}
.y21_c00103{bottom:239.227067pt;}
.y20_c00103{bottom:266.827067pt;}
.y1f_c00103{bottom:294.427067pt;}
.y1e_c00103{bottom:332.587067pt;}
.y1d_c00103{bottom:360.267067pt;}
.y1c_c00103{bottom:387.867067pt;}
.y1b_c00103{bottom:415.467067pt;}
.y1a_c00103{bottom:443.067067pt;}
.y19_c00103{bottom:470.667067pt;}
.y18_c00103{bottom:508.827067pt;}
.y17_c00103{bottom:536.507067pt;}
.y16_c00103{bottom:564.107067pt;}
.y15_c00103{bottom:591.707067pt;}
.y14_c00103{bottom:619.307067pt;}
.y13_c00103{bottom:646.907067pt;}
.y12_c00103{bottom:674.507067pt;}
.y11_c00103{bottom:702.107067pt;}
.y10_c00103{bottom:729.707067pt;}
.yf_c00103{bottom:757.307067pt;}
.ye_c00103{bottom:784.907067pt;}
.yd_c00103{bottom:823.067067pt;}
.yc_c00103{bottom:850.747067pt;}
.yb_c00103{bottom:878.347067pt;}
.ya_c00103{bottom:905.947067pt;}
.y9_c00103{bottom:944.107067pt;}
.y8_c00103{bottom:971.787067pt;}
.y7_c00103{bottom:999.387067pt;}
.y4_c00103{bottom:1017.227251pt;}
.y3_c00103{bottom:1032.587243pt;}
.y2_c00103{bottom:1047.867075pt;}
.y1_c00103{bottom:1063.227067pt;}
.h1_c00103{height:47.020937pt;}
.h2_c00103{height:56.156250pt;}
.h3_c00103{height:56.312500pt;}
.h0_c00103{height:1122.666667pt;}
.w1_c00103{width:793.333333pt;}
.w0_c00103{width:793.626667pt;}
.x0_c00103{left:0.000000pt;}
.x4_c00103{left:113.440000pt;}
.x1_c00103{left:577.440000pt;}
.x3_c00103{left:664.400000pt;}
.x2_c00103{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b27a97ff6d53650a8c5f2c37.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.095703;font-style:normal;font-weight:normal;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_53c6fc307f805b36d829142a.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00104{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls1b_c00104{letter-spacing:-3.240000px;}
.ls11_c00104{letter-spacing:-0.102204px;}
.ls14_c00104{letter-spacing:-0.079200px;}
.ls1a_c00104{letter-spacing:-0.064800px;}
.ls16_c00104{letter-spacing:-0.057600px;}
.ls15_c00104{letter-spacing:-0.043200px;}
.ls19_c00104{letter-spacing:-0.028800px;}
.ls17_c00104{letter-spacing:-0.021600px;}
.ls18_c00104{letter-spacing:-0.014400px;}
.ls13_c00104{letter-spacing:-0.007200px;}
.ls1c_c00104{letter-spacing:-0.005400px;}
.ls12_c00104{letter-spacing:0.000000px;}
.lsf_c00104{letter-spacing:0.005400px;}
.ls5_c00104{letter-spacing:0.007200px;}
.ls1_c00104{letter-spacing:0.014400px;}
.ls10_c00104{letter-spacing:0.016200px;}
.lsb_c00104{letter-spacing:0.021600px;}
.lse_c00104{letter-spacing:0.027000px;}
.ls9_c00104{letter-spacing:0.028800px;}
.ls0_c00104{letter-spacing:0.036000px;}
.ls2_c00104{letter-spacing:0.043200px;}
.ls6_c00104{letter-spacing:0.050400px;}
.lsa_c00104{letter-spacing:0.057600px;}
.ls4_c00104{letter-spacing:0.064800px;}
.lsc_c00104{letter-spacing:0.072000px;}
.ls3_c00104{letter-spacing:0.079200px;}
.ls8_c00104{letter-spacing:0.086400px;}
.lsd_c00104{letter-spacing:0.100800px;}
.ls7_c00104{letter-spacing:0.115200px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00104{word-spacing:-13.516200px;}
.ws0_c00104{word-spacing:-13.505400px;}
.ws3_c00104{word-spacing:0.000000px;}
.ws5_c00104{word-spacing:0.007200px;}
.ws6_c00104{word-spacing:0.183600px;}
.ws2_c00104{word-spacing:0.192384px;}
.ws4_c00104{word-spacing:5.400000px;}
.ws7_c00104{word-spacing:430.353000px;}
._2_c00104{margin-left:-1.497600px;}
._0_c00104{width:1.034064px;}
._1_c00104{width:3.204000px;}
._b_c00104{width:4.226400px;}
._5_c00104{width:5.335200px;}
._7_c00104{width:6.753600px;}
._6_c00104{width:7.833600px;}
._9_c00104{width:11.980800px;}
._3_c00104{width:13.276800px;}
._4_c00104{width:14.349600px;}
._8_c00104{width:19.785600px;}
._a_c00104{width:43.185600px;}
.fc3_c00104{color:rgb(5,99,193);}
.fc2_c00104{color:rgb(68,84,106);}
.fc1_c00104{color:rgb(0,0,0);}
.fc0_c00104{color:rgb(32,31,30);}
.fs2_c00104{font-size:54.000000px;}
.fs0_c00104{font-size:60.120000px;}
.fs1_c00104{font-size:72.000000px;}
.y0_c00104{bottom:0.000000px;}
.y24_c00104{bottom:3.240450px;}
.y5_c00104{bottom:57.360450px;}
.y4_c00104{bottom:78.060450px;}
.y22_c00104{bottom:156.720450px;}
.y21_c00104{bottom:187.770450px;}
.y20_c00104{bottom:218.820450px;}
.y1f_c00104{bottom:249.870450px;}
.y1e_c00104{bottom:292.890450px;}
.y1d_c00104{bottom:324.030450px;}
.y1c_c00104{bottom:355.080450px;}
.y1b_c00104{bottom:386.130450px;}
.y1a_c00104{bottom:420.330450px;}
.y19_c00104{bottom:442.560450px;}
.y18_c00104{bottom:485.760450px;}
.y17_c00104{bottom:518.880450px;}
.y29_c00104{bottom:521.940600px;}
.y28_c00104{bottom:537.420900px;}
.y26_c00104{bottom:549.750000px;}
.y27_c00104{bottom:552.990450px;}
.y16_c00104{bottom:554.610450px;}
.y15_c00104{bottom:597.630450px;}
.y14_c00104{bottom:628.770450px;}
.y13_c00104{bottom:659.820450px;}
.y12_c00104{bottom:690.870450px;}
.y11_c00104{bottom:721.920450px;}
.y23_c00104{bottom:754.500000px;}
.y25_c00104{bottom:757.740450px;}
.y10_c00104{bottom:764.850450px;}
.yf_c00104{bottom:807.870450px;}
.ye_c00104{bottom:839.010450px;}
.yd_c00104{bottom:870.060450px;}
.yc_c00104{bottom:901.110450px;}
.yb_c00104{bottom:944.130450px;}
.ya_c00104{bottom:975.180450px;}
.y9_c00104{bottom:1006.230450px;}
.y8_c00104{bottom:1037.280450px;}
.y7_c00104{bottom:1080.300450px;}
.y6_c00104{bottom:1111.440450px;}
.y3_c00104{bottom:1132.140450px;}
.y2_c00104{bottom:1165.441023px;}
.y1_c00104{bottom:1196.040600px;}
.h4_c00104{height:15.300000px;}
.h5_c00104{height:47.513672px;}
.h1_c00104{height:52.898555px;}
.h2_c00104{height:63.175781px;}
.h3_c00104{height:63.351562px;}
.h0_c00104{height:1263.000000px;}
.w2_c00104{width:139.860000px;}
.w3_c00104{width:353.250000px;}
.w1_c00104{width:892.500000px;}
.w0_c00104{width:892.830000px;}
.x0_c00104{left:0.000000px;}
.x1_c00104{left:127.620000px;}
.x5_c00104{left:132.120000px;}
.x6_c00104{left:135.900000px;}
.x4_c00104{left:485.370000px;}
.x3_c00104{left:494.370000px;}
.x2_c00104{left:747.450000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls1b_c00104{letter-spacing:-2.880000pt;}
.ls11_c00104{letter-spacing:-0.090848pt;}
.ls14_c00104{letter-spacing:-0.070400pt;}
.ls1a_c00104{letter-spacing:-0.057600pt;}
.ls16_c00104{letter-spacing:-0.051200pt;}
.ls15_c00104{letter-spacing:-0.038400pt;}
.ls19_c00104{letter-spacing:-0.025600pt;}
.ls17_c00104{letter-spacing:-0.019200pt;}
.ls18_c00104{letter-spacing:-0.012800pt;}
.ls13_c00104{letter-spacing:-0.006400pt;}
.ls1c_c00104{letter-spacing:-0.004800pt;}
.ls12_c00104{letter-spacing:0.000000pt;}
.lsf_c00104{letter-spacing:0.004800pt;}
.ls5_c00104{letter-spacing:0.006400pt;}
.ls1_c00104{letter-spacing:0.012800pt;}
.ls10_c00104{letter-spacing:0.014400pt;}
.lsb_c00104{letter-spacing:0.019200pt;}
.lse_c00104{letter-spacing:0.024000pt;}
.ls9_c00104{letter-spacing:0.025600pt;}
.ls0_c00104{letter-spacing:0.032000pt;}
.ls2_c00104{letter-spacing:0.038400pt;}
.ls6_c00104{letter-spacing:0.044800pt;}
.lsa_c00104{letter-spacing:0.051200pt;}
.ls4_c00104{letter-spacing:0.057600pt;}
.lsc_c00104{letter-spacing:0.064000pt;}
.ls3_c00104{letter-spacing:0.070400pt;}
.ls8_c00104{letter-spacing:0.076800pt;}
.lsd_c00104{letter-spacing:0.089600pt;}
.ls7_c00104{letter-spacing:0.102400pt;}
.ws1_c00104{word-spacing:-12.014400pt;}
.ws0_c00104{word-spacing:-12.004800pt;}
.ws3_c00104{word-spacing:0.000000pt;}
.ws5_c00104{word-spacing:0.006400pt;}
.ws6_c00104{word-spacing:0.163200pt;}
.ws2_c00104{word-spacing:0.171008pt;}
.ws4_c00104{word-spacing:4.800000pt;}
.ws7_c00104{word-spacing:382.536000pt;}
._2_c00104{margin-left:-1.331200pt;}
._0_c00104{width:0.919168pt;}
._1_c00104{width:2.848000pt;}
._b_c00104{width:3.756800pt;}
._5_c00104{width:4.742400pt;}
._7_c00104{width:6.003200pt;}
._6_c00104{width:6.963200pt;}
._9_c00104{width:10.649600pt;}
._3_c00104{width:11.801600pt;}
._4_c00104{width:12.755200pt;}
._8_c00104{width:17.587200pt;}
._a_c00104{width:38.387200pt;}
.fs2_c00104{font-size:48.000000pt;}
.fs0_c00104{font-size:53.440000pt;}
.fs1_c00104{font-size:64.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y24_c00104{bottom:2.880400pt;}
.y5_c00104{bottom:50.987067pt;}
.y4_c00104{bottom:69.387067pt;}
.y22_c00104{bottom:139.307067pt;}
.y21_c00104{bottom:166.907067pt;}
.y20_c00104{bottom:194.507067pt;}
.y1f_c00104{bottom:222.107067pt;}
.y1e_c00104{bottom:260.347067pt;}
.y1d_c00104{bottom:288.027067pt;}
.y1c_c00104{bottom:315.627067pt;}
.y1b_c00104{bottom:343.227067pt;}
.y1a_c00104{bottom:373.627067pt;}
.y19_c00104{bottom:393.387067pt;}
.y18_c00104{bottom:431.787067pt;}
.y17_c00104{bottom:461.227067pt;}
.y29_c00104{bottom:463.947200pt;}
.y28_c00104{bottom:477.707467pt;}
.y26_c00104{bottom:488.666667pt;}
.y27_c00104{bottom:491.547067pt;}
.y16_c00104{bottom:492.987067pt;}
.y15_c00104{bottom:531.227067pt;}
.y14_c00104{bottom:558.907067pt;}
.y13_c00104{bottom:586.507067pt;}
.y12_c00104{bottom:614.107067pt;}
.y11_c00104{bottom:641.707067pt;}
.y23_c00104{bottom:670.666667pt;}
.y25_c00104{bottom:673.547067pt;}
.y10_c00104{bottom:679.867067pt;}
.yf_c00104{bottom:718.107067pt;}
.ye_c00104{bottom:745.787067pt;}
.yd_c00104{bottom:773.387067pt;}
.yc_c00104{bottom:800.987067pt;}
.yb_c00104{bottom:839.227067pt;}
.ya_c00104{bottom:866.827067pt;}
.y9_c00104{bottom:894.427067pt;}
.y8_c00104{bottom:922.027067pt;}
.y7_c00104{bottom:960.267067pt;}
.y6_c00104{bottom:987.947067pt;}
.y3_c00104{bottom:1006.347067pt;}
.y2_c00104{bottom:1035.947576pt;}
.y1_c00104{bottom:1063.147200pt;}
.h4_c00104{height:13.600000pt;}
.h5_c00104{height:42.234375pt;}
.h1_c00104{height:47.020937pt;}
.h2_c00104{height:56.156250pt;}
.h3_c00104{height:56.312500pt;}
.h0_c00104{height:1122.666667pt;}
.w2_c00104{width:124.320000pt;}
.w3_c00104{width:314.000000pt;}
.w1_c00104{width:793.333333pt;}
.w0_c00104{width:793.626667pt;}
.x0_c00104{left:0.000000pt;}
.x1_c00104{left:113.440000pt;}
.x5_c00104{left:117.440000pt;}
.x6_c00104{left:120.800000pt;}
.x4_c00104{left:431.440000pt;}
.x3_c00104{left:439.440000pt;}
.x2_c00104{left:664.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_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_c279fb535e495c05cf76be10.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.095703;font-style:normal;font-weight:normal;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_c4a65d6345376d17d9675f30.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00105{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls10_c00105{letter-spacing:-0.048096px;}
.ls13_c00105{letter-spacing:-0.028800px;}
.ls12_c00105{letter-spacing:-0.014400px;}
.ls16_c00105{letter-spacing:-0.010800px;}
.ls15_c00105{letter-spacing:-0.007200px;}
.ls11_c00105{letter-spacing:0.000000px;}
.lsd_c00105{letter-spacing:0.005400px;}
.ls2_c00105{letter-spacing:0.007200px;}
.ls17_c00105{letter-spacing:0.010800px;}
.ls3_c00105{letter-spacing:0.014400px;}
.ls9_c00105{letter-spacing:0.021600px;}
.lsc_c00105{letter-spacing:0.027000px;}
.ls1_c00105{letter-spacing:0.028800px;}
.lse_c00105{letter-spacing:0.032400px;}
.ls8_c00105{letter-spacing:0.036000px;}
.ls6_c00105{letter-spacing:0.043200px;}
.lsb_c00105{letter-spacing:0.050400px;}
.ls0_c00105{letter-spacing:0.057600px;}
.ls4_c00105{letter-spacing:0.072000px;}
.lsa_c00105{letter-spacing:0.079200px;}
.ls5_c00105{letter-spacing:0.086400px;}
.lsf_c00105{letter-spacing:0.097200px;}
.ls7_c00105{letter-spacing:0.122400px;}
.ls14_c00105{letter-spacing:15.480000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:-18.000000px;}
.ws4_c00105{word-spacing:-13.597200px;}
.ws2_c00105{word-spacing:-13.532400px;}
.ws3_c00105{word-spacing:-13.527000px;}
.ws1_c00105{word-spacing:-11.970000px;}
.ws9_c00105{word-spacing:-1.247400px;}
.ws6_c00105{word-spacing:0.000000px;}
.ws5_c00105{word-spacing:0.138276px;}
.ws7_c00105{word-spacing:2.673000px;}
.ws8_c00105{word-spacing:2.694600px;}
._7_c00105{margin-left:-15.724800px;}
._8_c00105{margin-left:-14.472000px;}
._1_c00105{margin-left:-4.377600px;}
._0_c00105{margin-left:-3.225600px;}
._3_c00105{margin-left:-1.267200px;}
._9_c00105{width:1.238400px;}
._4_c00105{width:2.376000px;}
._2_c00105{width:3.888000px;}
._b_c00105{width:5.126400px;}
._11_c00105{width:7.207200px;}
._12_c00105{width:8.553600px;}
._d_c00105{width:10.152000px;}
._e_c00105{width:11.246400px;}
._f_c00105{width:12.556800px;}
._c_c00105{width:14.299200px;}
._6_c00105{width:15.451200px;}
._a_c00105{width:16.488000px;}
._10_c00105{width:19.180800px;}
._13_c00105{width:20.188800px;}
._5_c00105{width:29.512800px;}
.fc2_c00105{color:rgb(5,99,193);}
.fc1_c00105{color:rgb(68,84,106);}
.fc0_c00105{color:rgb(0,0,0);}
.fs2_c00105{font-size:47.880000px;}
.fs3_c00105{font-size:54.000000px;}
.fs0_c00105{font-size:60.120000px;}
.fs1_c00105{font-size:72.000000px;}
.y0_c00105{bottom:0.000000px;}
.y26_c00105{bottom:3.240450px;}
.y6_c00105{bottom:57.360450px;}
.y5_c00105{bottom:78.060450px;}
.y24_c00105{bottom:175.890450px;}
.y23_c00105{bottom:207.030450px;}
.y22_c00105{bottom:238.080450px;}
.y21_c00105{bottom:269.130450px;}
.y2f_c00105{bottom:282.000450px;}
.y2e_c00105{bottom:297.480450px;}
.y20_c00105{bottom:300.180450px;}
.y2d_c00105{bottom:313.050450px;}
.y2c_c00105{bottom:328.530900px;}
.y1f_c00105{bottom:331.230450px;}
.y2a_c00105{bottom:340.860000px;}
.y2b_c00105{bottom:344.100450px;}
.y1e_c00105{bottom:374.160450px;}
.y1d_c00105{bottom:405.300450px;}
.y1c_c00105{bottom:436.350450px;}
.y1b_c00105{bottom:467.400450px;}
.y1a_c00105{bottom:498.450450px;}
.y19_c00105{bottom:529.500450px;}
.y18_c00105{bottom:560.550450px;}
.y17_c00105{bottom:603.480450px;}
.y28_c00105{bottom:609.870000px;}
.y29_c00105{bottom:613.110450px;}
.y25_c00105{bottom:625.350000px;}
.y27_c00105{bottom:628.590450px;}
.y16_c00105{bottom:634.620450px;}
.y15_c00105{bottom:665.670450px;}
.y14_c00105{bottom:696.720450px;}
.y13_c00105{bottom:727.770450px;}
.y12_c00105{bottom:758.820450px;}
.y11_c00105{bottom:801.750450px;}
.y10_c00105{bottom:832.890450px;}
.yf_c00105{bottom:863.940450px;}
.ye_c00105{bottom:894.990450px;}
.yd_c00105{bottom:926.040450px;}
.yc_c00105{bottom:957.090450px;}
.yb_c00105{bottom:988.140450px;}
.ya_c00105{bottom:1019.190450px;}
.y9_c00105{bottom:1062.120450px;}
.y8_c00105{bottom:1093.260450px;}
.y7_c00105{bottom:1124.310450px;}
.y4_c00105{bottom:1144.380657px;}
.y3_c00105{bottom:1161.660648px;}
.y2_c00105{bottom:1178.850459px;}
.y1_c00105{bottom:1196.130450px;}
.h4_c00105{height:15.300000px;}
.h5_c00105{height:47.513672px;}
.h1_c00105{height:52.898555px;}
.h2_c00105{height:63.175781px;}
.h3_c00105{height:63.351562px;}
.h0_c00105{height:1263.000000px;}
.w5_c00105{width:45.360000px;}
.w2_c00105{width:70.290000px;}
.w3_c00105{width:134.460000px;}
.w4_c00105{width:204.750000px;}
.w1_c00105{width:892.500000px;}
.w0_c00105{width:892.830000px;}
.x0_c00105{left:0.000000px;}
.x4_c00105{left:127.620000px;}
.x8_c00105{left:132.120000px;}
.xb_c00105{left:134.370000px;}
.xc_c00105{left:135.900000px;}
.x9_c00105{left:197.910000px;}
.xa_c00105{left:203.130000px;}
.x5_c00105{left:345.870000px;}
.x7_c00105{left:352.620000px;}
.x6_c00105{left:354.420000px;}
.x1_c00105{left:649.620000px;}
.x3_c00105{left:747.450000px;}
.x2_c00105{left:765.450198px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls10_c00105{letter-spacing:-0.042752pt;}
.ls13_c00105{letter-spacing:-0.025600pt;}
.ls12_c00105{letter-spacing:-0.012800pt;}
.ls16_c00105{letter-spacing:-0.009600pt;}
.ls15_c00105{letter-spacing:-0.006400pt;}
.ls11_c00105{letter-spacing:0.000000pt;}
.lsd_c00105{letter-spacing:0.004800pt;}
.ls2_c00105{letter-spacing:0.006400pt;}
.ls17_c00105{letter-spacing:0.009600pt;}
.ls3_c00105{letter-spacing:0.012800pt;}
.ls9_c00105{letter-spacing:0.019200pt;}
.lsc_c00105{letter-spacing:0.024000pt;}
.ls1_c00105{letter-spacing:0.025600pt;}
.lse_c00105{letter-spacing:0.028800pt;}
.ls8_c00105{letter-spacing:0.032000pt;}
.ls6_c00105{letter-spacing:0.038400pt;}
.lsb_c00105{letter-spacing:0.044800pt;}
.ls0_c00105{letter-spacing:0.051200pt;}
.ls4_c00105{letter-spacing:0.064000pt;}
.lsa_c00105{letter-spacing:0.070400pt;}
.ls5_c00105{letter-spacing:0.076800pt;}
.lsf_c00105{letter-spacing:0.086400pt;}
.ls7_c00105{letter-spacing:0.108800pt;}
.ls14_c00105{letter-spacing:13.760000pt;}
.ws0_c00105{word-spacing:-16.000000pt;}
.ws4_c00105{word-spacing:-12.086400pt;}
.ws2_c00105{word-spacing:-12.028800pt;}
.ws3_c00105{word-spacing:-12.024000pt;}
.ws1_c00105{word-spacing:-10.640000pt;}
.ws9_c00105{word-spacing:-1.108800pt;}
.ws6_c00105{word-spacing:0.000000pt;}
.ws5_c00105{word-spacing:0.122912pt;}
.ws7_c00105{word-spacing:2.376000pt;}
.ws8_c00105{word-spacing:2.395200pt;}
._7_c00105{margin-left:-13.977600pt;}
._8_c00105{margin-left:-12.864000pt;}
._1_c00105{margin-left:-3.891200pt;}
._0_c00105{margin-left:-2.867200pt;}
._3_c00105{margin-left:-1.126400pt;}
._9_c00105{width:1.100800pt;}
._4_c00105{width:2.112000pt;}
._2_c00105{width:3.456000pt;}
._b_c00105{width:4.556800pt;}
._11_c00105{width:6.406400pt;}
._12_c00105{width:7.603200pt;}
._d_c00105{width:9.024000pt;}
._e_c00105{width:9.996800pt;}
._f_c00105{width:11.161600pt;}
._c_c00105{width:12.710400pt;}
._6_c00105{width:13.734400pt;}
._a_c00105{width:14.656000pt;}
._10_c00105{width:17.049600pt;}
._13_c00105{width:17.945600pt;}
._5_c00105{width:26.233600pt;}
.fs2_c00105{font-size:42.560000pt;}
.fs3_c00105{font-size:48.000000pt;}
.fs0_c00105{font-size:53.440000pt;}
.fs1_c00105{font-size:64.000000pt;}
.y0_c00105{bottom:0.000000pt;}
.y26_c00105{bottom:2.880400pt;}
.y6_c00105{bottom:50.987067pt;}
.y5_c00105{bottom:69.387067pt;}
.y24_c00105{bottom:156.347067pt;}
.y23_c00105{bottom:184.027067pt;}
.y22_c00105{bottom:211.627067pt;}
.y21_c00105{bottom:239.227067pt;}
.y2f_c00105{bottom:250.667067pt;}
.y2e_c00105{bottom:264.427067pt;}
.y20_c00105{bottom:266.827067pt;}
.y2d_c00105{bottom:278.267067pt;}
.y2c_c00105{bottom:292.027467pt;}
.y1f_c00105{bottom:294.427067pt;}
.y2a_c00105{bottom:302.986667pt;}
.y2b_c00105{bottom:305.867067pt;}
.y1e_c00105{bottom:332.587067pt;}
.y1d_c00105{bottom:360.267067pt;}
.y1c_c00105{bottom:387.867067pt;}
.y1b_c00105{bottom:415.467067pt;}
.y1a_c00105{bottom:443.067067pt;}
.y19_c00105{bottom:470.667067pt;}
.y18_c00105{bottom:498.267067pt;}
.y17_c00105{bottom:536.427067pt;}
.y28_c00105{bottom:542.106667pt;}
.y29_c00105{bottom:544.987067pt;}
.y25_c00105{bottom:555.866667pt;}
.y27_c00105{bottom:558.747067pt;}
.y16_c00105{bottom:564.107067pt;}
.y15_c00105{bottom:591.707067pt;}
.y14_c00105{bottom:619.307067pt;}
.y13_c00105{bottom:646.907067pt;}
.y12_c00105{bottom:674.507067pt;}
.y11_c00105{bottom:712.667067pt;}
.y10_c00105{bottom:740.347067pt;}
.yf_c00105{bottom:767.947067pt;}
.ye_c00105{bottom:795.547067pt;}
.yd_c00105{bottom:823.147067pt;}
.yc_c00105{bottom:850.747067pt;}
.yb_c00105{bottom:878.347067pt;}
.ya_c00105{bottom:905.947067pt;}
.y9_c00105{bottom:944.107067pt;}
.y8_c00105{bottom:971.787067pt;}
.y7_c00105{bottom:999.387067pt;}
.y4_c00105{bottom:1017.227251pt;}
.y3_c00105{bottom:1032.587243pt;}
.y2_c00105{bottom:1047.867075pt;}
.y1_c00105{bottom:1063.227067pt;}
.h4_c00105{height:13.600000pt;}
.h5_c00105{height:42.234375pt;}
.h1_c00105{height:47.020937pt;}
.h2_c00105{height:56.156250pt;}
.h3_c00105{height:56.312500pt;}
.h0_c00105{height:1122.666667pt;}
.w5_c00105{width:40.320000pt;}
.w2_c00105{width:62.480000pt;}
.w3_c00105{width:119.520000pt;}
.w4_c00105{width:182.000000pt;}
.w1_c00105{width:793.333333pt;}
.w0_c00105{width:793.626667pt;}
.x0_c00105{left:0.000000pt;}
.x4_c00105{left:113.440000pt;}
.x8_c00105{left:117.440000pt;}
.xb_c00105{left:119.440000pt;}
.xc_c00105{left:120.800000pt;}
.x9_c00105{left:175.920000pt;}
.xa_c00105{left:180.560000pt;}
.x5_c00105{left:307.440000pt;}
.x7_c00105{left:313.440000pt;}
.x6_c00105{left:315.040000pt;}
.x1_c00105{left:577.440000pt;}
.x3_c00105{left:664.400000pt;}
.x2_c00105{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.095703;font-style:normal;font-weight:normal;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_c799fb4792329551e0544856.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00106{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls10_c00106{letter-spacing:-3.960000px;}
.lsd_c00106{letter-spacing:-0.102204px;}
.ls13_c00106{letter-spacing:-0.021600px;}
.lsf_c00106{letter-spacing:-0.014400px;}
.ls11_c00106{letter-spacing:-0.007200px;}
.lse_c00106{letter-spacing:0.000000px;}
.ls6_c00106{letter-spacing:0.007200px;}
.ls3_c00106{letter-spacing:0.014400px;}
.ls7_c00106{letter-spacing:0.021600px;}
.ls4_c00106{letter-spacing:0.028800px;}
.ls2_c00106{letter-spacing:0.036000px;}
.ls8_c00106{letter-spacing:0.043200px;}
.lsb_c00106{letter-spacing:0.050400px;}
.ls0_c00106{letter-spacing:0.057600px;}
.lsc_c00106{letter-spacing:0.064800px;}
.ls1_c00106{letter-spacing:0.072000px;}
.ls5_c00106{letter-spacing:0.079200px;}
.ls9_c00106{letter-spacing:0.086400px;}
.lsa_c00106{letter-spacing:0.136800px;}
.ls12_c00106{letter-spacing:1.080000px;}
.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:0.000000px;}
.ws0_c00106{word-spacing:0.192384px;}
._4_c00106{margin-left:-5.241600px;}
._3_c00106{margin-left:-3.996000px;}
._8_c00106{margin-left:-2.577600px;}
._1_c00106{margin-left:-1.238400px;}
._0_c00106{width:1.034064px;}
._6_c00106{width:2.844000px;}
._5_c00106{width:4.089600px;}
._2_c00106{width:5.724000px;}
._7_c00106{width:7.221600px;}
._b_c00106{width:10.771200px;}
._9_c00106{width:20.232000px;}
._a_c00106{width:21.240000px;}
.fc1_c00106{color:rgb(0,0,0);}
.fc0_c00106{color:rgb(32,31,30);}
.fs0_c00106{font-size:60.120000px;}
.fs1_c00106{font-size:72.000000px;}
.y0_c00106{bottom:0.000000px;}
.y5_c00106{bottom:57.360450px;}
.y4_c00106{bottom:78.060450px;}
.y24_c00106{bottom:155.910450px;}
.y23_c00106{bottom:187.050450px;}
.y22_c00106{bottom:218.100450px;}
.y21_c00106{bottom:249.150450px;}
.y20_c00106{bottom:280.200450px;}
.y1f_c00106{bottom:311.250450px;}
.y1e_c00106{bottom:342.300450px;}
.y1d_c00106{bottom:373.350450px;}
.y1c_c00106{bottom:404.400450px;}
.y1b_c00106{bottom:435.450450px;}
.y1a_c00106{bottom:466.500450px;}
.y19_c00106{bottom:497.550450px;}
.y18_c00106{bottom:528.600450px;}
.y17_c00106{bottom:559.650450px;}
.y16_c00106{bottom:590.700450px;}
.y15_c00106{bottom:621.660450px;}
.y14_c00106{bottom:652.710450px;}
.y13_c00106{bottom:683.760450px;}
.y12_c00106{bottom:714.810450px;}
.y11_c00106{bottom:745.860450px;}
.y10_c00106{bottom:788.880450px;}
.yf_c00106{bottom:820.020450px;}
.ye_c00106{bottom:851.070450px;}
.yd_c00106{bottom:882.120450px;}
.yc_c00106{bottom:913.170450px;}
.yb_c00106{bottom:944.220450px;}
.ya_c00106{bottom:975.180450px;}
.y9_c00106{bottom:1018.200450px;}
.y8_c00106{bottom:1049.340450px;}
.y7_c00106{bottom:1080.390450px;}
.y6_c00106{bottom:1111.440450px;}
.y3_c00106{bottom:1132.140450px;}
.y2_c00106{bottom:1165.441023px;}
.y1_c00106{bottom:1196.040600px;}
.h1_c00106{height:52.898555px;}
.h2_c00106{height:63.175781px;}
.h0_c00106{height:1263.000000px;}
.w1_c00106{width:892.500000px;}
.w0_c00106{width:892.830000px;}
.x0_c00106{left:0.000000px;}
.x1_c00106{left:127.620000px;}
.x2_c00106{left:747.450000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls10_c00106{letter-spacing:-3.520000pt;}
.lsd_c00106{letter-spacing:-0.090848pt;}
.ls13_c00106{letter-spacing:-0.019200pt;}
.lsf_c00106{letter-spacing:-0.012800pt;}
.ls11_c00106{letter-spacing:-0.006400pt;}
.lse_c00106{letter-spacing:0.000000pt;}
.ls6_c00106{letter-spacing:0.006400pt;}
.ls3_c00106{letter-spacing:0.012800pt;}
.ls7_c00106{letter-spacing:0.019200pt;}
.ls4_c00106{letter-spacing:0.025600pt;}
.ls2_c00106{letter-spacing:0.032000pt;}
.ls8_c00106{letter-spacing:0.038400pt;}
.lsb_c00106{letter-spacing:0.044800pt;}
.ls0_c00106{letter-spacing:0.051200pt;}
.lsc_c00106{letter-spacing:0.057600pt;}
.ls1_c00106{letter-spacing:0.064000pt;}
.ls5_c00106{letter-spacing:0.070400pt;}
.ls9_c00106{letter-spacing:0.076800pt;}
.lsa_c00106{letter-spacing:0.121600pt;}
.ls12_c00106{letter-spacing:0.960000pt;}
.ws1_c00106{word-spacing:0.000000pt;}
.ws0_c00106{word-spacing:0.171008pt;}
._4_c00106{margin-left:-4.659200pt;}
._3_c00106{margin-left:-3.552000pt;}
._8_c00106{margin-left:-2.291200pt;}
._1_c00106{margin-left:-1.100800pt;}
._0_c00106{width:0.919168pt;}
._6_c00106{width:2.528000pt;}
._5_c00106{width:3.635200pt;}
._2_c00106{width:5.088000pt;}
._7_c00106{width:6.419200pt;}
._b_c00106{width:9.574400pt;}
._9_c00106{width:17.984000pt;}
._a_c00106{width:18.880000pt;}
.fs0_c00106{font-size:53.440000pt;}
.fs1_c00106{font-size:64.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.y5_c00106{bottom:50.987067pt;}
.y4_c00106{bottom:69.387067pt;}
.y24_c00106{bottom:138.587067pt;}
.y23_c00106{bottom:166.267067pt;}
.y22_c00106{bottom:193.867067pt;}
.y21_c00106{bottom:221.467067pt;}
.y20_c00106{bottom:249.067067pt;}
.y1f_c00106{bottom:276.667067pt;}
.y1e_c00106{bottom:304.267067pt;}
.y1d_c00106{bottom:331.867067pt;}
.y1c_c00106{bottom:359.467067pt;}
.y1b_c00106{bottom:387.067067pt;}
.y1a_c00106{bottom:414.667067pt;}
.y19_c00106{bottom:442.267067pt;}
.y18_c00106{bottom:469.867067pt;}
.y17_c00106{bottom:497.467067pt;}
.y16_c00106{bottom:525.067067pt;}
.y15_c00106{bottom:552.587067pt;}
.y14_c00106{bottom:580.187067pt;}
.y13_c00106{bottom:607.787067pt;}
.y12_c00106{bottom:635.387067pt;}
.y11_c00106{bottom:662.987067pt;}
.y10_c00106{bottom:701.227067pt;}
.yf_c00106{bottom:728.907067pt;}
.ye_c00106{bottom:756.507067pt;}
.yd_c00106{bottom:784.107067pt;}
.yc_c00106{bottom:811.707067pt;}
.yb_c00106{bottom:839.307067pt;}
.ya_c00106{bottom:866.827067pt;}
.y9_c00106{bottom:905.067067pt;}
.y8_c00106{bottom:932.747067pt;}
.y7_c00106{bottom:960.347067pt;}
.y6_c00106{bottom:987.947067pt;}
.y3_c00106{bottom:1006.347067pt;}
.y2_c00106{bottom:1035.947576pt;}
.y1_c00106{bottom:1063.147200pt;}
.h1_c00106{height:47.020937pt;}
.h2_c00106{height:56.156250pt;}
.h0_c00106{height:1122.666667pt;}
.w1_c00106{width:793.333333pt;}
.w0_c00106{width:793.626667pt;}
.x0_c00106{left:0.000000pt;}
.x1_c00106{left:113.440000pt;}
.x2_c00106{left:664.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_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_12ee4ba89b1185b27b666b13.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.095703;font-style:normal;font-weight:normal;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_8a5da35b83937aa6fa0d4aa5.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00107{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00107{vertical-align:0.000000px;}
.ls15_c00107{letter-spacing:-0.064800px;}
.lse_c00107{letter-spacing:-0.048096px;}
.ls13_c00107{letter-spacing:-0.043200px;}
.ls12_c00107{letter-spacing:-0.028800px;}
.ls14_c00107{letter-spacing:-0.014400px;}
.ls10_c00107{letter-spacing:-0.007200px;}
.lsf_c00107{letter-spacing:0.000000px;}
.ls6_c00107{letter-spacing:0.007200px;}
.ls3_c00107{letter-spacing:0.014400px;}
.ls7_c00107{letter-spacing:0.021600px;}
.ls4_c00107{letter-spacing:0.028800px;}
.ls8_c00107{letter-spacing:0.036000px;}
.ls1_c00107{letter-spacing:0.043200px;}
.ls5_c00107{letter-spacing:0.050400px;}
.ls9_c00107{letter-spacing:0.057600px;}
.lsd_c00107{letter-spacing:0.064800px;}
.ls2_c00107{letter-spacing:0.072000px;}
.ls0_c00107{letter-spacing:0.079200px;}
.lsb_c00107{letter-spacing:0.100800px;}
.lsa_c00107{letter-spacing:0.108000px;}
.lsc_c00107{letter-spacing:0.151200px;}
.ls11_c00107{letter-spacing:0.720000px;}
.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:-18.028800px;}
.ws8_c00107{word-spacing:-2.534400px;}
.wsb_c00107{word-spacing:-2.188800px;}
.wsc_c00107{word-spacing:-0.036000px;}
.ws7_c00107{word-spacing:-0.007200px;}
.ws2_c00107{word-spacing:0.000000px;}
.ws1_c00107{word-spacing:0.138276px;}
.ws6_c00107{word-spacing:3.952800px;}
.ws5_c00107{word-spacing:3.974400px;}
.ws9_c00107{word-spacing:4.305600px;}
.wsa_c00107{word-spacing:4.320000px;}
.ws4_c00107{word-spacing:12.880800px;}
.ws3_c00107{word-spacing:12.967200px;}
._c_c00107{margin-left:-3.463200px;}
._6_c00107{margin-left:-2.448000px;}
._0_c00107{margin-left:-1.346400px;}
._4_c00107{width:1.641600px;}
._2_c00107{width:2.829600px;}
._1_c00107{width:3.880800px;}
._5_c00107{width:5.227200px;}
._a_c00107{width:8.640000px;}
._b_c00107{width:9.748800px;}
._8_c00107{width:12.916800px;}
._3_c00107{width:14.385600px;}
._7_c00107{width:16.588800px;}
._9_c00107{width:29.836800px;}
.fc1_c00107{color:rgb(255,0,0);}
.fc0_c00107{color:rgb(0,0,0);}
.fs0_c00107{font-size:60.120000px;}
.fs1_c00107{font-size:72.000000px;}
.y0_c00107{bottom:0.000000px;}
.y6_c00107{bottom:57.360450px;}
.y5_c00107{bottom:78.060450px;}
.y25_c00107{bottom:168.870450px;}
.y24_c00107{bottom:199.920450px;}
.y23_c00107{bottom:230.970450px;}
.y22_c00107{bottom:262.110450px;}
.y21_c00107{bottom:293.070450px;}
.y20_c00107{bottom:324.120450px;}
.y1f_c00107{bottom:355.170450px;}
.y1e_c00107{bottom:386.220450px;}
.y1d_c00107{bottom:417.270450px;}
.y1c_c00107{bottom:460.290450px;}
.y1b_c00107{bottom:491.340450px;}
.y1a_c00107{bottom:522.390450px;}
.y19_c00107{bottom:553.530450px;}
.y18_c00107{bottom:584.580450px;}
.y17_c00107{bottom:615.630450px;}
.y16_c00107{bottom:646.680450px;}
.y15_c00107{bottom:677.640450px;}
.y14_c00107{bottom:708.690450px;}
.y13_c00107{bottom:751.710450px;}
.y12_c00107{bottom:782.850450px;}
.y11_c00107{bottom:813.900450px;}
.y10_c00107{bottom:844.950450px;}
.yf_c00107{bottom:876.000450px;}
.ye_c00107{bottom:907.050450px;}
.yd_c00107{bottom:938.100450px;}
.yc_c00107{bottom:969.150450px;}
.yb_c00107{bottom:1000.200450px;}
.ya_c00107{bottom:1031.160450px;}
.y9_c00107{bottom:1062.210450px;}
.y8_c00107{bottom:1093.260450px;}
.y7_c00107{bottom:1124.310450px;}
.y4_c00107{bottom:1144.380657px;}
.y3_c00107{bottom:1161.660648px;}
.y2_c00107{bottom:1178.850459px;}
.y1_c00107{bottom:1196.130450px;}
.h1_c00107{height:52.898555px;}
.h2_c00107{height:63.175781px;}
.h3_c00107{height:63.351562px;}
.h0_c00107{height:1263.000000px;}
.w1_c00107{width:892.500000px;}
.w0_c00107{width:892.830000px;}
.x0_c00107{left:0.000000px;}
.x4_c00107{left:127.620000px;}
.x1_c00107{left:649.620000px;}
.x3_c00107{left:747.450000px;}
.x2_c00107{left:765.450198px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls15_c00107{letter-spacing:-0.057600pt;}
.lse_c00107{letter-spacing:-0.042752pt;}
.ls13_c00107{letter-spacing:-0.038400pt;}
.ls12_c00107{letter-spacing:-0.025600pt;}
.ls14_c00107{letter-spacing:-0.012800pt;}
.ls10_c00107{letter-spacing:-0.006400pt;}
.lsf_c00107{letter-spacing:0.000000pt;}
.ls6_c00107{letter-spacing:0.006400pt;}
.ls3_c00107{letter-spacing:0.012800pt;}
.ls7_c00107{letter-spacing:0.019200pt;}
.ls4_c00107{letter-spacing:0.025600pt;}
.ls8_c00107{letter-spacing:0.032000pt;}
.ls1_c00107{letter-spacing:0.038400pt;}
.ls5_c00107{letter-spacing:0.044800pt;}
.ls9_c00107{letter-spacing:0.051200pt;}
.lsd_c00107{letter-spacing:0.057600pt;}
.ls2_c00107{letter-spacing:0.064000pt;}
.ls0_c00107{letter-spacing:0.070400pt;}
.lsb_c00107{letter-spacing:0.089600pt;}
.lsa_c00107{letter-spacing:0.096000pt;}
.lsc_c00107{letter-spacing:0.134400pt;}
.ls11_c00107{letter-spacing:0.640000pt;}
.ws0_c00107{word-spacing:-16.025600pt;}
.ws8_c00107{word-spacing:-2.252800pt;}
.wsb_c00107{word-spacing:-1.945600pt;}
.wsc_c00107{word-spacing:-0.032000pt;}
.ws7_c00107{word-spacing:-0.006400pt;}
.ws2_c00107{word-spacing:0.000000pt;}
.ws1_c00107{word-spacing:0.122912pt;}
.ws6_c00107{word-spacing:3.513600pt;}
.ws5_c00107{word-spacing:3.532800pt;}
.ws9_c00107{word-spacing:3.827200pt;}
.wsa_c00107{word-spacing:3.840000pt;}
.ws4_c00107{word-spacing:11.449600pt;}
.ws3_c00107{word-spacing:11.526400pt;}
._c_c00107{margin-left:-3.078400pt;}
._6_c00107{margin-left:-2.176000pt;}
._0_c00107{margin-left:-1.196800pt;}
._4_c00107{width:1.459200pt;}
._2_c00107{width:2.515200pt;}
._1_c00107{width:3.449600pt;}
._5_c00107{width:4.646400pt;}
._a_c00107{width:7.680000pt;}
._b_c00107{width:8.665600pt;}
._8_c00107{width:11.481600pt;}
._3_c00107{width:12.787200pt;}
._7_c00107{width:14.745600pt;}
._9_c00107{width:26.521600pt;}
.fs0_c00107{font-size:53.440000pt;}
.fs1_c00107{font-size:64.000000pt;}
.y0_c00107{bottom:0.000000pt;}
.y6_c00107{bottom:50.987067pt;}
.y5_c00107{bottom:69.387067pt;}
.y25_c00107{bottom:150.107067pt;}
.y24_c00107{bottom:177.707067pt;}
.y23_c00107{bottom:205.307067pt;}
.y22_c00107{bottom:232.987067pt;}
.y21_c00107{bottom:260.507067pt;}
.y20_c00107{bottom:288.107067pt;}
.y1f_c00107{bottom:315.707067pt;}
.y1e_c00107{bottom:343.307067pt;}
.y1d_c00107{bottom:370.907067pt;}
.y1c_c00107{bottom:409.147067pt;}
.y1b_c00107{bottom:436.747067pt;}
.y1a_c00107{bottom:464.347067pt;}
.y19_c00107{bottom:492.027067pt;}
.y18_c00107{bottom:519.627067pt;}
.y17_c00107{bottom:547.227067pt;}
.y16_c00107{bottom:574.827067pt;}
.y15_c00107{bottom:602.347067pt;}
.y14_c00107{bottom:629.947067pt;}
.y13_c00107{bottom:668.187067pt;}
.y12_c00107{bottom:695.867067pt;}
.y11_c00107{bottom:723.467067pt;}
.y10_c00107{bottom:751.067067pt;}
.yf_c00107{bottom:778.667067pt;}
.ye_c00107{bottom:806.267067pt;}
.yd_c00107{bottom:833.867067pt;}
.yc_c00107{bottom:861.467067pt;}
.yb_c00107{bottom:889.067067pt;}
.ya_c00107{bottom:916.587067pt;}
.y9_c00107{bottom:944.187067pt;}
.y8_c00107{bottom:971.787067pt;}
.y7_c00107{bottom:999.387067pt;}
.y4_c00107{bottom:1017.227251pt;}
.y3_c00107{bottom:1032.587243pt;}
.y2_c00107{bottom:1047.867075pt;}
.y1_c00107{bottom:1063.227067pt;}
.h1_c00107{height:47.020937pt;}
.h2_c00107{height:56.156250pt;}
.h3_c00107{height:56.312500pt;}
.h0_c00107{height:1122.666667pt;}
.w1_c00107{width:793.333333pt;}
.w0_c00107{width:793.626667pt;}
.x0_c00107{left:0.000000pt;}
.x4_c00107{left:113.440000pt;}
.x1_c00107{left:577.440000pt;}
.x3_c00107{left:664.400000pt;}
.x2_c00107{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.095703;font-style:normal;font-weight:normal;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_919921d7468528471a7a898c.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.lsd_c00108{letter-spacing:-0.102204px;}
.ls11_c00108{letter-spacing:-0.050400px;}
.ls12_c00108{letter-spacing:-0.036000px;}
.lsf_c00108{letter-spacing:-0.021600px;}
.ls10_c00108{letter-spacing:-0.014400px;}
.lse_c00108{letter-spacing:0.000000px;}
.ls2_c00108{letter-spacing:0.007200px;}
.ls6_c00108{letter-spacing:0.014400px;}
.ls1_c00108{letter-spacing:0.021600px;}
.ls5_c00108{letter-spacing:0.028800px;}
.ls0_c00108{letter-spacing:0.036000px;}
.ls3_c00108{letter-spacing:0.043200px;}
.ls7_c00108{letter-spacing:0.050400px;}
.ls8_c00108{letter-spacing:0.057600px;}
.ls4_c00108{letter-spacing:0.064800px;}
.lsb_c00108{letter-spacing:0.072000px;}
.ls9_c00108{letter-spacing:0.079200px;}
.lsa_c00108{letter-spacing:0.100800px;}
.lsc_c00108{letter-spacing:0.108000px;}
.ls13_c00108{letter-spacing:2.160000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00108{word-spacing:0.000000px;}
.ws0_c00108{word-spacing:0.192384px;}
._7_c00108{margin-left:-2.217600px;}
._3_c00108{margin-left:-1.209600px;}
._0_c00108{width:1.034064px;}
._1_c00108{width:2.590272px;}
._6_c00108{width:4.320000px;}
._2_c00108{width:5.356800px;}
._4_c00108{width:6.429600px;}
._5_c00108{width:7.812000px;}
._a_c00108{width:9.045936px;}
._b_c00108{width:10.293264px;}
._c_c00108{width:13.672800px;}
._9_c00108{width:15.530400px;}
._8_c00108{width:16.855200px;}
.fc1_c00108{color:rgb(0,0,0);}
.fc0_c00108{color:rgb(32,31,30);}
.fs0_c00108{font-size:60.120000px;}
.fs1_c00108{font-size:72.000000px;}
.y0_c00108{bottom:0.000000px;}
.y5_c00108{bottom:57.360450px;}
.y4_c00108{bottom:78.060450px;}
.y24_c00108{bottom:143.940450px;}
.y23_c00108{bottom:175.080450px;}
.y22_c00108{bottom:206.130450px;}
.y21_c00108{bottom:237.090450px;}
.y20_c00108{bottom:268.140450px;}
.y1f_c00108{bottom:299.190450px;}
.y1e_c00108{bottom:342.210450px;}
.y1d_c00108{bottom:373.350450px;}
.y1c_c00108{bottom:404.400450px;}
.y1b_c00108{bottom:435.450450px;}
.y1a_c00108{bottom:466.500450px;}
.y19_c00108{bottom:497.550450px;}
.y18_c00108{bottom:528.600450px;}
.y17_c00108{bottom:559.650450px;}
.y16_c00108{bottom:602.580450px;}
.y15_c00108{bottom:633.720450px;}
.y14_c00108{bottom:664.770450px;}
.y13_c00108{bottom:695.820450px;}
.y12_c00108{bottom:726.870450px;}
.y11_c00108{bottom:757.920450px;}
.y10_c00108{bottom:788.970450px;}
.yf_c00108{bottom:820.020450px;}
.ye_c00108{bottom:851.070450px;}
.yd_c00108{bottom:882.120450px;}
.yc_c00108{bottom:913.170450px;}
.yb_c00108{bottom:944.220450px;}
.ya_c00108{bottom:987.150450px;}
.y9_c00108{bottom:1018.290450px;}
.y8_c00108{bottom:1049.340450px;}
.y7_c00108{bottom:1080.390450px;}
.y6_c00108{bottom:1111.440450px;}
.y3_c00108{bottom:1132.140450px;}
.y2_c00108{bottom:1165.441023px;}
.y1_c00108{bottom:1196.040600px;}
.h1_c00108{height:52.898555px;}
.h2_c00108{height:63.175781px;}
.h0_c00108{height:1263.000000px;}
.w1_c00108{width:892.500000px;}
.w0_c00108{width:892.830000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:127.620000px;}
.x2_c00108{left:747.450000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.lsd_c00108{letter-spacing:-0.090848pt;}
.ls11_c00108{letter-spacing:-0.044800pt;}
.ls12_c00108{letter-spacing:-0.032000pt;}
.lsf_c00108{letter-spacing:-0.019200pt;}
.ls10_c00108{letter-spacing:-0.012800pt;}
.lse_c00108{letter-spacing:0.000000pt;}
.ls2_c00108{letter-spacing:0.006400pt;}
.ls6_c00108{letter-spacing:0.012800pt;}
.ls1_c00108{letter-spacing:0.019200pt;}
.ls5_c00108{letter-spacing:0.025600pt;}
.ls0_c00108{letter-spacing:0.032000pt;}
.ls3_c00108{letter-spacing:0.038400pt;}
.ls7_c00108{letter-spacing:0.044800pt;}
.ls8_c00108{letter-spacing:0.051200pt;}
.ls4_c00108{letter-spacing:0.057600pt;}
.lsb_c00108{letter-spacing:0.064000pt;}
.ls9_c00108{letter-spacing:0.070400pt;}
.lsa_c00108{letter-spacing:0.089600pt;}
.lsc_c00108{letter-spacing:0.096000pt;}
.ls13_c00108{letter-spacing:1.920000pt;}
.ws1_c00108{word-spacing:0.000000pt;}
.ws0_c00108{word-spacing:0.171008pt;}
._7_c00108{margin-left:-1.971200pt;}
._3_c00108{margin-left:-1.075200pt;}
._0_c00108{width:0.919168pt;}
._1_c00108{width:2.302464pt;}
._6_c00108{width:3.840000pt;}
._2_c00108{width:4.761600pt;}
._4_c00108{width:5.715200pt;}
._5_c00108{width:6.944000pt;}
._a_c00108{width:8.040832pt;}
._b_c00108{width:9.149568pt;}
._c_c00108{width:12.153600pt;}
._9_c00108{width:13.804800pt;}
._8_c00108{width:14.982400pt;}
.fs0_c00108{font-size:53.440000pt;}
.fs1_c00108{font-size:64.000000pt;}
.y0_c00108{bottom:0.000000pt;}
.y5_c00108{bottom:50.987067pt;}
.y4_c00108{bottom:69.387067pt;}
.y24_c00108{bottom:127.947067pt;}
.y23_c00108{bottom:155.627067pt;}
.y22_c00108{bottom:183.227067pt;}
.y21_c00108{bottom:210.747067pt;}
.y20_c00108{bottom:238.347067pt;}
.y1f_c00108{bottom:265.947067pt;}
.y1e_c00108{bottom:304.187067pt;}
.y1d_c00108{bottom:331.867067pt;}
.y1c_c00108{bottom:359.467067pt;}
.y1b_c00108{bottom:387.067067pt;}
.y1a_c00108{bottom:414.667067pt;}
.y19_c00108{bottom:442.267067pt;}
.y18_c00108{bottom:469.867067pt;}
.y17_c00108{bottom:497.467067pt;}
.y16_c00108{bottom:535.627067pt;}
.y15_c00108{bottom:563.307067pt;}
.y14_c00108{bottom:590.907067pt;}
.y13_c00108{bottom:618.507067pt;}
.y12_c00108{bottom:646.107067pt;}
.y11_c00108{bottom:673.707067pt;}
.y10_c00108{bottom:701.307067pt;}
.yf_c00108{bottom:728.907067pt;}
.ye_c00108{bottom:756.507067pt;}
.yd_c00108{bottom:784.107067pt;}
.yc_c00108{bottom:811.707067pt;}
.yb_c00108{bottom:839.307067pt;}
.ya_c00108{bottom:877.467067pt;}
.y9_c00108{bottom:905.147067pt;}
.y8_c00108{bottom:932.747067pt;}
.y7_c00108{bottom:960.347067pt;}
.y6_c00108{bottom:987.947067pt;}
.y3_c00108{bottom:1006.347067pt;}
.y2_c00108{bottom:1035.947576pt;}
.y1_c00108{bottom:1063.147200pt;}
.h1_c00108{height:47.020937pt;}
.h2_c00108{height:56.156250pt;}
.h0_c00108{height:1122.666667pt;}
.w1_c00108{width:793.333333pt;}
.w0_c00108{width:793.626667pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:113.440000pt;}
.x2_c00108{left:664.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_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_856e824d40b8a5ccf38e90a9.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.095703;font-style:normal;font-weight:normal;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_59b57a47ab017a4db606a5e5.woff2')format("woff");}.ff2_c00109{font-family:ff2_c00109;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00109{font-family:ff3_c00109;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00109{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls17_c00109{letter-spacing:-0.360000px;}
.ls15_c00109{letter-spacing:-0.194400px;}
.ls12_c00109{letter-spacing:-0.093600px;}
.ls18_c00109{letter-spacing:-0.079200px;}
.lse_c00109{letter-spacing:-0.064800px;}
.lsc_c00109{letter-spacing:-0.048096px;}
.ls13_c00109{letter-spacing:-0.043200px;}
.ls14_c00109{letter-spacing:-0.036000px;}
.ls10_c00109{letter-spacing:-0.028800px;}
.ls16_c00109{letter-spacing:-0.021600px;}
.ls11_c00109{letter-spacing:-0.014400px;}
.lsf_c00109{letter-spacing:-0.007200px;}
.lsd_c00109{letter-spacing:0.000000px;}
.ls0_c00109{letter-spacing:0.007200px;}
.ls3_c00109{letter-spacing:0.014400px;}
.ls2_c00109{letter-spacing:0.021600px;}
.ls5_c00109{letter-spacing:0.028800px;}
.ls4_c00109{letter-spacing:0.036000px;}
.ls6_c00109{letter-spacing:0.043200px;}
.ls8_c00109{letter-spacing:0.050400px;}
.lsa_c00109{letter-spacing:0.057600px;}
.ls1_c00109{letter-spacing:0.064800px;}
.ls7_c00109{letter-spacing:0.072000px;}
.lsb_c00109{letter-spacing:0.086400px;}
.ls9_c00109{letter-spacing:0.108000px;}
.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;}
}
.ws3_c00109{word-spacing:-0.410400px;}
.ws2_c00109{word-spacing:-0.295200px;}
.ws1_c00109{word-spacing:0.000000px;}
.ws0_c00109{word-spacing:0.138276px;}
.ws7_c00109{word-spacing:9.144000px;}
.ws6_c00109{word-spacing:14.968800px;}
.ws4_c00109{word-spacing:15.091200px;}
.ws5_c00109{word-spacing:15.141600px;}
._4_c00109{margin-left:-5.133600px;}
._3_c00109{margin-left:-3.988800px;}
._5_c00109{margin-left:-2.246400px;}
._0_c00109{margin-left:-1.245600px;}
._1_c00109{width:1.008000px;}
._7_c00109{width:2.736000px;}
._2_c00109{width:4.298400px;}
._6_c00109{width:6.091200px;}
._e_c00109{width:9.396000px;}
._b_c00109{width:10.584000px;}
._a_c00109{width:11.865600px;}
._9_c00109{width:14.673600px;}
._8_c00109{width:15.825600px;}
._c_c00109{width:26.035200px;}
._d_c00109{width:27.129600px;}
.fc0_c00109{color:rgb(0,0,0);}
.fs0_c00109{font-size:60.120000px;}
.fs1_c00109{font-size:72.000000px;}
.y0_c00109{bottom:0.000000px;}
.y6_c00109{bottom:57.360450px;}
.y5_c00109{bottom:78.060450px;}
.y26_c00109{bottom:113.880450px;}
.y25_c00109{bottom:144.930450px;}
.y24_c00109{bottom:175.980450px;}
.y23_c00109{bottom:218.910450px;}
.y22_c00109{bottom:250.050450px;}
.y21_c00109{bottom:281.100450px;}
.y20_c00109{bottom:312.150450px;}
.y1f_c00109{bottom:343.200450px;}
.y1e_c00109{bottom:374.250450px;}
.y1d_c00109{bottom:405.300450px;}
.y1c_c00109{bottom:448.230450px;}
.y1b_c00109{bottom:479.370450px;}
.y1a_c00109{bottom:510.420450px;}
.y19_c00109{bottom:541.470450px;}
.y18_c00109{bottom:572.520450px;}
.y17_c00109{bottom:603.570450px;}
.y16_c00109{bottom:634.620450px;}
.y15_c00109{bottom:665.670450px;}
.y14_c00109{bottom:696.720450px;}
.y13_c00109{bottom:739.650450px;}
.y12_c00109{bottom:770.790450px;}
.y11_c00109{bottom:801.840450px;}
.y10_c00109{bottom:832.890450px;}
.yf_c00109{bottom:863.940450px;}
.ye_c00109{bottom:894.990450px;}
.yd_c00109{bottom:926.040450px;}
.yc_c00109{bottom:957.090450px;}
.yb_c00109{bottom:988.140450px;}
.ya_c00109{bottom:1031.070450px;}
.y9_c00109{bottom:1062.210450px;}
.y8_c00109{bottom:1093.260450px;}
.y7_c00109{bottom:1124.310450px;}
.y4_c00109{bottom:1144.380657px;}
.y3_c00109{bottom:1161.660648px;}
.y2_c00109{bottom:1178.850459px;}
.y1_c00109{bottom:1196.130450px;}
.h1_c00109{height:52.898555px;}
.h2_c00109{height:63.175781px;}
.h4_c00109{height:63.351562px;}
.h3_c00109{height:63.949219px;}
.h0_c00109{height:1263.000000px;}
.w1_c00109{width:892.500000px;}
.w0_c00109{width:892.830000px;}
.x0_c00109{left:0.000000px;}
.x4_c00109{left:127.620000px;}
.x1_c00109{left:649.620000px;}
.x3_c00109{left:738.450000px;}
.x2_c00109{left:765.450198px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls17_c00109{letter-spacing:-0.320000pt;}
.ls15_c00109{letter-spacing:-0.172800pt;}
.ls12_c00109{letter-spacing:-0.083200pt;}
.ls18_c00109{letter-spacing:-0.070400pt;}
.lse_c00109{letter-spacing:-0.057600pt;}
.lsc_c00109{letter-spacing:-0.042752pt;}
.ls13_c00109{letter-spacing:-0.038400pt;}
.ls14_c00109{letter-spacing:-0.032000pt;}
.ls10_c00109{letter-spacing:-0.025600pt;}
.ls16_c00109{letter-spacing:-0.019200pt;}
.ls11_c00109{letter-spacing:-0.012800pt;}
.lsf_c00109{letter-spacing:-0.006400pt;}
.lsd_c00109{letter-spacing:0.000000pt;}
.ls0_c00109{letter-spacing:0.006400pt;}
.ls3_c00109{letter-spacing:0.012800pt;}
.ls2_c00109{letter-spacing:0.019200pt;}
.ls5_c00109{letter-spacing:0.025600pt;}
.ls4_c00109{letter-spacing:0.032000pt;}
.ls6_c00109{letter-spacing:0.038400pt;}
.ls8_c00109{letter-spacing:0.044800pt;}
.lsa_c00109{letter-spacing:0.051200pt;}
.ls1_c00109{letter-spacing:0.057600pt;}
.ls7_c00109{letter-spacing:0.064000pt;}
.lsb_c00109{letter-spacing:0.076800pt;}
.ls9_c00109{letter-spacing:0.096000pt;}
.ws3_c00109{word-spacing:-0.364800pt;}
.ws2_c00109{word-spacing:-0.262400pt;}
.ws1_c00109{word-spacing:0.000000pt;}
.ws0_c00109{word-spacing:0.122912pt;}
.ws7_c00109{word-spacing:8.128000pt;}
.ws6_c00109{word-spacing:13.305600pt;}
.ws4_c00109{word-spacing:13.414400pt;}
.ws5_c00109{word-spacing:13.459200pt;}
._4_c00109{margin-left:-4.563200pt;}
._3_c00109{margin-left:-3.545600pt;}
._5_c00109{margin-left:-1.996800pt;}
._0_c00109{margin-left:-1.107200pt;}
._1_c00109{width:0.896000pt;}
._7_c00109{width:2.432000pt;}
._2_c00109{width:3.820800pt;}
._6_c00109{width:5.414400pt;}
._e_c00109{width:8.352000pt;}
._b_c00109{width:9.408000pt;}
._a_c00109{width:10.547200pt;}
._9_c00109{width:13.043200pt;}
._8_c00109{width:14.067200pt;}
._c_c00109{width:23.142400pt;}
._d_c00109{width:24.115200pt;}
.fs0_c00109{font-size:53.440000pt;}
.fs1_c00109{font-size:64.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y6_c00109{bottom:50.987067pt;}
.y5_c00109{bottom:69.387067pt;}
.y26_c00109{bottom:101.227067pt;}
.y25_c00109{bottom:128.827067pt;}
.y24_c00109{bottom:156.427067pt;}
.y23_c00109{bottom:194.587067pt;}
.y22_c00109{bottom:222.267067pt;}
.y21_c00109{bottom:249.867067pt;}
.y20_c00109{bottom:277.467067pt;}
.y1f_c00109{bottom:305.067067pt;}
.y1e_c00109{bottom:332.667067pt;}
.y1d_c00109{bottom:360.267067pt;}
.y1c_c00109{bottom:398.427067pt;}
.y1b_c00109{bottom:426.107067pt;}
.y1a_c00109{bottom:453.707067pt;}
.y19_c00109{bottom:481.307067pt;}
.y18_c00109{bottom:508.907067pt;}
.y17_c00109{bottom:536.507067pt;}
.y16_c00109{bottom:564.107067pt;}
.y15_c00109{bottom:591.707067pt;}
.y14_c00109{bottom:619.307067pt;}
.y13_c00109{bottom:657.467067pt;}
.y12_c00109{bottom:685.147067pt;}
.y11_c00109{bottom:712.747067pt;}
.y10_c00109{bottom:740.347067pt;}
.yf_c00109{bottom:767.947067pt;}
.ye_c00109{bottom:795.547067pt;}
.yd_c00109{bottom:823.147067pt;}
.yc_c00109{bottom:850.747067pt;}
.yb_c00109{bottom:878.347067pt;}
.ya_c00109{bottom:916.507067pt;}
.y9_c00109{bottom:944.187067pt;}
.y8_c00109{bottom:971.787067pt;}
.y7_c00109{bottom:999.387067pt;}
.y4_c00109{bottom:1017.227251pt;}
.y3_c00109{bottom:1032.587243pt;}
.y2_c00109{bottom:1047.867075pt;}
.y1_c00109{bottom:1063.227067pt;}
.h1_c00109{height:47.020937pt;}
.h2_c00109{height:56.156250pt;}
.h4_c00109{height:56.312500pt;}
.h3_c00109{height:56.843750pt;}
.h0_c00109{height:1122.666667pt;}
.w1_c00109{width:793.333333pt;}
.w0_c00109{width:793.626667pt;}
.x0_c00109{left:0.000000pt;}
.x4_c00109{left:113.440000pt;}
.x1_c00109{left:577.440000pt;}
.x3_c00109{left:656.400000pt;}
.x2_c00109{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1829acb6bf786c632b759561.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.095703;font-style:normal;font-weight:normal;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_950a5bd5efcb59eab50c810e.woff2')format("woff");}.ff2_c00110{font-family:ff2_c00110;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00110{font-family:ff3_c00110;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00110{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.lse_c00110{letter-spacing:-0.252000px;}
.lsf_c00110{letter-spacing:-0.244800px;}
.ls13_c00110{letter-spacing:-0.180000px;}
.lsb_c00110{letter-spacing:-0.102204px;}
.ls17_c00110{letter-spacing:-0.057600px;}
.ls15_c00110{letter-spacing:-0.050400px;}
.lsd_c00110{letter-spacing:-0.043200px;}
.ls14_c00110{letter-spacing:-0.036000px;}
.ls10_c00110{letter-spacing:-0.021600px;}
.ls12_c00110{letter-spacing:-0.014400px;}
.ls11_c00110{letter-spacing:-0.007200px;}
.lsc_c00110{letter-spacing:0.000000px;}
.ls2_c00110{letter-spacing:0.007200px;}
.ls5_c00110{letter-spacing:0.014400px;}
.ls4_c00110{letter-spacing:0.021600px;}
.lsa_c00110{letter-spacing:0.028800px;}
.ls8_c00110{letter-spacing:0.036000px;}
.ls3_c00110{letter-spacing:0.043200px;}
.ls0_c00110{letter-spacing:0.050400px;}
.ls6_c00110{letter-spacing:0.057600px;}
.ls7_c00110{letter-spacing:0.072000px;}
.ls9_c00110{letter-spacing:0.079200px;}
.ls1_c00110{letter-spacing:0.086400px;}
.ls16_c00110{letter-spacing:1.440000px;}
.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;}
}
.ws4_c00110{word-spacing:-0.244800px;}
.ws3_c00110{word-spacing:-0.122400px;}
.ws1_c00110{word-spacing:0.000000px;}
.ws0_c00110{word-spacing:0.192384px;}
.ws5_c00110{word-spacing:3.204000px;}
.ws2_c00110{word-spacing:7.207200px;}
._1_c00110{margin-left:-3.542400px;}
._2_c00110{margin-left:-2.527200px;}
._3_c00110{margin-left:-1.087200px;}
._0_c00110{width:1.034064px;}
._4_c00110{width:2.064672px;}
._5_c00110{width:3.309984px;}
._8_c00110{width:4.372128px;}
._7_c00110{width:6.004800px;}
._6_c00110{width:7.200000px;}
._9_c00110{width:8.200800px;}
._f_c00110{width:12.204000px;}
._c_c00110{width:13.824000px;}
._b_c00110{width:15.076800px;}
._a_c00110{width:20.138400px;}
._d_c00110{width:22.032000px;}
._e_c00110{width:23.328000px;}
.fc1_c00110{color:rgb(0,0,0);}
.fc0_c00110{color:rgb(32,31,30);}
.fs0_c00110{font-size:60.120000px;}
.fs1_c00110{font-size:72.000000px;}
.y0_c00110{bottom:0.000000px;}
.y5_c00110{bottom:57.360450px;}
.y4_c00110{bottom:78.060450px;}
.y23_c00110{bottom:139.080450px;}
.y22_c00110{bottom:170.130450px;}
.y21_c00110{bottom:201.090450px;}
.y20_c00110{bottom:232.140450px;}
.y1f_c00110{bottom:263.190450px;}
.y1e_c00110{bottom:306.210450px;}
.y1d_c00110{bottom:337.350450px;}
.y1c_c00110{bottom:368.400450px;}
.y1b_c00110{bottom:399.450450px;}
.y1a_c00110{bottom:442.380450px;}
.y19_c00110{bottom:473.520450px;}
.y18_c00110{bottom:504.570450px;}
.y17_c00110{bottom:547.500450px;}
.y16_c00110{bottom:578.640450px;}
.y15_c00110{bottom:609.690450px;}
.y14_c00110{bottom:640.740450px;}
.y13_c00110{bottom:671.700450px;}
.y12_c00110{bottom:702.840450px;}
.y11_c00110{bottom:733.890450px;}
.y10_c00110{bottom:776.820450px;}
.yf_c00110{bottom:807.960450px;}
.ye_c00110{bottom:839.010450px;}
.yd_c00110{bottom:870.060450px;}
.yc_c00110{bottom:901.110450px;}
.yb_c00110{bottom:944.130450px;}
.ya_c00110{bottom:975.180450px;}
.y9_c00110{bottom:1006.230450px;}
.y8_c00110{bottom:1037.280450px;}
.y7_c00110{bottom:1080.300450px;}
.y6_c00110{bottom:1111.440450px;}
.y3_c00110{bottom:1132.140450px;}
.y2_c00110{bottom:1165.441023px;}
.y1_c00110{bottom:1196.040600px;}
.h1_c00110{height:52.898555px;}
.h2_c00110{height:63.175781px;}
.h3_c00110{height:63.351562px;}
.h4_c00110{height:63.949219px;}
.h0_c00110{height:1263.000000px;}
.w1_c00110{width:892.500000px;}
.w0_c00110{width:892.830000px;}
.x0_c00110{left:0.000000px;}
.x1_c00110{left:127.620000px;}
.x2_c00110{left:738.450000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.lse_c00110{letter-spacing:-0.224000pt;}
.lsf_c00110{letter-spacing:-0.217600pt;}
.ls13_c00110{letter-spacing:-0.160000pt;}
.lsb_c00110{letter-spacing:-0.090848pt;}
.ls17_c00110{letter-spacing:-0.051200pt;}
.ls15_c00110{letter-spacing:-0.044800pt;}
.lsd_c00110{letter-spacing:-0.038400pt;}
.ls14_c00110{letter-spacing:-0.032000pt;}
.ls10_c00110{letter-spacing:-0.019200pt;}
.ls12_c00110{letter-spacing:-0.012800pt;}
.ls11_c00110{letter-spacing:-0.006400pt;}
.lsc_c00110{letter-spacing:0.000000pt;}
.ls2_c00110{letter-spacing:0.006400pt;}
.ls5_c00110{letter-spacing:0.012800pt;}
.ls4_c00110{letter-spacing:0.019200pt;}
.lsa_c00110{letter-spacing:0.025600pt;}
.ls8_c00110{letter-spacing:0.032000pt;}
.ls3_c00110{letter-spacing:0.038400pt;}
.ls0_c00110{letter-spacing:0.044800pt;}
.ls6_c00110{letter-spacing:0.051200pt;}
.ls7_c00110{letter-spacing:0.064000pt;}
.ls9_c00110{letter-spacing:0.070400pt;}
.ls1_c00110{letter-spacing:0.076800pt;}
.ls16_c00110{letter-spacing:1.280000pt;}
.ws4_c00110{word-spacing:-0.217600pt;}
.ws3_c00110{word-spacing:-0.108800pt;}
.ws1_c00110{word-spacing:0.000000pt;}
.ws0_c00110{word-spacing:0.171008pt;}
.ws5_c00110{word-spacing:2.848000pt;}
.ws2_c00110{word-spacing:6.406400pt;}
._1_c00110{margin-left:-3.148800pt;}
._2_c00110{margin-left:-2.246400pt;}
._3_c00110{margin-left:-0.966400pt;}
._0_c00110{width:0.919168pt;}
._4_c00110{width:1.835264pt;}
._5_c00110{width:2.942208pt;}
._8_c00110{width:3.886336pt;}
._7_c00110{width:5.337600pt;}
._6_c00110{width:6.400000pt;}
._9_c00110{width:7.289600pt;}
._f_c00110{width:10.848000pt;}
._c_c00110{width:12.288000pt;}
._b_c00110{width:13.401600pt;}
._a_c00110{width:17.900800pt;}
._d_c00110{width:19.584000pt;}
._e_c00110{width:20.736000pt;}
.fs0_c00110{font-size:53.440000pt;}
.fs1_c00110{font-size:64.000000pt;}
.y0_c00110{bottom:0.000000pt;}
.y5_c00110{bottom:50.987067pt;}
.y4_c00110{bottom:69.387067pt;}
.y23_c00110{bottom:123.627067pt;}
.y22_c00110{bottom:151.227067pt;}
.y21_c00110{bottom:178.747067pt;}
.y20_c00110{bottom:206.347067pt;}
.y1f_c00110{bottom:233.947067pt;}
.y1e_c00110{bottom:272.187067pt;}
.y1d_c00110{bottom:299.867067pt;}
.y1c_c00110{bottom:327.467067pt;}
.y1b_c00110{bottom:355.067067pt;}
.y1a_c00110{bottom:393.227067pt;}
.y19_c00110{bottom:420.907067pt;}
.y18_c00110{bottom:448.507067pt;}
.y17_c00110{bottom:486.667067pt;}
.y16_c00110{bottom:514.347067pt;}
.y15_c00110{bottom:541.947067pt;}
.y14_c00110{bottom:569.547067pt;}
.y13_c00110{bottom:597.067067pt;}
.y12_c00110{bottom:624.747067pt;}
.y11_c00110{bottom:652.347067pt;}
.y10_c00110{bottom:690.507067pt;}
.yf_c00110{bottom:718.187067pt;}
.ye_c00110{bottom:745.787067pt;}
.yd_c00110{bottom:773.387067pt;}
.yc_c00110{bottom:800.987067pt;}
.yb_c00110{bottom:839.227067pt;}
.ya_c00110{bottom:866.827067pt;}
.y9_c00110{bottom:894.427067pt;}
.y8_c00110{bottom:922.027067pt;}
.y7_c00110{bottom:960.267067pt;}
.y6_c00110{bottom:987.947067pt;}
.y3_c00110{bottom:1006.347067pt;}
.y2_c00110{bottom:1035.947576pt;}
.y1_c00110{bottom:1063.147200pt;}
.h1_c00110{height:47.020937pt;}
.h2_c00110{height:56.156250pt;}
.h3_c00110{height:56.312500pt;}
.h4_c00110{height:56.843750pt;}
.h0_c00110{height:1122.666667pt;}
.w1_c00110{width:793.333333pt;}
.w0_c00110{width:793.626667pt;}
.x0_c00110{left:0.000000pt;}
.x1_c00110{left:113.440000pt;}
.x2_c00110{left:656.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_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_45ab5820d5ecf1455e4189b5.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.095703;font-style:normal;font-weight:normal;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_cc194edfc10b173742f73eaf.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00111{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls17_c00111{letter-spacing:-1.800000px;}
.ls14_c00111{letter-spacing:-0.446400px;}
.ls18_c00111{letter-spacing:-0.252000px;}
.ls15_c00111{letter-spacing:-0.122400px;}
.ls1a_c00111{letter-spacing:-0.064800px;}
.lsf_c00111{letter-spacing:-0.048096px;}
.ls19_c00111{letter-spacing:-0.036000px;}
.ls16_c00111{letter-spacing:-0.028800px;}
.ls12_c00111{letter-spacing:-0.021600px;}
.ls13_c00111{letter-spacing:-0.014400px;}
.ls11_c00111{letter-spacing:-0.007200px;}
.ls10_c00111{letter-spacing:0.000000px;}
.ls9_c00111{letter-spacing:0.007200px;}
.ls7_c00111{letter-spacing:0.014400px;}
.ls2_c00111{letter-spacing:0.021600px;}
.ls0_c00111{letter-spacing:0.028800px;}
.ls5_c00111{letter-spacing:0.036000px;}
.ls3_c00111{letter-spacing:0.043200px;}
.ls6_c00111{letter-spacing:0.050400px;}
.ls8_c00111{letter-spacing:0.057600px;}
.ls1_c00111{letter-spacing:0.064800px;}
.ls4_c00111{letter-spacing:0.072000px;}
.lsd_c00111{letter-spacing:0.079200px;}
.lsc_c00111{letter-spacing:0.086400px;}
.lse_c00111{letter-spacing:0.115200px;}
.lsa_c00111{letter-spacing:0.136800px;}
.lsb_c00111{letter-spacing:0.158400px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00111{word-spacing:-18.036000px;}
.wsc_c00111{word-spacing:-4.032000px;}
.wsb_c00111{word-spacing:-4.003200px;}
.wsa_c00111{word-spacing:-1.454400px;}
.ws6_c00111{word-spacing:-0.741600px;}
.ws5_c00111{word-spacing:-0.727200px;}
.ws2_c00111{word-spacing:0.000000px;}
.ws9_c00111{word-spacing:0.007200px;}
.ws1_c00111{word-spacing:0.138276px;}
.ws7_c00111{word-spacing:2.073600px;}
.ws8_c00111{word-spacing:2.160000px;}
.ws3_c00111{word-spacing:7.495200px;}
.ws4_c00111{word-spacing:7.502400px;}
._a_c00111{margin-left:-3.960000px;}
._0_c00111{margin-left:-2.001600px;}
._b_c00111{margin-left:-1.000800px;}
._5_c00111{width:1.008000px;}
._c_c00111{width:2.548800px;}
._1_c00111{width:4.276800px;}
._9_c00111{width:5.558400px;}
._4_c00111{width:6.847200px;}
._2_c00111{width:7.869600px;}
._3_c00111{width:9.115200px;}
._8_c00111{width:10.116000px;}
._6_c00111{width:11.124000px;}
._7_c00111{width:20.476800px;}
._d_c00111{width:21.636000px;}
.fc0_c00111{color:rgb(0,0,0);}
.fs0_c00111{font-size:60.120000px;}
.fs1_c00111{font-size:72.000000px;}
.y0_c00111{bottom:0.000000px;}
.y6_c00111{bottom:57.360450px;}
.y5_c00111{bottom:78.060450px;}
.y26_c00111{bottom:113.880450px;}
.y25_c00111{bottom:144.930450px;}
.y24_c00111{bottom:175.980450px;}
.y23_c00111{bottom:207.030450px;}
.y22_c00111{bottom:238.080450px;}
.y21_c00111{bottom:269.130450px;}
.y20_c00111{bottom:300.180450px;}
.y1f_c00111{bottom:343.110450px;}
.y1e_c00111{bottom:374.250450px;}
.y1d_c00111{bottom:405.300450px;}
.y1c_c00111{bottom:436.350450px;}
.y1b_c00111{bottom:467.400450px;}
.y1a_c00111{bottom:498.450450px;}
.y19_c00111{bottom:529.500450px;}
.y18_c00111{bottom:560.550450px;}
.y17_c00111{bottom:591.600450px;}
.y16_c00111{bottom:634.530450px;}
.y15_c00111{bottom:665.670450px;}
.y14_c00111{bottom:696.720450px;}
.y13_c00111{bottom:727.770450px;}
.y12_c00111{bottom:758.820450px;}
.y11_c00111{bottom:801.750450px;}
.y10_c00111{bottom:832.800450px;}
.yf_c00111{bottom:863.940450px;}
.ye_c00111{bottom:894.990450px;}
.yd_c00111{bottom:926.040450px;}
.yc_c00111{bottom:957.090450px;}
.yb_c00111{bottom:988.140450px;}
.ya_c00111{bottom:1019.190450px;}
.y9_c00111{bottom:1050.240450px;}
.y8_c00111{bottom:1093.170450px;}
.y7_c00111{bottom:1124.310450px;}
.y4_c00111{bottom:1144.380657px;}
.y3_c00111{bottom:1161.660648px;}
.y2_c00111{bottom:1178.850459px;}
.y1_c00111{bottom:1196.130450px;}
.h1_c00111{height:52.898555px;}
.h2_c00111{height:63.175781px;}
.h3_c00111{height:63.351562px;}
.h0_c00111{height:1263.000000px;}
.w1_c00111{width:892.500000px;}
.w0_c00111{width:892.830000px;}
.x0_c00111{left:0.000000px;}
.x4_c00111{left:127.620000px;}
.x1_c00111{left:649.620000px;}
.x3_c00111{left:738.450000px;}
.x2_c00111{left:765.450198px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls17_c00111{letter-spacing:-1.600000pt;}
.ls14_c00111{letter-spacing:-0.396800pt;}
.ls18_c00111{letter-spacing:-0.224000pt;}
.ls15_c00111{letter-spacing:-0.108800pt;}
.ls1a_c00111{letter-spacing:-0.057600pt;}
.lsf_c00111{letter-spacing:-0.042752pt;}
.ls19_c00111{letter-spacing:-0.032000pt;}
.ls16_c00111{letter-spacing:-0.025600pt;}
.ls12_c00111{letter-spacing:-0.019200pt;}
.ls13_c00111{letter-spacing:-0.012800pt;}
.ls11_c00111{letter-spacing:-0.006400pt;}
.ls10_c00111{letter-spacing:0.000000pt;}
.ls9_c00111{letter-spacing:0.006400pt;}
.ls7_c00111{letter-spacing:0.012800pt;}
.ls2_c00111{letter-spacing:0.019200pt;}
.ls0_c00111{letter-spacing:0.025600pt;}
.ls5_c00111{letter-spacing:0.032000pt;}
.ls3_c00111{letter-spacing:0.038400pt;}
.ls6_c00111{letter-spacing:0.044800pt;}
.ls8_c00111{letter-spacing:0.051200pt;}
.ls1_c00111{letter-spacing:0.057600pt;}
.ls4_c00111{letter-spacing:0.064000pt;}
.lsd_c00111{letter-spacing:0.070400pt;}
.lsc_c00111{letter-spacing:0.076800pt;}
.lse_c00111{letter-spacing:0.102400pt;}
.lsa_c00111{letter-spacing:0.121600pt;}
.lsb_c00111{letter-spacing:0.140800pt;}
.ws0_c00111{word-spacing:-16.032000pt;}
.wsc_c00111{word-spacing:-3.584000pt;}
.wsb_c00111{word-spacing:-3.558400pt;}
.wsa_c00111{word-spacing:-1.292800pt;}
.ws6_c00111{word-spacing:-0.659200pt;}
.ws5_c00111{word-spacing:-0.646400pt;}
.ws2_c00111{word-spacing:0.000000pt;}
.ws9_c00111{word-spacing:0.006400pt;}
.ws1_c00111{word-spacing:0.122912pt;}
.ws7_c00111{word-spacing:1.843200pt;}
.ws8_c00111{word-spacing:1.920000pt;}
.ws3_c00111{word-spacing:6.662400pt;}
.ws4_c00111{word-spacing:6.668800pt;}
._a_c00111{margin-left:-3.520000pt;}
._0_c00111{margin-left:-1.779200pt;}
._b_c00111{margin-left:-0.889600pt;}
._5_c00111{width:0.896000pt;}
._c_c00111{width:2.265600pt;}
._1_c00111{width:3.801600pt;}
._9_c00111{width:4.940800pt;}
._4_c00111{width:6.086400pt;}
._2_c00111{width:6.995200pt;}
._3_c00111{width:8.102400pt;}
._8_c00111{width:8.992000pt;}
._6_c00111{width:9.888000pt;}
._7_c00111{width:18.201600pt;}
._d_c00111{width:19.232000pt;}
.fs0_c00111{font-size:53.440000pt;}
.fs1_c00111{font-size:64.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.y6_c00111{bottom:50.987067pt;}
.y5_c00111{bottom:69.387067pt;}
.y26_c00111{bottom:101.227067pt;}
.y25_c00111{bottom:128.827067pt;}
.y24_c00111{bottom:156.427067pt;}
.y23_c00111{bottom:184.027067pt;}
.y22_c00111{bottom:211.627067pt;}
.y21_c00111{bottom:239.227067pt;}
.y20_c00111{bottom:266.827067pt;}
.y1f_c00111{bottom:304.987067pt;}
.y1e_c00111{bottom:332.667067pt;}
.y1d_c00111{bottom:360.267067pt;}
.y1c_c00111{bottom:387.867067pt;}
.y1b_c00111{bottom:415.467067pt;}
.y1a_c00111{bottom:443.067067pt;}
.y19_c00111{bottom:470.667067pt;}
.y18_c00111{bottom:498.267067pt;}
.y17_c00111{bottom:525.867067pt;}
.y16_c00111{bottom:564.027067pt;}
.y15_c00111{bottom:591.707067pt;}
.y14_c00111{bottom:619.307067pt;}
.y13_c00111{bottom:646.907067pt;}
.y12_c00111{bottom:674.507067pt;}
.y11_c00111{bottom:712.667067pt;}
.y10_c00111{bottom:740.267067pt;}
.yf_c00111{bottom:767.947067pt;}
.ye_c00111{bottom:795.547067pt;}
.yd_c00111{bottom:823.147067pt;}
.yc_c00111{bottom:850.747067pt;}
.yb_c00111{bottom:878.347067pt;}
.ya_c00111{bottom:905.947067pt;}
.y9_c00111{bottom:933.547067pt;}
.y8_c00111{bottom:971.707067pt;}
.y7_c00111{bottom:999.387067pt;}
.y4_c00111{bottom:1017.227251pt;}
.y3_c00111{bottom:1032.587243pt;}
.y2_c00111{bottom:1047.867075pt;}
.y1_c00111{bottom:1063.227067pt;}
.h1_c00111{height:47.020937pt;}
.h2_c00111{height:56.156250pt;}
.h3_c00111{height:56.312500pt;}
.h0_c00111{height:1122.666667pt;}
.w1_c00111{width:793.333333pt;}
.w0_c00111{width:793.626667pt;}
.x0_c00111{left:0.000000pt;}
.x4_c00111{left:113.440000pt;}
.x1_c00111{left:577.440000pt;}
.x3_c00111{left:656.400000pt;}
.x2_c00111{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_752eb2bfd5d8b9614d704a44.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.095703;font-style:normal;font-weight:normal;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_6ed7499e02f41721fc59028a.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00112{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls15_c00112{letter-spacing:-0.360000px;}
.ls14_c00112{letter-spacing:-0.194400px;}
.lsc_c00112{letter-spacing:-0.102204px;}
.ls13_c00112{letter-spacing:-0.043200px;}
.lse_c00112{letter-spacing:-0.036000px;}
.ls11_c00112{letter-spacing:-0.021600px;}
.ls10_c00112{letter-spacing:-0.014400px;}
.ls12_c00112{letter-spacing:-0.007200px;}
.lsd_c00112{letter-spacing:0.000000px;}
.ls7_c00112{letter-spacing:0.007200px;}
.lsa_c00112{letter-spacing:0.014400px;}
.ls1_c00112{letter-spacing:0.021600px;}
.ls4_c00112{letter-spacing:0.028800px;}
.ls6_c00112{letter-spacing:0.036000px;}
.ls0_c00112{letter-spacing:0.043200px;}
.ls8_c00112{letter-spacing:0.050400px;}
.ls2_c00112{letter-spacing:0.057600px;}
.ls5_c00112{letter-spacing:0.064800px;}
.ls9_c00112{letter-spacing:0.072000px;}
.ls3_c00112{letter-spacing:0.079200px;}
.lsb_c00112{letter-spacing:0.108000px;}
.lsf_c00112{letter-spacing:2.160000px;}
.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;}
}
.ws1_c00112{word-spacing:-17.978400px;}
.ws0_c00112{word-spacing:-17.805600px;}
.ws4_c00112{word-spacing:-2.894400px;}
.ws8_c00112{word-spacing:-1.490400px;}
.ws6_c00112{word-spacing:-0.784800px;}
.ws7_c00112{word-spacing:-0.705600px;}
.ws3_c00112{word-spacing:0.000000px;}
.ws2_c00112{word-spacing:0.192384px;}
.ws5_c00112{word-spacing:5.392800px;}
._6_c00112{margin-left:-2.944800px;}
._4_c00112{margin-left:-1.130400px;}
._0_c00112{width:1.034064px;}
._9_c00112{width:2.160000px;}
._5_c00112{width:3.196800px;}
._8_c00112{width:4.276800px;}
._7_c00112{width:5.457600px;}
._a_c00112{width:6.487200px;}
._b_c00112{width:7.668000px;}
._3_c00112{width:9.878400px;}
._2_c00112{width:11.188800px;}
._1_c00112{width:12.196800px;}
._c_c00112{width:22.608000px;}
.fc2_c00112{color:rgb(68,84,106);}
.fc1_c00112{color:rgb(0,0,0);}
.fc0_c00112{color:rgb(32,31,30);}
.fs2_c00112{font-size:54.000000px;}
.fs0_c00112{font-size:60.120000px;}
.fs1_c00112{font-size:72.000000px;}
.y0_c00112{bottom:0.000000px;}
.y5_c00112{bottom:57.360450px;}
.y4_c00112{bottom:78.060450px;}
.y24_c00112{bottom:112.350450px;}
.y23_c00112{bottom:150.960450px;}
.y22_c00112{bottom:193.980450px;}
.y21_c00112{bottom:225.120450px;}
.y20_c00112{bottom:256.170450px;}
.y1f_c00112{bottom:287.220450px;}
.y1e_c00112{bottom:318.270450px;}
.y1d_c00112{bottom:349.320450px;}
.y1c_c00112{bottom:380.370450px;}
.y1b_c00112{bottom:423.300450px;}
.y1a_c00112{bottom:454.440450px;}
.y19_c00112{bottom:485.490450px;}
.y18_c00112{bottom:516.540450px;}
.y17_c00112{bottom:547.590450px;}
.y16_c00112{bottom:578.640450px;}
.y15_c00112{bottom:621.570450px;}
.y14_c00112{bottom:652.710450px;}
.y13_c00112{bottom:683.760450px;}
.y12_c00112{bottom:714.810450px;}
.y11_c00112{bottom:745.860450px;}
.y10_c00112{bottom:776.910450px;}
.yf_c00112{bottom:807.960450px;}
.ye_c00112{bottom:839.010450px;}
.yd_c00112{bottom:882.030450px;}
.yc_c00112{bottom:913.170450px;}
.yb_c00112{bottom:944.220450px;}
.ya_c00112{bottom:975.180450px;}
.y9_c00112{bottom:1006.230450px;}
.y8_c00112{bottom:1049.250450px;}
.y7_c00112{bottom:1080.390450px;}
.y6_c00112{bottom:1111.440450px;}
.y3_c00112{bottom:1132.140450px;}
.y2_c00112{bottom:1165.441023px;}
.y1_c00112{bottom:1196.040600px;}
.h4_c00112{height:47.513672px;}
.h1_c00112{height:52.898555px;}
.h2_c00112{height:63.175781px;}
.h3_c00112{height:63.351562px;}
.h0_c00112{height:1263.000000px;}
.w1_c00112{width:892.500000px;}
.w0_c00112{width:892.830000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:127.620000px;}
.x2_c00112{left:738.450000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls15_c00112{letter-spacing:-0.320000pt;}
.ls14_c00112{letter-spacing:-0.172800pt;}
.lsc_c00112{letter-spacing:-0.090848pt;}
.ls13_c00112{letter-spacing:-0.038400pt;}
.lse_c00112{letter-spacing:-0.032000pt;}
.ls11_c00112{letter-spacing:-0.019200pt;}
.ls10_c00112{letter-spacing:-0.012800pt;}
.ls12_c00112{letter-spacing:-0.006400pt;}
.lsd_c00112{letter-spacing:0.000000pt;}
.ls7_c00112{letter-spacing:0.006400pt;}
.lsa_c00112{letter-spacing:0.012800pt;}
.ls1_c00112{letter-spacing:0.019200pt;}
.ls4_c00112{letter-spacing:0.025600pt;}
.ls6_c00112{letter-spacing:0.032000pt;}
.ls0_c00112{letter-spacing:0.038400pt;}
.ls8_c00112{letter-spacing:0.044800pt;}
.ls2_c00112{letter-spacing:0.051200pt;}
.ls5_c00112{letter-spacing:0.057600pt;}
.ls9_c00112{letter-spacing:0.064000pt;}
.ls3_c00112{letter-spacing:0.070400pt;}
.lsb_c00112{letter-spacing:0.096000pt;}
.lsf_c00112{letter-spacing:1.920000pt;}
.ws1_c00112{word-spacing:-15.980800pt;}
.ws0_c00112{word-spacing:-15.827200pt;}
.ws4_c00112{word-spacing:-2.572800pt;}
.ws8_c00112{word-spacing:-1.324800pt;}
.ws6_c00112{word-spacing:-0.697600pt;}
.ws7_c00112{word-spacing:-0.627200pt;}
.ws3_c00112{word-spacing:0.000000pt;}
.ws2_c00112{word-spacing:0.171008pt;}
.ws5_c00112{word-spacing:4.793600pt;}
._6_c00112{margin-left:-2.617600pt;}
._4_c00112{margin-left:-1.004800pt;}
._0_c00112{width:0.919168pt;}
._9_c00112{width:1.920000pt;}
._5_c00112{width:2.841600pt;}
._8_c00112{width:3.801600pt;}
._7_c00112{width:4.851200pt;}
._a_c00112{width:5.766400pt;}
._b_c00112{width:6.816000pt;}
._3_c00112{width:8.780800pt;}
._2_c00112{width:9.945600pt;}
._1_c00112{width:10.841600pt;}
._c_c00112{width:20.096000pt;}
.fs2_c00112{font-size:48.000000pt;}
.fs0_c00112{font-size:53.440000pt;}
.fs1_c00112{font-size:64.000000pt;}
.y0_c00112{bottom:0.000000pt;}
.y5_c00112{bottom:50.987067pt;}
.y4_c00112{bottom:69.387067pt;}
.y24_c00112{bottom:99.867067pt;}
.y23_c00112{bottom:134.187067pt;}
.y22_c00112{bottom:172.427067pt;}
.y21_c00112{bottom:200.107067pt;}
.y20_c00112{bottom:227.707067pt;}
.y1f_c00112{bottom:255.307067pt;}
.y1e_c00112{bottom:282.907067pt;}
.y1d_c00112{bottom:310.507067pt;}
.y1c_c00112{bottom:338.107067pt;}
.y1b_c00112{bottom:376.267067pt;}
.y1a_c00112{bottom:403.947067pt;}
.y19_c00112{bottom:431.547067pt;}
.y18_c00112{bottom:459.147067pt;}
.y17_c00112{bottom:486.747067pt;}
.y16_c00112{bottom:514.347067pt;}
.y15_c00112{bottom:552.507067pt;}
.y14_c00112{bottom:580.187067pt;}
.y13_c00112{bottom:607.787067pt;}
.y12_c00112{bottom:635.387067pt;}
.y11_c00112{bottom:662.987067pt;}
.y10_c00112{bottom:690.587067pt;}
.yf_c00112{bottom:718.187067pt;}
.ye_c00112{bottom:745.787067pt;}
.yd_c00112{bottom:784.027067pt;}
.yc_c00112{bottom:811.707067pt;}
.yb_c00112{bottom:839.307067pt;}
.ya_c00112{bottom:866.827067pt;}
.y9_c00112{bottom:894.427067pt;}
.y8_c00112{bottom:932.667067pt;}
.y7_c00112{bottom:960.347067pt;}
.y6_c00112{bottom:987.947067pt;}
.y3_c00112{bottom:1006.347067pt;}
.y2_c00112{bottom:1035.947576pt;}
.y1_c00112{bottom:1063.147200pt;}
.h4_c00112{height:42.234375pt;}
.h1_c00112{height:47.020937pt;}
.h2_c00112{height:56.156250pt;}
.h3_c00112{height:56.312500pt;}
.h0_c00112{height:1122.666667pt;}
.w1_c00112{width:793.333333pt;}
.w0_c00112{width:793.626667pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:113.440000pt;}
.x2_c00112{left:656.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_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_765d0a7b2dc9aa1245375aa0.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.095703;font-style:normal;font-weight:normal;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_4f244646543e8899b6021bb7.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;line-height:1.093262;font-style: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;}
.lsf_c00113{letter-spacing:-0.048096px;}
.ls13_c00113{letter-spacing:-0.036000px;}
.ls14_c00113{letter-spacing:-0.028800px;}
.ls15_c00113{letter-spacing:-0.021600px;}
.ls12_c00113{letter-spacing:-0.007200px;}
.ls11_c00113{letter-spacing:-0.005400px;}
.ls10_c00113{letter-spacing:0.000000px;}
.ls3_c00113{letter-spacing:0.007200px;}
.ls0_c00113{letter-spacing:0.010800px;}
.ls9_c00113{letter-spacing:0.014400px;}
.lsd_c00113{letter-spacing:0.021600px;}
.ls7_c00113{letter-spacing:0.028800px;}
.ls8_c00113{letter-spacing:0.036000px;}
.lsa_c00113{letter-spacing:0.043200px;}
.ls4_c00113{letter-spacing:0.057600px;}
.ls1_c00113{letter-spacing:0.059400px;}
.ls5_c00113{letter-spacing:0.064800px;}
.lse_c00113{letter-spacing:0.072000px;}
.ls6_c00113{letter-spacing:0.079200px;}
.lsb_c00113{letter-spacing:0.086400px;}
.ls2_c00113{letter-spacing:0.091800px;}
.lsc_c00113{letter-spacing:0.100800px;}
.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;}
}
.ws5_c00113{word-spacing:-0.270000px;}
.ws1_c00113{word-spacing:0.000000px;}
.ws4_c00113{word-spacing:0.118800px;}
.ws0_c00113{word-spacing:0.138276px;}
.ws2_c00113{word-spacing:0.167400px;}
.ws3_c00113{word-spacing:0.183600px;}
.ws6_c00113{word-spacing:1.713600px;}
._0_c00113{margin-left:-1.117800px;}
._7_c00113{width:1.512000px;}
._8_c00113{width:2.880000px;}
._9_c00113{width:4.305600px;}
._2_c00113{width:5.695200px;}
._a_c00113{width:7.293600px;}
._1_c00113{width:10.072800px;}
._6_c00113{width:11.793600px;}
._3_c00113{width:13.665600px;}
._4_c00113{width:15.472800px;}
._5_c00113{width:16.473600px;}
.fc1_c00113{color:rgb(68,84,106);}
.fc0_c00113{color:rgb(0,0,0);}
.fs2_c00113{font-size:54.000000px;}
.fs0_c00113{font-size:60.120000px;}
.fs1_c00113{font-size:72.000000px;}
.y0_c00113{bottom:0.000000px;}
.y6_c00113{bottom:57.360450px;}
.y5_c00113{bottom:78.060450px;}
.y1a_c00113{bottom:112.620450px;}
.y19_c00113{bottom:143.670450px;}
.y18_c00113{bottom:174.720450px;}
.y17_c00113{bottom:217.650450px;}
.y16_c00113{bottom:248.790450px;}
.y15_c00113{bottom:279.840450px;}
.y14_c00113{bottom:310.890450px;}
.y13_c00113{bottom:341.940450px;}
.y12_c00113{bottom:372.990450px;}
.y11_c00113{bottom:404.040450px;}
.y10_c00113{bottom:435.090450px;}
.yf_c00113{bottom:478.110450px;}
.ye_c00113{bottom:509.250450px;}
.yd_c00113{bottom:540.300450px;}
.yc_c00113{bottom:571.260450px;}
.yb_c00113{bottom:602.310450px;}
.ya_c00113{bottom:641.280450px;}
.y9_c00113{bottom:886.800450px;}
.y8_c00113{bottom:921.360450px;}
.y7_c00113{bottom:1128.630450px;}
.y4_c00113{bottom:1144.380657px;}
.y3_c00113{bottom:1161.660648px;}
.y2_c00113{bottom:1178.850459px;}
.y1_c00113{bottom:1196.130450px;}
.h3_c00113{height:47.513672px;}
.h1_c00113{height:52.898555px;}
.h2_c00113{height:63.175781px;}
.h4_c00113{height:63.351562px;}
.h0_c00113{height:1263.000000px;}
.w1_c00113{width:892.500000px;}
.w0_c00113{width:892.830000px;}
.x0_c00113{left:0.000000px;}
.x4_c00113{left:127.620000px;}
.x1_c00113{left:649.620000px;}
.x6_c00113{left:683.280000px;}
.x5_c00113{left:727.020000px;}
.x3_c00113{left:738.450000px;}
.x2_c00113{left:765.450198px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.lsf_c00113{letter-spacing:-0.042752pt;}
.ls13_c00113{letter-spacing:-0.032000pt;}
.ls14_c00113{letter-spacing:-0.025600pt;}
.ls15_c00113{letter-spacing:-0.019200pt;}
.ls12_c00113{letter-spacing:-0.006400pt;}
.ls11_c00113{letter-spacing:-0.004800pt;}
.ls10_c00113{letter-spacing:0.000000pt;}
.ls3_c00113{letter-spacing:0.006400pt;}
.ls0_c00113{letter-spacing:0.009600pt;}
.ls9_c00113{letter-spacing:0.012800pt;}
.lsd_c00113{letter-spacing:0.019200pt;}
.ls7_c00113{letter-spacing:0.025600pt;}
.ls8_c00113{letter-spacing:0.032000pt;}
.lsa_c00113{letter-spacing:0.038400pt;}
.ls4_c00113{letter-spacing:0.051200pt;}
.ls1_c00113{letter-spacing:0.052800pt;}
.ls5_c00113{letter-spacing:0.057600pt;}
.lse_c00113{letter-spacing:0.064000pt;}
.ls6_c00113{letter-spacing:0.070400pt;}
.lsb_c00113{letter-spacing:0.076800pt;}
.ls2_c00113{letter-spacing:0.081600pt;}
.lsc_c00113{letter-spacing:0.089600pt;}
.ws5_c00113{word-spacing:-0.240000pt;}
.ws1_c00113{word-spacing:0.000000pt;}
.ws4_c00113{word-spacing:0.105600pt;}
.ws0_c00113{word-spacing:0.122912pt;}
.ws2_c00113{word-spacing:0.148800pt;}
.ws3_c00113{word-spacing:0.163200pt;}
.ws6_c00113{word-spacing:1.523200pt;}
._0_c00113{margin-left:-0.993600pt;}
._7_c00113{width:1.344000pt;}
._8_c00113{width:2.560000pt;}
._9_c00113{width:3.827200pt;}
._2_c00113{width:5.062400pt;}
._a_c00113{width:6.483200pt;}
._1_c00113{width:8.953600pt;}
._6_c00113{width:10.483200pt;}
._3_c00113{width:12.147200pt;}
._4_c00113{width:13.753600pt;}
._5_c00113{width:14.643200pt;}
.fs2_c00113{font-size:48.000000pt;}
.fs0_c00113{font-size:53.440000pt;}
.fs1_c00113{font-size:64.000000pt;}
.y0_c00113{bottom:0.000000pt;}
.y6_c00113{bottom:50.987067pt;}
.y5_c00113{bottom:69.387067pt;}
.y1a_c00113{bottom:100.107067pt;}
.y19_c00113{bottom:127.707067pt;}
.y18_c00113{bottom:155.307067pt;}
.y17_c00113{bottom:193.467067pt;}
.y16_c00113{bottom:221.147067pt;}
.y15_c00113{bottom:248.747067pt;}
.y14_c00113{bottom:276.347067pt;}
.y13_c00113{bottom:303.947067pt;}
.y12_c00113{bottom:331.547067pt;}
.y11_c00113{bottom:359.147067pt;}
.y10_c00113{bottom:386.747067pt;}
.yf_c00113{bottom:424.987067pt;}
.ye_c00113{bottom:452.667067pt;}
.yd_c00113{bottom:480.267067pt;}
.yc_c00113{bottom:507.787067pt;}
.yb_c00113{bottom:535.387067pt;}
.ya_c00113{bottom:570.027067pt;}
.y9_c00113{bottom:788.267067pt;}
.y8_c00113{bottom:818.987067pt;}
.y7_c00113{bottom:1003.227067pt;}
.y4_c00113{bottom:1017.227251pt;}
.y3_c00113{bottom:1032.587243pt;}
.y2_c00113{bottom:1047.867075pt;}
.y1_c00113{bottom:1063.227067pt;}
.h3_c00113{height:42.234375pt;}
.h1_c00113{height:47.020937pt;}
.h2_c00113{height:56.156250pt;}
.h4_c00113{height:56.312500pt;}
.h0_c00113{height:1122.666667pt;}
.w1_c00113{width:793.333333pt;}
.w0_c00113{width:793.626667pt;}
.x0_c00113{left:0.000000pt;}
.x4_c00113{left:113.440000pt;}
.x1_c00113{left:577.440000pt;}
.x6_c00113{left:607.360000pt;}
.x5_c00113{left:646.240000pt;}
.x3_c00113{left:656.400000pt;}
.x2_c00113{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d703898b94b520ebc7417e0.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.095703;font-style:normal;font-weight:normal;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_683aa6fe13212fbd7ba833b8.woff2')format("woff");}.ff2_c00114{font-family:ff2_c00114;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00114{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.lsb_c00114{letter-spacing:-0.102204px;}
.ls11_c00114{letter-spacing:-0.079200px;}
.ls13_c00114{letter-spacing:-0.043200px;}
.ls10_c00114{letter-spacing:-0.021600px;}
.lsf_c00114{letter-spacing:-0.014400px;}
.lse_c00114{letter-spacing:-0.007200px;}
.lsc_c00114{letter-spacing:0.000000px;}
.ls6_c00114{letter-spacing:0.007200px;}
.ls9_c00114{letter-spacing:0.014400px;}
.ls7_c00114{letter-spacing:0.021600px;}
.ls0_c00114{letter-spacing:0.028800px;}
.ls1_c00114{letter-spacing:0.036000px;}
.ls2_c00114{letter-spacing:0.043200px;}
.ls8_c00114{letter-spacing:0.050400px;}
.ls3_c00114{letter-spacing:0.057600px;}
.lsa_c00114{letter-spacing:0.064800px;}
.ls4_c00114{letter-spacing:0.072000px;}
.ls5_c00114{letter-spacing:0.100800px;}
.ls12_c00114{letter-spacing:0.194400px;}
.lsd_c00114{letter-spacing:2.520000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00114{word-spacing:-18.072000px;}
.ws8_c00114{word-spacing:-2.541600px;}
.ws2_c00114{word-spacing:0.000000px;}
.ws1_c00114{word-spacing:0.192384px;}
.ws4_c00114{word-spacing:2.692800px;}
.ws5_c00114{word-spacing:2.757600px;}
.ws9_c00114{word-spacing:6.717600px;}
.ws6_c00114{word-spacing:12.909600px;}
.ws7_c00114{word-spacing:12.967200px;}
.ws3_c00114{word-spacing:20.851200px;}
._f_c00114{margin-left:-5.361264px;}
._1_c00114{margin-left:-4.348800px;}
._2_c00114{margin-left:-3.340800px;}
._a_c00114{margin-left:-2.213136px;}
._3_c00114{margin-left:-1.206864px;}
._0_c00114{width:1.034064px;}
._4_c00114{width:2.484000px;}
._8_c00114{width:3.672000px;}
._e_c00114{width:5.140800px;}
._d_c00114{width:6.429600px;}
._b_c00114{width:8.301600px;}
._c_c00114{width:9.511200px;}
._9_c00114{width:12.830400px;}
._5_c00114{width:20.844000px;}
._6_c00114{width:36.698400px;}
._7_c00114{width:37.735200px;}
.fc2_c00114{color:rgb(255,0,0);}
.fc1_c00114{color:rgb(0,0,0);}
.fc0_c00114{color:rgb(32,31,30);}
.fs0_c00114{font-size:60.120000px;}
.fs1_c00114{font-size:72.000000px;}
.y0_c00114{bottom:0.000000px;}
.y5_c00114{bottom:57.360450px;}
.y4_c00114{bottom:78.060450px;}
.y23_c00114{bottom:162.930450px;}
.y22_c00114{bottom:194.070450px;}
.y21_c00114{bottom:225.120450px;}
.y20_c00114{bottom:256.170450px;}
.y1f_c00114{bottom:299.100450px;}
.y1e_c00114{bottom:330.240450px;}
.y1d_c00114{bottom:361.290450px;}
.y1c_c00114{bottom:392.340450px;}
.y1b_c00114{bottom:423.390450px;}
.y1a_c00114{bottom:466.410450px;}
.y19_c00114{bottom:497.550450px;}
.y18_c00114{bottom:528.600450px;}
.y17_c00114{bottom:571.530450px;}
.y16_c00114{bottom:602.670450px;}
.y15_c00114{bottom:633.720450px;}
.y14_c00114{bottom:664.770450px;}
.y13_c00114{bottom:695.820450px;}
.y12_c00114{bottom:726.870450px;}
.y11_c00114{bottom:757.920450px;}
.y10_c00114{bottom:788.970450px;}
.yf_c00114{bottom:820.020450px;}
.ye_c00114{bottom:851.070450px;}
.yd_c00114{bottom:882.120450px;}
.yc_c00114{bottom:913.170450px;}
.yb_c00114{bottom:944.220450px;}
.ya_c00114{bottom:987.150450px;}
.y9_c00114{bottom:1018.290450px;}
.y8_c00114{bottom:1049.340450px;}
.y7_c00114{bottom:1080.390450px;}
.y6_c00114{bottom:1111.440450px;}
.y3_c00114{bottom:1132.140450px;}
.y2_c00114{bottom:1165.441023px;}
.y1_c00114{bottom:1196.040600px;}
.h1_c00114{height:52.898555px;}
.h2_c00114{height:63.175781px;}
.h3_c00114{height:63.351562px;}
.h0_c00114{height:1263.000000px;}
.w1_c00114{width:892.500000px;}
.w0_c00114{width:892.830000px;}
.x0_c00114{left:0.000000px;}
.x1_c00114{left:127.620000px;}
.x2_c00114{left:738.450000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.lsb_c00114{letter-spacing:-0.090848pt;}
.ls11_c00114{letter-spacing:-0.070400pt;}
.ls13_c00114{letter-spacing:-0.038400pt;}
.ls10_c00114{letter-spacing:-0.019200pt;}
.lsf_c00114{letter-spacing:-0.012800pt;}
.lse_c00114{letter-spacing:-0.006400pt;}
.lsc_c00114{letter-spacing:0.000000pt;}
.ls6_c00114{letter-spacing:0.006400pt;}
.ls9_c00114{letter-spacing:0.012800pt;}
.ls7_c00114{letter-spacing:0.019200pt;}
.ls0_c00114{letter-spacing:0.025600pt;}
.ls1_c00114{letter-spacing:0.032000pt;}
.ls2_c00114{letter-spacing:0.038400pt;}
.ls8_c00114{letter-spacing:0.044800pt;}
.ls3_c00114{letter-spacing:0.051200pt;}
.lsa_c00114{letter-spacing:0.057600pt;}
.ls4_c00114{letter-spacing:0.064000pt;}
.ls5_c00114{letter-spacing:0.089600pt;}
.ls12_c00114{letter-spacing:0.172800pt;}
.lsd_c00114{letter-spacing:2.240000pt;}
.ws0_c00114{word-spacing:-16.064000pt;}
.ws8_c00114{word-spacing:-2.259200pt;}
.ws2_c00114{word-spacing:0.000000pt;}
.ws1_c00114{word-spacing:0.171008pt;}
.ws4_c00114{word-spacing:2.393600pt;}
.ws5_c00114{word-spacing:2.451200pt;}
.ws9_c00114{word-spacing:5.971200pt;}
.ws6_c00114{word-spacing:11.475200pt;}
.ws7_c00114{word-spacing:11.526400pt;}
.ws3_c00114{word-spacing:18.534400pt;}
._f_c00114{margin-left:-4.765568pt;}
._1_c00114{margin-left:-3.865600pt;}
._2_c00114{margin-left:-2.969600pt;}
._a_c00114{margin-left:-1.967232pt;}
._3_c00114{margin-left:-1.072768pt;}
._0_c00114{width:0.919168pt;}
._4_c00114{width:2.208000pt;}
._8_c00114{width:3.264000pt;}
._e_c00114{width:4.569600pt;}
._d_c00114{width:5.715200pt;}
._b_c00114{width:7.379200pt;}
._c_c00114{width:8.454400pt;}
._9_c00114{width:11.404800pt;}
._5_c00114{width:18.528000pt;}
._6_c00114{width:32.620800pt;}
._7_c00114{width:33.542400pt;}
.fs0_c00114{font-size:53.440000pt;}
.fs1_c00114{font-size:64.000000pt;}
.y0_c00114{bottom:0.000000pt;}
.y5_c00114{bottom:50.987067pt;}
.y4_c00114{bottom:69.387067pt;}
.y23_c00114{bottom:144.827067pt;}
.y22_c00114{bottom:172.507067pt;}
.y21_c00114{bottom:200.107067pt;}
.y20_c00114{bottom:227.707067pt;}
.y1f_c00114{bottom:265.867067pt;}
.y1e_c00114{bottom:293.547067pt;}
.y1d_c00114{bottom:321.147067pt;}
.y1c_c00114{bottom:348.747067pt;}
.y1b_c00114{bottom:376.347067pt;}
.y1a_c00114{bottom:414.587067pt;}
.y19_c00114{bottom:442.267067pt;}
.y18_c00114{bottom:469.867067pt;}
.y17_c00114{bottom:508.027067pt;}
.y16_c00114{bottom:535.707067pt;}
.y15_c00114{bottom:563.307067pt;}
.y14_c00114{bottom:590.907067pt;}
.y13_c00114{bottom:618.507067pt;}
.y12_c00114{bottom:646.107067pt;}
.y11_c00114{bottom:673.707067pt;}
.y10_c00114{bottom:701.307067pt;}
.yf_c00114{bottom:728.907067pt;}
.ye_c00114{bottom:756.507067pt;}
.yd_c00114{bottom:784.107067pt;}
.yc_c00114{bottom:811.707067pt;}
.yb_c00114{bottom:839.307067pt;}
.ya_c00114{bottom:877.467067pt;}
.y9_c00114{bottom:905.147067pt;}
.y8_c00114{bottom:932.747067pt;}
.y7_c00114{bottom:960.347067pt;}
.y6_c00114{bottom:987.947067pt;}
.y3_c00114{bottom:1006.347067pt;}
.y2_c00114{bottom:1035.947576pt;}
.y1_c00114{bottom:1063.147200pt;}
.h1_c00114{height:47.020937pt;}
.h2_c00114{height:56.156250pt;}
.h3_c00114{height:56.312500pt;}
.h0_c00114{height:1122.666667pt;}
.w1_c00114{width:793.333333pt;}
.w0_c00114{width:793.626667pt;}
.x0_c00114{left:0.000000pt;}
.x1_c00114{left:113.440000pt;}
.x2_c00114{left:656.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_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_9d1c25e95a74f72c4894ae89.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.095703;font-style:normal;font-weight:normal;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_2932c4ef63a15107d8a98c3e.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.093262;font-style: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:-20.880000px;}
.v0_c00115{vertical-align:0.000000px;}
.v1_c00115{vertical-align:24.120000px;}
.ls14_c00115{letter-spacing:-0.302400px;}
.ls17_c00115{letter-spacing:-0.054108px;}
.lsc_c00115{letter-spacing:-0.048096px;}
.ls16_c00115{letter-spacing:-0.043200px;}
.lsf_c00115{letter-spacing:-0.028800px;}
.lse_c00115{letter-spacing:-0.021600px;}
.ls12_c00115{letter-spacing:-0.014400px;}
.ls11_c00115{letter-spacing:-0.007200px;}
.lsd_c00115{letter-spacing:0.000000px;}
.ls3_c00115{letter-spacing:0.007200px;}
.ls2_c00115{letter-spacing:0.014400px;}
.ls0_c00115{letter-spacing:0.021600px;}
.ls6_c00115{letter-spacing:0.028800px;}
.ls7_c00115{letter-spacing:0.036000px;}
.ls1_c00115{letter-spacing:0.043200px;}
.ls4_c00115{letter-spacing:0.050400px;}
.ls9_c00115{letter-spacing:0.057600px;}
.ls8_c00115{letter-spacing:0.072000px;}
.lsb_c00115{letter-spacing:0.084168px;}
.lsa_c00115{letter-spacing:0.086400px;}
.ls5_c00115{letter-spacing:0.144000px;}
.ls18_c00115{letter-spacing:0.180360px;}
.ls13_c00115{letter-spacing:0.181944px;}
.ls15_c00115{letter-spacing:1.080000px;}
.ls10_c00115{letter-spacing:10.440000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00115{word-spacing:-18.028800px;}
.ws3_c00115{word-spacing:-15.210360px;}
.ws1_c00115{word-spacing:-12.151944px;}
.ws2_c00115{word-spacing:-9.720000px;}
.wsb_c00115{word-spacing:-0.086400px;}
.wsa_c00115{word-spacing:-0.007200px;}
.ws5_c00115{word-spacing:0.000000px;}
.ws4_c00115{word-spacing:0.138276px;}
.ws6_c00115{word-spacing:0.156600px;}
.ws8_c00115{word-spacing:0.194400px;}
.ws7_c00115{word-spacing:0.199800px;}
.ws9_c00115{word-spacing:5.428800px;}
._4_c00115{margin-left:-10.778400px;}
._5_c00115{margin-left:-9.604800px;}
._b_c00115{margin-left:-2.584800px;}
._0_c00115{margin-left:-1.144800px;}
._a_c00115{width:1.123200px;}
._1_c00115{width:2.836800px;}
._7_c00115{width:4.773600px;}
._8_c00115{width:6.048000px;}
._9_c00115{width:7.603200px;}
._6_c00115{width:8.863200px;}
._3_c00115{width:10.468800px;}
._2_c00115{width:14.752800px;}
.fc1_c00115{color:rgb(68,84,106);}
.fc0_c00115{color:rgb(0,0,0);}
.fs4_c00115{font-size:38.880000px;}
.fs3_c00115{font-size:47.880000px;}
.fs2_c00115{font-size:54.000000px;}
.fs0_c00115{font-size:60.120000px;}
.fs1_c00115{font-size:72.000000px;}
.y0_c00115{bottom:0.000000px;}
.y6_c00115{bottom:57.360450px;}
.y5_c00115{bottom:78.060450px;}
.y21_c00115{bottom:115.140450px;}
.y20_c00115{bottom:127.830450px;}
.y1f_c00115{bottom:169.050450px;}
.y1e_c00115{bottom:200.100450px;}
.y1d_c00115{bottom:243.120450px;}
.y1c_c00115{bottom:274.260450px;}
.y1b_c00115{bottom:305.310450px;}
.y1a_c00115{bottom:336.360450px;}
.y19_c00115{bottom:379.290450px;}
.y18_c00115{bottom:410.430450px;}
.y17_c00115{bottom:441.480450px;}
.y16_c00115{bottom:472.530450px;}
.y15_c00115{bottom:506.730450px;}
.y14_c00115{bottom:529.050450px;}
.y13_c00115{bottom:554.430450px;}
.y12_c00115{bottom:597.450450px;}
.y11_c00115{bottom:628.590450px;}
.y10_c00115{bottom:659.640450px;}
.yf_c00115{bottom:690.690450px;}
.ye_c00115{bottom:733.710450px;}
.yd_c00115{bottom:764.850450px;}
.yc_c00115{bottom:795.810450px;}
.yb_c00115{bottom:826.860450px;}
.ya_c00115{bottom:857.910450px;}
.y9_c00115{bottom:896.880450px;}
.y8_c00115{bottom:1113.150000px;}
.y7_c00115{bottom:1128.630450px;}
.y4_c00115{bottom:1144.380657px;}
.y3_c00115{bottom:1161.660648px;}
.y2_c00115{bottom:1178.850459px;}
.y1_c00115{bottom:1196.130450px;}
.h6_c00115{height:34.114922px;}
.h3_c00115{height:47.513672px;}
.h1_c00115{height:52.898555px;}
.h2_c00115{height:63.175781px;}
.h4_c00115{height:63.351562px;}
.h5_c00115{height:66.248789px;}
.h0_c00115{height:1263.000000px;}
.w1_c00115{width:892.500000px;}
.w0_c00115{width:892.830000px;}
.x0_c00115{left:0.000000px;}
.x4_c00115{left:127.620000px;}
.x1_c00115{left:649.620000px;}
.x3_c00115{left:738.450000px;}
.x5_c00115{left:756.450000px;}
.x2_c00115{left:765.450198px;}
@media print{
.v2_c00115{vertical-align:-18.560000pt;}
.v0_c00115{vertical-align:0.000000pt;}
.v1_c00115{vertical-align:21.440000pt;}
.ls14_c00115{letter-spacing:-0.268800pt;}
.ls17_c00115{letter-spacing:-0.048096pt;}
.lsc_c00115{letter-spacing:-0.042752pt;}
.ls16_c00115{letter-spacing:-0.038400pt;}
.lsf_c00115{letter-spacing:-0.025600pt;}
.lse_c00115{letter-spacing:-0.019200pt;}
.ls12_c00115{letter-spacing:-0.012800pt;}
.ls11_c00115{letter-spacing:-0.006400pt;}
.lsd_c00115{letter-spacing:0.000000pt;}
.ls3_c00115{letter-spacing:0.006400pt;}
.ls2_c00115{letter-spacing:0.012800pt;}
.ls0_c00115{letter-spacing:0.019200pt;}
.ls6_c00115{letter-spacing:0.025600pt;}
.ls7_c00115{letter-spacing:0.032000pt;}
.ls1_c00115{letter-spacing:0.038400pt;}
.ls4_c00115{letter-spacing:0.044800pt;}
.ls9_c00115{letter-spacing:0.051200pt;}
.ls8_c00115{letter-spacing:0.064000pt;}
.lsb_c00115{letter-spacing:0.074816pt;}
.lsa_c00115{letter-spacing:0.076800pt;}
.ls5_c00115{letter-spacing:0.128000pt;}
.ls18_c00115{letter-spacing:0.160320pt;}
.ls13_c00115{letter-spacing:0.161728pt;}
.ls15_c00115{letter-spacing:0.960000pt;}
.ls10_c00115{letter-spacing:9.280000pt;}
.ws0_c00115{word-spacing:-16.025600pt;}
.ws3_c00115{word-spacing:-13.520320pt;}
.ws1_c00115{word-spacing:-10.801728pt;}
.ws2_c00115{word-spacing:-8.640000pt;}
.wsb_c00115{word-spacing:-0.076800pt;}
.wsa_c00115{word-spacing:-0.006400pt;}
.ws5_c00115{word-spacing:0.000000pt;}
.ws4_c00115{word-spacing:0.122912pt;}
.ws6_c00115{word-spacing:0.139200pt;}
.ws8_c00115{word-spacing:0.172800pt;}
.ws7_c00115{word-spacing:0.177600pt;}
.ws9_c00115{word-spacing:4.825600pt;}
._4_c00115{margin-left:-9.580800pt;}
._5_c00115{margin-left:-8.537600pt;}
._b_c00115{margin-left:-2.297600pt;}
._0_c00115{margin-left:-1.017600pt;}
._a_c00115{width:0.998400pt;}
._1_c00115{width:2.521600pt;}
._7_c00115{width:4.243200pt;}
._8_c00115{width:5.376000pt;}
._9_c00115{width:6.758400pt;}
._6_c00115{width:7.878400pt;}
._3_c00115{width:9.305600pt;}
._2_c00115{width:13.113600pt;}
.fs4_c00115{font-size:34.560000pt;}
.fs3_c00115{font-size:42.560000pt;}
.fs2_c00115{font-size:48.000000pt;}
.fs0_c00115{font-size:53.440000pt;}
.fs1_c00115{font-size:64.000000pt;}
.y0_c00115{bottom:0.000000pt;}
.y6_c00115{bottom:50.987067pt;}
.y5_c00115{bottom:69.387067pt;}
.y21_c00115{bottom:102.347067pt;}
.y20_c00115{bottom:113.627067pt;}
.y1f_c00115{bottom:150.267067pt;}
.y1e_c00115{bottom:177.867067pt;}
.y1d_c00115{bottom:216.107067pt;}
.y1c_c00115{bottom:243.787067pt;}
.y1b_c00115{bottom:271.387067pt;}
.y1a_c00115{bottom:298.987067pt;}
.y19_c00115{bottom:337.147067pt;}
.y18_c00115{bottom:364.827067pt;}
.y17_c00115{bottom:392.427067pt;}
.y16_c00115{bottom:420.027067pt;}
.y15_c00115{bottom:450.427067pt;}
.y14_c00115{bottom:470.267067pt;}
.y13_c00115{bottom:492.827067pt;}
.y12_c00115{bottom:531.067067pt;}
.y11_c00115{bottom:558.747067pt;}
.y10_c00115{bottom:586.347067pt;}
.yf_c00115{bottom:613.947067pt;}
.ye_c00115{bottom:652.187067pt;}
.yd_c00115{bottom:679.867067pt;}
.yc_c00115{bottom:707.387067pt;}
.yb_c00115{bottom:734.987067pt;}
.ya_c00115{bottom:762.587067pt;}
.y9_c00115{bottom:797.227067pt;}
.y8_c00115{bottom:989.466667pt;}
.y7_c00115{bottom:1003.227067pt;}
.y4_c00115{bottom:1017.227251pt;}
.y3_c00115{bottom:1032.587243pt;}
.y2_c00115{bottom:1047.867075pt;}
.y1_c00115{bottom:1063.227067pt;}
.h6_c00115{height:30.324375pt;}
.h3_c00115{height:42.234375pt;}
.h1_c00115{height:47.020937pt;}
.h2_c00115{height:56.156250pt;}
.h4_c00115{height:56.312500pt;}
.h5_c00115{height:58.887813pt;}
.h0_c00115{height:1122.666667pt;}
.w1_c00115{width:793.333333pt;}
.w0_c00115{width:793.626667pt;}
.x0_c00115{left:0.000000pt;}
.x4_c00115{left:113.440000pt;}
.x1_c00115{left:577.440000pt;}
.x3_c00115{left:656.400000pt;}
.x5_c00115{left:672.400000pt;}
.x2_c00115{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51d7c51ebfb5e1826bb54070.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.095703;font-style:normal;font-weight:normal;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_01caeb74aeb7ce34a83a18bd.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00116{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls1a_c00116{letter-spacing:-0.208800px;}
.ls19_c00116{letter-spacing:-0.151200px;}
.ls10_c00116{letter-spacing:-0.102204px;}
.ls14_c00116{letter-spacing:-0.057600px;}
.ls1b_c00116{letter-spacing:-0.050400px;}
.ls18_c00116{letter-spacing:-0.043200px;}
.ls17_c00116{letter-spacing:-0.036000px;}
.ls15_c00116{letter-spacing:-0.028800px;}
.ls13_c00116{letter-spacing:-0.021600px;}
.ls12_c00116{letter-spacing:-0.007200px;}
.ls11_c00116{letter-spacing:0.000000px;}
.lsf_c00116{letter-spacing:0.007200px;}
.lsa_c00116{letter-spacing:0.014400px;}
.ls4_c00116{letter-spacing:0.021600px;}
.lsd_c00116{letter-spacing:0.028800px;}
.ls3_c00116{letter-spacing:0.036000px;}
.ls0_c00116{letter-spacing:0.043200px;}
.ls7_c00116{letter-spacing:0.050400px;}
.ls2_c00116{letter-spacing:0.057600px;}
.ls5_c00116{letter-spacing:0.064800px;}
.ls9_c00116{letter-spacing:0.072000px;}
.ls6_c00116{letter-spacing:0.079200px;}
.ls1_c00116{letter-spacing:0.093600px;}
.lsc_c00116{letter-spacing:0.115200px;}
.lsb_c00116{letter-spacing:0.129600px;}
.lse_c00116{letter-spacing:0.136800px;}
.ls8_c00116{letter-spacing:0.144000px;}
.ls16_c00116{letter-spacing:9.000000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00116{word-spacing:-17.992800px;}
.ws2_c00116{word-spacing:0.000000px;}
.ws1_c00116{word-spacing:0.192384px;}
.ws3_c00116{word-spacing:9.036000px;}
._c_c00116{margin-left:-9.669600px;}
._d_c00116{margin-left:-8.085600px;}
._4_c00116{margin-left:-4.075200px;}
._3_c00116{margin-left:-2.916000px;}
._2_c00116{margin-left:-1.353600px;}
._0_c00116{width:1.034064px;}
._1_c00116{width:2.836800px;}
._e_c00116{width:4.348800px;}
._9_c00116{width:5.356800px;}
._6_c00116{width:6.508800px;}
._5_c00116{width:7.538400px;}
._7_c00116{width:8.575200px;}
._8_c00116{width:10.440000px;}
._b_c00116{width:13.910400px;}
._a_c00116{width:15.091200px;}
.fc1_c00116{color:rgb(0,0,0);}
.fc0_c00116{color:rgb(32,31,30);}
.fs0_c00116{font-size:60.120000px;}
.fs1_c00116{font-size:72.000000px;}
.y0_c00116{bottom:0.000000px;}
.y5_c00116{bottom:57.360450px;}
.y4_c00116{bottom:78.060450px;}
.y24_c00116{bottom:120.000450px;}
.y23_c00116{bottom:151.050450px;}
.y22_c00116{bottom:182.100450px;}
.y21_c00116{bottom:213.150450px;}
.y20_c00116{bottom:256.080450px;}
.y1f_c00116{bottom:287.220450px;}
.y1e_c00116{bottom:318.270450px;}
.y1d_c00116{bottom:349.320450px;}
.y1c_c00116{bottom:392.250450px;}
.y1b_c00116{bottom:423.390450px;}
.y1a_c00116{bottom:454.440450px;}
.y19_c00116{bottom:485.490450px;}
.y18_c00116{bottom:516.540450px;}
.y17_c00116{bottom:559.560450px;}
.y16_c00116{bottom:590.700450px;}
.y15_c00116{bottom:621.660450px;}
.y14_c00116{bottom:652.710450px;}
.y13_c00116{bottom:683.760450px;}
.y12_c00116{bottom:714.810450px;}
.y11_c00116{bottom:745.860450px;}
.y10_c00116{bottom:776.910450px;}
.yf_c00116{bottom:819.930450px;}
.ye_c00116{bottom:851.070450px;}
.yd_c00116{bottom:882.120450px;}
.yc_c00116{bottom:913.170450px;}
.yb_c00116{bottom:944.220450px;}
.ya_c00116{bottom:975.180450px;}
.y9_c00116{bottom:1006.230450px;}
.y8_c00116{bottom:1037.280450px;}
.y7_c00116{bottom:1080.300450px;}
.y6_c00116{bottom:1111.440450px;}
.y3_c00116{bottom:1132.140450px;}
.y2_c00116{bottom:1165.441023px;}
.y1_c00116{bottom:1196.040600px;}
.h1_c00116{height:52.898555px;}
.h2_c00116{height:63.175781px;}
.h3_c00116{height:63.351562px;}
.h0_c00116{height:1263.000000px;}
.w1_c00116{width:892.500000px;}
.w0_c00116{width:892.830000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:127.620000px;}
.x2_c00116{left:738.450000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls1a_c00116{letter-spacing:-0.185600pt;}
.ls19_c00116{letter-spacing:-0.134400pt;}
.ls10_c00116{letter-spacing:-0.090848pt;}
.ls14_c00116{letter-spacing:-0.051200pt;}
.ls1b_c00116{letter-spacing:-0.044800pt;}
.ls18_c00116{letter-spacing:-0.038400pt;}
.ls17_c00116{letter-spacing:-0.032000pt;}
.ls15_c00116{letter-spacing:-0.025600pt;}
.ls13_c00116{letter-spacing:-0.019200pt;}
.ls12_c00116{letter-spacing:-0.006400pt;}
.ls11_c00116{letter-spacing:0.000000pt;}
.lsf_c00116{letter-spacing:0.006400pt;}
.lsa_c00116{letter-spacing:0.012800pt;}
.ls4_c00116{letter-spacing:0.019200pt;}
.lsd_c00116{letter-spacing:0.025600pt;}
.ls3_c00116{letter-spacing:0.032000pt;}
.ls0_c00116{letter-spacing:0.038400pt;}
.ls7_c00116{letter-spacing:0.044800pt;}
.ls2_c00116{letter-spacing:0.051200pt;}
.ls5_c00116{letter-spacing:0.057600pt;}
.ls9_c00116{letter-spacing:0.064000pt;}
.ls6_c00116{letter-spacing:0.070400pt;}
.ls1_c00116{letter-spacing:0.083200pt;}
.lsc_c00116{letter-spacing:0.102400pt;}
.lsb_c00116{letter-spacing:0.115200pt;}
.lse_c00116{letter-spacing:0.121600pt;}
.ls8_c00116{letter-spacing:0.128000pt;}
.ls16_c00116{letter-spacing:8.000000pt;}
.ws0_c00116{word-spacing:-15.993600pt;}
.ws2_c00116{word-spacing:0.000000pt;}
.ws1_c00116{word-spacing:0.171008pt;}
.ws3_c00116{word-spacing:8.032000pt;}
._c_c00116{margin-left:-8.595200pt;}
._d_c00116{margin-left:-7.187200pt;}
._4_c00116{margin-left:-3.622400pt;}
._3_c00116{margin-left:-2.592000pt;}
._2_c00116{margin-left:-1.203200pt;}
._0_c00116{width:0.919168pt;}
._1_c00116{width:2.521600pt;}
._e_c00116{width:3.865600pt;}
._9_c00116{width:4.761600pt;}
._6_c00116{width:5.785600pt;}
._5_c00116{width:6.700800pt;}
._7_c00116{width:7.622400pt;}
._8_c00116{width:9.280000pt;}
._b_c00116{width:12.364800pt;}
._a_c00116{width:13.414400pt;}
.fs0_c00116{font-size:53.440000pt;}
.fs1_c00116{font-size:64.000000pt;}
.y0_c00116{bottom:0.000000pt;}
.y5_c00116{bottom:50.987067pt;}
.y4_c00116{bottom:69.387067pt;}
.y24_c00116{bottom:106.667067pt;}
.y23_c00116{bottom:134.267067pt;}
.y22_c00116{bottom:161.867067pt;}
.y21_c00116{bottom:189.467067pt;}
.y20_c00116{bottom:227.627067pt;}
.y1f_c00116{bottom:255.307067pt;}
.y1e_c00116{bottom:282.907067pt;}
.y1d_c00116{bottom:310.507067pt;}
.y1c_c00116{bottom:348.667067pt;}
.y1b_c00116{bottom:376.347067pt;}
.y1a_c00116{bottom:403.947067pt;}
.y19_c00116{bottom:431.547067pt;}
.y18_c00116{bottom:459.147067pt;}
.y17_c00116{bottom:497.387067pt;}
.y16_c00116{bottom:525.067067pt;}
.y15_c00116{bottom:552.587067pt;}
.y14_c00116{bottom:580.187067pt;}
.y13_c00116{bottom:607.787067pt;}
.y12_c00116{bottom:635.387067pt;}
.y11_c00116{bottom:662.987067pt;}
.y10_c00116{bottom:690.587067pt;}
.yf_c00116{bottom:728.827067pt;}
.ye_c00116{bottom:756.507067pt;}
.yd_c00116{bottom:784.107067pt;}
.yc_c00116{bottom:811.707067pt;}
.yb_c00116{bottom:839.307067pt;}
.ya_c00116{bottom:866.827067pt;}
.y9_c00116{bottom:894.427067pt;}
.y8_c00116{bottom:922.027067pt;}
.y7_c00116{bottom:960.267067pt;}
.y6_c00116{bottom:987.947067pt;}
.y3_c00116{bottom:1006.347067pt;}
.y2_c00116{bottom:1035.947576pt;}
.y1_c00116{bottom:1063.147200pt;}
.h1_c00116{height:47.020937pt;}
.h2_c00116{height:56.156250pt;}
.h3_c00116{height:56.312500pt;}
.h0_c00116{height:1122.666667pt;}
.w1_c00116{width:793.333333pt;}
.w0_c00116{width:793.626667pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:113.440000pt;}
.x2_c00116{left:656.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_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_5d7729b7f9c05660148207b8.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.095703;font-style:normal;font-weight:normal;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_151d03b4d7b65f04bc2e9c41.woff2')format("woff");}.ff2_c00117{font-family:ff2_c00117;line-height:1.093262;font-style: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;}
.ls15_c00117{letter-spacing:-0.064800px;}
.ls10_c00117{letter-spacing:-0.048096px;}
.ls14_c00117{letter-spacing:-0.036000px;}
.ls16_c00117{letter-spacing:-0.028800px;}
.ls12_c00117{letter-spacing:-0.007200px;}
.ls11_c00117{letter-spacing:0.000000px;}
.ls2_c00117{letter-spacing:0.007200px;}
.ls3_c00117{letter-spacing:0.014400px;}
.ls6_c00117{letter-spacing:0.021600px;}
.ls1_c00117{letter-spacing:0.028800px;}
.lsd_c00117{letter-spacing:0.036000px;}
.ls7_c00117{letter-spacing:0.043200px;}
.ls5_c00117{letter-spacing:0.050400px;}
.ls0_c00117{letter-spacing:0.057600px;}
.lsf_c00117{letter-spacing:0.064800px;}
.lsc_c00117{letter-spacing:0.072000px;}
.ls4_c00117{letter-spacing:0.079200px;}
.ls8_c00117{letter-spacing:0.086400px;}
.lsa_c00117{letter-spacing:0.093600px;}
.ls9_c00117{letter-spacing:0.100800px;}
.lsb_c00117{letter-spacing:0.115200px;}
.lse_c00117{letter-spacing:0.129600px;}
.ls13_c00117{letter-spacing:11.520000px;}
.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:0.000000px;}
.ws0_c00117{word-spacing:0.138276px;}
._8_c00117{margin-left:-11.959200px;}
._9_c00117{margin-left:-10.850400px;}
._d_c00117{margin-left:-4.392000px;}
._6_c00117{margin-left:-2.260800px;}
._2_c00117{margin-left:-1.173600px;}
._4_c00117{width:1.944000px;}
._0_c00117{width:2.952000px;}
._1_c00117{width:4.132800px;}
._3_c00117{width:5.162400px;}
._5_c00117{width:6.321600px;}
._a_c00117{width:7.761600px;}
._c_c00117{width:9.194400px;}
._b_c00117{width:10.425600px;}
._7_c00117{width:11.476800px;}
.fc0_c00117{color:rgb(0,0,0);}
.fs0_c00117{font-size:60.120000px;}
.fs1_c00117{font-size:72.000000px;}
.y0_c00117{bottom:0.000000px;}
.y6_c00117{bottom:57.360450px;}
.y5_c00117{bottom:78.060450px;}
.y26_c00117{bottom:137.010450px;}
.y25_c00117{bottom:168.060450px;}
.y24_c00117{bottom:199.110450px;}
.y23_c00117{bottom:230.160450px;}
.y22_c00117{bottom:261.210450px;}
.y21_c00117{bottom:292.260450px;}
.y20_c00117{bottom:323.310450px;}
.y1f_c00117{bottom:354.360450px;}
.y1e_c00117{bottom:385.410450px;}
.y1d_c00117{bottom:416.460450px;}
.y1c_c00117{bottom:459.390450px;}
.y1b_c00117{bottom:490.530450px;}
.y1a_c00117{bottom:521.580450px;}
.y19_c00117{bottom:552.630450px;}
.y18_c00117{bottom:583.680450px;}
.y17_c00117{bottom:614.730450px;}
.y16_c00117{bottom:645.780450px;}
.y15_c00117{bottom:676.830450px;}
.y14_c00117{bottom:707.880450px;}
.y13_c00117{bottom:738.930450px;}
.y12_c00117{bottom:781.860450px;}
.y11_c00117{bottom:813.000450px;}
.y10_c00117{bottom:844.050450px;}
.yf_c00117{bottom:875.100450px;}
.ye_c00117{bottom:906.150450px;}
.yd_c00117{bottom:937.200450px;}
.yc_c00117{bottom:971.400450px;}
.yb_c00117{bottom:993.720450px;}
.ya_c00117{bottom:1019.100450px;}
.y9_c00117{bottom:1062.120450px;}
.y8_c00117{bottom:1093.260450px;}
.y7_c00117{bottom:1124.310450px;}
.y4_c00117{bottom:1144.380657px;}
.y3_c00117{bottom:1161.660648px;}
.y2_c00117{bottom:1178.850459px;}
.y1_c00117{bottom:1196.130450px;}
.h1_c00117{height:52.898555px;}
.h2_c00117{height:63.175781px;}
.h3_c00117{height:63.351562px;}
.h0_c00117{height:1263.000000px;}
.w1_c00117{width:892.500000px;}
.w0_c00117{width:892.830000px;}
.x0_c00117{left:0.000000px;}
.x4_c00117{left:127.620000px;}
.x1_c00117{left:649.620000px;}
.x3_c00117{left:738.450000px;}
.x2_c00117{left:765.450198px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls15_c00117{letter-spacing:-0.057600pt;}
.ls10_c00117{letter-spacing:-0.042752pt;}
.ls14_c00117{letter-spacing:-0.032000pt;}
.ls16_c00117{letter-spacing:-0.025600pt;}
.ls12_c00117{letter-spacing:-0.006400pt;}
.ls11_c00117{letter-spacing:0.000000pt;}
.ls2_c00117{letter-spacing:0.006400pt;}
.ls3_c00117{letter-spacing:0.012800pt;}
.ls6_c00117{letter-spacing:0.019200pt;}
.ls1_c00117{letter-spacing:0.025600pt;}
.lsd_c00117{letter-spacing:0.032000pt;}
.ls7_c00117{letter-spacing:0.038400pt;}
.ls5_c00117{letter-spacing:0.044800pt;}
.ls0_c00117{letter-spacing:0.051200pt;}
.lsf_c00117{letter-spacing:0.057600pt;}
.lsc_c00117{letter-spacing:0.064000pt;}
.ls4_c00117{letter-spacing:0.070400pt;}
.ls8_c00117{letter-spacing:0.076800pt;}
.lsa_c00117{letter-spacing:0.083200pt;}
.ls9_c00117{letter-spacing:0.089600pt;}
.lsb_c00117{letter-spacing:0.102400pt;}
.lse_c00117{letter-spacing:0.115200pt;}
.ls13_c00117{letter-spacing:10.240000pt;}
.ws1_c00117{word-spacing:0.000000pt;}
.ws0_c00117{word-spacing:0.122912pt;}
._8_c00117{margin-left:-10.630400pt;}
._9_c00117{margin-left:-9.644800pt;}
._d_c00117{margin-left:-3.904000pt;}
._6_c00117{margin-left:-2.009600pt;}
._2_c00117{margin-left:-1.043200pt;}
._4_c00117{width:1.728000pt;}
._0_c00117{width:2.624000pt;}
._1_c00117{width:3.673600pt;}
._3_c00117{width:4.588800pt;}
._5_c00117{width:5.619200pt;}
._a_c00117{width:6.899200pt;}
._c_c00117{width:8.172800pt;}
._b_c00117{width:9.267200pt;}
._7_c00117{width:10.201600pt;}
.fs0_c00117{font-size:53.440000pt;}
.fs1_c00117{font-size:64.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y6_c00117{bottom:50.987067pt;}
.y5_c00117{bottom:69.387067pt;}
.y26_c00117{bottom:121.787067pt;}
.y25_c00117{bottom:149.387067pt;}
.y24_c00117{bottom:176.987067pt;}
.y23_c00117{bottom:204.587067pt;}
.y22_c00117{bottom:232.187067pt;}
.y21_c00117{bottom:259.787067pt;}
.y20_c00117{bottom:287.387067pt;}
.y1f_c00117{bottom:314.987067pt;}
.y1e_c00117{bottom:342.587067pt;}
.y1d_c00117{bottom:370.187067pt;}
.y1c_c00117{bottom:408.347067pt;}
.y1b_c00117{bottom:436.027067pt;}
.y1a_c00117{bottom:463.627067pt;}
.y19_c00117{bottom:491.227067pt;}
.y18_c00117{bottom:518.827067pt;}
.y17_c00117{bottom:546.427067pt;}
.y16_c00117{bottom:574.027067pt;}
.y15_c00117{bottom:601.627067pt;}
.y14_c00117{bottom:629.227067pt;}
.y13_c00117{bottom:656.827067pt;}
.y12_c00117{bottom:694.987067pt;}
.y11_c00117{bottom:722.667067pt;}
.y10_c00117{bottom:750.267067pt;}
.yf_c00117{bottom:777.867067pt;}
.ye_c00117{bottom:805.467067pt;}
.yd_c00117{bottom:833.067067pt;}
.yc_c00117{bottom:863.467067pt;}
.yb_c00117{bottom:883.307067pt;}
.ya_c00117{bottom:905.867067pt;}
.y9_c00117{bottom:944.107067pt;}
.y8_c00117{bottom:971.787067pt;}
.y7_c00117{bottom:999.387067pt;}
.y4_c00117{bottom:1017.227251pt;}
.y3_c00117{bottom:1032.587243pt;}
.y2_c00117{bottom:1047.867075pt;}
.y1_c00117{bottom:1063.227067pt;}
.h1_c00117{height:47.020937pt;}
.h2_c00117{height:56.156250pt;}
.h3_c00117{height:56.312500pt;}
.h0_c00117{height:1122.666667pt;}
.w1_c00117{width:793.333333pt;}
.w0_c00117{width:793.626667pt;}
.x0_c00117{left:0.000000pt;}
.x4_c00117{left:113.440000pt;}
.x1_c00117{left:577.440000pt;}
.x3_c00117{left:656.400000pt;}
.x2_c00117{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.095703;font-style:normal;font-weight:normal;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_c51f2f040b3324a6fb7fad72.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00118{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.lse_c00118{letter-spacing:-0.194400px;}
.lsc_c00118{letter-spacing:-0.102204px;}
.ls13_c00118{letter-spacing:-0.036000px;}
.ls12_c00118{letter-spacing:-0.028800px;}
.ls10_c00118{letter-spacing:-0.014400px;}
.lsf_c00118{letter-spacing:-0.007200px;}
.lsd_c00118{letter-spacing:0.000000px;}
.ls4_c00118{letter-spacing:0.007200px;}
.lsa_c00118{letter-spacing:0.014400px;}
.ls5_c00118{letter-spacing:0.021600px;}
.ls8_c00118{letter-spacing:0.028800px;}
.ls2_c00118{letter-spacing:0.043200px;}
.ls7_c00118{letter-spacing:0.050400px;}
.ls0_c00118{letter-spacing:0.057600px;}
.ls6_c00118{letter-spacing:0.064800px;}
.ls3_c00118{letter-spacing:0.079200px;}
.ls9_c00118{letter-spacing:0.108000px;}
.ls1_c00118{letter-spacing:0.115200px;}
.lsb_c00118{letter-spacing:0.136800px;}
.ls14_c00118{letter-spacing:0.720000px;}
.ls11_c00118{letter-spacing:6.840000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00118{word-spacing:0.000000px;}
.ws0_c00118{word-spacing:0.192384px;}
._e_c00118{margin-left:-7.655328px;}
._d_c00118{margin-left:-6.551424px;}
._f_c00118{margin-left:-4.305600px;}
._c_c00118{margin-left:-3.261600px;}
._1_c00118{margin-left:-1.080000px;}
._0_c00118{width:1.034064px;}
._2_c00118{width:2.872800px;}
._3_c00118{width:3.927744px;}
._7_c00118{width:5.378112px;}
._8_c00118{width:7.106400px;}
._9_c00118{width:8.136000px;}
._6_c00118{width:10.080000px;}
._5_c00118{width:11.109600px;}
._4_c00118{width:12.189600px;}
._b_c00118{width:14.018400px;}
._a_c00118{width:15.091200px;}
.fc1_c00118{color:rgb(0,0,0);}
.fc0_c00118{color:rgb(32,31,30);}
.fs0_c00118{font-size:60.120000px;}
.fs1_c00118{font-size:72.000000px;}
.y0_c00118{bottom:0.000000px;}
.y5_c00118{bottom:57.360450px;}
.y4_c00118{bottom:78.060450px;}
.y22_c00118{bottom:193.980450px;}
.y21_c00118{bottom:225.120450px;}
.y20_c00118{bottom:256.170450px;}
.y1f_c00118{bottom:287.220450px;}
.y1e_c00118{bottom:318.270450px;}
.y1d_c00118{bottom:349.320450px;}
.y1c_c00118{bottom:392.250450px;}
.y1b_c00118{bottom:423.390450px;}
.y1a_c00118{bottom:454.440450px;}
.y19_c00118{bottom:485.490450px;}
.y18_c00118{bottom:516.540450px;}
.y17_c00118{bottom:547.590450px;}
.y16_c00118{bottom:590.610450px;}
.y15_c00118{bottom:621.660450px;}
.y14_c00118{bottom:652.710450px;}
.y13_c00118{bottom:683.760450px;}
.y12_c00118{bottom:714.810450px;}
.y11_c00118{bottom:757.830450px;}
.y10_c00118{bottom:788.970450px;}
.yf_c00118{bottom:820.020450px;}
.ye_c00118{bottom:851.070450px;}
.yd_c00118{bottom:882.120450px;}
.yc_c00118{bottom:913.170450px;}
.yb_c00118{bottom:944.220450px;}
.ya_c00118{bottom:987.150450px;}
.y9_c00118{bottom:1018.290450px;}
.y8_c00118{bottom:1049.340450px;}
.y7_c00118{bottom:1080.390450px;}
.y6_c00118{bottom:1111.440450px;}
.y3_c00118{bottom:1132.140450px;}
.y2_c00118{bottom:1165.441023px;}
.y1_c00118{bottom:1196.040600px;}
.h1_c00118{height:52.898555px;}
.h2_c00118{height:63.175781px;}
.h0_c00118{height:1263.000000px;}
.w1_c00118{width:892.500000px;}
.w0_c00118{width:892.830000px;}
.x0_c00118{left:0.000000px;}
.x1_c00118{left:127.620000px;}
.x2_c00118{left:738.450000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.lse_c00118{letter-spacing:-0.172800pt;}
.lsc_c00118{letter-spacing:-0.090848pt;}
.ls13_c00118{letter-spacing:-0.032000pt;}
.ls12_c00118{letter-spacing:-0.025600pt;}
.ls10_c00118{letter-spacing:-0.012800pt;}
.lsf_c00118{letter-spacing:-0.006400pt;}
.lsd_c00118{letter-spacing:0.000000pt;}
.ls4_c00118{letter-spacing:0.006400pt;}
.lsa_c00118{letter-spacing:0.012800pt;}
.ls5_c00118{letter-spacing:0.019200pt;}
.ls8_c00118{letter-spacing:0.025600pt;}
.ls2_c00118{letter-spacing:0.038400pt;}
.ls7_c00118{letter-spacing:0.044800pt;}
.ls0_c00118{letter-spacing:0.051200pt;}
.ls6_c00118{letter-spacing:0.057600pt;}
.ls3_c00118{letter-spacing:0.070400pt;}
.ls9_c00118{letter-spacing:0.096000pt;}
.ls1_c00118{letter-spacing:0.102400pt;}
.lsb_c00118{letter-spacing:0.121600pt;}
.ls14_c00118{letter-spacing:0.640000pt;}
.ls11_c00118{letter-spacing:6.080000pt;}
.ws1_c00118{word-spacing:0.000000pt;}
.ws0_c00118{word-spacing:0.171008pt;}
._e_c00118{margin-left:-6.804736pt;}
._d_c00118{margin-left:-5.823488pt;}
._f_c00118{margin-left:-3.827200pt;}
._c_c00118{margin-left:-2.899200pt;}
._1_c00118{margin-left:-0.960000pt;}
._0_c00118{width:0.919168pt;}
._2_c00118{width:2.553600pt;}
._3_c00118{width:3.491328pt;}
._7_c00118{width:4.780544pt;}
._8_c00118{width:6.316800pt;}
._9_c00118{width:7.232000pt;}
._6_c00118{width:8.960000pt;}
._5_c00118{width:9.875200pt;}
._4_c00118{width:10.835200pt;}
._b_c00118{width:12.460800pt;}
._a_c00118{width:13.414400pt;}
.fs0_c00118{font-size:53.440000pt;}
.fs1_c00118{font-size:64.000000pt;}
.y0_c00118{bottom:0.000000pt;}
.y5_c00118{bottom:50.987067pt;}
.y4_c00118{bottom:69.387067pt;}
.y22_c00118{bottom:172.427067pt;}
.y21_c00118{bottom:200.107067pt;}
.y20_c00118{bottom:227.707067pt;}
.y1f_c00118{bottom:255.307067pt;}
.y1e_c00118{bottom:282.907067pt;}
.y1d_c00118{bottom:310.507067pt;}
.y1c_c00118{bottom:348.667067pt;}
.y1b_c00118{bottom:376.347067pt;}
.y1a_c00118{bottom:403.947067pt;}
.y19_c00118{bottom:431.547067pt;}
.y18_c00118{bottom:459.147067pt;}
.y17_c00118{bottom:486.747067pt;}
.y16_c00118{bottom:524.987067pt;}
.y15_c00118{bottom:552.587067pt;}
.y14_c00118{bottom:580.187067pt;}
.y13_c00118{bottom:607.787067pt;}
.y12_c00118{bottom:635.387067pt;}
.y11_c00118{bottom:673.627067pt;}
.y10_c00118{bottom:701.307067pt;}
.yf_c00118{bottom:728.907067pt;}
.ye_c00118{bottom:756.507067pt;}
.yd_c00118{bottom:784.107067pt;}
.yc_c00118{bottom:811.707067pt;}
.yb_c00118{bottom:839.307067pt;}
.ya_c00118{bottom:877.467067pt;}
.y9_c00118{bottom:905.147067pt;}
.y8_c00118{bottom:932.747067pt;}
.y7_c00118{bottom:960.347067pt;}
.y6_c00118{bottom:987.947067pt;}
.y3_c00118{bottom:1006.347067pt;}
.y2_c00118{bottom:1035.947576pt;}
.y1_c00118{bottom:1063.147200pt;}
.h1_c00118{height:47.020937pt;}
.h2_c00118{height:56.156250pt;}
.h0_c00118{height:1122.666667pt;}
.w1_c00118{width:793.333333pt;}
.w0_c00118{width:793.626667pt;}
.x0_c00118{left:0.000000pt;}
.x1_c00118{left:113.440000pt;}
.x2_c00118{left:656.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_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_ea3e40cbfdaddab7b88256c2.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.095703;font-style:normal;font-weight:normal;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_e0ffec2dabb4f3d6ec497640.woff2')format("woff");}.ff2_c00119{font-family:ff2_c00119;line-height:1.093262;font-style: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;}
.lsf_c00119{letter-spacing:-1.800000px;}
.ls14_c00119{letter-spacing:-0.064800px;}
.lsb_c00119{letter-spacing:-0.048096px;}
.ls13_c00119{letter-spacing:-0.043200px;}
.lse_c00119{letter-spacing:-0.028800px;}
.ls10_c00119{letter-spacing:-0.021600px;}
.lsd_c00119{letter-spacing:-0.014400px;}
.ls11_c00119{letter-spacing:-0.007200px;}
.lsc_c00119{letter-spacing:0.000000px;}
.ls2_c00119{letter-spacing:0.007200px;}
.ls4_c00119{letter-spacing:0.014400px;}
.ls5_c00119{letter-spacing:0.021600px;}
.ls3_c00119{letter-spacing:0.028800px;}
.ls0_c00119{letter-spacing:0.036000px;}
.ls1_c00119{letter-spacing:0.043200px;}
.ls6_c00119{letter-spacing:0.050400px;}
.ls7_c00119{letter-spacing:0.057600px;}
.lsa_c00119{letter-spacing:0.064800px;}
.ls8_c00119{letter-spacing:0.072000px;}
.ls9_c00119{letter-spacing:0.086400px;}
.ls12_c00119{letter-spacing:2.880000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00119{word-spacing:-18.028800px;}
.wsa_c00119{word-spacing:-1.879200px;}
.ws6_c00119{word-spacing:-0.345600px;}
.ws5_c00119{word-spacing:-0.309600px;}
.ws2_c00119{word-spacing:0.000000px;}
.ws3_c00119{word-spacing:0.014400px;}
.ws1_c00119{word-spacing:0.138276px;}
.wsb_c00119{word-spacing:1.411200px;}
.ws9_c00119{word-spacing:4.262400px;}
.ws8_c00119{word-spacing:15.408000px;}
.ws7_c00119{word-spacing:15.472800px;}
.ws4_c00119{word-spacing:24.508800px;}
._d_c00119{margin-left:-4.730400px;}
._a_c00119{margin-left:-2.901600px;}
._7_c00119{margin-left:-1.008000px;}
._0_c00119{width:1.044000px;}
._3_c00119{width:2.541600px;}
._4_c00119{width:4.291200px;}
._8_c00119{width:5.486400px;}
._6_c00119{width:6.724800px;}
._9_c00119{width:7.747200px;}
._b_c00119{width:10.036800px;}
._c_c00119{width:11.138400px;}
._e_c00119{width:16.164000px;}
._1_c00119{width:23.918400px;}
._2_c00119{width:24.984000px;}
._5_c00119{width:29.721600px;}
.fc0_c00119{color:rgb(0,0,0);}
.fs0_c00119{font-size:60.120000px;}
.fs1_c00119{font-size:72.000000px;}
.y0_c00119{bottom:0.000000px;}
.y6_c00119{bottom:57.360450px;}
.y5_c00119{bottom:78.060450px;}
.y27_c00119{bottom:121.260450px;}
.y26_c00119{bottom:152.310450px;}
.y25_c00119{bottom:183.360450px;}
.y24_c00119{bottom:214.410450px;}
.y23_c00119{bottom:257.340450px;}
.y22_c00119{bottom:288.480450px;}
.y21_c00119{bottom:319.530450px;}
.y20_c00119{bottom:350.580450px;}
.y1f_c00119{bottom:381.630450px;}
.y1e_c00119{bottom:412.680450px;}
.y1d_c00119{bottom:443.730450px;}
.y1c_c00119{bottom:486.660450px;}
.y1b_c00119{bottom:517.800450px;}
.y1a_c00119{bottom:548.850450px;}
.y19_c00119{bottom:579.900450px;}
.y18_c00119{bottom:610.950450px;}
.y17_c00119{bottom:642.000450px;}
.y16_c00119{bottom:673.050450px;}
.y15_c00119{bottom:704.100450px;}
.y14_c00119{bottom:735.150450px;}
.y13_c00119{bottom:766.200450px;}
.y12_c00119{bottom:797.250450px;}
.y11_c00119{bottom:828.300450px;}
.y10_c00119{bottom:859.350450px;}
.yf_c00119{bottom:890.400450px;}
.ye_c00119{bottom:921.450450px;}
.yd_c00119{bottom:952.500450px;}
.yc_c00119{bottom:983.460450px;}
.yb_c00119{bottom:1014.510450px;}
.ya_c00119{bottom:1045.650450px;}
.y9_c00119{bottom:1076.700450px;}
.y8_c00119{bottom:1098.840450px;}
.y7_c00119{bottom:1124.130450px;}
.y4_c00119{bottom:1144.380657px;}
.y3_c00119{bottom:1161.660648px;}
.y2_c00119{bottom:1178.850459px;}
.y1_c00119{bottom:1196.130450px;}
.h1_c00119{height:52.898555px;}
.h2_c00119{height:63.175781px;}
.h3_c00119{height:63.351562px;}
.h0_c00119{height:1263.000000px;}
.w1_c00119{width:892.500000px;}
.w0_c00119{width:892.830000px;}
.x0_c00119{left:0.000000px;}
.x4_c00119{left:127.620000px;}
.x1_c00119{left:649.620000px;}
.x3_c00119{left:738.450000px;}
.x2_c00119{left:765.450198px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.lsf_c00119{letter-spacing:-1.600000pt;}
.ls14_c00119{letter-spacing:-0.057600pt;}
.lsb_c00119{letter-spacing:-0.042752pt;}
.ls13_c00119{letter-spacing:-0.038400pt;}
.lse_c00119{letter-spacing:-0.025600pt;}
.ls10_c00119{letter-spacing:-0.019200pt;}
.lsd_c00119{letter-spacing:-0.012800pt;}
.ls11_c00119{letter-spacing:-0.006400pt;}
.lsc_c00119{letter-spacing:0.000000pt;}
.ls2_c00119{letter-spacing:0.006400pt;}
.ls4_c00119{letter-spacing:0.012800pt;}
.ls5_c00119{letter-spacing:0.019200pt;}
.ls3_c00119{letter-spacing:0.025600pt;}
.ls0_c00119{letter-spacing:0.032000pt;}
.ls1_c00119{letter-spacing:0.038400pt;}
.ls6_c00119{letter-spacing:0.044800pt;}
.ls7_c00119{letter-spacing:0.051200pt;}
.lsa_c00119{letter-spacing:0.057600pt;}
.ls8_c00119{letter-spacing:0.064000pt;}
.ls9_c00119{letter-spacing:0.076800pt;}
.ls12_c00119{letter-spacing:2.560000pt;}
.ws0_c00119{word-spacing:-16.025600pt;}
.wsa_c00119{word-spacing:-1.670400pt;}
.ws6_c00119{word-spacing:-0.307200pt;}
.ws5_c00119{word-spacing:-0.275200pt;}
.ws2_c00119{word-spacing:0.000000pt;}
.ws3_c00119{word-spacing:0.012800pt;}
.ws1_c00119{word-spacing:0.122912pt;}
.wsb_c00119{word-spacing:1.254400pt;}
.ws9_c00119{word-spacing:3.788800pt;}
.ws8_c00119{word-spacing:13.696000pt;}
.ws7_c00119{word-spacing:13.753600pt;}
.ws4_c00119{word-spacing:21.785600pt;}
._d_c00119{margin-left:-4.204800pt;}
._a_c00119{margin-left:-2.579200pt;}
._7_c00119{margin-left:-0.896000pt;}
._0_c00119{width:0.928000pt;}
._3_c00119{width:2.259200pt;}
._4_c00119{width:3.814400pt;}
._8_c00119{width:4.876800pt;}
._6_c00119{width:5.977600pt;}
._9_c00119{width:6.886400pt;}
._b_c00119{width:8.921600pt;}
._c_c00119{width:9.900800pt;}
._e_c00119{width:14.368000pt;}
._1_c00119{width:21.260800pt;}
._2_c00119{width:22.208000pt;}
._5_c00119{width:26.419200pt;}
.fs0_c00119{font-size:53.440000pt;}
.fs1_c00119{font-size:64.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y6_c00119{bottom:50.987067pt;}
.y5_c00119{bottom:69.387067pt;}
.y27_c00119{bottom:107.787067pt;}
.y26_c00119{bottom:135.387067pt;}
.y25_c00119{bottom:162.987067pt;}
.y24_c00119{bottom:190.587067pt;}
.y23_c00119{bottom:228.747067pt;}
.y22_c00119{bottom:256.427067pt;}
.y21_c00119{bottom:284.027067pt;}
.y20_c00119{bottom:311.627067pt;}
.y1f_c00119{bottom:339.227067pt;}
.y1e_c00119{bottom:366.827067pt;}
.y1d_c00119{bottom:394.427067pt;}
.y1c_c00119{bottom:432.587067pt;}
.y1b_c00119{bottom:460.267067pt;}
.y1a_c00119{bottom:487.867067pt;}
.y19_c00119{bottom:515.467067pt;}
.y18_c00119{bottom:543.067067pt;}
.y17_c00119{bottom:570.667067pt;}
.y16_c00119{bottom:598.267067pt;}
.y15_c00119{bottom:625.867067pt;}
.y14_c00119{bottom:653.467067pt;}
.y13_c00119{bottom:681.067067pt;}
.y12_c00119{bottom:708.667067pt;}
.y11_c00119{bottom:736.267067pt;}
.y10_c00119{bottom:763.867067pt;}
.yf_c00119{bottom:791.467067pt;}
.ye_c00119{bottom:819.067067pt;}
.yd_c00119{bottom:846.667067pt;}
.yc_c00119{bottom:874.187067pt;}
.yb_c00119{bottom:901.787067pt;}
.ya_c00119{bottom:929.467067pt;}
.y9_c00119{bottom:957.067067pt;}
.y8_c00119{bottom:976.747067pt;}
.y7_c00119{bottom:999.227067pt;}
.y4_c00119{bottom:1017.227251pt;}
.y3_c00119{bottom:1032.587243pt;}
.y2_c00119{bottom:1047.867075pt;}
.y1_c00119{bottom:1063.227067pt;}
.h1_c00119{height:47.020937pt;}
.h2_c00119{height:56.156250pt;}
.h3_c00119{height:56.312500pt;}
.h0_c00119{height:1122.666667pt;}
.w1_c00119{width:793.333333pt;}
.w0_c00119{width:793.626667pt;}
.x0_c00119{left:0.000000pt;}
.x4_c00119{left:113.440000pt;}
.x1_c00119{left:577.440000pt;}
.x3_c00119{left:656.400000pt;}
.x2_c00119{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_01772db3b3e7bc214dce1e71.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.095703;font-style:normal;font-weight:normal;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_a3850a778b4e502f54cd9ca7.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.093262;font-style: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:-20.880000px;}
.v0_c00120{vertical-align:0.000000px;}
.v1_c00120{vertical-align:27.000000px;}
.ls18_c00120{letter-spacing:-0.126252px;}
.lse_c00120{letter-spacing:-0.102204px;}
.ls10_c00120{letter-spacing:-0.036000px;}
.ls12_c00120{letter-spacing:-0.021600px;}
.ls19_c00120{letter-spacing:-0.018036px;}
.ls16_c00120{letter-spacing:-0.014400px;}
.ls15_c00120{letter-spacing:-0.007200px;}
.lsf_c00120{letter-spacing:0.000000px;}
.ls3_c00120{letter-spacing:0.007200px;}
.ls2_c00120{letter-spacing:0.014400px;}
.lsa_c00120{letter-spacing:0.021600px;}
.ls0_c00120{letter-spacing:0.028800px;}
.ls4_c00120{letter-spacing:0.036000px;}
.ls1a_c00120{letter-spacing:0.036072px;}
.lsb_c00120{letter-spacing:0.043200px;}
.ls6_c00120{letter-spacing:0.050400px;}
.ls8_c00120{letter-spacing:0.057600px;}
.ls1_c00120{letter-spacing:0.064800px;}
.ls5_c00120{letter-spacing:0.072000px;}
.ls17_c00120{letter-spacing:0.078156px;}
.ls7_c00120{letter-spacing:0.079200px;}
.ls9_c00120{letter-spacing:0.086400px;}
.ls14_c00120{letter-spacing:0.093600px;}
.lsd_c00120{letter-spacing:0.096192px;}
.lsc_c00120{letter-spacing:0.158400px;}
.ls13_c00120{letter-spacing:0.181944px;}
.ls11_c00120{letter-spacing:7.920000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00120{word-spacing:-12.151944px;}
.ws1_c00120{word-spacing:-9.720000px;}
.ws3_c00120{word-spacing:0.000000px;}
.ws2_c00120{word-spacing:0.192384px;}
.ws6_c00120{word-spacing:5.047200px;}
.ws7_c00120{word-spacing:5.076000px;}
.ws8_c00120{word-spacing:7.418808px;}
.ws4_c00120{word-spacing:21.794400px;}
.ws5_c00120{word-spacing:21.909600px;}
._5_c00120{margin-left:-8.496000px;}
._6_c00120{margin-left:-7.329600px;}
._11_c00120{margin-left:-5.572800px;}
._10_c00120{margin-left:-4.341600px;}
._8_c00120{margin-left:-3.319200px;}
._1_c00120{margin-left:-1.468800px;}
._0_c00120{width:1.034064px;}
._7_c00120{width:2.116800px;}
._3_c00120{width:3.139200px;}
._2_c00120{width:4.305600px;}
._f_c00120{width:5.702400px;}
._12_c00120{width:6.859620px;}
._4_c00120{width:7.884000px;}
._9_c00120{width:8.978400px;}
._c_c00120{width:10.281600px;}
._b_c00120{width:11.484000px;}
._a_c00120{width:13.658400px;}
._e_c00120{width:20.649600px;}
._d_c00120{width:21.866400px;}
.fc1_c00120{color:rgb(0,0,0);}
.fc0_c00120{color:rgb(32,31,30);}
.fs3_c00120{font-size:38.880000px;}
.fs2_c00120{font-size:47.880000px;}
.fs0_c00120{font-size:60.120000px;}
.fs1_c00120{font-size:72.000000px;}
.y0_c00120{bottom:0.000000px;}
.y5_c00120{bottom:57.360450px;}
.y4_c00120{bottom:78.060450px;}
.y26_c00120{bottom:109.920648px;}
.y25_c00120{bottom:127.110459px;}
.y24_c00120{bottom:149.610450px;}
.y23_c00120{bottom:162.300450px;}
.y22_c00120{bottom:206.130450px;}
.y21_c00120{bottom:237.090450px;}
.y20_c00120{bottom:268.140450px;}
.y1f_c00120{bottom:299.190450px;}
.y1e_c00120{bottom:330.240450px;}
.y1d_c00120{bottom:373.260450px;}
.y1c_c00120{bottom:404.400450px;}
.y1b_c00120{bottom:435.450450px;}
.y1a_c00120{bottom:466.500450px;}
.y19_c00120{bottom:497.550450px;}
.y18_c00120{bottom:528.600450px;}
.y17_c00120{bottom:559.650450px;}
.y16_c00120{bottom:602.580450px;}
.y15_c00120{bottom:633.720450px;}
.y14_c00120{bottom:664.770450px;}
.y13_c00120{bottom:695.820450px;}
.y12_c00120{bottom:726.870450px;}
.y11_c00120{bottom:757.920450px;}
.y10_c00120{bottom:788.970450px;}
.yf_c00120{bottom:820.020450px;}
.ye_c00120{bottom:851.070450px;}
.yd_c00120{bottom:882.120450px;}
.yc_c00120{bottom:913.170450px;}
.yb_c00120{bottom:944.220450px;}
.ya_c00120{bottom:975.180450px;}
.y9_c00120{bottom:1006.230450px;}
.y8_c00120{bottom:1049.250450px;}
.y7_c00120{bottom:1080.390450px;}
.y6_c00120{bottom:1111.440450px;}
.y3_c00120{bottom:1132.140450px;}
.y2_c00120{bottom:1165.441023px;}
.y1_c00120{bottom:1196.040600px;}
.h5_c00120{height:34.114922px;}
.h6_c00120{height:52.751777px;}
.h1_c00120{height:52.898555px;}
.h2_c00120{height:63.175781px;}
.h4_c00120{height:63.351562px;}
.h3_c00120{height:69.011895px;}
.h0_c00120{height:1263.000000px;}
.w1_c00120{width:892.500000px;}
.w0_c00120{width:892.830000px;}
.x0_c00120{left:0.000000px;}
.x1_c00120{left:127.620000px;}
.x2_c00120{left:738.450000px;}
@media print{
.v2_c00120{vertical-align:-18.560000pt;}
.v0_c00120{vertical-align:0.000000pt;}
.v1_c00120{vertical-align:24.000000pt;}
.ls18_c00120{letter-spacing:-0.112224pt;}
.lse_c00120{letter-spacing:-0.090848pt;}
.ls10_c00120{letter-spacing:-0.032000pt;}
.ls12_c00120{letter-spacing:-0.019200pt;}
.ls19_c00120{letter-spacing:-0.016032pt;}
.ls16_c00120{letter-spacing:-0.012800pt;}
.ls15_c00120{letter-spacing:-0.006400pt;}
.lsf_c00120{letter-spacing:0.000000pt;}
.ls3_c00120{letter-spacing:0.006400pt;}
.ls2_c00120{letter-spacing:0.012800pt;}
.lsa_c00120{letter-spacing:0.019200pt;}
.ls0_c00120{letter-spacing:0.025600pt;}
.ls4_c00120{letter-spacing:0.032000pt;}
.ls1a_c00120{letter-spacing:0.032064pt;}
.lsb_c00120{letter-spacing:0.038400pt;}
.ls6_c00120{letter-spacing:0.044800pt;}
.ls8_c00120{letter-spacing:0.051200pt;}
.ls1_c00120{letter-spacing:0.057600pt;}
.ls5_c00120{letter-spacing:0.064000pt;}
.ls17_c00120{letter-spacing:0.069472pt;}
.ls7_c00120{letter-spacing:0.070400pt;}
.ls9_c00120{letter-spacing:0.076800pt;}
.ls14_c00120{letter-spacing:0.083200pt;}
.lsd_c00120{letter-spacing:0.085504pt;}
.lsc_c00120{letter-spacing:0.140800pt;}
.ls13_c00120{letter-spacing:0.161728pt;}
.ls11_c00120{letter-spacing:7.040000pt;}
.ws0_c00120{word-spacing:-10.801728pt;}
.ws1_c00120{word-spacing:-8.640000pt;}
.ws3_c00120{word-spacing:0.000000pt;}
.ws2_c00120{word-spacing:0.171008pt;}
.ws6_c00120{word-spacing:4.486400pt;}
.ws7_c00120{word-spacing:4.512000pt;}
.ws8_c00120{word-spacing:6.594496pt;}
.ws4_c00120{word-spacing:19.372800pt;}
.ws5_c00120{word-spacing:19.475200pt;}
._5_c00120{margin-left:-7.552000pt;}
._6_c00120{margin-left:-6.515200pt;}
._11_c00120{margin-left:-4.953600pt;}
._10_c00120{margin-left:-3.859200pt;}
._8_c00120{margin-left:-2.950400pt;}
._1_c00120{margin-left:-1.305600pt;}
._0_c00120{width:0.919168pt;}
._7_c00120{width:1.881600pt;}
._3_c00120{width:2.790400pt;}
._2_c00120{width:3.827200pt;}
._f_c00120{width:5.068800pt;}
._12_c00120{width:6.097440pt;}
._4_c00120{width:7.008000pt;}
._9_c00120{width:7.980800pt;}
._c_c00120{width:9.139200pt;}
._b_c00120{width:10.208000pt;}
._a_c00120{width:12.140800pt;}
._e_c00120{width:18.355200pt;}
._d_c00120{width:19.436800pt;}
.fs3_c00120{font-size:34.560000pt;}
.fs2_c00120{font-size:42.560000pt;}
.fs0_c00120{font-size:53.440000pt;}
.fs1_c00120{font-size:64.000000pt;}
.y0_c00120{bottom:0.000000pt;}
.y5_c00120{bottom:50.987067pt;}
.y4_c00120{bottom:69.387067pt;}
.y26_c00120{bottom:97.707243pt;}
.y25_c00120{bottom:112.987075pt;}
.y24_c00120{bottom:132.987067pt;}
.y23_c00120{bottom:144.267067pt;}
.y22_c00120{bottom:183.227067pt;}
.y21_c00120{bottom:210.747067pt;}
.y20_c00120{bottom:238.347067pt;}
.y1f_c00120{bottom:265.947067pt;}
.y1e_c00120{bottom:293.547067pt;}
.y1d_c00120{bottom:331.787067pt;}
.y1c_c00120{bottom:359.467067pt;}
.y1b_c00120{bottom:387.067067pt;}
.y1a_c00120{bottom:414.667067pt;}
.y19_c00120{bottom:442.267067pt;}
.y18_c00120{bottom:469.867067pt;}
.y17_c00120{bottom:497.467067pt;}
.y16_c00120{bottom:535.627067pt;}
.y15_c00120{bottom:563.307067pt;}
.y14_c00120{bottom:590.907067pt;}
.y13_c00120{bottom:618.507067pt;}
.y12_c00120{bottom:646.107067pt;}
.y11_c00120{bottom:673.707067pt;}
.y10_c00120{bottom:701.307067pt;}
.yf_c00120{bottom:728.907067pt;}
.ye_c00120{bottom:756.507067pt;}
.yd_c00120{bottom:784.107067pt;}
.yc_c00120{bottom:811.707067pt;}
.yb_c00120{bottom:839.307067pt;}
.ya_c00120{bottom:866.827067pt;}
.y9_c00120{bottom:894.427067pt;}
.y8_c00120{bottom:932.667067pt;}
.y7_c00120{bottom:960.347067pt;}
.y6_c00120{bottom:987.947067pt;}
.y3_c00120{bottom:1006.347067pt;}
.y2_c00120{bottom:1035.947576pt;}
.y1_c00120{bottom:1063.147200pt;}
.h5_c00120{height:30.324375pt;}
.h6_c00120{height:46.890469pt;}
.h1_c00120{height:47.020937pt;}
.h2_c00120{height:56.156250pt;}
.h4_c00120{height:56.312500pt;}
.h3_c00120{height:61.343906pt;}
.h0_c00120{height:1122.666667pt;}
.w1_c00120{width:793.333333pt;}
.w0_c00120{width:793.626667pt;}
.x0_c00120{left:0.000000pt;}
.x1_c00120{left:113.440000pt;}
.x2_c00120{left:656.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_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_c8f3e7da4867b379eeae253f.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.095703;font-style:normal;font-weight:normal;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_e9e305bed63067c1e5e45c54.woff2')format("woff");}.ff2_c00121{font-family:ff2_c00121;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.lsf_c00121{letter-spacing:-0.144000px;}
.ls11_c00121{letter-spacing:-0.050400px;}
.lsc_c00121{letter-spacing:-0.048096px;}
.ls13_c00121{letter-spacing:-0.043200px;}
.ls12_c00121{letter-spacing:-0.028800px;}
.ls14_c00121{letter-spacing:-0.021600px;}
.ls10_c00121{letter-spacing:-0.014400px;}
.ls15_c00121{letter-spacing:-0.007200px;}
.lsd_c00121{letter-spacing:0.000000px;}
.ls7_c00121{letter-spacing:0.007200px;}
.lsa_c00121{letter-spacing:0.014400px;}
.ls6_c00121{letter-spacing:0.021600px;}
.ls4_c00121{letter-spacing:0.028800px;}
.ls0_c00121{letter-spacing:0.036000px;}
.ls1_c00121{letter-spacing:0.043200px;}
.ls9_c00121{letter-spacing:0.050400px;}
.ls8_c00121{letter-spacing:0.057600px;}
.ls2_c00121{letter-spacing:0.064800px;}
.ls3_c00121{letter-spacing:0.072000px;}
.ls5_c00121{letter-spacing:0.079200px;}
.lsb_c00121{letter-spacing:0.093600px;}
.lse_c00121{letter-spacing:10.800000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00121{word-spacing:-18.072000px;}
.ws1_c00121{word-spacing:-18.021600px;}
.ws4_c00121{word-spacing:-1.512000px;}
.ws3_c00121{word-spacing:0.000000px;}
.ws2_c00121{word-spacing:0.138276px;}
._2_c00121{margin-left:-11.368800px;}
._e_c00121{margin-left:-4.939200px;}
._b_c00121{margin-left:-3.499200px;}
._4_c00121{margin-left:-2.340000px;}
._1_c00121{margin-left:-1.231200px;}
._3_c00121{width:1.144800px;}
._8_c00121{width:2.851200px;}
._9_c00121{width:3.902400px;}
._6_c00121{width:5.342400px;}
._7_c00121{width:6.508800px;}
._a_c00121{width:8.236800px;}
._c_c00121{width:9.576000px;}
._0_c00121{width:10.764000px;}
._5_c00121{width:12.556800px;}
._d_c00121{width:15.422400px;}
.fc0_c00121{color:rgb(0,0,0);}
.fs0_c00121{font-size:60.120000px;}
.fs1_c00121{font-size:72.000000px;}
.y0_c00121{bottom:0.000000px;}
.y6_c00121{bottom:57.360450px;}
.y5_c00121{bottom:78.060450px;}
.y24_c00121{bottom:175.890450px;}
.y23_c00121{bottom:207.030450px;}
.y22_c00121{bottom:238.080450px;}
.y21_c00121{bottom:269.130450px;}
.y20_c00121{bottom:300.180450px;}
.y1f_c00121{bottom:331.230450px;}
.y1e_c00121{bottom:362.280450px;}
.y1d_c00121{bottom:393.330450px;}
.y1c_c00121{bottom:424.380450px;}
.y1b_c00121{bottom:455.430450px;}
.y1a_c00121{bottom:486.480450px;}
.y19_c00121{bottom:529.410450px;}
.y18_c00121{bottom:560.550450px;}
.y17_c00121{bottom:591.600450px;}
.y16_c00121{bottom:622.650450px;}
.y15_c00121{bottom:665.580450px;}
.y14_c00121{bottom:696.720450px;}
.y13_c00121{bottom:727.770450px;}
.y12_c00121{bottom:758.820450px;}
.y11_c00121{bottom:789.870450px;}
.y10_c00121{bottom:832.800450px;}
.yf_c00121{bottom:863.940450px;}
.ye_c00121{bottom:894.990450px;}
.yd_c00121{bottom:926.040450px;}
.yc_c00121{bottom:957.090450px;}
.yb_c00121{bottom:988.140450px;}
.ya_c00121{bottom:1019.190450px;}
.y9_c00121{bottom:1062.120450px;}
.y8_c00121{bottom:1093.260450px;}
.y7_c00121{bottom:1124.310450px;}
.y4_c00121{bottom:1144.380657px;}
.y3_c00121{bottom:1161.660648px;}
.y2_c00121{bottom:1178.850459px;}
.y1_c00121{bottom:1196.130450px;}
.h1_c00121{height:52.898555px;}
.h2_c00121{height:63.175781px;}
.h3_c00121{height:63.351562px;}
.h0_c00121{height:1263.000000px;}
.w1_c00121{width:892.500000px;}
.w0_c00121{width:892.830000px;}
.x0_c00121{left:0.000000px;}
.x4_c00121{left:127.620000px;}
.x1_c00121{left:649.620000px;}
.x3_c00121{left:738.450000px;}
.x2_c00121{left:765.450198px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.lsf_c00121{letter-spacing:-0.128000pt;}
.ls11_c00121{letter-spacing:-0.044800pt;}
.lsc_c00121{letter-spacing:-0.042752pt;}
.ls13_c00121{letter-spacing:-0.038400pt;}
.ls12_c00121{letter-spacing:-0.025600pt;}
.ls14_c00121{letter-spacing:-0.019200pt;}
.ls10_c00121{letter-spacing:-0.012800pt;}
.ls15_c00121{letter-spacing:-0.006400pt;}
.lsd_c00121{letter-spacing:0.000000pt;}
.ls7_c00121{letter-spacing:0.006400pt;}
.lsa_c00121{letter-spacing:0.012800pt;}
.ls6_c00121{letter-spacing:0.019200pt;}
.ls4_c00121{letter-spacing:0.025600pt;}
.ls0_c00121{letter-spacing:0.032000pt;}
.ls1_c00121{letter-spacing:0.038400pt;}
.ls9_c00121{letter-spacing:0.044800pt;}
.ls8_c00121{letter-spacing:0.051200pt;}
.ls2_c00121{letter-spacing:0.057600pt;}
.ls3_c00121{letter-spacing:0.064000pt;}
.ls5_c00121{letter-spacing:0.070400pt;}
.lsb_c00121{letter-spacing:0.083200pt;}
.lse_c00121{letter-spacing:9.600000pt;}
.ws0_c00121{word-spacing:-16.064000pt;}
.ws1_c00121{word-spacing:-16.019200pt;}
.ws4_c00121{word-spacing:-1.344000pt;}
.ws3_c00121{word-spacing:0.000000pt;}
.ws2_c00121{word-spacing:0.122912pt;}
._2_c00121{margin-left:-10.105600pt;}
._e_c00121{margin-left:-4.390400pt;}
._b_c00121{margin-left:-3.110400pt;}
._4_c00121{margin-left:-2.080000pt;}
._1_c00121{margin-left:-1.094400pt;}
._3_c00121{width:1.017600pt;}
._8_c00121{width:2.534400pt;}
._9_c00121{width:3.468800pt;}
._6_c00121{width:4.748800pt;}
._7_c00121{width:5.785600pt;}
._a_c00121{width:7.321600pt;}
._c_c00121{width:8.512000pt;}
._0_c00121{width:9.568000pt;}
._5_c00121{width:11.161600pt;}
._d_c00121{width:13.708800pt;}
.fs0_c00121{font-size:53.440000pt;}
.fs1_c00121{font-size:64.000000pt;}
.y0_c00121{bottom:0.000000pt;}
.y6_c00121{bottom:50.987067pt;}
.y5_c00121{bottom:69.387067pt;}
.y24_c00121{bottom:156.347067pt;}
.y23_c00121{bottom:184.027067pt;}
.y22_c00121{bottom:211.627067pt;}
.y21_c00121{bottom:239.227067pt;}
.y20_c00121{bottom:266.827067pt;}
.y1f_c00121{bottom:294.427067pt;}
.y1e_c00121{bottom:322.027067pt;}
.y1d_c00121{bottom:349.627067pt;}
.y1c_c00121{bottom:377.227067pt;}
.y1b_c00121{bottom:404.827067pt;}
.y1a_c00121{bottom:432.427067pt;}
.y19_c00121{bottom:470.587067pt;}
.y18_c00121{bottom:498.267067pt;}
.y17_c00121{bottom:525.867067pt;}
.y16_c00121{bottom:553.467067pt;}
.y15_c00121{bottom:591.627067pt;}
.y14_c00121{bottom:619.307067pt;}
.y13_c00121{bottom:646.907067pt;}
.y12_c00121{bottom:674.507067pt;}
.y11_c00121{bottom:702.107067pt;}
.y10_c00121{bottom:740.267067pt;}
.yf_c00121{bottom:767.947067pt;}
.ye_c00121{bottom:795.547067pt;}
.yd_c00121{bottom:823.147067pt;}
.yc_c00121{bottom:850.747067pt;}
.yb_c00121{bottom:878.347067pt;}
.ya_c00121{bottom:905.947067pt;}
.y9_c00121{bottom:944.107067pt;}
.y8_c00121{bottom:971.787067pt;}
.y7_c00121{bottom:999.387067pt;}
.y4_c00121{bottom:1017.227251pt;}
.y3_c00121{bottom:1032.587243pt;}
.y2_c00121{bottom:1047.867075pt;}
.y1_c00121{bottom:1063.227067pt;}
.h1_c00121{height:47.020937pt;}
.h2_c00121{height:56.156250pt;}
.h3_c00121{height:56.312500pt;}
.h0_c00121{height:1122.666667pt;}
.w1_c00121{width:793.333333pt;}
.w0_c00121{width:793.626667pt;}
.x0_c00121{left:0.000000pt;}
.x4_c00121{left:113.440000pt;}
.x1_c00121{left:577.440000pt;}
.x3_c00121{left:656.400000pt;}
.x2_c00121{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bbbd39c07de7a1cecba9b71e.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.095703;font-style:normal;font-weight:normal;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_8edb4965d79901bd481b6619.woff2')format("woff");}.ff2_c00122{font-family:ff2_c00122;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00122{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls13_c00122{letter-spacing:-0.784800px;}
.lsc_c00122{letter-spacing:-0.102204px;}
.lsf_c00122{letter-spacing:-0.057600px;}
.ls10_c00122{letter-spacing:-0.050400px;}
.ls11_c00122{letter-spacing:-0.036000px;}
.ls12_c00122{letter-spacing:-0.021600px;}
.lse_c00122{letter-spacing:-0.014400px;}
.ls15_c00122{letter-spacing:-0.007200px;}
.lsd_c00122{letter-spacing:0.000000px;}
.ls0_c00122{letter-spacing:0.007200px;}
.ls4_c00122{letter-spacing:0.014400px;}
.ls7_c00122{letter-spacing:0.021600px;}
.ls5_c00122{letter-spacing:0.028800px;}
.ls2_c00122{letter-spacing:0.036000px;}
.ls3_c00122{letter-spacing:0.043200px;}
.ls1_c00122{letter-spacing:0.050400px;}
.ls6_c00122{letter-spacing:0.057600px;}
.lsa_c00122{letter-spacing:0.064800px;}
.ls9_c00122{letter-spacing:0.072000px;}
.lsb_c00122{letter-spacing:0.079200px;}
.ls8_c00122{letter-spacing:0.086400px;}
.ls14_c00122{letter-spacing:15.840000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00122{word-spacing:0.000000px;}
.ws0_c00122{word-spacing:0.192384px;}
.ws2_c00122{word-spacing:7.840800px;}
._c_c00122{margin-left:-16.732800px;}
._b_c00122{margin-left:-15.609600px;}
._4_c00122{margin-left:-4.377600px;}
._2_c00122{margin-left:-2.930400px;}
._3_c00122{margin-left:-1.324800px;}
._0_c00122{width:1.034064px;}
._e_c00122{width:2.505600px;}
._1_c00122{width:4.680000px;}
._d_c00122{width:6.062400px;}
._8_c00122{width:7.862400px;}
._9_c00122{width:9.000000px;}
._5_c00122{width:10.778400px;}
._6_c00122{width:11.779200px;}
._a_c00122{width:15.818400px;}
._7_c00122{width:19.368000px;}
.fc1_c00122{color:rgb(0,0,0);}
.fc0_c00122{color:rgb(32,31,30);}
.fs0_c00122{font-size:60.120000px;}
.fs1_c00122{font-size:72.000000px;}
.y0_c00122{bottom:0.000000px;}
.y5_c00122{bottom:57.360450px;}
.y4_c00122{bottom:78.060450px;}
.y25_c00122{bottom:112.980450px;}
.y24_c00122{bottom:144.030450px;}
.y23_c00122{bottom:175.080450px;}
.y22_c00122{bottom:206.130450px;}
.y21_c00122{bottom:237.090450px;}
.y20_c00122{bottom:268.140450px;}
.y1f_c00122{bottom:299.190450px;}
.y1e_c00122{bottom:330.240450px;}
.y1d_c00122{bottom:361.290450px;}
.y1c_c00122{bottom:404.310450px;}
.y1b_c00122{bottom:435.450450px;}
.y1a_c00122{bottom:466.500450px;}
.y19_c00122{bottom:497.550450px;}
.y18_c00122{bottom:528.600450px;}
.y17_c00122{bottom:559.650450px;}
.y16_c00122{bottom:590.700450px;}
.y15_c00122{bottom:621.660450px;}
.y14_c00122{bottom:664.680450px;}
.y13_c00122{bottom:695.820450px;}
.y12_c00122{bottom:726.870450px;}
.y11_c00122{bottom:757.920450px;}
.y10_c00122{bottom:788.970450px;}
.yf_c00122{bottom:820.020450px;}
.ye_c00122{bottom:851.070450px;}
.yd_c00122{bottom:882.120450px;}
.yc_c00122{bottom:913.170450px;}
.yb_c00122{bottom:956.100450px;}
.ya_c00122{bottom:987.240450px;}
.y9_c00122{bottom:1018.290450px;}
.y8_c00122{bottom:1049.340450px;}
.y7_c00122{bottom:1080.390450px;}
.y6_c00122{bottom:1111.440450px;}
.y3_c00122{bottom:1132.140450px;}
.y2_c00122{bottom:1165.441023px;}
.y1_c00122{bottom:1196.040600px;}
.h1_c00122{height:52.898555px;}
.h2_c00122{height:63.175781px;}
.h3_c00122{height:63.351562px;}
.h0_c00122{height:1263.000000px;}
.w1_c00122{width:892.500000px;}
.w0_c00122{width:892.830000px;}
.x0_c00122{left:0.000000px;}
.x1_c00122{left:127.620000px;}
.x2_c00122{left:738.450000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls13_c00122{letter-spacing:-0.697600pt;}
.lsc_c00122{letter-spacing:-0.090848pt;}
.lsf_c00122{letter-spacing:-0.051200pt;}
.ls10_c00122{letter-spacing:-0.044800pt;}
.ls11_c00122{letter-spacing:-0.032000pt;}
.ls12_c00122{letter-spacing:-0.019200pt;}
.lse_c00122{letter-spacing:-0.012800pt;}
.ls15_c00122{letter-spacing:-0.006400pt;}
.lsd_c00122{letter-spacing:0.000000pt;}
.ls0_c00122{letter-spacing:0.006400pt;}
.ls4_c00122{letter-spacing:0.012800pt;}
.ls7_c00122{letter-spacing:0.019200pt;}
.ls5_c00122{letter-spacing:0.025600pt;}
.ls2_c00122{letter-spacing:0.032000pt;}
.ls3_c00122{letter-spacing:0.038400pt;}
.ls1_c00122{letter-spacing:0.044800pt;}
.ls6_c00122{letter-spacing:0.051200pt;}
.lsa_c00122{letter-spacing:0.057600pt;}
.ls9_c00122{letter-spacing:0.064000pt;}
.lsb_c00122{letter-spacing:0.070400pt;}
.ls8_c00122{letter-spacing:0.076800pt;}
.ls14_c00122{letter-spacing:14.080000pt;}
.ws1_c00122{word-spacing:0.000000pt;}
.ws0_c00122{word-spacing:0.171008pt;}
.ws2_c00122{word-spacing:6.969600pt;}
._c_c00122{margin-left:-14.873600pt;}
._b_c00122{margin-left:-13.875200pt;}
._4_c00122{margin-left:-3.891200pt;}
._2_c00122{margin-left:-2.604800pt;}
._3_c00122{margin-left:-1.177600pt;}
._0_c00122{width:0.919168pt;}
._e_c00122{width:2.227200pt;}
._1_c00122{width:4.160000pt;}
._d_c00122{width:5.388800pt;}
._8_c00122{width:6.988800pt;}
._9_c00122{width:8.000000pt;}
._5_c00122{width:9.580800pt;}
._6_c00122{width:10.470400pt;}
._a_c00122{width:14.060800pt;}
._7_c00122{width:17.216000pt;}
.fs0_c00122{font-size:53.440000pt;}
.fs1_c00122{font-size:64.000000pt;}
.y0_c00122{bottom:0.000000pt;}
.y5_c00122{bottom:50.987067pt;}
.y4_c00122{bottom:69.387067pt;}
.y25_c00122{bottom:100.427067pt;}
.y24_c00122{bottom:128.027067pt;}
.y23_c00122{bottom:155.627067pt;}
.y22_c00122{bottom:183.227067pt;}
.y21_c00122{bottom:210.747067pt;}
.y20_c00122{bottom:238.347067pt;}
.y1f_c00122{bottom:265.947067pt;}
.y1e_c00122{bottom:293.547067pt;}
.y1d_c00122{bottom:321.147067pt;}
.y1c_c00122{bottom:359.387067pt;}
.y1b_c00122{bottom:387.067067pt;}
.y1a_c00122{bottom:414.667067pt;}
.y19_c00122{bottom:442.267067pt;}
.y18_c00122{bottom:469.867067pt;}
.y17_c00122{bottom:497.467067pt;}
.y16_c00122{bottom:525.067067pt;}
.y15_c00122{bottom:552.587067pt;}
.y14_c00122{bottom:590.827067pt;}
.y13_c00122{bottom:618.507067pt;}
.y12_c00122{bottom:646.107067pt;}
.y11_c00122{bottom:673.707067pt;}
.y10_c00122{bottom:701.307067pt;}
.yf_c00122{bottom:728.907067pt;}
.ye_c00122{bottom:756.507067pt;}
.yd_c00122{bottom:784.107067pt;}
.yc_c00122{bottom:811.707067pt;}
.yb_c00122{bottom:849.867067pt;}
.ya_c00122{bottom:877.547067pt;}
.y9_c00122{bottom:905.147067pt;}
.y8_c00122{bottom:932.747067pt;}
.y7_c00122{bottom:960.347067pt;}
.y6_c00122{bottom:987.947067pt;}
.y3_c00122{bottom:1006.347067pt;}
.y2_c00122{bottom:1035.947576pt;}
.y1_c00122{bottom:1063.147200pt;}
.h1_c00122{height:47.020937pt;}
.h2_c00122{height:56.156250pt;}
.h3_c00122{height:56.312500pt;}
.h0_c00122{height:1122.666667pt;}
.w1_c00122{width:793.333333pt;}
.w0_c00122{width:793.626667pt;}
.x0_c00122{left:0.000000pt;}
.x1_c00122{left:113.440000pt;}
.x2_c00122{left:656.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_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_04a4a51c3df7c08dc2b1ec78.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_99e51d9b64d77509243da673.woff2')format("woff");}.ff2_c00123{font-family:ff2_c00123;line-height:1.093262;font-style: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;}
.ls15_c00123{letter-spacing:-0.050400px;}
.lse_c00123{letter-spacing:-0.048096px;}
.ls10_c00123{letter-spacing:-0.043200px;}
.ls13_c00123{letter-spacing:-0.028800px;}
.ls16_c00123{letter-spacing:-0.021600px;}
.ls12_c00123{letter-spacing:-0.014400px;}
.ls11_c00123{letter-spacing:-0.007200px;}
.lsf_c00123{letter-spacing:0.000000px;}
.ls7_c00123{letter-spacing:0.007200px;}
.ls3_c00123{letter-spacing:0.014400px;}
.ls6_c00123{letter-spacing:0.021600px;}
.ls1_c00123{letter-spacing:0.028800px;}
.ls0_c00123{letter-spacing:0.036000px;}
.lsc_c00123{letter-spacing:0.043200px;}
.ls2_c00123{letter-spacing:0.050400px;}
.ls5_c00123{letter-spacing:0.057600px;}
.lsd_c00123{letter-spacing:0.064800px;}
.ls8_c00123{letter-spacing:0.072000px;}
.ls9_c00123{letter-spacing:0.086400px;}
.lsb_c00123{letter-spacing:0.093600px;}
.ls4_c00123{letter-spacing:0.122400px;}
.lsa_c00123{letter-spacing:0.151200px;}
.ls14_c00123{letter-spacing:5.133600px;}
.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;}
}
.ws1_c00123{word-spacing:0.000000px;}
.ws0_c00123{word-spacing:0.138276px;}
.ws2_c00123{word-spacing:0.309600px;}
.ws3_c00123{word-spacing:9.331200px;}
._5_c00123{margin-left:-5.421600px;}
._3_c00123{margin-left:-4.370400px;}
._e_c00123{margin-left:-3.196800px;}
._9_c00123{margin-left:-2.188800px;}
._1_c00123{margin-left:-1.180800px;}
._7_c00123{width:1.051200px;}
._8_c00123{width:2.260800px;}
._4_c00123{width:4.240800px;}
._0_c00123{width:5.724000px;}
._6_c00123{width:7.192800px;}
._2_c00123{width:8.589600px;}
._a_c00123{width:10.072800px;}
._c_c00123{width:13.276800px;}
._d_c00123{width:16.531200px;}
._b_c00123{width:19.008000px;}
.fc0_c00123{color:rgb(0,0,0);}
.fs0_c00123{font-size:60.120000px;}
.fs1_c00123{font-size:72.000000px;}
.y0_c00123{bottom:0.000000px;}
.y6_c00123{bottom:57.360450px;}
.y5_c00123{bottom:78.060450px;}
.y25_c00123{bottom:132.960450px;}
.y24_c00123{bottom:164.010450px;}
.y23_c00123{bottom:195.060450px;}
.y22_c00123{bottom:226.110450px;}
.y21_c00123{bottom:257.070450px;}
.y20_c00123{bottom:288.120450px;}
.y1f_c00123{bottom:331.140450px;}
.y1e_c00123{bottom:362.280450px;}
.y1d_c00123{bottom:393.330450px;}
.y1c_c00123{bottom:424.380450px;}
.y1b_c00123{bottom:455.430450px;}
.y1a_c00123{bottom:486.480450px;}
.y19_c00123{bottom:517.530450px;}
.y18_c00123{bottom:548.580450px;}
.y17_c00123{bottom:591.510450px;}
.y16_c00123{bottom:622.650450px;}
.y15_c00123{bottom:653.700450px;}
.y14_c00123{bottom:684.750450px;}
.y13_c00123{bottom:715.800450px;}
.y12_c00123{bottom:758.730450px;}
.y11_c00123{bottom:789.870450px;}
.y10_c00123{bottom:820.920450px;}
.yf_c00123{bottom:851.970450px;}
.ye_c00123{bottom:883.020450px;}
.yd_c00123{bottom:925.950450px;}
.yc_c00123{bottom:957.090450px;}
.yb_c00123{bottom:988.140450px;}
.ya_c00123{bottom:1019.190450px;}
.y9_c00123{bottom:1050.240450px;}
.y8_c00123{bottom:1093.170450px;}
.y7_c00123{bottom:1124.310450px;}
.y4_c00123{bottom:1144.380657px;}
.y3_c00123{bottom:1161.660648px;}
.y2_c00123{bottom:1178.850459px;}
.y1_c00123{bottom:1196.130450px;}
.h1_c00123{height:52.898555px;}
.h2_c00123{height:63.175781px;}
.h3_c00123{height:63.351562px;}
.h0_c00123{height:1263.000000px;}
.w1_c00123{width:892.500000px;}
.w0_c00123{width:892.830000px;}
.x0_c00123{left:0.000000px;}
.x4_c00123{left:127.620000px;}
.x1_c00123{left:649.620000px;}
.x3_c00123{left:738.450000px;}
.x2_c00123{left:765.450198px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls15_c00123{letter-spacing:-0.044800pt;}
.lse_c00123{letter-spacing:-0.042752pt;}
.ls10_c00123{letter-spacing:-0.038400pt;}
.ls13_c00123{letter-spacing:-0.025600pt;}
.ls16_c00123{letter-spacing:-0.019200pt;}
.ls12_c00123{letter-spacing:-0.012800pt;}
.ls11_c00123{letter-spacing:-0.006400pt;}
.lsf_c00123{letter-spacing:0.000000pt;}
.ls7_c00123{letter-spacing:0.006400pt;}
.ls3_c00123{letter-spacing:0.012800pt;}
.ls6_c00123{letter-spacing:0.019200pt;}
.ls1_c00123{letter-spacing:0.025600pt;}
.ls0_c00123{letter-spacing:0.032000pt;}
.lsc_c00123{letter-spacing:0.038400pt;}
.ls2_c00123{letter-spacing:0.044800pt;}
.ls5_c00123{letter-spacing:0.051200pt;}
.lsd_c00123{letter-spacing:0.057600pt;}
.ls8_c00123{letter-spacing:0.064000pt;}
.ls9_c00123{letter-spacing:0.076800pt;}
.lsb_c00123{letter-spacing:0.083200pt;}
.ls4_c00123{letter-spacing:0.108800pt;}
.lsa_c00123{letter-spacing:0.134400pt;}
.ls14_c00123{letter-spacing:4.563200pt;}
.ws1_c00123{word-spacing:0.000000pt;}
.ws0_c00123{word-spacing:0.122912pt;}
.ws2_c00123{word-spacing:0.275200pt;}
.ws3_c00123{word-spacing:8.294400pt;}
._5_c00123{margin-left:-4.819200pt;}
._3_c00123{margin-left:-3.884800pt;}
._e_c00123{margin-left:-2.841600pt;}
._9_c00123{margin-left:-1.945600pt;}
._1_c00123{margin-left:-1.049600pt;}
._7_c00123{width:0.934400pt;}
._8_c00123{width:2.009600pt;}
._4_c00123{width:3.769600pt;}
._0_c00123{width:5.088000pt;}
._6_c00123{width:6.393600pt;}
._2_c00123{width:7.635200pt;}
._a_c00123{width:8.953600pt;}
._c_c00123{width:11.801600pt;}
._d_c00123{width:14.694400pt;}
._b_c00123{width:16.896000pt;}
.fs0_c00123{font-size:53.440000pt;}
.fs1_c00123{font-size:64.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y6_c00123{bottom:50.987067pt;}
.y5_c00123{bottom:69.387067pt;}
.y25_c00123{bottom:118.187067pt;}
.y24_c00123{bottom:145.787067pt;}
.y23_c00123{bottom:173.387067pt;}
.y22_c00123{bottom:200.987067pt;}
.y21_c00123{bottom:228.507067pt;}
.y20_c00123{bottom:256.107067pt;}
.y1f_c00123{bottom:294.347067pt;}
.y1e_c00123{bottom:322.027067pt;}
.y1d_c00123{bottom:349.627067pt;}
.y1c_c00123{bottom:377.227067pt;}
.y1b_c00123{bottom:404.827067pt;}
.y1a_c00123{bottom:432.427067pt;}
.y19_c00123{bottom:460.027067pt;}
.y18_c00123{bottom:487.627067pt;}
.y17_c00123{bottom:525.787067pt;}
.y16_c00123{bottom:553.467067pt;}
.y15_c00123{bottom:581.067067pt;}
.y14_c00123{bottom:608.667067pt;}
.y13_c00123{bottom:636.267067pt;}
.y12_c00123{bottom:674.427067pt;}
.y11_c00123{bottom:702.107067pt;}
.y10_c00123{bottom:729.707067pt;}
.yf_c00123{bottom:757.307067pt;}
.ye_c00123{bottom:784.907067pt;}
.yd_c00123{bottom:823.067067pt;}
.yc_c00123{bottom:850.747067pt;}
.yb_c00123{bottom:878.347067pt;}
.ya_c00123{bottom:905.947067pt;}
.y9_c00123{bottom:933.547067pt;}
.y8_c00123{bottom:971.707067pt;}
.y7_c00123{bottom:999.387067pt;}
.y4_c00123{bottom:1017.227251pt;}
.y3_c00123{bottom:1032.587243pt;}
.y2_c00123{bottom:1047.867075pt;}
.y1_c00123{bottom:1063.227067pt;}
.h1_c00123{height:47.020937pt;}
.h2_c00123{height:56.156250pt;}
.h3_c00123{height:56.312500pt;}
.h0_c00123{height:1122.666667pt;}
.w1_c00123{width:793.333333pt;}
.w0_c00123{width:793.626667pt;}
.x0_c00123{left:0.000000pt;}
.x4_c00123{left:113.440000pt;}
.x1_c00123{left:577.440000pt;}
.x3_c00123{left:656.400000pt;}
.x2_c00123{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_383c1a7e22dd41626be5a93b.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.095703;font-style:normal;font-weight:normal;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_abcc09bb458f29056833deb0.woff2')format("woff");}.ff2_c00124{font-family:ff2_c00124;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00124{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls18_c00124{letter-spacing:-3.600000px;}
.lse_c00124{letter-spacing:-0.102204px;}
.ls15_c00124{letter-spacing:-0.036000px;}
.ls12_c00124{letter-spacing:-0.028800px;}
.ls17_c00124{letter-spacing:-0.021600px;}
.ls14_c00124{letter-spacing:-0.014400px;}
.ls13_c00124{letter-spacing:-0.007200px;}
.lsf_c00124{letter-spacing:0.000000px;}
.ls9_c00124{letter-spacing:0.007200px;}
.lsc_c00124{letter-spacing:0.014400px;}
.ls6_c00124{letter-spacing:0.021600px;}
.ls2_c00124{letter-spacing:0.028800px;}
.ls8_c00124{letter-spacing:0.036000px;}
.ls0_c00124{letter-spacing:0.043200px;}
.ls4_c00124{letter-spacing:0.050400px;}
.ls5_c00124{letter-spacing:0.057600px;}
.ls3_c00124{letter-spacing:0.064800px;}
.ls1_c00124{letter-spacing:0.072000px;}
.ls7_c00124{letter-spacing:0.079200px;}
.lsd_c00124{letter-spacing:0.086400px;}
.lsb_c00124{letter-spacing:0.093600px;}
.lsa_c00124{letter-spacing:0.108000px;}
.ls16_c00124{letter-spacing:6.840000px;}
.ls10_c00124{letter-spacing:11.116800px;}
.ls11_c00124{letter-spacing:14.040000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:-17.964000px;}
.ws2_c00124{word-spacing:0.000000px;}
.ws3_c00124{word-spacing:0.007200px;}
.ws1_c00124{word-spacing:0.192384px;}
._9_c00124{margin-left:-14.868000px;}
._a_c00124{margin-left:-13.068000px;}
._1_c00124{margin-left:-11.116800px;}
._2_c00124{margin-left:-10.094400px;}
._f_c00124{margin-left:-7.243200px;}
._10_c00124{margin-left:-5.889600px;}
._d_c00124{margin-left:-4.478400px;}
._c_c00124{margin-left:-2.836800px;}
._6_c00124{margin-left:-1.137600px;}
._0_c00124{width:1.034064px;}
._14_c00124{width:2.421936px;}
._17_c00124{width:3.484800px;}
._16_c00124{width:4.708800px;}
._15_c00124{width:5.724000px;}
._e_c00124{width:6.811200px;}
._b_c00124{width:9.460800px;}
._3_c00124{width:10.828800px;}
._13_c00124{width:12.139200px;}
._7_c00124{width:13.348800px;}
._8_c00124{width:14.601600px;}
._4_c00124{width:19.468800px;}
._5_c00124{width:21.009600px;}
._11_c00124{width:26.690400px;}
._12_c00124{width:28.195200px;}
.fc2_c00124{color:rgb(255,0,0);}
.fc1_c00124{color:rgb(0,0,0);}
.fc0_c00124{color:rgb(32,31,30);}
.fs0_c00124{font-size:60.120000px;}
.fs1_c00124{font-size:72.000000px;}
.y0_c00124{bottom:0.000000px;}
.y5_c00124{bottom:57.360450px;}
.y4_c00124{bottom:78.060450px;}
.y24_c00124{bottom:125.400450px;}
.y23_c00124{bottom:156.450450px;}
.y22_c00124{bottom:187.500450px;}
.y21_c00124{bottom:218.550450px;}
.y20_c00124{bottom:249.600450px;}
.y1f_c00124{bottom:292.530450px;}
.y1e_c00124{bottom:323.670450px;}
.y1d_c00124{bottom:354.720450px;}
.y1c_c00124{bottom:389.010450px;}
.y1b_c00124{bottom:411.240450px;}
.y1a_c00124{bottom:454.350450px;}
.y19_c00124{bottom:497.460450px;}
.y18_c00124{bottom:528.600450px;}
.y17_c00124{bottom:559.650450px;}
.y16_c00124{bottom:590.700450px;}
.y15_c00124{bottom:621.660450px;}
.y14_c00124{bottom:652.710450px;}
.y13_c00124{bottom:683.760450px;}
.y12_c00124{bottom:714.810450px;}
.y11_c00124{bottom:757.830450px;}
.y10_c00124{bottom:788.970450px;}
.yf_c00124{bottom:820.020450px;}
.ye_c00124{bottom:851.070450px;}
.yd_c00124{bottom:882.120450px;}
.yc_c00124{bottom:913.170450px;}
.yb_c00124{bottom:956.100450px;}
.ya_c00124{bottom:987.240450px;}
.y9_c00124{bottom:1018.290450px;}
.y8_c00124{bottom:1049.340450px;}
.y7_c00124{bottom:1080.390450px;}
.y6_c00124{bottom:1111.440450px;}
.y3_c00124{bottom:1132.140450px;}
.y2_c00124{bottom:1165.441023px;}
.y1_c00124{bottom:1196.040600px;}
.h1_c00124{height:52.898555px;}
.h2_c00124{height:63.175781px;}
.h3_c00124{height:63.351562px;}
.h0_c00124{height:1263.000000px;}
.w1_c00124{width:892.500000px;}
.w0_c00124{width:892.830000px;}
.x0_c00124{left:0.000000px;}
.x1_c00124{left:127.620000px;}
.x2_c00124{left:738.450000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls18_c00124{letter-spacing:-3.200000pt;}
.lse_c00124{letter-spacing:-0.090848pt;}
.ls15_c00124{letter-spacing:-0.032000pt;}
.ls12_c00124{letter-spacing:-0.025600pt;}
.ls17_c00124{letter-spacing:-0.019200pt;}
.ls14_c00124{letter-spacing:-0.012800pt;}
.ls13_c00124{letter-spacing:-0.006400pt;}
.lsf_c00124{letter-spacing:0.000000pt;}
.ls9_c00124{letter-spacing:0.006400pt;}
.lsc_c00124{letter-spacing:0.012800pt;}
.ls6_c00124{letter-spacing:0.019200pt;}
.ls2_c00124{letter-spacing:0.025600pt;}
.ls8_c00124{letter-spacing:0.032000pt;}
.ls0_c00124{letter-spacing:0.038400pt;}
.ls4_c00124{letter-spacing:0.044800pt;}
.ls5_c00124{letter-spacing:0.051200pt;}
.ls3_c00124{letter-spacing:0.057600pt;}
.ls1_c00124{letter-spacing:0.064000pt;}
.ls7_c00124{letter-spacing:0.070400pt;}
.lsd_c00124{letter-spacing:0.076800pt;}
.lsb_c00124{letter-spacing:0.083200pt;}
.lsa_c00124{letter-spacing:0.096000pt;}
.ls16_c00124{letter-spacing:6.080000pt;}
.ls10_c00124{letter-spacing:9.881600pt;}
.ls11_c00124{letter-spacing:12.480000pt;}
.ws0_c00124{word-spacing:-15.968000pt;}
.ws2_c00124{word-spacing:0.000000pt;}
.ws3_c00124{word-spacing:0.006400pt;}
.ws1_c00124{word-spacing:0.171008pt;}
._9_c00124{margin-left:-13.216000pt;}
._a_c00124{margin-left:-11.616000pt;}
._1_c00124{margin-left:-9.881600pt;}
._2_c00124{margin-left:-8.972800pt;}
._f_c00124{margin-left:-6.438400pt;}
._10_c00124{margin-left:-5.235200pt;}
._d_c00124{margin-left:-3.980800pt;}
._c_c00124{margin-left:-2.521600pt;}
._6_c00124{margin-left:-1.011200pt;}
._0_c00124{width:0.919168pt;}
._14_c00124{width:2.152832pt;}
._17_c00124{width:3.097600pt;}
._16_c00124{width:4.185600pt;}
._15_c00124{width:5.088000pt;}
._e_c00124{width:6.054400pt;}
._b_c00124{width:8.409600pt;}
._3_c00124{width:9.625600pt;}
._13_c00124{width:10.790400pt;}
._7_c00124{width:11.865600pt;}
._8_c00124{width:12.979200pt;}
._4_c00124{width:17.305600pt;}
._5_c00124{width:18.675200pt;}
._11_c00124{width:23.724800pt;}
._12_c00124{width:25.062400pt;}
.fs0_c00124{font-size:53.440000pt;}
.fs1_c00124{font-size:64.000000pt;}
.y0_c00124{bottom:0.000000pt;}
.y5_c00124{bottom:50.987067pt;}
.y4_c00124{bottom:69.387067pt;}
.y24_c00124{bottom:111.467067pt;}
.y23_c00124{bottom:139.067067pt;}
.y22_c00124{bottom:166.667067pt;}
.y21_c00124{bottom:194.267067pt;}
.y20_c00124{bottom:221.867067pt;}
.y1f_c00124{bottom:260.027067pt;}
.y1e_c00124{bottom:287.707067pt;}
.y1d_c00124{bottom:315.307067pt;}
.y1c_c00124{bottom:345.787067pt;}
.y1b_c00124{bottom:365.547067pt;}
.y1a_c00124{bottom:403.867067pt;}
.y19_c00124{bottom:442.187067pt;}
.y18_c00124{bottom:469.867067pt;}
.y17_c00124{bottom:497.467067pt;}
.y16_c00124{bottom:525.067067pt;}
.y15_c00124{bottom:552.587067pt;}
.y14_c00124{bottom:580.187067pt;}
.y13_c00124{bottom:607.787067pt;}
.y12_c00124{bottom:635.387067pt;}
.y11_c00124{bottom:673.627067pt;}
.y10_c00124{bottom:701.307067pt;}
.yf_c00124{bottom:728.907067pt;}
.ye_c00124{bottom:756.507067pt;}
.yd_c00124{bottom:784.107067pt;}
.yc_c00124{bottom:811.707067pt;}
.yb_c00124{bottom:849.867067pt;}
.ya_c00124{bottom:877.547067pt;}
.y9_c00124{bottom:905.147067pt;}
.y8_c00124{bottom:932.747067pt;}
.y7_c00124{bottom:960.347067pt;}
.y6_c00124{bottom:987.947067pt;}
.y3_c00124{bottom:1006.347067pt;}
.y2_c00124{bottom:1035.947576pt;}
.y1_c00124{bottom:1063.147200pt;}
.h1_c00124{height:47.020937pt;}
.h2_c00124{height:56.156250pt;}
.h3_c00124{height:56.312500pt;}
.h0_c00124{height:1122.666667pt;}
.w1_c00124{width:793.333333pt;}
.w0_c00124{width:793.626667pt;}
.x0_c00124{left:0.000000pt;}
.x1_c00124{left:113.440000pt;}
.x2_c00124{left:656.400000pt;}
}





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

.ir_c00125:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00125;src:url('chunks/assets/font_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.095703;font-style:normal;font-weight:normal;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_5049215c1cd4a238270a5f8f.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00125{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.lsf_c00125{letter-spacing:-0.216000px;}
.lsd_c00125{letter-spacing:-0.048096px;}
.ls10_c00125{letter-spacing:-0.036000px;}
.ls11_c00125{letter-spacing:-0.028800px;}
.ls12_c00125{letter-spacing:-0.014400px;}
.ls13_c00125{letter-spacing:-0.007200px;}
.lse_c00125{letter-spacing:0.000000px;}
.ls5_c00125{letter-spacing:0.007200px;}
.lsa_c00125{letter-spacing:0.014400px;}
.ls3_c00125{letter-spacing:0.021600px;}
.ls4_c00125{letter-spacing:0.028800px;}
.ls8_c00125{letter-spacing:0.036000px;}
.ls9_c00125{letter-spacing:0.043200px;}
.ls7_c00125{letter-spacing:0.050400px;}
.ls1_c00125{letter-spacing:0.057600px;}
.ls0_c00125{letter-spacing:0.072000px;}
.ls2_c00125{letter-spacing:0.079200px;}
.ls6_c00125{letter-spacing:0.086400px;}
.lsb_c00125{letter-spacing:0.093600px;}
.lsc_c00125{letter-spacing:0.136800px;}
.ls14_c00125{letter-spacing:4.500000px;}
.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;}
}
.ws1_c00125{word-spacing:0.000000px;}
.ws0_c00125{word-spacing:0.138276px;}
._9_c00125{margin-left:-4.536000px;}
._a_c00125{margin-left:-3.261600px;}
._c_c00125{margin-left:-2.196000px;}
._0_c00125{margin-left:-1.008000px;}
._1_c00125{width:1.454400px;}
._4_c00125{width:2.808000px;}
._7_c00125{width:4.500000px;}
._2_c00125{width:6.134400px;}
._3_c00125{width:7.401600px;}
._6_c00125{width:8.503200px;}
._b_c00125{width:10.216800px;}
._5_c00125{width:12.196800px;}
._8_c00125{width:13.464000px;}
._f_c00125{width:14.889600px;}
._d_c00125{width:31.672800px;}
._e_c00125{width:32.824800px;}
.fc0_c00125{color:rgb(0,0,0);}
.fs0_c00125{font-size:60.120000px;}
.fs1_c00125{font-size:72.000000px;}
.y0_c00125{bottom:0.000000px;}
.y6_c00125{bottom:57.360450px;}
.y5_c00125{bottom:78.060450px;}
.y24_c00125{bottom:175.890450px;}
.y23_c00125{bottom:207.030450px;}
.y22_c00125{bottom:238.080450px;}
.y21_c00125{bottom:269.130450px;}
.y20_c00125{bottom:300.180450px;}
.y1f_c00125{bottom:331.230450px;}
.y1e_c00125{bottom:362.280450px;}
.y1d_c00125{bottom:393.330450px;}
.y1c_c00125{bottom:424.380450px;}
.y1b_c00125{bottom:455.430450px;}
.y1a_c00125{bottom:498.360450px;}
.y19_c00125{bottom:529.500450px;}
.y18_c00125{bottom:560.550450px;}
.y17_c00125{bottom:591.600450px;}
.y16_c00125{bottom:622.650450px;}
.y15_c00125{bottom:653.700450px;}
.y14_c00125{bottom:684.750450px;}
.y13_c00125{bottom:715.800450px;}
.y12_c00125{bottom:746.850450px;}
.y11_c00125{bottom:789.780450px;}
.y10_c00125{bottom:820.920450px;}
.yf_c00125{bottom:851.970450px;}
.ye_c00125{bottom:883.020450px;}
.yd_c00125{bottom:914.070450px;}
.yc_c00125{bottom:957.000450px;}
.yb_c00125{bottom:988.140450px;}
.ya_c00125{bottom:1019.190450px;}
.y9_c00125{bottom:1050.240450px;}
.y8_c00125{bottom:1093.170450px;}
.y7_c00125{bottom:1124.310450px;}
.y4_c00125{bottom:1144.380657px;}
.y3_c00125{bottom:1161.660648px;}
.y2_c00125{bottom:1178.850459px;}
.y1_c00125{bottom:1196.130450px;}
.h1_c00125{height:52.898555px;}
.h2_c00125{height:63.175781px;}
.h0_c00125{height:1263.000000px;}
.w1_c00125{width:892.500000px;}
.w0_c00125{width:892.830000px;}
.x0_c00125{left:0.000000px;}
.x4_c00125{left:127.620000px;}
.x1_c00125{left:649.620000px;}
.x3_c00125{left:738.450000px;}
.x2_c00125{left:765.450198px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.lsf_c00125{letter-spacing:-0.192000pt;}
.lsd_c00125{letter-spacing:-0.042752pt;}
.ls10_c00125{letter-spacing:-0.032000pt;}
.ls11_c00125{letter-spacing:-0.025600pt;}
.ls12_c00125{letter-spacing:-0.012800pt;}
.ls13_c00125{letter-spacing:-0.006400pt;}
.lse_c00125{letter-spacing:0.000000pt;}
.ls5_c00125{letter-spacing:0.006400pt;}
.lsa_c00125{letter-spacing:0.012800pt;}
.ls3_c00125{letter-spacing:0.019200pt;}
.ls4_c00125{letter-spacing:0.025600pt;}
.ls8_c00125{letter-spacing:0.032000pt;}
.ls9_c00125{letter-spacing:0.038400pt;}
.ls7_c00125{letter-spacing:0.044800pt;}
.ls1_c00125{letter-spacing:0.051200pt;}
.ls0_c00125{letter-spacing:0.064000pt;}
.ls2_c00125{letter-spacing:0.070400pt;}
.ls6_c00125{letter-spacing:0.076800pt;}
.lsb_c00125{letter-spacing:0.083200pt;}
.lsc_c00125{letter-spacing:0.121600pt;}
.ls14_c00125{letter-spacing:4.000000pt;}
.ws1_c00125{word-spacing:0.000000pt;}
.ws0_c00125{word-spacing:0.122912pt;}
._9_c00125{margin-left:-4.032000pt;}
._a_c00125{margin-left:-2.899200pt;}
._c_c00125{margin-left:-1.952000pt;}
._0_c00125{margin-left:-0.896000pt;}
._1_c00125{width:1.292800pt;}
._4_c00125{width:2.496000pt;}
._7_c00125{width:4.000000pt;}
._2_c00125{width:5.452800pt;}
._3_c00125{width:6.579200pt;}
._6_c00125{width:7.558400pt;}
._b_c00125{width:9.081600pt;}
._5_c00125{width:10.841600pt;}
._8_c00125{width:11.968000pt;}
._f_c00125{width:13.235200pt;}
._d_c00125{width:28.153600pt;}
._e_c00125{width:29.177600pt;}
.fs0_c00125{font-size:53.440000pt;}
.fs1_c00125{font-size:64.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y6_c00125{bottom:50.987067pt;}
.y5_c00125{bottom:69.387067pt;}
.y24_c00125{bottom:156.347067pt;}
.y23_c00125{bottom:184.027067pt;}
.y22_c00125{bottom:211.627067pt;}
.y21_c00125{bottom:239.227067pt;}
.y20_c00125{bottom:266.827067pt;}
.y1f_c00125{bottom:294.427067pt;}
.y1e_c00125{bottom:322.027067pt;}
.y1d_c00125{bottom:349.627067pt;}
.y1c_c00125{bottom:377.227067pt;}
.y1b_c00125{bottom:404.827067pt;}
.y1a_c00125{bottom:442.987067pt;}
.y19_c00125{bottom:470.667067pt;}
.y18_c00125{bottom:498.267067pt;}
.y17_c00125{bottom:525.867067pt;}
.y16_c00125{bottom:553.467067pt;}
.y15_c00125{bottom:581.067067pt;}
.y14_c00125{bottom:608.667067pt;}
.y13_c00125{bottom:636.267067pt;}
.y12_c00125{bottom:663.867067pt;}
.y11_c00125{bottom:702.027067pt;}
.y10_c00125{bottom:729.707067pt;}
.yf_c00125{bottom:757.307067pt;}
.ye_c00125{bottom:784.907067pt;}
.yd_c00125{bottom:812.507067pt;}
.yc_c00125{bottom:850.667067pt;}
.yb_c00125{bottom:878.347067pt;}
.ya_c00125{bottom:905.947067pt;}
.y9_c00125{bottom:933.547067pt;}
.y8_c00125{bottom:971.707067pt;}
.y7_c00125{bottom:999.387067pt;}
.y4_c00125{bottom:1017.227251pt;}
.y3_c00125{bottom:1032.587243pt;}
.y2_c00125{bottom:1047.867075pt;}
.y1_c00125{bottom:1063.227067pt;}
.h1_c00125{height:47.020937pt;}
.h2_c00125{height:56.156250pt;}
.h0_c00125{height:1122.666667pt;}
.w1_c00125{width:793.333333pt;}
.w0_c00125{width:793.626667pt;}
.x0_c00125{left:0.000000pt;}
.x4_c00125{left:113.440000pt;}
.x1_c00125{left:577.440000pt;}
.x3_c00125{left:656.400000pt;}
.x2_c00125{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ddec93ea54c99e9f1d125899.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.095703;font-style:normal;font-weight:normal;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_1e601b11da327b0ac76aeee8.woff2')format("woff");}.ff2_c00126{font-family:ff2_c00126;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00126{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls11_c00126{letter-spacing:-0.237600px;}
.lsc_c00126{letter-spacing:-0.102204px;}
.ls12_c00126{letter-spacing:-0.072000px;}
.ls15_c00126{letter-spacing:-0.050400px;}
.lse_c00126{letter-spacing:-0.043200px;}
.ls10_c00126{letter-spacing:-0.036000px;}
.lsf_c00126{letter-spacing:-0.021600px;}
.ls13_c00126{letter-spacing:-0.014400px;}
.ls14_c00126{letter-spacing:-0.007200px;}
.lsd_c00126{letter-spacing:0.000000px;}
.ls8_c00126{letter-spacing:0.007200px;}
.ls4_c00126{letter-spacing:0.014400px;}
.ls6_c00126{letter-spacing:0.021600px;}
.ls9_c00126{letter-spacing:0.028800px;}
.ls2_c00126{letter-spacing:0.036000px;}
.ls3_c00126{letter-spacing:0.043200px;}
.ls1_c00126{letter-spacing:0.050400px;}
.ls5_c00126{letter-spacing:0.057600px;}
.ls0_c00126{letter-spacing:0.064800px;}
.lsb_c00126{letter-spacing:0.072000px;}
.ls7_c00126{letter-spacing:0.079200px;}
.lsa_c00126{letter-spacing:0.151200px;}
.ls16_c00126{letter-spacing:2.160000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00126{word-spacing:-3.312000px;}
.ws1_c00126{word-spacing:0.000000px;}
.ws0_c00126{word-spacing:0.192384px;}
.ws4_c00126{word-spacing:4.593600px;}
.ws3_c00126{word-spacing:4.658400px;}
._b_c00126{margin-left:-5.004000px;}
._a_c00126{margin-left:-3.996000px;}
._4_c00126{margin-left:-2.671200px;}
._2_c00126{margin-left:-1.296000px;}
._0_c00126{width:1.034064px;}
._3_c00126{width:2.266272px;}
._6_c00126{width:3.988800px;}
._5_c00126{width:4.996800px;}
._1_c00126{width:6.055200px;}
._7_c00126{width:7.840800px;}
._8_c00126{width:8.913600px;}
._9_c00126{width:9.986400px;}
.fc1_c00126{color:rgb(0,0,0);}
.fc0_c00126{color:rgb(32,31,30);}
.fs0_c00126{font-size:60.120000px;}
.fs1_c00126{font-size:72.000000px;}
.y0_c00126{bottom:0.000000px;}
.y5_c00126{bottom:57.360450px;}
.y4_c00126{bottom:78.060450px;}
.y24_c00126{bottom:131.970450px;}
.y23_c00126{bottom:163.020450px;}
.y22_c00126{bottom:194.070450px;}
.y21_c00126{bottom:225.120450px;}
.y20_c00126{bottom:256.170450px;}
.y1f_c00126{bottom:287.220450px;}
.y1e_c00126{bottom:318.270450px;}
.y1d_c00126{bottom:361.200450px;}
.y1c_c00126{bottom:392.250450px;}
.y1b_c00126{bottom:423.390450px;}
.y1a_c00126{bottom:454.440450px;}
.y19_c00126{bottom:485.490450px;}
.y18_c00126{bottom:516.540450px;}
.y17_c00126{bottom:547.590450px;}
.y16_c00126{bottom:578.640450px;}
.y15_c00126{bottom:621.570450px;}
.y14_c00126{bottom:652.710450px;}
.y13_c00126{bottom:683.760450px;}
.y12_c00126{bottom:714.810450px;}
.y11_c00126{bottom:757.830450px;}
.y10_c00126{bottom:788.970450px;}
.yf_c00126{bottom:820.020450px;}
.ye_c00126{bottom:851.070450px;}
.yd_c00126{bottom:882.120450px;}
.yc_c00126{bottom:913.170450px;}
.yb_c00126{bottom:956.100450px;}
.ya_c00126{bottom:987.240450px;}
.y9_c00126{bottom:1018.290450px;}
.y8_c00126{bottom:1049.340450px;}
.y7_c00126{bottom:1080.390450px;}
.y6_c00126{bottom:1111.440450px;}
.y3_c00126{bottom:1132.140450px;}
.y2_c00126{bottom:1165.441023px;}
.y1_c00126{bottom:1196.040600px;}
.h1_c00126{height:52.898555px;}
.h2_c00126{height:63.175781px;}
.h3_c00126{height:63.351562px;}
.h0_c00126{height:1263.000000px;}
.w1_c00126{width:892.500000px;}
.w0_c00126{width:892.830000px;}
.x0_c00126{left:0.000000px;}
.x1_c00126{left:127.620000px;}
.x2_c00126{left:738.450000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls11_c00126{letter-spacing:-0.211200pt;}
.lsc_c00126{letter-spacing:-0.090848pt;}
.ls12_c00126{letter-spacing:-0.064000pt;}
.ls15_c00126{letter-spacing:-0.044800pt;}
.lse_c00126{letter-spacing:-0.038400pt;}
.ls10_c00126{letter-spacing:-0.032000pt;}
.lsf_c00126{letter-spacing:-0.019200pt;}
.ls13_c00126{letter-spacing:-0.012800pt;}
.ls14_c00126{letter-spacing:-0.006400pt;}
.lsd_c00126{letter-spacing:0.000000pt;}
.ls8_c00126{letter-spacing:0.006400pt;}
.ls4_c00126{letter-spacing:0.012800pt;}
.ls6_c00126{letter-spacing:0.019200pt;}
.ls9_c00126{letter-spacing:0.025600pt;}
.ls2_c00126{letter-spacing:0.032000pt;}
.ls3_c00126{letter-spacing:0.038400pt;}
.ls1_c00126{letter-spacing:0.044800pt;}
.ls5_c00126{letter-spacing:0.051200pt;}
.ls0_c00126{letter-spacing:0.057600pt;}
.lsb_c00126{letter-spacing:0.064000pt;}
.ls7_c00126{letter-spacing:0.070400pt;}
.lsa_c00126{letter-spacing:0.134400pt;}
.ls16_c00126{letter-spacing:1.920000pt;}
.ws2_c00126{word-spacing:-2.944000pt;}
.ws1_c00126{word-spacing:0.000000pt;}
.ws0_c00126{word-spacing:0.171008pt;}
.ws4_c00126{word-spacing:4.083200pt;}
.ws3_c00126{word-spacing:4.140800pt;}
._b_c00126{margin-left:-4.448000pt;}
._a_c00126{margin-left:-3.552000pt;}
._4_c00126{margin-left:-2.374400pt;}
._2_c00126{margin-left:-1.152000pt;}
._0_c00126{width:0.919168pt;}
._3_c00126{width:2.014464pt;}
._6_c00126{width:3.545600pt;}
._5_c00126{width:4.441600pt;}
._1_c00126{width:5.382400pt;}
._7_c00126{width:6.969600pt;}
._8_c00126{width:7.923200pt;}
._9_c00126{width:8.876800pt;}
.fs0_c00126{font-size:53.440000pt;}
.fs1_c00126{font-size:64.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.y5_c00126{bottom:50.987067pt;}
.y4_c00126{bottom:69.387067pt;}
.y24_c00126{bottom:117.307067pt;}
.y23_c00126{bottom:144.907067pt;}
.y22_c00126{bottom:172.507067pt;}
.y21_c00126{bottom:200.107067pt;}
.y20_c00126{bottom:227.707067pt;}
.y1f_c00126{bottom:255.307067pt;}
.y1e_c00126{bottom:282.907067pt;}
.y1d_c00126{bottom:321.067067pt;}
.y1c_c00126{bottom:348.667067pt;}
.y1b_c00126{bottom:376.347067pt;}
.y1a_c00126{bottom:403.947067pt;}
.y19_c00126{bottom:431.547067pt;}
.y18_c00126{bottom:459.147067pt;}
.y17_c00126{bottom:486.747067pt;}
.y16_c00126{bottom:514.347067pt;}
.y15_c00126{bottom:552.507067pt;}
.y14_c00126{bottom:580.187067pt;}
.y13_c00126{bottom:607.787067pt;}
.y12_c00126{bottom:635.387067pt;}
.y11_c00126{bottom:673.627067pt;}
.y10_c00126{bottom:701.307067pt;}
.yf_c00126{bottom:728.907067pt;}
.ye_c00126{bottom:756.507067pt;}
.yd_c00126{bottom:784.107067pt;}
.yc_c00126{bottom:811.707067pt;}
.yb_c00126{bottom:849.867067pt;}
.ya_c00126{bottom:877.547067pt;}
.y9_c00126{bottom:905.147067pt;}
.y8_c00126{bottom:932.747067pt;}
.y7_c00126{bottom:960.347067pt;}
.y6_c00126{bottom:987.947067pt;}
.y3_c00126{bottom:1006.347067pt;}
.y2_c00126{bottom:1035.947576pt;}
.y1_c00126{bottom:1063.147200pt;}
.h1_c00126{height:47.020937pt;}
.h2_c00126{height:56.156250pt;}
.h3_c00126{height:56.312500pt;}
.h0_c00126{height:1122.666667pt;}
.w1_c00126{width:793.333333pt;}
.w0_c00126{width:793.626667pt;}
.x0_c00126{left:0.000000pt;}
.x1_c00126{left:113.440000pt;}
.x2_c00126{left:656.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_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_9a2e672f878de1fd6ede9249.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.095703;font-style:normal;font-weight:normal;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_9a2e1d4d2c93fc1745877281.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.093262;font-style: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;}
.ls14_c00127{letter-spacing:-0.180000px;}
.ls18_c00127{letter-spacing:-0.079200px;}
.ls1a_c00127{letter-spacing:-0.057600px;}
.ls13_c00127{letter-spacing:-0.050400px;}
.lsf_c00127{letter-spacing:-0.048096px;}
.ls12_c00127{letter-spacing:-0.036000px;}
.ls17_c00127{letter-spacing:-0.028800px;}
.ls16_c00127{letter-spacing:-0.014400px;}
.ls11_c00127{letter-spacing:-0.007200px;}
.ls10_c00127{letter-spacing:0.000000px;}
.lsd_c00127{letter-spacing:0.007200px;}
.ls2_c00127{letter-spacing:0.014400px;}
.ls6_c00127{letter-spacing:0.021600px;}
.ls8_c00127{letter-spacing:0.028800px;}
.ls4_c00127{letter-spacing:0.036000px;}
.ls3_c00127{letter-spacing:0.043200px;}
.ls9_c00127{letter-spacing:0.050400px;}
.ls1_c00127{letter-spacing:0.057600px;}
.ls7_c00127{letter-spacing:0.064800px;}
.ls5_c00127{letter-spacing:0.072000px;}
.ls0_c00127{letter-spacing:0.086400px;}
.lse_c00127{letter-spacing:0.100800px;}
.lsa_c00127{letter-spacing:0.122400px;}
.lsc_c00127{letter-spacing:0.129600px;}
.lsb_c00127{letter-spacing:0.144000px;}
.ls19_c00127{letter-spacing:4.680000px;}
.ls15_c00127{letter-spacing:6.480000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00127{word-spacing:0.000000px;}
.ws0_c00127{word-spacing:0.138276px;}
.ws3_c00127{word-spacing:3.902400px;}
.ws2_c00127{word-spacing:4.039200px;}
._7_c00127{margin-left:-7.660800px;}
._8_c00127{margin-left:-6.480000px;}
._9_c00127{margin-left:-5.068800px;}
._a_c00127{margin-left:-3.225600px;}
._2_c00127{margin-left:-2.044800px;}
._1_c00127{margin-left:-1.008000px;}
._3_c00127{width:1.850400px;}
._e_c00127{width:3.182400px;}
._f_c00127{width:4.348800px;}
._11_c00127{width:5.364000px;}
._6_c00127{width:6.436800px;}
._12_c00127{width:8.568000px;}
._0_c00127{width:9.727200px;}
._10_c00127{width:10.749600px;}
._c_c00127{width:11.858400px;}
._d_c00127{width:12.916800px;}
._b_c00127{width:14.004000px;}
._4_c00127{width:29.073600px;}
._5_c00127{width:30.168000px;}
.fc0_c00127{color:rgb(0,0,0);}
.fs0_c00127{font-size:60.120000px;}
.fs1_c00127{font-size:72.000000px;}
.y0_c00127{bottom:0.000000px;}
.y6_c00127{bottom:57.360450px;}
.y5_c00127{bottom:78.060450px;}
.y26_c00127{bottom:125.850450px;}
.y25_c00127{bottom:156.900450px;}
.y24_c00127{bottom:187.950450px;}
.y23_c00127{bottom:219.000450px;}
.y22_c00127{bottom:250.050450px;}
.y21_c00127{bottom:281.100450px;}
.y20_c00127{bottom:312.150450px;}
.y1f_c00127{bottom:343.200450px;}
.y1e_c00127{bottom:386.130450px;}
.y1d_c00127{bottom:417.270450px;}
.y1c_c00127{bottom:448.320450px;}
.y1b_c00127{bottom:479.370450px;}
.y1a_c00127{bottom:510.420450px;}
.y19_c00127{bottom:541.470450px;}
.y18_c00127{bottom:584.490450px;}
.y17_c00127{bottom:615.630450px;}
.y16_c00127{bottom:646.680450px;}
.y15_c00127{bottom:677.640450px;}
.y14_c00127{bottom:708.690450px;}
.y13_c00127{bottom:739.740450px;}
.y12_c00127{bottom:770.790450px;}
.y11_c00127{bottom:801.840450px;}
.y10_c00127{bottom:832.890450px;}
.yf_c00127{bottom:863.940450px;}
.ye_c00127{bottom:894.990450px;}
.yd_c00127{bottom:926.040450px;}
.yc_c00127{bottom:957.090450px;}
.yb_c00127{bottom:1000.110450px;}
.ya_c00127{bottom:1031.160450px;}
.y9_c00127{bottom:1062.210450px;}
.y8_c00127{bottom:1093.260450px;}
.y7_c00127{bottom:1124.310450px;}
.y4_c00127{bottom:1144.380657px;}
.y3_c00127{bottom:1161.660648px;}
.y2_c00127{bottom:1178.850459px;}
.y1_c00127{bottom:1196.130450px;}
.h1_c00127{height:52.898555px;}
.h2_c00127{height:63.175781px;}
.h3_c00127{height:63.351562px;}
.h0_c00127{height:1263.000000px;}
.w1_c00127{width:892.500000px;}
.w0_c00127{width:892.830000px;}
.x0_c00127{left:0.000000px;}
.x4_c00127{left:127.620000px;}
.x1_c00127{left:649.620000px;}
.x3_c00127{left:738.450000px;}
.x2_c00127{left:765.450198px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls14_c00127{letter-spacing:-0.160000pt;}
.ls18_c00127{letter-spacing:-0.070400pt;}
.ls1a_c00127{letter-spacing:-0.051200pt;}
.ls13_c00127{letter-spacing:-0.044800pt;}
.lsf_c00127{letter-spacing:-0.042752pt;}
.ls12_c00127{letter-spacing:-0.032000pt;}
.ls17_c00127{letter-spacing:-0.025600pt;}
.ls16_c00127{letter-spacing:-0.012800pt;}
.ls11_c00127{letter-spacing:-0.006400pt;}
.ls10_c00127{letter-spacing:0.000000pt;}
.lsd_c00127{letter-spacing:0.006400pt;}
.ls2_c00127{letter-spacing:0.012800pt;}
.ls6_c00127{letter-spacing:0.019200pt;}
.ls8_c00127{letter-spacing:0.025600pt;}
.ls4_c00127{letter-spacing:0.032000pt;}
.ls3_c00127{letter-spacing:0.038400pt;}
.ls9_c00127{letter-spacing:0.044800pt;}
.ls1_c00127{letter-spacing:0.051200pt;}
.ls7_c00127{letter-spacing:0.057600pt;}
.ls5_c00127{letter-spacing:0.064000pt;}
.ls0_c00127{letter-spacing:0.076800pt;}
.lse_c00127{letter-spacing:0.089600pt;}
.lsa_c00127{letter-spacing:0.108800pt;}
.lsc_c00127{letter-spacing:0.115200pt;}
.lsb_c00127{letter-spacing:0.128000pt;}
.ls19_c00127{letter-spacing:4.160000pt;}
.ls15_c00127{letter-spacing:5.760000pt;}
.ws1_c00127{word-spacing:0.000000pt;}
.ws0_c00127{word-spacing:0.122912pt;}
.ws3_c00127{word-spacing:3.468800pt;}
.ws2_c00127{word-spacing:3.590400pt;}
._7_c00127{margin-left:-6.809600pt;}
._8_c00127{margin-left:-5.760000pt;}
._9_c00127{margin-left:-4.505600pt;}
._a_c00127{margin-left:-2.867200pt;}
._2_c00127{margin-left:-1.817600pt;}
._1_c00127{margin-left:-0.896000pt;}
._3_c00127{width:1.644800pt;}
._e_c00127{width:2.828800pt;}
._f_c00127{width:3.865600pt;}
._11_c00127{width:4.768000pt;}
._6_c00127{width:5.721600pt;}
._12_c00127{width:7.616000pt;}
._0_c00127{width:8.646400pt;}
._10_c00127{width:9.555200pt;}
._c_c00127{width:10.540800pt;}
._d_c00127{width:11.481600pt;}
._b_c00127{width:12.448000pt;}
._4_c00127{width:25.843200pt;}
._5_c00127{width:26.816000pt;}
.fs0_c00127{font-size:53.440000pt;}
.fs1_c00127{font-size:64.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.y6_c00127{bottom:50.987067pt;}
.y5_c00127{bottom:69.387067pt;}
.y26_c00127{bottom:111.867067pt;}
.y25_c00127{bottom:139.467067pt;}
.y24_c00127{bottom:167.067067pt;}
.y23_c00127{bottom:194.667067pt;}
.y22_c00127{bottom:222.267067pt;}
.y21_c00127{bottom:249.867067pt;}
.y20_c00127{bottom:277.467067pt;}
.y1f_c00127{bottom:305.067067pt;}
.y1e_c00127{bottom:343.227067pt;}
.y1d_c00127{bottom:370.907067pt;}
.y1c_c00127{bottom:398.507067pt;}
.y1b_c00127{bottom:426.107067pt;}
.y1a_c00127{bottom:453.707067pt;}
.y19_c00127{bottom:481.307067pt;}
.y18_c00127{bottom:519.547067pt;}
.y17_c00127{bottom:547.227067pt;}
.y16_c00127{bottom:574.827067pt;}
.y15_c00127{bottom:602.347067pt;}
.y14_c00127{bottom:629.947067pt;}
.y13_c00127{bottom:657.547067pt;}
.y12_c00127{bottom:685.147067pt;}
.y11_c00127{bottom:712.747067pt;}
.y10_c00127{bottom:740.347067pt;}
.yf_c00127{bottom:767.947067pt;}
.ye_c00127{bottom:795.547067pt;}
.yd_c00127{bottom:823.147067pt;}
.yc_c00127{bottom:850.747067pt;}
.yb_c00127{bottom:888.987067pt;}
.ya_c00127{bottom:916.587067pt;}
.y9_c00127{bottom:944.187067pt;}
.y8_c00127{bottom:971.787067pt;}
.y7_c00127{bottom:999.387067pt;}
.y4_c00127{bottom:1017.227251pt;}
.y3_c00127{bottom:1032.587243pt;}
.y2_c00127{bottom:1047.867075pt;}
.y1_c00127{bottom:1063.227067pt;}
.h1_c00127{height:47.020937pt;}
.h2_c00127{height:56.156250pt;}
.h3_c00127{height:56.312500pt;}
.h0_c00127{height:1122.666667pt;}
.w1_c00127{width:793.333333pt;}
.w0_c00127{width:793.626667pt;}
.x0_c00127{left:0.000000pt;}
.x4_c00127{left:113.440000pt;}
.x1_c00127{left:577.440000pt;}
.x3_c00127{left:656.400000pt;}
.x2_c00127{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d45e91139d0bcde171a36661.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.095703;font-style:normal;font-weight:normal;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_fed5347d47da66e2498160ee.woff2')format("woff");}.ff2_c00128{font-family:ff2_c00128;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00128{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls13_c00128{letter-spacing:-1.080000px;}
.lsd_c00128{letter-spacing:-0.102204px;}
.ls12_c00128{letter-spacing:-0.043200px;}
.ls10_c00128{letter-spacing:-0.028800px;}
.lsf_c00128{letter-spacing:-0.007200px;}
.lse_c00128{letter-spacing:0.000000px;}
.ls7_c00128{letter-spacing:0.007200px;}
.ls6_c00128{letter-spacing:0.014400px;}
.ls8_c00128{letter-spacing:0.021600px;}
.ls1_c00128{letter-spacing:0.028800px;}
.ls5_c00128{letter-spacing:0.036000px;}
.ls3_c00128{letter-spacing:0.043200px;}
.lsa_c00128{letter-spacing:0.050400px;}
.ls2_c00128{letter-spacing:0.057600px;}
.ls0_c00128{letter-spacing:0.064800px;}
.ls4_c00128{letter-spacing:0.072000px;}
.lsc_c00128{letter-spacing:0.079200px;}
.ls9_c00128{letter-spacing:0.093600px;}
.lsb_c00128{letter-spacing:0.108000px;}
.ls11_c00128{letter-spacing:1.800000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00128{word-spacing:-0.014400px;}
.ws1_c00128{word-spacing:0.000000px;}
.ws3_c00128{word-spacing:0.007200px;}
.ws4_c00128{word-spacing:0.072000px;}
.ws0_c00128{word-spacing:0.192384px;}
.ws5_c00128{word-spacing:7.099200px;}
.ws6_c00128{word-spacing:7.185600px;}
._5_c00128{margin-left:-3.996000px;}
._6_c00128{margin-left:-2.916000px;}
._2_c00128{margin-left:-1.116000px;}
._0_c00128{width:1.034064px;}
._7_c00128{width:2.160000px;}
._a_c00128{width:3.600000px;}
._3_c00128{width:5.364000px;}
._4_c00128{width:6.501600px;}
._9_c00128{width:8.596800px;}
._1_c00128{width:9.655200px;}
._8_c00128{width:11.124000px;}
.fc1_c00128{color:rgb(0,0,0);}
.fc0_c00128{color:rgb(32,31,30);}
.fs0_c00128{font-size:60.120000px;}
.fs1_c00128{font-size:72.000000px;}
.y0_c00128{bottom:0.000000px;}
.y5_c00128{bottom:57.360450px;}
.y4_c00128{bottom:78.060450px;}
.y24_c00128{bottom:131.970450px;}
.y23_c00128{bottom:163.020450px;}
.y22_c00128{bottom:194.070450px;}
.y21_c00128{bottom:225.120450px;}
.y20_c00128{bottom:256.170450px;}
.y1f_c00128{bottom:287.220450px;}
.y1e_c00128{bottom:330.150450px;}
.y1d_c00128{bottom:361.290450px;}
.y1c_c00128{bottom:392.340450px;}
.y1b_c00128{bottom:423.390450px;}
.y1a_c00128{bottom:454.440450px;}
.y19_c00128{bottom:485.490450px;}
.y18_c00128{bottom:528.510450px;}
.y17_c00128{bottom:559.650450px;}
.y16_c00128{bottom:590.700450px;}
.y15_c00128{bottom:621.660450px;}
.y14_c00128{bottom:652.710450px;}
.y13_c00128{bottom:683.760450px;}
.y12_c00128{bottom:714.810450px;}
.y11_c00128{bottom:757.830450px;}
.y10_c00128{bottom:788.970450px;}
.yf_c00128{bottom:820.020450px;}
.ye_c00128{bottom:851.070450px;}
.yd_c00128{bottom:894.000450px;}
.yc_c00128{bottom:925.140450px;}
.yb_c00128{bottom:956.190450px;}
.ya_c00128{bottom:987.240450px;}
.y9_c00128{bottom:1018.290450px;}
.y8_c00128{bottom:1049.340450px;}
.y7_c00128{bottom:1080.390450px;}
.y6_c00128{bottom:1111.440450px;}
.y3_c00128{bottom:1132.140450px;}
.y2_c00128{bottom:1165.441023px;}
.y1_c00128{bottom:1196.040600px;}
.h1_c00128{height:52.898555px;}
.h2_c00128{height:63.175781px;}
.h3_c00128{height:63.351562px;}
.h0_c00128{height:1263.000000px;}
.w1_c00128{width:892.500000px;}
.w0_c00128{width:892.830000px;}
.x0_c00128{left:0.000000px;}
.x1_c00128{left:127.620000px;}
.x2_c00128{left:738.450000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls13_c00128{letter-spacing:-0.960000pt;}
.lsd_c00128{letter-spacing:-0.090848pt;}
.ls12_c00128{letter-spacing:-0.038400pt;}
.ls10_c00128{letter-spacing:-0.025600pt;}
.lsf_c00128{letter-spacing:-0.006400pt;}
.lse_c00128{letter-spacing:0.000000pt;}
.ls7_c00128{letter-spacing:0.006400pt;}
.ls6_c00128{letter-spacing:0.012800pt;}
.ls8_c00128{letter-spacing:0.019200pt;}
.ls1_c00128{letter-spacing:0.025600pt;}
.ls5_c00128{letter-spacing:0.032000pt;}
.ls3_c00128{letter-spacing:0.038400pt;}
.lsa_c00128{letter-spacing:0.044800pt;}
.ls2_c00128{letter-spacing:0.051200pt;}
.ls0_c00128{letter-spacing:0.057600pt;}
.ls4_c00128{letter-spacing:0.064000pt;}
.lsc_c00128{letter-spacing:0.070400pt;}
.ls9_c00128{letter-spacing:0.083200pt;}
.lsb_c00128{letter-spacing:0.096000pt;}
.ls11_c00128{letter-spacing:1.600000pt;}
.ws2_c00128{word-spacing:-0.012800pt;}
.ws1_c00128{word-spacing:0.000000pt;}
.ws3_c00128{word-spacing:0.006400pt;}
.ws4_c00128{word-spacing:0.064000pt;}
.ws0_c00128{word-spacing:0.171008pt;}
.ws5_c00128{word-spacing:6.310400pt;}
.ws6_c00128{word-spacing:6.387200pt;}
._5_c00128{margin-left:-3.552000pt;}
._6_c00128{margin-left:-2.592000pt;}
._2_c00128{margin-left:-0.992000pt;}
._0_c00128{width:0.919168pt;}
._7_c00128{width:1.920000pt;}
._a_c00128{width:3.200000pt;}
._3_c00128{width:4.768000pt;}
._4_c00128{width:5.779200pt;}
._9_c00128{width:7.641600pt;}
._1_c00128{width:8.582400pt;}
._8_c00128{width:9.888000pt;}
.fs0_c00128{font-size:53.440000pt;}
.fs1_c00128{font-size:64.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y5_c00128{bottom:50.987067pt;}
.y4_c00128{bottom:69.387067pt;}
.y24_c00128{bottom:117.307067pt;}
.y23_c00128{bottom:144.907067pt;}
.y22_c00128{bottom:172.507067pt;}
.y21_c00128{bottom:200.107067pt;}
.y20_c00128{bottom:227.707067pt;}
.y1f_c00128{bottom:255.307067pt;}
.y1e_c00128{bottom:293.467067pt;}
.y1d_c00128{bottom:321.147067pt;}
.y1c_c00128{bottom:348.747067pt;}
.y1b_c00128{bottom:376.347067pt;}
.y1a_c00128{bottom:403.947067pt;}
.y19_c00128{bottom:431.547067pt;}
.y18_c00128{bottom:469.787067pt;}
.y17_c00128{bottom:497.467067pt;}
.y16_c00128{bottom:525.067067pt;}
.y15_c00128{bottom:552.587067pt;}
.y14_c00128{bottom:580.187067pt;}
.y13_c00128{bottom:607.787067pt;}
.y12_c00128{bottom:635.387067pt;}
.y11_c00128{bottom:673.627067pt;}
.y10_c00128{bottom:701.307067pt;}
.yf_c00128{bottom:728.907067pt;}
.ye_c00128{bottom:756.507067pt;}
.yd_c00128{bottom:794.667067pt;}
.yc_c00128{bottom:822.347067pt;}
.yb_c00128{bottom:849.947067pt;}
.ya_c00128{bottom:877.547067pt;}
.y9_c00128{bottom:905.147067pt;}
.y8_c00128{bottom:932.747067pt;}
.y7_c00128{bottom:960.347067pt;}
.y6_c00128{bottom:987.947067pt;}
.y3_c00128{bottom:1006.347067pt;}
.y2_c00128{bottom:1035.947576pt;}
.y1_c00128{bottom:1063.147200pt;}
.h1_c00128{height:47.020937pt;}
.h2_c00128{height:56.156250pt;}
.h3_c00128{height:56.312500pt;}
.h0_c00128{height:1122.666667pt;}
.w1_c00128{width:793.333333pt;}
.w0_c00128{width:793.626667pt;}
.x0_c00128{left:0.000000pt;}
.x1_c00128{left:113.440000pt;}
.x2_c00128{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.095703;font-style:normal;font-weight:normal;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_aeb07e049cc8e6fa154a555f.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00129{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls16_c00129{letter-spacing:-0.187200px;}
.lse_c00129{letter-spacing:-0.048096px;}
.ls12_c00129{letter-spacing:-0.028800px;}
.ls15_c00129{letter-spacing:-0.014400px;}
.ls10_c00129{letter-spacing:-0.007200px;}
.lsf_c00129{letter-spacing:0.000000px;}
.ls3_c00129{letter-spacing:0.007200px;}
.ls5_c00129{letter-spacing:0.014400px;}
.ls7_c00129{letter-spacing:0.021600px;}
.ls4_c00129{letter-spacing:0.028800px;}
.ls2_c00129{letter-spacing:0.036000px;}
.ls8_c00129{letter-spacing:0.043200px;}
.ls0_c00129{letter-spacing:0.050400px;}
.lsa_c00129{letter-spacing:0.057600px;}
.lsc_c00129{letter-spacing:0.064800px;}
.ls1_c00129{letter-spacing:0.072000px;}
.ls9_c00129{letter-spacing:0.079200px;}
.ls6_c00129{letter-spacing:0.086400px;}
.lsd_c00129{letter-spacing:0.093600px;}
.lsb_c00129{letter-spacing:0.108000px;}
.ls14_c00129{letter-spacing:1.080000px;}
.ls13_c00129{letter-spacing:2.073600px;}
.ls11_c00129{letter-spacing:2.080800px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00129{word-spacing:0.000000px;}
.ws0_c00129{word-spacing:0.138276px;}
._0_c00129{margin-left:-4.780800px;}
._3_c00129{margin-left:-3.369600px;}
._2_c00129{margin-left:-2.196000px;}
._1_c00129{margin-left:-1.116000px;}
._4_c00129{width:1.346400px;}
._5_c00129{width:2.541600px;}
._7_c00129{width:3.542400px;}
._b_c00129{width:4.586400px;}
._9_c00129{width:6.436800px;}
._a_c00129{width:7.646400px;}
._e_c00129{width:9.374400px;}
._8_c00129{width:11.138400px;}
._d_c00129{width:12.218400px;}
._6_c00129{width:14.011200px;}
._c_c00129{width:16.164000px;}
.fc0_c00129{color:rgb(0,0,0);}
.fs0_c00129{font-size:60.120000px;}
.fs1_c00129{font-size:72.000000px;}
.y0_c00129{bottom:0.000000px;}
.y6_c00129{bottom:57.360450px;}
.y5_c00129{bottom:78.060450px;}
.y26_c00129{bottom:113.880450px;}
.y25_c00129{bottom:144.930450px;}
.y24_c00129{bottom:187.860450px;}
.y23_c00129{bottom:219.000450px;}
.y22_c00129{bottom:250.050450px;}
.y21_c00129{bottom:281.100450px;}
.y20_c00129{bottom:312.150450px;}
.y1f_c00129{bottom:343.200450px;}
.y1e_c00129{bottom:374.250450px;}
.y1d_c00129{bottom:417.180450px;}
.y1c_c00129{bottom:448.320450px;}
.y1b_c00129{bottom:479.370450px;}
.y1a_c00129{bottom:510.420450px;}
.y19_c00129{bottom:541.470450px;}
.y18_c00129{bottom:572.520450px;}
.y17_c00129{bottom:603.570450px;}
.y16_c00129{bottom:634.620450px;}
.y15_c00129{bottom:665.670450px;}
.y14_c00129{bottom:696.720450px;}
.y13_c00129{bottom:727.770450px;}
.y12_c00129{bottom:758.820450px;}
.y11_c00129{bottom:789.870450px;}
.y10_c00129{bottom:832.800450px;}
.yf_c00129{bottom:863.940450px;}
.ye_c00129{bottom:894.990450px;}
.yd_c00129{bottom:926.040450px;}
.yc_c00129{bottom:957.090450px;}
.yb_c00129{bottom:1000.110450px;}
.ya_c00129{bottom:1031.160450px;}
.y9_c00129{bottom:1062.210450px;}
.y8_c00129{bottom:1093.260450px;}
.y7_c00129{bottom:1124.310450px;}
.y4_c00129{bottom:1144.380657px;}
.y3_c00129{bottom:1161.660648px;}
.y2_c00129{bottom:1178.850459px;}
.y1_c00129{bottom:1196.130450px;}
.h1_c00129{height:52.898555px;}
.h2_c00129{height:63.175781px;}
.h0_c00129{height:1263.000000px;}
.w1_c00129{width:892.500000px;}
.w0_c00129{width:892.830000px;}
.x0_c00129{left:0.000000px;}
.x4_c00129{left:127.620000px;}
.x1_c00129{left:649.620000px;}
.x3_c00129{left:738.450000px;}
.x2_c00129{left:765.450198px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls16_c00129{letter-spacing:-0.166400pt;}
.lse_c00129{letter-spacing:-0.042752pt;}
.ls12_c00129{letter-spacing:-0.025600pt;}
.ls15_c00129{letter-spacing:-0.012800pt;}
.ls10_c00129{letter-spacing:-0.006400pt;}
.lsf_c00129{letter-spacing:0.000000pt;}
.ls3_c00129{letter-spacing:0.006400pt;}
.ls5_c00129{letter-spacing:0.012800pt;}
.ls7_c00129{letter-spacing:0.019200pt;}
.ls4_c00129{letter-spacing:0.025600pt;}
.ls2_c00129{letter-spacing:0.032000pt;}
.ls8_c00129{letter-spacing:0.038400pt;}
.ls0_c00129{letter-spacing:0.044800pt;}
.lsa_c00129{letter-spacing:0.051200pt;}
.lsc_c00129{letter-spacing:0.057600pt;}
.ls1_c00129{letter-spacing:0.064000pt;}
.ls9_c00129{letter-spacing:0.070400pt;}
.ls6_c00129{letter-spacing:0.076800pt;}
.lsd_c00129{letter-spacing:0.083200pt;}
.lsb_c00129{letter-spacing:0.096000pt;}
.ls14_c00129{letter-spacing:0.960000pt;}
.ls13_c00129{letter-spacing:1.843200pt;}
.ls11_c00129{letter-spacing:1.849600pt;}
.ws1_c00129{word-spacing:0.000000pt;}
.ws0_c00129{word-spacing:0.122912pt;}
._0_c00129{margin-left:-4.249600pt;}
._3_c00129{margin-left:-2.995200pt;}
._2_c00129{margin-left:-1.952000pt;}
._1_c00129{margin-left:-0.992000pt;}
._4_c00129{width:1.196800pt;}
._5_c00129{width:2.259200pt;}
._7_c00129{width:3.148800pt;}
._b_c00129{width:4.076800pt;}
._9_c00129{width:5.721600pt;}
._a_c00129{width:6.796800pt;}
._e_c00129{width:8.332800pt;}
._8_c00129{width:9.900800pt;}
._d_c00129{width:10.860800pt;}
._6_c00129{width:12.454400pt;}
._c_c00129{width:14.368000pt;}
.fs0_c00129{font-size:53.440000pt;}
.fs1_c00129{font-size:64.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.y6_c00129{bottom:50.987067pt;}
.y5_c00129{bottom:69.387067pt;}
.y26_c00129{bottom:101.227067pt;}
.y25_c00129{bottom:128.827067pt;}
.y24_c00129{bottom:166.987067pt;}
.y23_c00129{bottom:194.667067pt;}
.y22_c00129{bottom:222.267067pt;}
.y21_c00129{bottom:249.867067pt;}
.y20_c00129{bottom:277.467067pt;}
.y1f_c00129{bottom:305.067067pt;}
.y1e_c00129{bottom:332.667067pt;}
.y1d_c00129{bottom:370.827067pt;}
.y1c_c00129{bottom:398.507067pt;}
.y1b_c00129{bottom:426.107067pt;}
.y1a_c00129{bottom:453.707067pt;}
.y19_c00129{bottom:481.307067pt;}
.y18_c00129{bottom:508.907067pt;}
.y17_c00129{bottom:536.507067pt;}
.y16_c00129{bottom:564.107067pt;}
.y15_c00129{bottom:591.707067pt;}
.y14_c00129{bottom:619.307067pt;}
.y13_c00129{bottom:646.907067pt;}
.y12_c00129{bottom:674.507067pt;}
.y11_c00129{bottom:702.107067pt;}
.y10_c00129{bottom:740.267067pt;}
.yf_c00129{bottom:767.947067pt;}
.ye_c00129{bottom:795.547067pt;}
.yd_c00129{bottom:823.147067pt;}
.yc_c00129{bottom:850.747067pt;}
.yb_c00129{bottom:888.987067pt;}
.ya_c00129{bottom:916.587067pt;}
.y9_c00129{bottom:944.187067pt;}
.y8_c00129{bottom:971.787067pt;}
.y7_c00129{bottom:999.387067pt;}
.y4_c00129{bottom:1017.227251pt;}
.y3_c00129{bottom:1032.587243pt;}
.y2_c00129{bottom:1047.867075pt;}
.y1_c00129{bottom:1063.227067pt;}
.h1_c00129{height:47.020937pt;}
.h2_c00129{height:56.156250pt;}
.h0_c00129{height:1122.666667pt;}
.w1_c00129{width:793.333333pt;}
.w0_c00129{width:793.626667pt;}
.x0_c00129{left:0.000000pt;}
.x4_c00129{left:113.440000pt;}
.x1_c00129{left:577.440000pt;}
.x3_c00129{left:656.400000pt;}
.x2_c00129{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a81b6a33a3ffa13fd09982f2.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.095703;font-style:normal;font-weight:normal;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_7b8f3d65f44f1936596f1f46.woff2')format("woff");}.ff2_c00130{font-family:ff2_c00130;line-height:1.093262;font-style: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:-20.880000px;}
.v0_c00130{vertical-align:0.000000px;}
.v1_c00130{vertical-align:24.120000px;}
.ls12_c00130{letter-spacing:-3.600000px;}
.ls11_c00130{letter-spacing:-2.520000px;}
.lse_c00130{letter-spacing:-0.102204px;}
.ls1a_c00130{letter-spacing:-0.084168px;}
.ls1b_c00130{letter-spacing:-0.072144px;}
.ls19_c00130{letter-spacing:-0.043200px;}
.ls16_c00130{letter-spacing:-0.021600px;}
.ls17_c00130{letter-spacing:-0.014400px;}
.ls10_c00130{letter-spacing:-0.007200px;}
.lsf_c00130{letter-spacing:0.000000px;}
.ls2_c00130{letter-spacing:0.007200px;}
.ls1_c00130{letter-spacing:0.014400px;}
.ls0_c00130{letter-spacing:0.021600px;}
.ls7_c00130{letter-spacing:0.028800px;}
.ls8_c00130{letter-spacing:0.036000px;}
.lsc_c00130{letter-spacing:0.043200px;}
.ls5_c00130{letter-spacing:0.050400px;}
.ls4_c00130{letter-spacing:0.057600px;}
.ls6_c00130{letter-spacing:0.064800px;}
.ls9_c00130{letter-spacing:0.072000px;}
.lsa_c00130{letter-spacing:0.079200px;}
.ls3_c00130{letter-spacing:0.086400px;}
.ls1c_c00130{letter-spacing:0.090180px;}
.lsd_c00130{letter-spacing:0.093600px;}
.ls18_c00130{letter-spacing:0.181944px;}
.ls15_c00130{letter-spacing:4.960800px;}
.ls13_c00130{letter-spacing:4.989600px;}
.ls14_c00130{letter-spacing:5.040000px;}
.lsb_c00130{letter-spacing:909.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00130{word-spacing:-18.064800px;}
.ws1_c00130{word-spacing:-18.014400px;}
.ws2_c00130{word-spacing:-12.151944px;}
.ws3_c00130{word-spacing:-9.720000px;}
.ws7_c00130{word-spacing:-0.014400px;}
.ws5_c00130{word-spacing:0.000000px;}
.ws4_c00130{word-spacing:0.192384px;}
.ws6_c00130{word-spacing:4.608000px;}
._9_c00130{margin-left:-5.875200px;}
._7_c00130{margin-left:-4.867200px;}
._5_c00130{margin-left:-3.542400px;}
._6_c00130{margin-left:-2.534400px;}
._4_c00130{margin-left:-1.143792px;}
._0_c00130{width:1.034064px;}
._1_c00130{width:2.858400px;}
._8_c00130{width:3.996000px;}
._2_c00130{width:5.824800px;}
._3_c00130{width:6.976800px;}
._f_c00130{width:8.136000px;}
._e_c00130{width:9.136800px;}
._d_c00130{width:15.076800px;}
._b_c00130{width:19.310400px;}
._a_c00130{width:20.491200px;}
._c_c00130{width:23.004000px;}
.fc1_c00130{color:rgb(0,0,0);}
.fc0_c00130{color:rgb(32,31,30);}
.fs3_c00130{font-size:38.880000px;}
.fs2_c00130{font-size:47.880000px;}
.fs0_c00130{font-size:60.120000px;}
.fs1_c00130{font-size:72.000000px;}
.y0_c00130{bottom:0.000000px;}
.y5_c00130{bottom:57.360450px;}
.y4_c00130{bottom:78.060450px;}
.y25_c00130{bottom:115.140450px;}
.y24_c00130{bottom:127.830450px;}
.y23_c00130{bottom:186.060450px;}
.y22_c00130{bottom:217.200450px;}
.y21_c00130{bottom:248.250450px;}
.y20_c00130{bottom:279.300450px;}
.y1f_c00130{bottom:310.350450px;}
.y1e_c00130{bottom:341.400450px;}
.y1d_c00130{bottom:372.450450px;}
.y1c_c00130{bottom:403.500450px;}
.y1b_c00130{bottom:434.550450px;}
.y1a_c00130{bottom:477.480450px;}
.y19_c00130{bottom:508.620450px;}
.y18_c00130{bottom:539.670450px;}
.y17_c00130{bottom:570.720450px;}
.y16_c00130{bottom:601.770450px;}
.y15_c00130{bottom:632.820450px;}
.y14_c00130{bottom:663.870450px;}
.y13_c00130{bottom:698.160450px;}
.y12_c00130{bottom:720.390450px;}
.y11_c00130{bottom:745.770450px;}
.y10_c00130{bottom:788.880450px;}
.yf_c00130{bottom:820.020450px;}
.ye_c00130{bottom:851.070450px;}
.yd_c00130{bottom:882.120450px;}
.yc_c00130{bottom:913.170450px;}
.yb_c00130{bottom:944.220450px;}
.ya_c00130{bottom:975.180450px;}
.y9_c00130{bottom:1018.200450px;}
.y8_c00130{bottom:1049.340450px;}
.y7_c00130{bottom:1080.390450px;}
.y6_c00130{bottom:1111.440450px;}
.y3_c00130{bottom:1132.140450px;}
.y2_c00130{bottom:1165.441023px;}
.y1_c00130{bottom:1196.040600px;}
.h5_c00130{height:34.114922px;}
.h1_c00130{height:52.898555px;}
.h2_c00130{height:63.175781px;}
.h3_c00130{height:63.351562px;}
.h4_c00130{height:66.248789px;}
.h0_c00130{height:1263.000000px;}
.w1_c00130{width:892.500000px;}
.w0_c00130{width:892.830000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:127.620000px;}
.x2_c00130{left:738.450000px;}
@media print{
.v2_c00130{vertical-align:-18.560000pt;}
.v0_c00130{vertical-align:0.000000pt;}
.v1_c00130{vertical-align:21.440000pt;}
.ls12_c00130{letter-spacing:-3.200000pt;}
.ls11_c00130{letter-spacing:-2.240000pt;}
.lse_c00130{letter-spacing:-0.090848pt;}
.ls1a_c00130{letter-spacing:-0.074816pt;}
.ls1b_c00130{letter-spacing:-0.064128pt;}
.ls19_c00130{letter-spacing:-0.038400pt;}
.ls16_c00130{letter-spacing:-0.019200pt;}
.ls17_c00130{letter-spacing:-0.012800pt;}
.ls10_c00130{letter-spacing:-0.006400pt;}
.lsf_c00130{letter-spacing:0.000000pt;}
.ls2_c00130{letter-spacing:0.006400pt;}
.ls1_c00130{letter-spacing:0.012800pt;}
.ls0_c00130{letter-spacing:0.019200pt;}
.ls7_c00130{letter-spacing:0.025600pt;}
.ls8_c00130{letter-spacing:0.032000pt;}
.lsc_c00130{letter-spacing:0.038400pt;}
.ls5_c00130{letter-spacing:0.044800pt;}
.ls4_c00130{letter-spacing:0.051200pt;}
.ls6_c00130{letter-spacing:0.057600pt;}
.ls9_c00130{letter-spacing:0.064000pt;}
.lsa_c00130{letter-spacing:0.070400pt;}
.ls3_c00130{letter-spacing:0.076800pt;}
.ls1c_c00130{letter-spacing:0.080160pt;}
.lsd_c00130{letter-spacing:0.083200pt;}
.ls18_c00130{letter-spacing:0.161728pt;}
.ls15_c00130{letter-spacing:4.409600pt;}
.ls13_c00130{letter-spacing:4.435200pt;}
.ls14_c00130{letter-spacing:4.480000pt;}
.lsb_c00130{letter-spacing:808.000000pt;}
.ws0_c00130{word-spacing:-16.057600pt;}
.ws1_c00130{word-spacing:-16.012800pt;}
.ws2_c00130{word-spacing:-10.801728pt;}
.ws3_c00130{word-spacing:-8.640000pt;}
.ws7_c00130{word-spacing:-0.012800pt;}
.ws5_c00130{word-spacing:0.000000pt;}
.ws4_c00130{word-spacing:0.171008pt;}
.ws6_c00130{word-spacing:4.096000pt;}
._9_c00130{margin-left:-5.222400pt;}
._7_c00130{margin-left:-4.326400pt;}
._5_c00130{margin-left:-3.148800pt;}
._6_c00130{margin-left:-2.252800pt;}
._4_c00130{margin-left:-1.016704pt;}
._0_c00130{width:0.919168pt;}
._1_c00130{width:2.540800pt;}
._8_c00130{width:3.552000pt;}
._2_c00130{width:5.177600pt;}
._3_c00130{width:6.201600pt;}
._f_c00130{width:7.232000pt;}
._e_c00130{width:8.121600pt;}
._d_c00130{width:13.401600pt;}
._b_c00130{width:17.164800pt;}
._a_c00130{width:18.214400pt;}
._c_c00130{width:20.448000pt;}
.fs3_c00130{font-size:34.560000pt;}
.fs2_c00130{font-size:42.560000pt;}
.fs0_c00130{font-size:53.440000pt;}
.fs1_c00130{font-size:64.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.y5_c00130{bottom:50.987067pt;}
.y4_c00130{bottom:69.387067pt;}
.y25_c00130{bottom:102.347067pt;}
.y24_c00130{bottom:113.627067pt;}
.y23_c00130{bottom:165.387067pt;}
.y22_c00130{bottom:193.067067pt;}
.y21_c00130{bottom:220.667067pt;}
.y20_c00130{bottom:248.267067pt;}
.y1f_c00130{bottom:275.867067pt;}
.y1e_c00130{bottom:303.467067pt;}
.y1d_c00130{bottom:331.067067pt;}
.y1c_c00130{bottom:358.667067pt;}
.y1b_c00130{bottom:386.267067pt;}
.y1a_c00130{bottom:424.427067pt;}
.y19_c00130{bottom:452.107067pt;}
.y18_c00130{bottom:479.707067pt;}
.y17_c00130{bottom:507.307067pt;}
.y16_c00130{bottom:534.907067pt;}
.y15_c00130{bottom:562.507067pt;}
.y14_c00130{bottom:590.107067pt;}
.y13_c00130{bottom:620.587067pt;}
.y12_c00130{bottom:640.347067pt;}
.y11_c00130{bottom:662.907067pt;}
.y10_c00130{bottom:701.227067pt;}
.yf_c00130{bottom:728.907067pt;}
.ye_c00130{bottom:756.507067pt;}
.yd_c00130{bottom:784.107067pt;}
.yc_c00130{bottom:811.707067pt;}
.yb_c00130{bottom:839.307067pt;}
.ya_c00130{bottom:866.827067pt;}
.y9_c00130{bottom:905.067067pt;}
.y8_c00130{bottom:932.747067pt;}
.y7_c00130{bottom:960.347067pt;}
.y6_c00130{bottom:987.947067pt;}
.y3_c00130{bottom:1006.347067pt;}
.y2_c00130{bottom:1035.947576pt;}
.y1_c00130{bottom:1063.147200pt;}
.h5_c00130{height:30.324375pt;}
.h1_c00130{height:47.020937pt;}
.h2_c00130{height:56.156250pt;}
.h3_c00130{height:56.312500pt;}
.h4_c00130{height:58.887813pt;}
.h0_c00130{height:1122.666667pt;}
.w1_c00130{width:793.333333pt;}
.w0_c00130{width:793.626667pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:113.440000pt;}
.x2_c00130{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.095703;font-style:normal;font-weight:normal;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_0880490553d6a4c87cb62d34.woff2')format("woff");}.ff2_c00131{font-family:ff2_c00131;line-height:1.093262;font-style: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:-20.880000px;}
.v0_c00131{vertical-align:0.000000px;}
.v1_c00131{vertical-align:27.000000px;}
.ls16_c00131{letter-spacing:-2.160000px;}
.ls15_c00131{letter-spacing:-0.093600px;}
.ls1a_c00131{letter-spacing:-0.090180px;}
.ls1b_c00131{letter-spacing:-0.060120px;}
.lse_c00131{letter-spacing:-0.048096px;}
.ls14_c00131{letter-spacing:-0.043200px;}
.ls17_c00131{letter-spacing:-0.028800px;}
.ls10_c00131{letter-spacing:-0.021600px;}
.ls12_c00131{letter-spacing:-0.014400px;}
.ls18_c00131{letter-spacing:-0.012024px;}
.ls11_c00131{letter-spacing:-0.007200px;}
.ls19_c00131{letter-spacing:-0.006012px;}
.lsf_c00131{letter-spacing:0.000000px;}
.ls3_c00131{letter-spacing:0.007200px;}
.ls8_c00131{letter-spacing:0.014400px;}
.ls4_c00131{letter-spacing:0.021600px;}
.ls9_c00131{letter-spacing:0.028800px;}
.ls2_c00131{letter-spacing:0.036000px;}
.ls5_c00131{letter-spacing:0.043200px;}
.ls6_c00131{letter-spacing:0.050400px;}
.ls7_c00131{letter-spacing:0.057600px;}
.lsb_c00131{letter-spacing:0.064800px;}
.lsd_c00131{letter-spacing:0.072000px;}
.ls0_c00131{letter-spacing:0.086400px;}
.lsc_c00131{letter-spacing:0.093600px;}
.ls1_c00131{letter-spacing:0.108000px;}
.lsa_c00131{letter-spacing:0.122400px;}
.ls13_c00131{letter-spacing:0.181944px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00131{word-spacing:-12.151944px;}
.ws1_c00131{word-spacing:-9.720000px;}
.ws3_c00131{word-spacing:0.000000px;}
.ws2_c00131{word-spacing:0.138276px;}
._3_c00131{margin-left:-4.356000px;}
._7_c00131{margin-left:-2.577600px;}
._0_c00131{margin-left:-1.346400px;}
._1_c00131{width:1.008000px;}
._2_c00131{width:2.376000px;}
._8_c00131{width:3.744000px;}
._9_c00131{width:4.953600px;}
._6_c00131{width:6.429600px;}
._4_c00131{width:11.073600px;}
._5_c00131{width:12.312000px;}
._a_c00131{width:19.778400px;}
.fc0_c00131{color:rgb(0,0,0);}
.fs3_c00131{font-size:38.880000px;}
.fs2_c00131{font-size:47.880000px;}
.fs0_c00131{font-size:60.120000px;}
.fs1_c00131{font-size:72.000000px;}
.y0_c00131{bottom:0.000000px;}
.y6_c00131{bottom:57.360450px;}
.y5_c00131{bottom:78.060450px;}
.y26_c00131{bottom:109.920639px;}
.y25_c00131{bottom:132.330450px;}
.y24_c00131{bottom:145.020450px;}
.y23_c00131{bottom:195.060450px;}
.y22_c00131{bottom:226.110450px;}
.y21_c00131{bottom:269.040450px;}
.y20_c00131{bottom:300.180450px;}
.y1f_c00131{bottom:331.230450px;}
.y1e_c00131{bottom:362.280450px;}
.y1d_c00131{bottom:393.330450px;}
.y1c_c00131{bottom:424.380450px;}
.y1b_c00131{bottom:467.310450px;}
.y1a_c00131{bottom:498.450450px;}
.y19_c00131{bottom:529.500450px;}
.y18_c00131{bottom:572.430450px;}
.y17_c00131{bottom:603.570450px;}
.y16_c00131{bottom:634.620450px;}
.y15_c00131{bottom:665.670450px;}
.y14_c00131{bottom:696.720450px;}
.y13_c00131{bottom:727.770450px;}
.y12_c00131{bottom:770.700450px;}
.y11_c00131{bottom:801.840450px;}
.y10_c00131{bottom:832.890450px;}
.yf_c00131{bottom:863.940450px;}
.ye_c00131{bottom:894.990450px;}
.yd_c00131{bottom:926.040450px;}
.yc_c00131{bottom:957.090450px;}
.yb_c00131{bottom:1000.110450px;}
.ya_c00131{bottom:1031.160450px;}
.y9_c00131{bottom:1062.210450px;}
.y8_c00131{bottom:1093.260450px;}
.y7_c00131{bottom:1124.310450px;}
.y4_c00131{bottom:1144.380657px;}
.y3_c00131{bottom:1161.660648px;}
.y2_c00131{bottom:1178.850459px;}
.y1_c00131{bottom:1196.130450px;}
.h4_c00131{height:34.114922px;}
.h5_c00131{height:52.751777px;}
.h1_c00131{height:52.898555px;}
.h2_c00131{height:63.175781px;}
.h3_c00131{height:69.011895px;}
.h0_c00131{height:1263.000000px;}
.w1_c00131{width:892.500000px;}
.w0_c00131{width:892.830000px;}
.x0_c00131{left:0.000000px;}
.x4_c00131{left:127.620000px;}
.x1_c00131{left:649.620000px;}
.x3_c00131{left:738.450000px;}
.x2_c00131{left:765.450198px;}
@media print{
.v2_c00131{vertical-align:-18.560000pt;}
.v0_c00131{vertical-align:0.000000pt;}
.v1_c00131{vertical-align:24.000000pt;}
.ls16_c00131{letter-spacing:-1.920000pt;}
.ls15_c00131{letter-spacing:-0.083200pt;}
.ls1a_c00131{letter-spacing:-0.080160pt;}
.ls1b_c00131{letter-spacing:-0.053440pt;}
.lse_c00131{letter-spacing:-0.042752pt;}
.ls14_c00131{letter-spacing:-0.038400pt;}
.ls17_c00131{letter-spacing:-0.025600pt;}
.ls10_c00131{letter-spacing:-0.019200pt;}
.ls12_c00131{letter-spacing:-0.012800pt;}
.ls18_c00131{letter-spacing:-0.010688pt;}
.ls11_c00131{letter-spacing:-0.006400pt;}
.ls19_c00131{letter-spacing:-0.005344pt;}
.lsf_c00131{letter-spacing:0.000000pt;}
.ls3_c00131{letter-spacing:0.006400pt;}
.ls8_c00131{letter-spacing:0.012800pt;}
.ls4_c00131{letter-spacing:0.019200pt;}
.ls9_c00131{letter-spacing:0.025600pt;}
.ls2_c00131{letter-spacing:0.032000pt;}
.ls5_c00131{letter-spacing:0.038400pt;}
.ls6_c00131{letter-spacing:0.044800pt;}
.ls7_c00131{letter-spacing:0.051200pt;}
.lsb_c00131{letter-spacing:0.057600pt;}
.lsd_c00131{letter-spacing:0.064000pt;}
.ls0_c00131{letter-spacing:0.076800pt;}
.lsc_c00131{letter-spacing:0.083200pt;}
.ls1_c00131{letter-spacing:0.096000pt;}
.lsa_c00131{letter-spacing:0.108800pt;}
.ls13_c00131{letter-spacing:0.161728pt;}
.ws0_c00131{word-spacing:-10.801728pt;}
.ws1_c00131{word-spacing:-8.640000pt;}
.ws3_c00131{word-spacing:0.000000pt;}
.ws2_c00131{word-spacing:0.122912pt;}
._3_c00131{margin-left:-3.872000pt;}
._7_c00131{margin-left:-2.291200pt;}
._0_c00131{margin-left:-1.196800pt;}
._1_c00131{width:0.896000pt;}
._2_c00131{width:2.112000pt;}
._8_c00131{width:3.328000pt;}
._9_c00131{width:4.403200pt;}
._6_c00131{width:5.715200pt;}
._4_c00131{width:9.843200pt;}
._5_c00131{width:10.944000pt;}
._a_c00131{width:17.580800pt;}
.fs3_c00131{font-size:34.560000pt;}
.fs2_c00131{font-size:42.560000pt;}
.fs0_c00131{font-size:53.440000pt;}
.fs1_c00131{font-size:64.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y6_c00131{bottom:50.987067pt;}
.y5_c00131{bottom:69.387067pt;}
.y26_c00131{bottom:97.707235pt;}
.y25_c00131{bottom:117.627067pt;}
.y24_c00131{bottom:128.907067pt;}
.y23_c00131{bottom:173.387067pt;}
.y22_c00131{bottom:200.987067pt;}
.y21_c00131{bottom:239.147067pt;}
.y20_c00131{bottom:266.827067pt;}
.y1f_c00131{bottom:294.427067pt;}
.y1e_c00131{bottom:322.027067pt;}
.y1d_c00131{bottom:349.627067pt;}
.y1c_c00131{bottom:377.227067pt;}
.y1b_c00131{bottom:415.387067pt;}
.y1a_c00131{bottom:443.067067pt;}
.y19_c00131{bottom:470.667067pt;}
.y18_c00131{bottom:508.827067pt;}
.y17_c00131{bottom:536.507067pt;}
.y16_c00131{bottom:564.107067pt;}
.y15_c00131{bottom:591.707067pt;}
.y14_c00131{bottom:619.307067pt;}
.y13_c00131{bottom:646.907067pt;}
.y12_c00131{bottom:685.067067pt;}
.y11_c00131{bottom:712.747067pt;}
.y10_c00131{bottom:740.347067pt;}
.yf_c00131{bottom:767.947067pt;}
.ye_c00131{bottom:795.547067pt;}
.yd_c00131{bottom:823.147067pt;}
.yc_c00131{bottom:850.747067pt;}
.yb_c00131{bottom:888.987067pt;}
.ya_c00131{bottom:916.587067pt;}
.y9_c00131{bottom:944.187067pt;}
.y8_c00131{bottom:971.787067pt;}
.y7_c00131{bottom:999.387067pt;}
.y4_c00131{bottom:1017.227251pt;}
.y3_c00131{bottom:1032.587243pt;}
.y2_c00131{bottom:1047.867075pt;}
.y1_c00131{bottom:1063.227067pt;}
.h4_c00131{height:30.324375pt;}
.h5_c00131{height:46.890469pt;}
.h1_c00131{height:47.020937pt;}
.h2_c00131{height:56.156250pt;}
.h3_c00131{height:61.343906pt;}
.h0_c00131{height:1122.666667pt;}
.w1_c00131{width:793.333333pt;}
.w0_c00131{width:793.626667pt;}
.x0_c00131{left:0.000000pt;}
.x4_c00131{left:113.440000pt;}
.x1_c00131{left:577.440000pt;}
.x3_c00131{left:656.400000pt;}
.x2_c00131{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.095703;font-style:normal;font-weight:normal;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_f2c5d5544fb39ec623784cb4.woff2')format("woff");}.ff2_c00132{font-family:ff2_c00132;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00132{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls10_c00132{letter-spacing:-0.252000px;}
.lsb_c00132{letter-spacing:-0.102204px;}
.lsf_c00132{letter-spacing:-0.036000px;}
.ls11_c00132{letter-spacing:-0.021600px;}
.lsd_c00132{letter-spacing:-0.014400px;}
.lse_c00132{letter-spacing:-0.007200px;}
.lsc_c00132{letter-spacing:0.000000px;}
.ls7_c00132{letter-spacing:0.007200px;}
.ls0_c00132{letter-spacing:0.014400px;}
.ls5_c00132{letter-spacing:0.021600px;}
.ls1_c00132{letter-spacing:0.028800px;}
.ls8_c00132{letter-spacing:0.036000px;}
.ls3_c00132{letter-spacing:0.043200px;}
.ls9_c00132{letter-spacing:0.050400px;}
.ls4_c00132{letter-spacing:0.057600px;}
.ls6_c00132{letter-spacing:0.064800px;}
.ls2_c00132{letter-spacing:0.086400px;}
.lsa_c00132{letter-spacing:0.093600px;}
.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;}
}
.ws1_c00132{word-spacing:0.000000px;}
.ws0_c00132{word-spacing:0.192384px;}
._9_c00132{margin-left:-5.270400px;}
._8_c00132{margin-left:-3.960000px;}
._b_c00132{margin-left:-2.570400px;}
._5_c00132{margin-left:-1.425600px;}
._0_c00132{width:1.034064px;}
._d_c00132{width:2.136672px;}
._6_c00132{width:3.211200px;}
._3_c00132{width:4.795200px;}
._4_c00132{width:5.947200px;}
._f_c00132{width:8.251200px;}
._e_c00132{width:10.051200px;}
._a_c00132{width:11.188800px;}
._7_c00132{width:12.196800px;}
._2_c00132{width:13.737600px;}
._1_c00132{width:14.745600px;}
._c_c00132{width:16.070400px;}
.fc1_c00132{color:rgb(0,0,0);}
.fc0_c00132{color:rgb(32,31,30);}
.fs0_c00132{font-size:60.120000px;}
.fs1_c00132{font-size:72.000000px;}
.y0_c00132{bottom:0.000000px;}
.y5_c00132{bottom:57.360450px;}
.y4_c00132{bottom:78.060450px;}
.y24_c00132{bottom:120.000450px;}
.y23_c00132{bottom:151.050450px;}
.y22_c00132{bottom:193.980450px;}
.y21_c00132{bottom:225.120450px;}
.y20_c00132{bottom:256.170450px;}
.y1f_c00132{bottom:287.220450px;}
.y1e_c00132{bottom:330.150450px;}
.y1d_c00132{bottom:361.290450px;}
.y1c_c00132{bottom:392.340450px;}
.y1b_c00132{bottom:423.390450px;}
.y1a_c00132{bottom:454.440450px;}
.y19_c00132{bottom:485.490450px;}
.y18_c00132{bottom:516.540450px;}
.y17_c00132{bottom:547.590450px;}
.y16_c00132{bottom:590.610450px;}
.y15_c00132{bottom:621.660450px;}
.y14_c00132{bottom:652.710450px;}
.y13_c00132{bottom:683.760450px;}
.y12_c00132{bottom:714.810450px;}
.y11_c00132{bottom:745.860450px;}
.y10_c00132{bottom:788.880450px;}
.yf_c00132{bottom:820.020450px;}
.ye_c00132{bottom:851.070450px;}
.yd_c00132{bottom:882.120450px;}
.yc_c00132{bottom:913.170450px;}
.yb_c00132{bottom:944.220450px;}
.ya_c00132{bottom:975.180450px;}
.y9_c00132{bottom:1006.230450px;}
.y8_c00132{bottom:1049.250450px;}
.y7_c00132{bottom:1080.390450px;}
.y6_c00132{bottom:1111.440450px;}
.y3_c00132{bottom:1132.140450px;}
.y2_c00132{bottom:1165.441023px;}
.y1_c00132{bottom:1196.040600px;}
.h1_c00132{height:52.898555px;}
.h2_c00132{height:63.175781px;}
.h0_c00132{height:1263.000000px;}
.w1_c00132{width:892.500000px;}
.w0_c00132{width:892.830000px;}
.x0_c00132{left:0.000000px;}
.x1_c00132{left:127.620000px;}
.x2_c00132{left:738.450000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls10_c00132{letter-spacing:-0.224000pt;}
.lsb_c00132{letter-spacing:-0.090848pt;}
.lsf_c00132{letter-spacing:-0.032000pt;}
.ls11_c00132{letter-spacing:-0.019200pt;}
.lsd_c00132{letter-spacing:-0.012800pt;}
.lse_c00132{letter-spacing:-0.006400pt;}
.lsc_c00132{letter-spacing:0.000000pt;}
.ls7_c00132{letter-spacing:0.006400pt;}
.ls0_c00132{letter-spacing:0.012800pt;}
.ls5_c00132{letter-spacing:0.019200pt;}
.ls1_c00132{letter-spacing:0.025600pt;}
.ls8_c00132{letter-spacing:0.032000pt;}
.ls3_c00132{letter-spacing:0.038400pt;}
.ls9_c00132{letter-spacing:0.044800pt;}
.ls4_c00132{letter-spacing:0.051200pt;}
.ls6_c00132{letter-spacing:0.057600pt;}
.ls2_c00132{letter-spacing:0.076800pt;}
.lsa_c00132{letter-spacing:0.083200pt;}
.ws1_c00132{word-spacing:0.000000pt;}
.ws0_c00132{word-spacing:0.171008pt;}
._9_c00132{margin-left:-4.684800pt;}
._8_c00132{margin-left:-3.520000pt;}
._b_c00132{margin-left:-2.284800pt;}
._5_c00132{margin-left:-1.267200pt;}
._0_c00132{width:0.919168pt;}
._d_c00132{width:1.899264pt;}
._6_c00132{width:2.854400pt;}
._3_c00132{width:4.262400pt;}
._4_c00132{width:5.286400pt;}
._f_c00132{width:7.334400pt;}
._e_c00132{width:8.934400pt;}
._a_c00132{width:9.945600pt;}
._7_c00132{width:10.841600pt;}
._2_c00132{width:12.211200pt;}
._1_c00132{width:13.107200pt;}
._c_c00132{width:14.284800pt;}
.fs0_c00132{font-size:53.440000pt;}
.fs1_c00132{font-size:64.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y5_c00132{bottom:50.987067pt;}
.y4_c00132{bottom:69.387067pt;}
.y24_c00132{bottom:106.667067pt;}
.y23_c00132{bottom:134.267067pt;}
.y22_c00132{bottom:172.427067pt;}
.y21_c00132{bottom:200.107067pt;}
.y20_c00132{bottom:227.707067pt;}
.y1f_c00132{bottom:255.307067pt;}
.y1e_c00132{bottom:293.467067pt;}
.y1d_c00132{bottom:321.147067pt;}
.y1c_c00132{bottom:348.747067pt;}
.y1b_c00132{bottom:376.347067pt;}
.y1a_c00132{bottom:403.947067pt;}
.y19_c00132{bottom:431.547067pt;}
.y18_c00132{bottom:459.147067pt;}
.y17_c00132{bottom:486.747067pt;}
.y16_c00132{bottom:524.987067pt;}
.y15_c00132{bottom:552.587067pt;}
.y14_c00132{bottom:580.187067pt;}
.y13_c00132{bottom:607.787067pt;}
.y12_c00132{bottom:635.387067pt;}
.y11_c00132{bottom:662.987067pt;}
.y10_c00132{bottom:701.227067pt;}
.yf_c00132{bottom:728.907067pt;}
.ye_c00132{bottom:756.507067pt;}
.yd_c00132{bottom:784.107067pt;}
.yc_c00132{bottom:811.707067pt;}
.yb_c00132{bottom:839.307067pt;}
.ya_c00132{bottom:866.827067pt;}
.y9_c00132{bottom:894.427067pt;}
.y8_c00132{bottom:932.667067pt;}
.y7_c00132{bottom:960.347067pt;}
.y6_c00132{bottom:987.947067pt;}
.y3_c00132{bottom:1006.347067pt;}
.y2_c00132{bottom:1035.947576pt;}
.y1_c00132{bottom:1063.147200pt;}
.h1_c00132{height:47.020937pt;}
.h2_c00132{height:56.156250pt;}
.h0_c00132{height:1122.666667pt;}
.w1_c00132{width:793.333333pt;}
.w0_c00132{width:793.626667pt;}
.x0_c00132{left:0.000000pt;}
.x1_c00132{left:113.440000pt;}
.x2_c00132{left:656.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_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_f02343c4a961faccb66864a9.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.095703;font-style:normal;font-weight:normal;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_317290371cc2ea421556d5f1.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00133{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls19_c00133{letter-spacing:-0.360000px;}
.ls18_c00133{letter-spacing:-0.316800px;}
.ls15_c00133{letter-spacing:-0.108000px;}
.ls1b_c00133{letter-spacing:-0.057600px;}
.ls11_c00133{letter-spacing:-0.048096px;}
.ls14_c00133{letter-spacing:-0.043200px;}
.ls16_c00133{letter-spacing:-0.028800px;}
.ls13_c00133{letter-spacing:-0.021600px;}
.ls17_c00133{letter-spacing:-0.014400px;}
.ls1a_c00133{letter-spacing:-0.007200px;}
.ls12_c00133{letter-spacing:0.000000px;}
.ls3_c00133{letter-spacing:0.007200px;}
.lsa_c00133{letter-spacing:0.014400px;}
.ls5_c00133{letter-spacing:0.021600px;}
.ls7_c00133{letter-spacing:0.028800px;}
.ls0_c00133{letter-spacing:0.036000px;}
.ls6_c00133{letter-spacing:0.043200px;}
.ls1_c00133{letter-spacing:0.050400px;}
.lsc_c00133{letter-spacing:0.057600px;}
.ls2_c00133{letter-spacing:0.064800px;}
.ls4_c00133{letter-spacing:0.072000px;}
.ls10_c00133{letter-spacing:0.079200px;}
.lsf_c00133{letter-spacing:0.086400px;}
.lsb_c00133{letter-spacing:0.115200px;}
.lse_c00133{letter-spacing:0.122400px;}
.ls9_c00133{letter-spacing:0.136800px;}
.ls8_c00133{letter-spacing:0.151200px;}
.lsd_c00133{letter-spacing:0.158400px;}
.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;}
}
.ws0_c00133{word-spacing:-18.057600px;}
.ws2_c00133{word-spacing:-18.028800px;}
.ws1_c00133{word-spacing:-18.000000px;}
.ws3_c00133{word-spacing:-17.992800px;}
.ws6_c00133{word-spacing:-4.298400px;}
.wsc_c00133{word-spacing:-1.814400px;}
.wsb_c00133{word-spacing:-0.014400px;}
.ws5_c00133{word-spacing:0.000000px;}
.ws4_c00133{word-spacing:0.138276px;}
.ws7_c00133{word-spacing:3.168000px;}
.ws9_c00133{word-spacing:7.552800px;}
.wsa_c00133{word-spacing:7.574400px;}
.ws8_c00133{word-spacing:10.101600px;}
._1_c00133{margin-left:-5.371200px;}
._0_c00133{margin-left:-4.356000px;}
._9_c00133{margin-left:-3.196800px;}
._2_c00133{margin-left:-1.598400px;}
._4_c00133{width:1.468800px;}
._a_c00133{width:2.671200px;}
._6_c00133{width:3.736800px;}
._5_c00133{width:5.349600px;}
._8_c00133{width:7.142400px;}
._7_c00133{width:8.265600px;}
._b_c00133{width:10.180800px;}
._3_c00133{width:11.872800px;}
.fc0_c00133{color:rgb(0,0,0);}
.fs0_c00133{font-size:60.120000px;}
.fs1_c00133{font-size:72.000000px;}
.y0_c00133{bottom:0.000000px;}
.y6_c00133{bottom:57.360450px;}
.y5_c00133{bottom:78.060450px;}
.y24_c00133{bottom:163.920450px;}
.y23_c00133{bottom:195.060450px;}
.y22_c00133{bottom:226.110450px;}
.y21_c00133{bottom:269.040450px;}
.y20_c00133{bottom:300.180450px;}
.y1f_c00133{bottom:331.230450px;}
.y1e_c00133{bottom:362.280450px;}
.y1d_c00133{bottom:393.330450px;}
.y1c_c00133{bottom:436.260450px;}
.y1b_c00133{bottom:467.400450px;}
.y1a_c00133{bottom:498.450450px;}
.y19_c00133{bottom:529.500450px;}
.y18_c00133{bottom:560.550450px;}
.y17_c00133{bottom:591.600450px;}
.y16_c00133{bottom:622.650450px;}
.y15_c00133{bottom:653.700450px;}
.y14_c00133{bottom:696.630450px;}
.y13_c00133{bottom:727.770450px;}
.y12_c00133{bottom:758.820450px;}
.y11_c00133{bottom:801.750450px;}
.y10_c00133{bottom:832.890450px;}
.yf_c00133{bottom:863.940450px;}
.ye_c00133{bottom:894.990450px;}
.yd_c00133{bottom:926.040450px;}
.yc_c00133{bottom:957.090450px;}
.yb_c00133{bottom:988.140450px;}
.ya_c00133{bottom:1019.190450px;}
.y9_c00133{bottom:1050.240450px;}
.y8_c00133{bottom:1093.170450px;}
.y7_c00133{bottom:1124.310450px;}
.y4_c00133{bottom:1144.380657px;}
.y3_c00133{bottom:1161.660648px;}
.y2_c00133{bottom:1178.850459px;}
.y1_c00133{bottom:1196.130450px;}
.h1_c00133{height:52.898555px;}
.h2_c00133{height:63.175781px;}
.h3_c00133{height:63.351562px;}
.h0_c00133{height:1263.000000px;}
.w1_c00133{width:892.500000px;}
.w0_c00133{width:892.830000px;}
.x0_c00133{left:0.000000px;}
.x4_c00133{left:127.620000px;}
.x1_c00133{left:649.620000px;}
.x3_c00133{left:738.450000px;}
.x2_c00133{left:765.450198px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls19_c00133{letter-spacing:-0.320000pt;}
.ls18_c00133{letter-spacing:-0.281600pt;}
.ls15_c00133{letter-spacing:-0.096000pt;}
.ls1b_c00133{letter-spacing:-0.051200pt;}
.ls11_c00133{letter-spacing:-0.042752pt;}
.ls14_c00133{letter-spacing:-0.038400pt;}
.ls16_c00133{letter-spacing:-0.025600pt;}
.ls13_c00133{letter-spacing:-0.019200pt;}
.ls17_c00133{letter-spacing:-0.012800pt;}
.ls1a_c00133{letter-spacing:-0.006400pt;}
.ls12_c00133{letter-spacing:0.000000pt;}
.ls3_c00133{letter-spacing:0.006400pt;}
.lsa_c00133{letter-spacing:0.012800pt;}
.ls5_c00133{letter-spacing:0.019200pt;}
.ls7_c00133{letter-spacing:0.025600pt;}
.ls0_c00133{letter-spacing:0.032000pt;}
.ls6_c00133{letter-spacing:0.038400pt;}
.ls1_c00133{letter-spacing:0.044800pt;}
.lsc_c00133{letter-spacing:0.051200pt;}
.ls2_c00133{letter-spacing:0.057600pt;}
.ls4_c00133{letter-spacing:0.064000pt;}
.ls10_c00133{letter-spacing:0.070400pt;}
.lsf_c00133{letter-spacing:0.076800pt;}
.lsb_c00133{letter-spacing:0.102400pt;}
.lse_c00133{letter-spacing:0.108800pt;}
.ls9_c00133{letter-spacing:0.121600pt;}
.ls8_c00133{letter-spacing:0.134400pt;}
.lsd_c00133{letter-spacing:0.140800pt;}
.ws0_c00133{word-spacing:-16.051200pt;}
.ws2_c00133{word-spacing:-16.025600pt;}
.ws1_c00133{word-spacing:-16.000000pt;}
.ws3_c00133{word-spacing:-15.993600pt;}
.ws6_c00133{word-spacing:-3.820800pt;}
.wsc_c00133{word-spacing:-1.612800pt;}
.wsb_c00133{word-spacing:-0.012800pt;}
.ws5_c00133{word-spacing:0.000000pt;}
.ws4_c00133{word-spacing:0.122912pt;}
.ws7_c00133{word-spacing:2.816000pt;}
.ws9_c00133{word-spacing:6.713600pt;}
.wsa_c00133{word-spacing:6.732800pt;}
.ws8_c00133{word-spacing:8.979200pt;}
._1_c00133{margin-left:-4.774400pt;}
._0_c00133{margin-left:-3.872000pt;}
._9_c00133{margin-left:-2.841600pt;}
._2_c00133{margin-left:-1.420800pt;}
._4_c00133{width:1.305600pt;}
._a_c00133{width:2.374400pt;}
._6_c00133{width:3.321600pt;}
._5_c00133{width:4.755200pt;}
._8_c00133{width:6.348800pt;}
._7_c00133{width:7.347200pt;}
._b_c00133{width:9.049600pt;}
._3_c00133{width:10.553600pt;}
.fs0_c00133{font-size:53.440000pt;}
.fs1_c00133{font-size:64.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.y6_c00133{bottom:50.987067pt;}
.y5_c00133{bottom:69.387067pt;}
.y24_c00133{bottom:145.707067pt;}
.y23_c00133{bottom:173.387067pt;}
.y22_c00133{bottom:200.987067pt;}
.y21_c00133{bottom:239.147067pt;}
.y20_c00133{bottom:266.827067pt;}
.y1f_c00133{bottom:294.427067pt;}
.y1e_c00133{bottom:322.027067pt;}
.y1d_c00133{bottom:349.627067pt;}
.y1c_c00133{bottom:387.787067pt;}
.y1b_c00133{bottom:415.467067pt;}
.y1a_c00133{bottom:443.067067pt;}
.y19_c00133{bottom:470.667067pt;}
.y18_c00133{bottom:498.267067pt;}
.y17_c00133{bottom:525.867067pt;}
.y16_c00133{bottom:553.467067pt;}
.y15_c00133{bottom:581.067067pt;}
.y14_c00133{bottom:619.227067pt;}
.y13_c00133{bottom:646.907067pt;}
.y12_c00133{bottom:674.507067pt;}
.y11_c00133{bottom:712.667067pt;}
.y10_c00133{bottom:740.347067pt;}
.yf_c00133{bottom:767.947067pt;}
.ye_c00133{bottom:795.547067pt;}
.yd_c00133{bottom:823.147067pt;}
.yc_c00133{bottom:850.747067pt;}
.yb_c00133{bottom:878.347067pt;}
.ya_c00133{bottom:905.947067pt;}
.y9_c00133{bottom:933.547067pt;}
.y8_c00133{bottom:971.707067pt;}
.y7_c00133{bottom:999.387067pt;}
.y4_c00133{bottom:1017.227251pt;}
.y3_c00133{bottom:1032.587243pt;}
.y2_c00133{bottom:1047.867075pt;}
.y1_c00133{bottom:1063.227067pt;}
.h1_c00133{height:47.020937pt;}
.h2_c00133{height:56.156250pt;}
.h3_c00133{height:56.312500pt;}
.h0_c00133{height:1122.666667pt;}
.w1_c00133{width:793.333333pt;}
.w0_c00133{width:793.626667pt;}
.x0_c00133{left:0.000000pt;}
.x4_c00133{left:113.440000pt;}
.x1_c00133{left:577.440000pt;}
.x3_c00133{left:656.400000pt;}
.x2_c00133{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8de934292b1e4dc31e30f5d7.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.095703;font-style:normal;font-weight:normal;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_bf24e45231fcf26d76cc23d4.woff2')format("woff");}.ff2_c00134{font-family:ff2_c00134;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00134{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.lse_c00134{letter-spacing:-0.102204px;}
.ls12_c00134{letter-spacing:-0.050400px;}
.ls11_c00134{letter-spacing:-0.036000px;}
.ls13_c00134{letter-spacing:-0.021600px;}
.ls14_c00134{letter-spacing:-0.014400px;}
.ls10_c00134{letter-spacing:-0.007200px;}
.lsf_c00134{letter-spacing:0.000000px;}
.lsd_c00134{letter-spacing:0.005400px;}
.ls6_c00134{letter-spacing:0.007200px;}
.ls1_c00134{letter-spacing:0.014400px;}
.ls2_c00134{letter-spacing:0.021600px;}
.ls0_c00134{letter-spacing:0.028800px;}
.lsb_c00134{letter-spacing:0.036000px;}
.ls5_c00134{letter-spacing:0.043200px;}
.ls3_c00134{letter-spacing:0.050400px;}
.ls8_c00134{letter-spacing:0.057600px;}
.ls9_c00134{letter-spacing:0.064800px;}
.ls4_c00134{letter-spacing:0.072000px;}
.lsc_c00134{letter-spacing:0.086400px;}
.ls7_c00134{letter-spacing:0.100800px;}
.lsa_c00134{letter-spacing:0.136800px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00134{word-spacing:-18.057600px;}
.ws0_c00134{word-spacing:-18.050400px;}
.ws1_c00134{word-spacing:-18.036000px;}
.ws4_c00134{word-spacing:0.000000px;}
.ws7_c00134{word-spacing:0.156600px;}
.ws8_c00134{word-spacing:0.172800px;}
.ws3_c00134{word-spacing:0.192384px;}
.ws6_c00134{word-spacing:2.678400px;}
.ws5_c00134{word-spacing:4.010400px;}
._5_c00134{margin-left:-3.744000px;}
._3_c00134{margin-left:-2.721600px;}
._2_c00134{margin-left:-1.468800px;}
._0_c00134{width:1.034064px;}
._1_c00134{width:2.637936px;}
._4_c00134{width:4.636800px;}
._8_c00134{width:6.501600px;}
._6_c00134{width:9.691200px;}
._9_c00134{width:12.628800px;}
._a_c00134{width:13.687200px;}
._7_c00134{width:15.127200px;}
.fc2_c00134{color:rgb(68,84,106);}
.fc1_c00134{color:rgb(0,0,0);}
.fc0_c00134{color:rgb(32,31,30);}
.fs2_c00134{font-size:54.000000px;}
.fs0_c00134{font-size:60.120000px;}
.fs1_c00134{font-size:72.000000px;}
.y0_c00134{bottom:0.000000px;}
.y5_c00134{bottom:57.360450px;}
.y4_c00134{bottom:78.060450px;}
.y1e_c00134{bottom:159.420450px;}
.y1d_c00134{bottom:190.560450px;}
.y1c_c00134{bottom:221.610450px;}
.y1b_c00134{bottom:252.660450px;}
.y1a_c00134{bottom:291.540450px;}
.y19_c00134{bottom:489.810450px;}
.y18_c00134{bottom:528.510450px;}
.y17_c00134{bottom:559.650450px;}
.y16_c00134{bottom:590.700450px;}
.y15_c00134{bottom:621.660450px;}
.y14_c00134{bottom:652.710450px;}
.y13_c00134{bottom:695.730450px;}
.y12_c00134{bottom:726.870450px;}
.y11_c00134{bottom:757.920450px;}
.y10_c00134{bottom:788.970450px;}
.yf_c00134{bottom:820.020450px;}
.ye_c00134{bottom:851.070450px;}
.yd_c00134{bottom:882.120450px;}
.yc_c00134{bottom:913.170450px;}
.yb_c00134{bottom:956.100450px;}
.ya_c00134{bottom:987.240450px;}
.y9_c00134{bottom:1018.290450px;}
.y8_c00134{bottom:1049.340450px;}
.y7_c00134{bottom:1080.390450px;}
.y6_c00134{bottom:1111.440450px;}
.y3_c00134{bottom:1132.140450px;}
.y2_c00134{bottom:1165.441023px;}
.y1_c00134{bottom:1196.040600px;}
.h4_c00134{height:47.513672px;}
.h1_c00134{height:52.898555px;}
.h2_c00134{height:63.175781px;}
.h3_c00134{height:63.351562px;}
.h0_c00134{height:1263.000000px;}
.w1_c00134{width:892.500000px;}
.w0_c00134{width:892.830000px;}
.x0_c00134{left:0.000000px;}
.x1_c00134{left:127.620000px;}
.x2_c00134{left:738.450000px;}
.x3_c00134{left:753.030000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.lse_c00134{letter-spacing:-0.090848pt;}
.ls12_c00134{letter-spacing:-0.044800pt;}
.ls11_c00134{letter-spacing:-0.032000pt;}
.ls13_c00134{letter-spacing:-0.019200pt;}
.ls14_c00134{letter-spacing:-0.012800pt;}
.ls10_c00134{letter-spacing:-0.006400pt;}
.lsf_c00134{letter-spacing:0.000000pt;}
.lsd_c00134{letter-spacing:0.004800pt;}
.ls6_c00134{letter-spacing:0.006400pt;}
.ls1_c00134{letter-spacing:0.012800pt;}
.ls2_c00134{letter-spacing:0.019200pt;}
.ls0_c00134{letter-spacing:0.025600pt;}
.lsb_c00134{letter-spacing:0.032000pt;}
.ls5_c00134{letter-spacing:0.038400pt;}
.ls3_c00134{letter-spacing:0.044800pt;}
.ls8_c00134{letter-spacing:0.051200pt;}
.ls9_c00134{letter-spacing:0.057600pt;}
.ls4_c00134{letter-spacing:0.064000pt;}
.lsc_c00134{letter-spacing:0.076800pt;}
.ls7_c00134{letter-spacing:0.089600pt;}
.lsa_c00134{letter-spacing:0.121600pt;}
.ws2_c00134{word-spacing:-16.051200pt;}
.ws0_c00134{word-spacing:-16.044800pt;}
.ws1_c00134{word-spacing:-16.032000pt;}
.ws4_c00134{word-spacing:0.000000pt;}
.ws7_c00134{word-spacing:0.139200pt;}
.ws8_c00134{word-spacing:0.153600pt;}
.ws3_c00134{word-spacing:0.171008pt;}
.ws6_c00134{word-spacing:2.380800pt;}
.ws5_c00134{word-spacing:3.564800pt;}
._5_c00134{margin-left:-3.328000pt;}
._3_c00134{margin-left:-2.419200pt;}
._2_c00134{margin-left:-1.305600pt;}
._0_c00134{width:0.919168pt;}
._1_c00134{width:2.344832pt;}
._4_c00134{width:4.121600pt;}
._8_c00134{width:5.779200pt;}
._6_c00134{width:8.614400pt;}
._9_c00134{width:11.225600pt;}
._a_c00134{width:12.166400pt;}
._7_c00134{width:13.446400pt;}
.fs2_c00134{font-size:48.000000pt;}
.fs0_c00134{font-size:53.440000pt;}
.fs1_c00134{font-size:64.000000pt;}
.y0_c00134{bottom:0.000000pt;}
.y5_c00134{bottom:50.987067pt;}
.y4_c00134{bottom:69.387067pt;}
.y1e_c00134{bottom:141.707067pt;}
.y1d_c00134{bottom:169.387067pt;}
.y1c_c00134{bottom:196.987067pt;}
.y1b_c00134{bottom:224.587067pt;}
.y1a_c00134{bottom:259.147067pt;}
.y19_c00134{bottom:435.387067pt;}
.y18_c00134{bottom:469.787067pt;}
.y17_c00134{bottom:497.467067pt;}
.y16_c00134{bottom:525.067067pt;}
.y15_c00134{bottom:552.587067pt;}
.y14_c00134{bottom:580.187067pt;}
.y13_c00134{bottom:618.427067pt;}
.y12_c00134{bottom:646.107067pt;}
.y11_c00134{bottom:673.707067pt;}
.y10_c00134{bottom:701.307067pt;}
.yf_c00134{bottom:728.907067pt;}
.ye_c00134{bottom:756.507067pt;}
.yd_c00134{bottom:784.107067pt;}
.yc_c00134{bottom:811.707067pt;}
.yb_c00134{bottom:849.867067pt;}
.ya_c00134{bottom:877.547067pt;}
.y9_c00134{bottom:905.147067pt;}
.y8_c00134{bottom:932.747067pt;}
.y7_c00134{bottom:960.347067pt;}
.y6_c00134{bottom:987.947067pt;}
.y3_c00134{bottom:1006.347067pt;}
.y2_c00134{bottom:1035.947576pt;}
.y1_c00134{bottom:1063.147200pt;}
.h4_c00134{height:42.234375pt;}
.h1_c00134{height:47.020937pt;}
.h2_c00134{height:56.156250pt;}
.h3_c00134{height:56.312500pt;}
.h0_c00134{height:1122.666667pt;}
.w1_c00134{width:793.333333pt;}
.w0_c00134{width:793.626667pt;}
.x0_c00134{left:0.000000pt;}
.x1_c00134{left:113.440000pt;}
.x2_c00134{left:656.400000pt;}
.x3_c00134{left:669.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_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_5cde4b3810670f524aaf1eb7.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.095703;font-style:normal;font-weight:normal;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_f06aaad1357d24a45e3feea6.woff2')format("woff");}.ff2_c00135{font-family:ff2_c00135;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00135{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls18_c00135{letter-spacing:-0.208800px;}
.ls19_c00135{letter-spacing:-0.064800px;}
.ls15_c00135{letter-spacing:-0.050400px;}
.ls11_c00135{letter-spacing:-0.048096px;}
.ls13_c00135{letter-spacing:-0.043200px;}
.ls17_c00135{letter-spacing:-0.036000px;}
.ls16_c00135{letter-spacing:-0.028800px;}
.ls14_c00135{letter-spacing:-0.014400px;}
.ls12_c00135{letter-spacing:0.000000px;}
.lse_c00135{letter-spacing:0.007200px;}
.lsf_c00135{letter-spacing:0.010800px;}
.ls9_c00135{letter-spacing:0.014400px;}
.ls7_c00135{letter-spacing:0.021600px;}
.ls10_c00135{letter-spacing:0.027000px;}
.ls4_c00135{letter-spacing:0.028800px;}
.ls1_c00135{letter-spacing:0.036000px;}
.lsa_c00135{letter-spacing:0.043200px;}
.ls0_c00135{letter-spacing:0.050400px;}
.ls2_c00135{letter-spacing:0.057600px;}
.lsc_c00135{letter-spacing:0.064800px;}
.lsd_c00135{letter-spacing:0.072000px;}
.ls5_c00135{letter-spacing:0.079200px;}
.lsb_c00135{letter-spacing:0.086400px;}
.ls6_c00135{letter-spacing:0.093600px;}
.ls3_c00135{letter-spacing:0.129600px;}
.ls8_c00135{letter-spacing:0.144000px;}
.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:-18.000000px;}
.ws1_c00135{word-spacing:-13.527000px;}
.ws7_c00135{word-spacing:-1.630800px;}
.ws4_c00135{word-spacing:-0.309600px;}
.ws3_c00135{word-spacing:0.000000px;}
.ws2_c00135{word-spacing:0.138276px;}
.ws5_c00135{word-spacing:3.204000px;}
.ws6_c00135{word-spacing:3.715200px;}
.ws8_c00135{word-spacing:21.767400px;}
._9_c00135{margin-left:-4.348800px;}
._1_c00135{margin-left:-1.519200px;}
._2_c00135{width:1.512000px;}
._3_c00135{width:2.952000px;}
._5_c00135{width:3.974400px;}
._0_c00135{width:6.429600px;}
._6_c00135{width:8.100000px;}
._7_c00135{width:9.115200px;}
._b_c00135{width:14.738400px;}
._4_c00135{width:18.986400px;}
._a_c00135{width:22.644000px;}
._8_c00135{width:24.033600px;}
.fc1_c00135{color:rgb(68,84,106);}
.fc0_c00135{color:rgb(0,0,0);}
.fs2_c00135{font-size:54.000000px;}
.fs0_c00135{font-size:60.120000px;}
.fs1_c00135{font-size:72.000000px;}
.y0_c00135{bottom:0.000000px;}
.y22_c00135{bottom:3.240450px;}
.y6_c00135{bottom:57.360450px;}
.y5_c00135{bottom:78.060450px;}
.y20_c00135{bottom:312.150450px;}
.y1f_c00135{bottom:343.200450px;}
.y1e_c00135{bottom:386.130450px;}
.y1d_c00135{bottom:417.270450px;}
.y1c_c00135{bottom:460.290450px;}
.y1b_c00135{bottom:491.430450px;}
.y1a_c00135{bottom:522.480450px;}
.y19_c00135{bottom:553.530450px;}
.y18_c00135{bottom:584.580450px;}
.y17_c00135{bottom:615.630450px;}
.y16_c00135{bottom:646.680450px;}
.y15_c00135{bottom:677.640450px;}
.y14_c00135{bottom:708.690450px;}
.y13_c00135{bottom:739.740450px;}
.y12_c00135{bottom:770.790450px;}
.y26_c00135{bottom:793.650450px;}
.y11_c00135{bottom:801.840450px;}
.y25_c00135{bottom:805.890000px;}
.y24_c00135{bottom:809.130900px;}
.y21_c00135{bottom:821.460000px;}
.y23_c00135{bottom:824.700450px;}
.y10_c00135{bottom:832.890450px;}
.yf_c00135{bottom:863.940450px;}
.ye_c00135{bottom:894.990450px;}
.yd_c00135{bottom:926.040450px;}
.yc_c00135{bottom:957.090450px;}
.yb_c00135{bottom:1000.110450px;}
.ya_c00135{bottom:1031.160450px;}
.y9_c00135{bottom:1062.210450px;}
.y8_c00135{bottom:1093.260450px;}
.y7_c00135{bottom:1124.310450px;}
.y4_c00135{bottom:1144.380657px;}
.y3_c00135{bottom:1161.660648px;}
.y2_c00135{bottom:1178.850459px;}
.y1_c00135{bottom:1196.130450px;}
.h4_c00135{height:15.300000px;}
.h5_c00135{height:47.513672px;}
.h1_c00135{height:52.898555px;}
.h2_c00135{height:63.175781px;}
.h3_c00135{height:63.351562px;}
.h0_c00135{height:1263.000000px;}
.w2_c00135{width:151.200000px;}
.w3_c00135{width:235.170000px;}
.w1_c00135{width:892.500000px;}
.w0_c00135{width:892.830000px;}
.x0_c00135{left:0.000000px;}
.x6_c00135{left:126.450000px;}
.x4_c00135{left:127.620000px;}
.x7_c00135{left:130.950000px;}
.x8_c00135{left:229.950000px;}
.x5_c00135{left:376.200000px;}
.x1_c00135{left:649.620000px;}
.x3_c00135{left:738.450000px;}
.x2_c00135{left:765.450198px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls18_c00135{letter-spacing:-0.185600pt;}
.ls19_c00135{letter-spacing:-0.057600pt;}
.ls15_c00135{letter-spacing:-0.044800pt;}
.ls11_c00135{letter-spacing:-0.042752pt;}
.ls13_c00135{letter-spacing:-0.038400pt;}
.ls17_c00135{letter-spacing:-0.032000pt;}
.ls16_c00135{letter-spacing:-0.025600pt;}
.ls14_c00135{letter-spacing:-0.012800pt;}
.ls12_c00135{letter-spacing:0.000000pt;}
.lse_c00135{letter-spacing:0.006400pt;}
.lsf_c00135{letter-spacing:0.009600pt;}
.ls9_c00135{letter-spacing:0.012800pt;}
.ls7_c00135{letter-spacing:0.019200pt;}
.ls10_c00135{letter-spacing:0.024000pt;}
.ls4_c00135{letter-spacing:0.025600pt;}
.ls1_c00135{letter-spacing:0.032000pt;}
.lsa_c00135{letter-spacing:0.038400pt;}
.ls0_c00135{letter-spacing:0.044800pt;}
.ls2_c00135{letter-spacing:0.051200pt;}
.lsc_c00135{letter-spacing:0.057600pt;}
.lsd_c00135{letter-spacing:0.064000pt;}
.ls5_c00135{letter-spacing:0.070400pt;}
.lsb_c00135{letter-spacing:0.076800pt;}
.ls6_c00135{letter-spacing:0.083200pt;}
.ls3_c00135{letter-spacing:0.115200pt;}
.ls8_c00135{letter-spacing:0.128000pt;}
.ws0_c00135{word-spacing:-16.000000pt;}
.ws1_c00135{word-spacing:-12.024000pt;}
.ws7_c00135{word-spacing:-1.449600pt;}
.ws4_c00135{word-spacing:-0.275200pt;}
.ws3_c00135{word-spacing:0.000000pt;}
.ws2_c00135{word-spacing:0.122912pt;}
.ws5_c00135{word-spacing:2.848000pt;}
.ws6_c00135{word-spacing:3.302400pt;}
.ws8_c00135{word-spacing:19.348800pt;}
._9_c00135{margin-left:-3.865600pt;}
._1_c00135{margin-left:-1.350400pt;}
._2_c00135{width:1.344000pt;}
._3_c00135{width:2.624000pt;}
._5_c00135{width:3.532800pt;}
._0_c00135{width:5.715200pt;}
._6_c00135{width:7.200000pt;}
._7_c00135{width:8.102400pt;}
._b_c00135{width:13.100800pt;}
._4_c00135{width:16.876800pt;}
._a_c00135{width:20.128000pt;}
._8_c00135{width:21.363200pt;}
.fs2_c00135{font-size:48.000000pt;}
.fs0_c00135{font-size:53.440000pt;}
.fs1_c00135{font-size:64.000000pt;}
.y0_c00135{bottom:0.000000pt;}
.y22_c00135{bottom:2.880400pt;}
.y6_c00135{bottom:50.987067pt;}
.y5_c00135{bottom:69.387067pt;}
.y20_c00135{bottom:277.467067pt;}
.y1f_c00135{bottom:305.067067pt;}
.y1e_c00135{bottom:343.227067pt;}
.y1d_c00135{bottom:370.907067pt;}
.y1c_c00135{bottom:409.147067pt;}
.y1b_c00135{bottom:436.827067pt;}
.y1a_c00135{bottom:464.427067pt;}
.y19_c00135{bottom:492.027067pt;}
.y18_c00135{bottom:519.627067pt;}
.y17_c00135{bottom:547.227067pt;}
.y16_c00135{bottom:574.827067pt;}
.y15_c00135{bottom:602.347067pt;}
.y14_c00135{bottom:629.947067pt;}
.y13_c00135{bottom:657.547067pt;}
.y12_c00135{bottom:685.147067pt;}
.y26_c00135{bottom:705.467067pt;}
.y11_c00135{bottom:712.747067pt;}
.y25_c00135{bottom:716.346667pt;}
.y24_c00135{bottom:719.227467pt;}
.y21_c00135{bottom:730.186667pt;}
.y23_c00135{bottom:733.067067pt;}
.y10_c00135{bottom:740.347067pt;}
.yf_c00135{bottom:767.947067pt;}
.ye_c00135{bottom:795.547067pt;}
.yd_c00135{bottom:823.147067pt;}
.yc_c00135{bottom:850.747067pt;}
.yb_c00135{bottom:888.987067pt;}
.ya_c00135{bottom:916.587067pt;}
.y9_c00135{bottom:944.187067pt;}
.y8_c00135{bottom:971.787067pt;}
.y7_c00135{bottom:999.387067pt;}
.y4_c00135{bottom:1017.227251pt;}
.y3_c00135{bottom:1032.587243pt;}
.y2_c00135{bottom:1047.867075pt;}
.y1_c00135{bottom:1063.227067pt;}
.h4_c00135{height:13.600000pt;}
.h5_c00135{height:42.234375pt;}
.h1_c00135{height:47.020937pt;}
.h2_c00135{height:56.156250pt;}
.h3_c00135{height:56.312500pt;}
.h0_c00135{height:1122.666667pt;}
.w2_c00135{width:134.400000pt;}
.w3_c00135{width:209.040000pt;}
.w1_c00135{width:793.333333pt;}
.w0_c00135{width:793.626667pt;}
.x0_c00135{left:0.000000pt;}
.x6_c00135{left:112.400000pt;}
.x4_c00135{left:113.440000pt;}
.x7_c00135{left:116.400000pt;}
.x8_c00135{left:204.400000pt;}
.x5_c00135{left:334.400000pt;}
.x1_c00135{left:577.440000pt;}
.x3_c00135{left:656.400000pt;}
.x2_c00135{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df7d09a9d1ba375dad55fd70.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.095703;font-style:normal;font-weight:normal;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_f0a7d28deff83b51001af612.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00136{font-family:ff3_c00136;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00136{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.lsc_c00136{letter-spacing:-0.102204px;}
.ls10_c00136{letter-spacing:-0.036000px;}
.lsf_c00136{letter-spacing:-0.032400px;}
.ls13_c00136{letter-spacing:-0.028800px;}
.ls12_c00136{letter-spacing:-0.021600px;}
.lse_c00136{letter-spacing:-0.014400px;}
.lsd_c00136{letter-spacing:0.000000px;}
.ls3_c00136{letter-spacing:0.005400px;}
.ls1_c00136{letter-spacing:0.007200px;}
.ls2_c00136{letter-spacing:0.014400px;}
.ls4_c00136{letter-spacing:0.021600px;}
.ls0_c00136{letter-spacing:0.028800px;}
.ls6_c00136{letter-spacing:0.036000px;}
.ls7_c00136{letter-spacing:0.043200px;}
.ls5_c00136{letter-spacing:0.050400px;}
.lsb_c00136{letter-spacing:0.057600px;}
.lsa_c00136{letter-spacing:0.072000px;}
.ls8_c00136{letter-spacing:0.093600px;}
.ls9_c00136{letter-spacing:0.108000px;}
.ls11_c00136{letter-spacing:3.960000px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00136{word-spacing:-0.028800px;}
.ws1_c00136{word-spacing:0.000000px;}
.ws4_c00136{word-spacing:0.151200px;}
.ws2_c00136{word-spacing:0.172800px;}
.ws0_c00136{word-spacing:0.192384px;}
.ws3_c00136{word-spacing:0.210600px;}
._6_c00136{margin-left:-4.536000px;}
._2_c00136{margin-left:-2.894400px;}
._3_c00136{margin-left:-1.411200px;}
._0_c00136{width:1.034064px;}
._a_c00136{width:2.707200px;}
._5_c00136{width:3.960000px;}
._1_c00136{width:5.558400px;}
._4_c00136{width:7.538400px;}
._7_c00136{width:9.676800px;}
._9_c00136{width:11.023200px;}
._b_c00136{width:13.262400px;}
._8_c00136{width:16.984800px;}
.fc3_c00136{color:rgb(17,17,17);}
.fc2_c00136{color:rgb(68,84,106);}
.fc1_c00136{color:rgb(0,0,0);}
.fc0_c00136{color:rgb(32,31,30);}
.fs2_c00136{font-size:54.000000px;}
.fs0_c00136{font-size:60.120000px;}
.fs1_c00136{font-size:72.000000px;}
.y0_c00136{bottom:0.000000px;}
.y5_c00136{bottom:57.360450px;}
.y4_c00136{bottom:78.060450px;}
.y20_c00136{bottom:147.450450px;}
.y1f_c00136{bottom:178.590450px;}
.y1e_c00136{bottom:209.640450px;}
.y1d_c00136{bottom:240.690450px;}
.y1c_c00136{bottom:271.740450px;}
.y1b_c00136{bottom:302.790450px;}
.y1a_c00136{bottom:333.840450px;}
.y19_c00136{bottom:364.890450px;}
.y18_c00136{bottom:395.940450px;}
.y17_c00136{bottom:426.990450px;}
.y16_c00136{bottom:458.040450px;}
.y15_c00136{bottom:500.970450px;}
.y14_c00136{bottom:532.110450px;}
.y13_c00136{bottom:563.160450px;}
.y12_c00136{bottom:594.210450px;}
.y11_c00136{bottom:625.260450px;}
.y10_c00136{bottom:656.310450px;}
.yf_c00136{bottom:687.360450px;}
.ye_c00136{bottom:718.410450px;}
.yd_c00136{bottom:749.460450px;}
.yc_c00136{bottom:783.660450px;}
.yb_c00136{bottom:805.980450px;}
.ya_c00136{bottom:831.180450px;}
.y9_c00136{bottom:870.330450px;}
.y8_c00136{bottom:1041.600450px;}
.y7_c00136{bottom:1080.300450px;}
.y6_c00136{bottom:1111.440450px;}
.y3_c00136{bottom:1132.140450px;}
.y2_c00136{bottom:1165.441023px;}
.y1_c00136{bottom:1196.040600px;}
.h3_c00136{height:47.513672px;}
.h1_c00136{height:52.898555px;}
.h2_c00136{height:63.175781px;}
.h5_c00136{height:63.351562px;}
.h4_c00136{height:63.949219px;}
.h0_c00136{height:1263.000000px;}
.w1_c00136{width:892.500000px;}
.w0_c00136{width:892.830000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:127.620000px;}
.x3_c00136{left:706.410000px;}
.x2_c00136{left:738.450000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.lsc_c00136{letter-spacing:-0.090848pt;}
.ls10_c00136{letter-spacing:-0.032000pt;}
.lsf_c00136{letter-spacing:-0.028800pt;}
.ls13_c00136{letter-spacing:-0.025600pt;}
.ls12_c00136{letter-spacing:-0.019200pt;}
.lse_c00136{letter-spacing:-0.012800pt;}
.lsd_c00136{letter-spacing:0.000000pt;}
.ls3_c00136{letter-spacing:0.004800pt;}
.ls1_c00136{letter-spacing:0.006400pt;}
.ls2_c00136{letter-spacing:0.012800pt;}
.ls4_c00136{letter-spacing:0.019200pt;}
.ls0_c00136{letter-spacing:0.025600pt;}
.ls6_c00136{letter-spacing:0.032000pt;}
.ls7_c00136{letter-spacing:0.038400pt;}
.ls5_c00136{letter-spacing:0.044800pt;}
.lsb_c00136{letter-spacing:0.051200pt;}
.lsa_c00136{letter-spacing:0.064000pt;}
.ls8_c00136{letter-spacing:0.083200pt;}
.ls9_c00136{letter-spacing:0.096000pt;}
.ls11_c00136{letter-spacing:3.520000pt;}
.ws5_c00136{word-spacing:-0.025600pt;}
.ws1_c00136{word-spacing:0.000000pt;}
.ws4_c00136{word-spacing:0.134400pt;}
.ws2_c00136{word-spacing:0.153600pt;}
.ws0_c00136{word-spacing:0.171008pt;}
.ws3_c00136{word-spacing:0.187200pt;}
._6_c00136{margin-left:-4.032000pt;}
._2_c00136{margin-left:-2.572800pt;}
._3_c00136{margin-left:-1.254400pt;}
._0_c00136{width:0.919168pt;}
._a_c00136{width:2.406400pt;}
._5_c00136{width:3.520000pt;}
._1_c00136{width:4.940800pt;}
._4_c00136{width:6.700800pt;}
._7_c00136{width:8.601600pt;}
._9_c00136{width:9.798400pt;}
._b_c00136{width:11.788800pt;}
._8_c00136{width:15.097600pt;}
.fs2_c00136{font-size:48.000000pt;}
.fs0_c00136{font-size:53.440000pt;}
.fs1_c00136{font-size:64.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y5_c00136{bottom:50.987067pt;}
.y4_c00136{bottom:69.387067pt;}
.y20_c00136{bottom:131.067067pt;}
.y1f_c00136{bottom:158.747067pt;}
.y1e_c00136{bottom:186.347067pt;}
.y1d_c00136{bottom:213.947067pt;}
.y1c_c00136{bottom:241.547067pt;}
.y1b_c00136{bottom:269.147067pt;}
.y1a_c00136{bottom:296.747067pt;}
.y19_c00136{bottom:324.347067pt;}
.y18_c00136{bottom:351.947067pt;}
.y17_c00136{bottom:379.547067pt;}
.y16_c00136{bottom:407.147067pt;}
.y15_c00136{bottom:445.307067pt;}
.y14_c00136{bottom:472.987067pt;}
.y13_c00136{bottom:500.587067pt;}
.y12_c00136{bottom:528.187067pt;}
.y11_c00136{bottom:555.787067pt;}
.y10_c00136{bottom:583.387067pt;}
.yf_c00136{bottom:610.987067pt;}
.ye_c00136{bottom:638.587067pt;}
.yd_c00136{bottom:666.187067pt;}
.yc_c00136{bottom:696.587067pt;}
.yb_c00136{bottom:716.427067pt;}
.ya_c00136{bottom:738.827067pt;}
.y9_c00136{bottom:773.627067pt;}
.y8_c00136{bottom:925.867067pt;}
.y7_c00136{bottom:960.267067pt;}
.y6_c00136{bottom:987.947067pt;}
.y3_c00136{bottom:1006.347067pt;}
.y2_c00136{bottom:1035.947576pt;}
.y1_c00136{bottom:1063.147200pt;}
.h3_c00136{height:42.234375pt;}
.h1_c00136{height:47.020937pt;}
.h2_c00136{height:56.156250pt;}
.h5_c00136{height:56.312500pt;}
.h4_c00136{height:56.843750pt;}
.h0_c00136{height:1122.666667pt;}
.w1_c00136{width:793.333333pt;}
.w0_c00136{width:793.626667pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:113.440000pt;}
.x3_c00136{left:627.920000pt;}
.x2_c00136{left:656.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_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_a686a5752fd36e5e03b89621.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.095703;font-style:normal;font-weight:normal;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_17edf17796495d5534c78278.woff2')format("woff");}.ff2_c00137{font-family:ff2_c00137;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00137{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls11_c00137{letter-spacing:-0.072000px;}
.ls15_c00137{letter-spacing:-0.050400px;}
.lsf_c00137{letter-spacing:-0.048096px;}
.ls12_c00137{letter-spacing:-0.036000px;}
.ls13_c00137{letter-spacing:-0.021600px;}
.ls14_c00137{letter-spacing:-0.007200px;}
.ls10_c00137{letter-spacing:0.000000px;}
.ls9_c00137{letter-spacing:0.005400px;}
.ls8_c00137{letter-spacing:0.007200px;}
.ls5_c00137{letter-spacing:0.014400px;}
.ls1_c00137{letter-spacing:0.021600px;}
.lsd_c00137{letter-spacing:0.028800px;}
.ls7_c00137{letter-spacing:0.036000px;}
.ls0_c00137{letter-spacing:0.043200px;}
.ls3_c00137{letter-spacing:0.050400px;}
.ls6_c00137{letter-spacing:0.057600px;}
.lsc_c00137{letter-spacing:0.064800px;}
.lse_c00137{letter-spacing:0.079200px;}
.ls2_c00137{letter-spacing:0.086400px;}
.lsb_c00137{letter-spacing:0.100800px;}
.lsa_c00137{letter-spacing:0.108000px;}
.ls4_c00137{letter-spacing:0.115200px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00137{word-spacing:-3.204000px;}
.ws5_c00137{word-spacing:-0.178200px;}
.ws1_c00137{word-spacing:0.000000px;}
.ws0_c00137{word-spacing:0.138276px;}
.ws3_c00137{word-spacing:1.960200px;}
.ws4_c00137{word-spacing:1.976400px;}
._0_c00137{margin-left:-3.340800px;}
._3_c00137{margin-left:-2.304000px;}
._1_c00137{margin-left:-1.245600px;}
._4_c00137{width:1.252800px;}
._8_c00137{width:2.376000px;}
._6_c00137{width:6.278400px;}
._5_c00137{width:8.229600px;}
._2_c00137{width:9.309600px;}
._7_c00137{width:13.370400px;}
.fc2_c00137{color:rgb(68,84,106);}
.fc1_c00137{color:rgb(17,17,17);}
.fc0_c00137{color:rgb(0,0,0);}
.fs2_c00137{font-size:54.000000px;}
.fs0_c00137{font-size:60.120000px;}
.fs1_c00137{font-size:72.000000px;}
.y0_c00137{bottom:0.000000px;}
.y6_c00137{bottom:57.360450px;}
.y5_c00137{bottom:78.060450px;}
.y1f_c00137{bottom:154.830600px;}
.y1e_c00137{bottom:185.970600px;}
.y1d_c00137{bottom:217.020600px;}
.y1c_c00137{bottom:248.070600px;}
.y1b_c00137{bottom:279.120600px;}
.y1a_c00137{bottom:310.170600px;}
.y19_c00137{bottom:341.220600px;}
.y18_c00137{bottom:372.270600px;}
.y17_c00137{bottom:415.200600px;}
.y16_c00137{bottom:446.340600px;}
.y15_c00137{bottom:477.390450px;}
.y14_c00137{bottom:508.440600px;}
.y13_c00137{bottom:539.490450px;}
.y12_c00137{bottom:570.540450px;}
.y11_c00137{bottom:601.590450px;}
.y10_c00137{bottom:640.560450px;}
.yf_c00137{bottom:883.830000px;}
.ye_c00137{bottom:899.310450px;}
.yd_c00137{bottom:938.010450px;}
.yc_c00137{bottom:969.150450px;}
.yb_c00137{bottom:1000.200450px;}
.ya_c00137{bottom:1031.160450px;}
.y9_c00137{bottom:1062.210450px;}
.y8_c00137{bottom:1093.260450px;}
.y7_c00137{bottom:1124.310450px;}
.y4_c00137{bottom:1144.380657px;}
.y3_c00137{bottom:1161.660648px;}
.y2_c00137{bottom:1178.850459px;}
.y1_c00137{bottom:1196.130450px;}
.h4_c00137{height:47.513672px;}
.h1_c00137{height:52.898555px;}
.h2_c00137{height:63.175781px;}
.h3_c00137{height:63.351562px;}
.h0_c00137{height:1263.000000px;}
.w1_c00137{width:892.500000px;}
.w0_c00137{width:892.830000px;}
.x0_c00137{left:0.000000px;}
.x4_c00137{left:127.620000px;}
.x5_c00137{left:641.610000px;}
.x1_c00137{left:649.620000px;}
.x3_c00137{left:738.450000px;}
.x2_c00137{left:765.450198px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls11_c00137{letter-spacing:-0.064000pt;}
.ls15_c00137{letter-spacing:-0.044800pt;}
.lsf_c00137{letter-spacing:-0.042752pt;}
.ls12_c00137{letter-spacing:-0.032000pt;}
.ls13_c00137{letter-spacing:-0.019200pt;}
.ls14_c00137{letter-spacing:-0.006400pt;}
.ls10_c00137{letter-spacing:0.000000pt;}
.ls9_c00137{letter-spacing:0.004800pt;}
.ls8_c00137{letter-spacing:0.006400pt;}
.ls5_c00137{letter-spacing:0.012800pt;}
.ls1_c00137{letter-spacing:0.019200pt;}
.lsd_c00137{letter-spacing:0.025600pt;}
.ls7_c00137{letter-spacing:0.032000pt;}
.ls0_c00137{letter-spacing:0.038400pt;}
.ls3_c00137{letter-spacing:0.044800pt;}
.ls6_c00137{letter-spacing:0.051200pt;}
.lsc_c00137{letter-spacing:0.057600pt;}
.lse_c00137{letter-spacing:0.070400pt;}
.ls2_c00137{letter-spacing:0.076800pt;}
.lsb_c00137{letter-spacing:0.089600pt;}
.lsa_c00137{letter-spacing:0.096000pt;}
.ls4_c00137{letter-spacing:0.102400pt;}
.ws2_c00137{word-spacing:-2.848000pt;}
.ws5_c00137{word-spacing:-0.158400pt;}
.ws1_c00137{word-spacing:0.000000pt;}
.ws0_c00137{word-spacing:0.122912pt;}
.ws3_c00137{word-spacing:1.742400pt;}
.ws4_c00137{word-spacing:1.756800pt;}
._0_c00137{margin-left:-2.969600pt;}
._3_c00137{margin-left:-2.048000pt;}
._1_c00137{margin-left:-1.107200pt;}
._4_c00137{width:1.113600pt;}
._8_c00137{width:2.112000pt;}
._6_c00137{width:5.580800pt;}
._5_c00137{width:7.315200pt;}
._2_c00137{width:8.275200pt;}
._7_c00137{width:11.884800pt;}
.fs2_c00137{font-size:48.000000pt;}
.fs0_c00137{font-size:53.440000pt;}
.fs1_c00137{font-size:64.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y6_c00137{bottom:50.987067pt;}
.y5_c00137{bottom:69.387067pt;}
.y1f_c00137{bottom:137.627200pt;}
.y1e_c00137{bottom:165.307200pt;}
.y1d_c00137{bottom:192.907200pt;}
.y1c_c00137{bottom:220.507200pt;}
.y1b_c00137{bottom:248.107200pt;}
.y1a_c00137{bottom:275.707200pt;}
.y19_c00137{bottom:303.307200pt;}
.y18_c00137{bottom:330.907200pt;}
.y17_c00137{bottom:369.067200pt;}
.y16_c00137{bottom:396.747200pt;}
.y15_c00137{bottom:424.347067pt;}
.y14_c00137{bottom:451.947200pt;}
.y13_c00137{bottom:479.547067pt;}
.y12_c00137{bottom:507.147067pt;}
.y11_c00137{bottom:534.747067pt;}
.y10_c00137{bottom:569.387067pt;}
.yf_c00137{bottom:785.626667pt;}
.ye_c00137{bottom:799.387067pt;}
.yd_c00137{bottom:833.787067pt;}
.yc_c00137{bottom:861.467067pt;}
.yb_c00137{bottom:889.067067pt;}
.ya_c00137{bottom:916.587067pt;}
.y9_c00137{bottom:944.187067pt;}
.y8_c00137{bottom:971.787067pt;}
.y7_c00137{bottom:999.387067pt;}
.y4_c00137{bottom:1017.227251pt;}
.y3_c00137{bottom:1032.587243pt;}
.y2_c00137{bottom:1047.867075pt;}
.y1_c00137{bottom:1063.227067pt;}
.h4_c00137{height:42.234375pt;}
.h1_c00137{height:47.020937pt;}
.h2_c00137{height:56.156250pt;}
.h3_c00137{height:56.312500pt;}
.h0_c00137{height:1122.666667pt;}
.w1_c00137{width:793.333333pt;}
.w0_c00137{width:793.626667pt;}
.x0_c00137{left:0.000000pt;}
.x4_c00137{left:113.440000pt;}
.x5_c00137{left:570.320000pt;}
.x1_c00137{left:577.440000pt;}
.x3_c00137{left:656.400000pt;}
.x2_c00137{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.095703;font-style:normal;font-weight:normal;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_4d3658fbd5e74834b052fac6.woff2')format("woff");}.ff2_c00138{font-family:ff2_c00138;line-height:1.093262;font-style: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:-27.000000px;}
.v3_c00138{vertical-align:-20.880000px;}
.v0_c00138{vertical-align:0.000000px;}
.v1_c00138{vertical-align:27.000000px;}
.ls15_c00138{letter-spacing:-3.600000px;}
.ls12_c00138{letter-spacing:-2.570400px;}
.lse_c00138{letter-spacing:-0.102204px;}
.ls17_c00138{letter-spacing:-0.057600px;}
.ls16_c00138{letter-spacing:-0.043200px;}
.ls10_c00138{letter-spacing:-0.036000px;}
.ls13_c00138{letter-spacing:-0.028800px;}
.ls11_c00138{letter-spacing:-0.021600px;}
.ls18_c00138{letter-spacing:-0.014400px;}
.ls19_c00138{letter-spacing:-0.007200px;}
.lsf_c00138{letter-spacing:0.000000px;}
.ls2_c00138{letter-spacing:0.007200px;}
.ls6_c00138{letter-spacing:0.014400px;}
.ls1_c00138{letter-spacing:0.021600px;}
.ls0_c00138{letter-spacing:0.028800px;}
.ls8_c00138{letter-spacing:0.036000px;}
.ls3_c00138{letter-spacing:0.043200px;}
.ls5_c00138{letter-spacing:0.050400px;}
.ls4_c00138{letter-spacing:0.057600px;}
.ls7_c00138{letter-spacing:0.064800px;}
.lsc_c00138{letter-spacing:0.072000px;}
.lsd_c00138{letter-spacing:0.072144px;}
.lsb_c00138{letter-spacing:0.079200px;}
.ls9_c00138{letter-spacing:0.086400px;}
.lsa_c00138{letter-spacing:0.093600px;}
.ls1a_c00138{letter-spacing:0.096192px;}
.ls14_c00138{letter-spacing:0.181944px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:-12.151944px;}
.ws1_c00138{word-spacing:-9.720000px;}
.ws3_c00138{word-spacing:0.000000px;}
.ws2_c00138{word-spacing:0.192384px;}
._4_c00138{margin-left:-3.736800px;}
._2_c00138{margin-left:-2.124000px;}
._1_c00138{margin-left:-1.108800px;}
._0_c00138{width:1.034064px;}
._5_c00138{width:2.412000px;}
._6_c00138{width:3.636000px;}
._3_c00138{width:4.701600px;}
._a_c00138{width:5.990400px;}
._7_c00138{width:7.891200px;}
._8_c00138{width:12.938400px;}
._9_c00138{width:14.155200px;}
.fc1_c00138{color:rgb(0,0,0);}
.fc0_c00138{color:rgb(32,31,30);}
.fs3_c00138{font-size:38.880000px;}
.fs2_c00138{font-size:47.880000px;}
.fs0_c00138{font-size:60.120000px;}
.fs1_c00138{font-size:72.000000px;}
.y0_c00138{bottom:0.000000px;}
.y5_c00138{bottom:57.360450px;}
.y4_c00138{bottom:78.060450px;}
.y24_c00138{bottom:109.920639px;}
.y23_c00138{bottom:132.330450px;}
.y22_c00138{bottom:145.020450px;}
.y21_c00138{bottom:225.030450px;}
.y20_c00138{bottom:256.170450px;}
.y1f_c00138{bottom:287.220450px;}
.y1e_c00138{bottom:330.150450px;}
.y1d_c00138{bottom:361.290450px;}
.y1c_c00138{bottom:392.340450px;}
.y1b_c00138{bottom:423.390450px;}
.y1a_c00138{bottom:454.440450px;}
.y19_c00138{bottom:497.460450px;}
.y18_c00138{bottom:528.600450px;}
.y17_c00138{bottom:559.650450px;}
.y16_c00138{bottom:590.700450px;}
.y15_c00138{bottom:621.660450px;}
.y14_c00138{bottom:664.680450px;}
.y13_c00138{bottom:695.820450px;}
.y12_c00138{bottom:726.870450px;}
.y11_c00138{bottom:757.920450px;}
.y10_c00138{bottom:788.970450px;}
.yf_c00138{bottom:831.900450px;}
.ye_c00138{bottom:863.040450px;}
.yd_c00138{bottom:894.090450px;}
.yc_c00138{bottom:925.140450px;}
.yb_c00138{bottom:956.190450px;}
.ya_c00138{bottom:987.240450px;}
.y9_c00138{bottom:1018.290450px;}
.y8_c00138{bottom:1049.340450px;}
.y7_c00138{bottom:1080.390450px;}
.y6_c00138{bottom:1111.440450px;}
.y3_c00138{bottom:1132.140450px;}
.y2_c00138{bottom:1165.441023px;}
.y1_c00138{bottom:1196.040600px;}
.h4_c00138{height:34.114922px;}
.h5_c00138{height:52.751777px;}
.h1_c00138{height:52.898555px;}
.h2_c00138{height:63.175781px;}
.h3_c00138{height:69.011895px;}
.h0_c00138{height:1263.000000px;}
.w1_c00138{width:892.500000px;}
.w0_c00138{width:892.830000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:127.620000px;}
.x2_c00138{left:738.450000px;}
@media print{
.v2_c00138{vertical-align:-24.000000pt;}
.v3_c00138{vertical-align:-18.560000pt;}
.v0_c00138{vertical-align:0.000000pt;}
.v1_c00138{vertical-align:24.000000pt;}
.ls15_c00138{letter-spacing:-3.200000pt;}
.ls12_c00138{letter-spacing:-2.284800pt;}
.lse_c00138{letter-spacing:-0.090848pt;}
.ls17_c00138{letter-spacing:-0.051200pt;}
.ls16_c00138{letter-spacing:-0.038400pt;}
.ls10_c00138{letter-spacing:-0.032000pt;}
.ls13_c00138{letter-spacing:-0.025600pt;}
.ls11_c00138{letter-spacing:-0.019200pt;}
.ls18_c00138{letter-spacing:-0.012800pt;}
.ls19_c00138{letter-spacing:-0.006400pt;}
.lsf_c00138{letter-spacing:0.000000pt;}
.ls2_c00138{letter-spacing:0.006400pt;}
.ls6_c00138{letter-spacing:0.012800pt;}
.ls1_c00138{letter-spacing:0.019200pt;}
.ls0_c00138{letter-spacing:0.025600pt;}
.ls8_c00138{letter-spacing:0.032000pt;}
.ls3_c00138{letter-spacing:0.038400pt;}
.ls5_c00138{letter-spacing:0.044800pt;}
.ls4_c00138{letter-spacing:0.051200pt;}
.ls7_c00138{letter-spacing:0.057600pt;}
.lsc_c00138{letter-spacing:0.064000pt;}
.lsd_c00138{letter-spacing:0.064128pt;}
.lsb_c00138{letter-spacing:0.070400pt;}
.ls9_c00138{letter-spacing:0.076800pt;}
.lsa_c00138{letter-spacing:0.083200pt;}
.ls1a_c00138{letter-spacing:0.085504pt;}
.ls14_c00138{letter-spacing:0.161728pt;}
.ws0_c00138{word-spacing:-10.801728pt;}
.ws1_c00138{word-spacing:-8.640000pt;}
.ws3_c00138{word-spacing:0.000000pt;}
.ws2_c00138{word-spacing:0.171008pt;}
._4_c00138{margin-left:-3.321600pt;}
._2_c00138{margin-left:-1.888000pt;}
._1_c00138{margin-left:-0.985600pt;}
._0_c00138{width:0.919168pt;}
._5_c00138{width:2.144000pt;}
._6_c00138{width:3.232000pt;}
._3_c00138{width:4.179200pt;}
._a_c00138{width:5.324800pt;}
._7_c00138{width:7.014400pt;}
._8_c00138{width:11.500800pt;}
._9_c00138{width:12.582400pt;}
.fs3_c00138{font-size:34.560000pt;}
.fs2_c00138{font-size:42.560000pt;}
.fs0_c00138{font-size:53.440000pt;}
.fs1_c00138{font-size:64.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y5_c00138{bottom:50.987067pt;}
.y4_c00138{bottom:69.387067pt;}
.y24_c00138{bottom:97.707235pt;}
.y23_c00138{bottom:117.627067pt;}
.y22_c00138{bottom:128.907067pt;}
.y21_c00138{bottom:200.027067pt;}
.y20_c00138{bottom:227.707067pt;}
.y1f_c00138{bottom:255.307067pt;}
.y1e_c00138{bottom:293.467067pt;}
.y1d_c00138{bottom:321.147067pt;}
.y1c_c00138{bottom:348.747067pt;}
.y1b_c00138{bottom:376.347067pt;}
.y1a_c00138{bottom:403.947067pt;}
.y19_c00138{bottom:442.187067pt;}
.y18_c00138{bottom:469.867067pt;}
.y17_c00138{bottom:497.467067pt;}
.y16_c00138{bottom:525.067067pt;}
.y15_c00138{bottom:552.587067pt;}
.y14_c00138{bottom:590.827067pt;}
.y13_c00138{bottom:618.507067pt;}
.y12_c00138{bottom:646.107067pt;}
.y11_c00138{bottom:673.707067pt;}
.y10_c00138{bottom:701.307067pt;}
.yf_c00138{bottom:739.467067pt;}
.ye_c00138{bottom:767.147067pt;}
.yd_c00138{bottom:794.747067pt;}
.yc_c00138{bottom:822.347067pt;}
.yb_c00138{bottom:849.947067pt;}
.ya_c00138{bottom:877.547067pt;}
.y9_c00138{bottom:905.147067pt;}
.y8_c00138{bottom:932.747067pt;}
.y7_c00138{bottom:960.347067pt;}
.y6_c00138{bottom:987.947067pt;}
.y3_c00138{bottom:1006.347067pt;}
.y2_c00138{bottom:1035.947576pt;}
.y1_c00138{bottom:1063.147200pt;}
.h4_c00138{height:30.324375pt;}
.h5_c00138{height:46.890469pt;}
.h1_c00138{height:47.020937pt;}
.h2_c00138{height:56.156250pt;}
.h3_c00138{height:61.343906pt;}
.h0_c00138{height:1122.666667pt;}
.w1_c00138{width:793.333333pt;}
.w0_c00138{width:793.626667pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:113.440000pt;}
.x2_c00138{left:656.400000pt;}
}





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

.ir_c00139:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00139;src:url('chunks/assets/font_073de03d7bf7f2a7e21e4d7a.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.095703;font-style:normal;font-weight:normal;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_34a43a73082f565e4b2defce.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls16_c00139{letter-spacing:-1.440000px;}
.lsd_c00139{letter-spacing:-0.048096px;}
.lsf_c00139{letter-spacing:-0.043200px;}
.ls11_c00139{letter-spacing:-0.028800px;}
.ls12_c00139{letter-spacing:-0.021600px;}
.ls13_c00139{letter-spacing:-0.014400px;}
.ls10_c00139{letter-spacing:-0.007200px;}
.lse_c00139{letter-spacing:0.000000px;}
.ls7_c00139{letter-spacing:0.007200px;}
.ls2_c00139{letter-spacing:0.014400px;}
.ls0_c00139{letter-spacing:0.021600px;}
.ls5_c00139{letter-spacing:0.028800px;}
.ls3_c00139{letter-spacing:0.036000px;}
.ls1_c00139{letter-spacing:0.043200px;}
.ls6_c00139{letter-spacing:0.050400px;}
.lsc_c00139{letter-spacing:0.057600px;}
.ls9_c00139{letter-spacing:0.064800px;}
.lsb_c00139{letter-spacing:0.072000px;}
.ls4_c00139{letter-spacing:0.079200px;}
.lsa_c00139{letter-spacing:0.093600px;}
.ls8_c00139{letter-spacing:0.100800px;}
.ls15_c00139{letter-spacing:2.880000px;}
.ls14_c00139{letter-spacing:3.873600px;}
.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;}
}
.ws1_c00139{word-spacing:0.000000px;}
.ws3_c00139{word-spacing:0.014400px;}
.ws0_c00139{word-spacing:0.138276px;}
.ws2_c00139{word-spacing:0.158400px;}
._7_c00139{margin-left:-4.305600px;}
._3_c00139{margin-left:-3.254400px;}
._2_c00139{margin-left:-1.353600px;}
._0_c00139{width:1.094400px;}
._4_c00139{width:2.167200px;}
._6_c00139{width:3.621600px;}
._8_c00139{width:4.867200px;}
._a_c00139{width:6.062400px;}
._b_c00139{width:7.070400px;}
._5_c00139{width:8.251200px;}
._9_c00139{width:11.448000px;}
._c_c00139{width:20.836800px;}
._1_c00139{width:28.778400px;}
.fc0_c00139{color:rgb(0,0,0);}
.fs0_c00139{font-size:60.120000px;}
.fs1_c00139{font-size:72.000000px;}
.y0_c00139{bottom:0.000000px;}
.y6_c00139{bottom:57.360450px;}
.y5_c00139{bottom:78.060450px;}
.y26_c00139{bottom:118.470450px;}
.y25_c00139{bottom:149.520450px;}
.y24_c00139{bottom:192.450450px;}
.y23_c00139{bottom:223.590450px;}
.y22_c00139{bottom:254.640450px;}
.y21_c00139{bottom:285.690450px;}
.y20_c00139{bottom:316.740450px;}
.y1f_c00139{bottom:359.670450px;}
.y1e_c00139{bottom:390.810450px;}
.y1d_c00139{bottom:421.860450px;}
.y1c_c00139{bottom:452.910450px;}
.y1b_c00139{bottom:483.960450px;}
.y1a_c00139{bottom:515.010450px;}
.y19_c00139{bottom:546.060450px;}
.y18_c00139{bottom:580.260450px;}
.y17_c00139{bottom:602.580450px;}
.y16_c00139{bottom:627.960450px;}
.y15_c00139{bottom:670.980450px;}
.y14_c00139{bottom:702.120450px;}
.y13_c00139{bottom:733.170450px;}
.y12_c00139{bottom:764.220450px;}
.y11_c00139{bottom:807.240450px;}
.y10_c00139{bottom:838.380450px;}
.yf_c00139{bottom:869.430450px;}
.ye_c00139{bottom:900.480450px;}
.yd_c00139{bottom:943.410450px;}
.yc_c00139{bottom:974.550450px;}
.yb_c00139{bottom:1005.600450px;}
.ya_c00139{bottom:1036.650450px;}
.y9_c00139{bottom:1067.700450px;}
.y8_c00139{bottom:1101.900450px;}
.y7_c00139{bottom:1124.130450px;}
.y4_c00139{bottom:1144.380657px;}
.y3_c00139{bottom:1161.660648px;}
.y2_c00139{bottom:1178.850459px;}
.y1_c00139{bottom:1196.130450px;}
.h1_c00139{height:52.898555px;}
.h2_c00139{height:63.175781px;}
.h3_c00139{height:63.351562px;}
.h0_c00139{height:1263.000000px;}
.w1_c00139{width:892.500000px;}
.w0_c00139{width:892.830000px;}
.x0_c00139{left:0.000000px;}
.x4_c00139{left:127.620000px;}
.x1_c00139{left:649.620000px;}
.x3_c00139{left:738.450000px;}
.x2_c00139{left:765.450198px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls16_c00139{letter-spacing:-1.280000pt;}
.lsd_c00139{letter-spacing:-0.042752pt;}
.lsf_c00139{letter-spacing:-0.038400pt;}
.ls11_c00139{letter-spacing:-0.025600pt;}
.ls12_c00139{letter-spacing:-0.019200pt;}
.ls13_c00139{letter-spacing:-0.012800pt;}
.ls10_c00139{letter-spacing:-0.006400pt;}
.lse_c00139{letter-spacing:0.000000pt;}
.ls7_c00139{letter-spacing:0.006400pt;}
.ls2_c00139{letter-spacing:0.012800pt;}
.ls0_c00139{letter-spacing:0.019200pt;}
.ls5_c00139{letter-spacing:0.025600pt;}
.ls3_c00139{letter-spacing:0.032000pt;}
.ls1_c00139{letter-spacing:0.038400pt;}
.ls6_c00139{letter-spacing:0.044800pt;}
.lsc_c00139{letter-spacing:0.051200pt;}
.ls9_c00139{letter-spacing:0.057600pt;}
.lsb_c00139{letter-spacing:0.064000pt;}
.ls4_c00139{letter-spacing:0.070400pt;}
.lsa_c00139{letter-spacing:0.083200pt;}
.ls8_c00139{letter-spacing:0.089600pt;}
.ls15_c00139{letter-spacing:2.560000pt;}
.ls14_c00139{letter-spacing:3.443200pt;}
.ws1_c00139{word-spacing:0.000000pt;}
.ws3_c00139{word-spacing:0.012800pt;}
.ws0_c00139{word-spacing:0.122912pt;}
.ws2_c00139{word-spacing:0.140800pt;}
._7_c00139{margin-left:-3.827200pt;}
._3_c00139{margin-left:-2.892800pt;}
._2_c00139{margin-left:-1.203200pt;}
._0_c00139{width:0.972800pt;}
._4_c00139{width:1.926400pt;}
._6_c00139{width:3.219200pt;}
._8_c00139{width:4.326400pt;}
._a_c00139{width:5.388800pt;}
._b_c00139{width:6.284800pt;}
._5_c00139{width:7.334400pt;}
._9_c00139{width:10.176000pt;}
._c_c00139{width:18.521600pt;}
._1_c00139{width:25.580800pt;}
.fs0_c00139{font-size:53.440000pt;}
.fs1_c00139{font-size:64.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y6_c00139{bottom:50.987067pt;}
.y5_c00139{bottom:69.387067pt;}
.y26_c00139{bottom:105.307067pt;}
.y25_c00139{bottom:132.907067pt;}
.y24_c00139{bottom:171.067067pt;}
.y23_c00139{bottom:198.747067pt;}
.y22_c00139{bottom:226.347067pt;}
.y21_c00139{bottom:253.947067pt;}
.y20_c00139{bottom:281.547067pt;}
.y1f_c00139{bottom:319.707067pt;}
.y1e_c00139{bottom:347.387067pt;}
.y1d_c00139{bottom:374.987067pt;}
.y1c_c00139{bottom:402.587067pt;}
.y1b_c00139{bottom:430.187067pt;}
.y1a_c00139{bottom:457.787067pt;}
.y19_c00139{bottom:485.387067pt;}
.y18_c00139{bottom:515.787067pt;}
.y17_c00139{bottom:535.627067pt;}
.y16_c00139{bottom:558.187067pt;}
.y15_c00139{bottom:596.427067pt;}
.y14_c00139{bottom:624.107067pt;}
.y13_c00139{bottom:651.707067pt;}
.y12_c00139{bottom:679.307067pt;}
.y11_c00139{bottom:717.547067pt;}
.y10_c00139{bottom:745.227067pt;}
.yf_c00139{bottom:772.827067pt;}
.ye_c00139{bottom:800.427067pt;}
.yd_c00139{bottom:838.587067pt;}
.yc_c00139{bottom:866.267067pt;}
.yb_c00139{bottom:893.867067pt;}
.ya_c00139{bottom:921.467067pt;}
.y9_c00139{bottom:949.067067pt;}
.y8_c00139{bottom:979.467067pt;}
.y7_c00139{bottom:999.227067pt;}
.y4_c00139{bottom:1017.227251pt;}
.y3_c00139{bottom:1032.587243pt;}
.y2_c00139{bottom:1047.867075pt;}
.y1_c00139{bottom:1063.227067pt;}
.h1_c00139{height:47.020937pt;}
.h2_c00139{height:56.156250pt;}
.h3_c00139{height:56.312500pt;}
.h0_c00139{height:1122.666667pt;}
.w1_c00139{width:793.333333pt;}
.w0_c00139{width:793.626667pt;}
.x0_c00139{left:0.000000pt;}
.x4_c00139{left:113.440000pt;}
.x1_c00139{left:577.440000pt;}
.x3_c00139{left:656.400000pt;}
.x2_c00139{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00285e0ec6eb9b5b825ec62e.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.095703;font-style:normal;font-weight:normal;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_f722cb2ac71752af04680070.woff2')format("woff");}.ff2_c00140{font-family:ff2_c00140;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00140{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.lsd_c00140{letter-spacing:-0.102204px;}
.ls15_c00140{letter-spacing:-0.100800px;}
.ls13_c00140{letter-spacing:-0.064800px;}
.ls14_c00140{letter-spacing:-0.050400px;}
.ls10_c00140{letter-spacing:-0.036000px;}
.ls11_c00140{letter-spacing:-0.021600px;}
.lsf_c00140{letter-spacing:-0.014400px;}
.ls12_c00140{letter-spacing:-0.007200px;}
.lse_c00140{letter-spacing:0.000000px;}
.ls4_c00140{letter-spacing:0.007200px;}
.lsa_c00140{letter-spacing:0.014400px;}
.ls7_c00140{letter-spacing:0.021600px;}
.ls2_c00140{letter-spacing:0.028800px;}
.ls5_c00140{letter-spacing:0.036000px;}
.ls9_c00140{letter-spacing:0.043200px;}
.lsb_c00140{letter-spacing:0.050400px;}
.ls1_c00140{letter-spacing:0.057600px;}
.ls3_c00140{letter-spacing:0.064800px;}
.ls8_c00140{letter-spacing:0.072000px;}
.ls0_c00140{letter-spacing:0.079200px;}
.ls6_c00140{letter-spacing:0.108000px;}
.lsc_c00140{letter-spacing:0.122400px;}
.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;}
}
.ws1_c00140{word-spacing:0.000000px;}
.ws0_c00140{word-spacing:0.192384px;}
.ws2_c00140{word-spacing:21.139200px;}
.ws3_c00140{word-spacing:22.212000px;}
._d_c00140{margin-left:-4.968000px;}
._b_c00140{margin-left:-3.787200px;}
._9_c00140{margin-left:-2.743200px;}
._1_c00140{margin-left:-1.231200px;}
._0_c00140{width:1.034064px;}
._2_c00140{width:2.491200px;}
._5_c00140{width:3.945600px;}
._6_c00140{width:4.982400px;}
._a_c00140{width:6.415200px;}
._7_c00140{width:7.430400px;}
._4_c00140{width:8.978400px;}
._8_c00140{width:12.564000px;}
._c_c00140{width:21.218400px;}
._e_c00140{width:22.521600px;}
._3_c00140{width:36.036000px;}
.fc1_c00140{color:rgb(0,0,0);}
.fc0_c00140{color:rgb(32,31,30);}
.fs0_c00140{font-size:60.120000px;}
.fs1_c00140{font-size:72.000000px;}
.y0_c00140{bottom:0.000000px;}
.y5_c00140{bottom:57.360450px;}
.y4_c00140{bottom:78.060450px;}
.y25_c00140{bottom:112.980450px;}
.y24_c00140{bottom:144.030450px;}
.y23_c00140{bottom:175.080450px;}
.y22_c00140{bottom:206.130450px;}
.y21_c00140{bottom:237.090450px;}
.y20_c00140{bottom:268.140450px;}
.y1f_c00140{bottom:299.190450px;}
.y1e_c00140{bottom:330.240450px;}
.y1d_c00140{bottom:361.290450px;}
.y1c_c00140{bottom:392.340450px;}
.y1b_c00140{bottom:423.390450px;}
.y1a_c00140{bottom:454.440450px;}
.y19_c00140{bottom:485.490450px;}
.y18_c00140{bottom:516.540450px;}
.y17_c00140{bottom:559.560450px;}
.y16_c00140{bottom:590.700450px;}
.y15_c00140{bottom:621.660450px;}
.y14_c00140{bottom:652.710450px;}
.y13_c00140{bottom:683.760450px;}
.y12_c00140{bottom:714.810450px;}
.y11_c00140{bottom:757.830450px;}
.y10_c00140{bottom:788.970450px;}
.yf_c00140{bottom:820.020450px;}
.ye_c00140{bottom:851.070450px;}
.yd_c00140{bottom:882.120450px;}
.yc_c00140{bottom:913.170450px;}
.yb_c00140{bottom:944.220450px;}
.ya_c00140{bottom:975.180450px;}
.y9_c00140{bottom:1018.200450px;}
.y8_c00140{bottom:1049.340450px;}
.y7_c00140{bottom:1080.390450px;}
.y6_c00140{bottom:1111.440450px;}
.y3_c00140{bottom:1132.140450px;}
.y2_c00140{bottom:1165.441023px;}
.y1_c00140{bottom:1196.040600px;}
.h1_c00140{height:52.898555px;}
.h2_c00140{height:63.175781px;}
.h3_c00140{height:63.351562px;}
.h0_c00140{height:1263.000000px;}
.w1_c00140{width:892.500000px;}
.w0_c00140{width:892.830000px;}
.x0_c00140{left:0.000000px;}
.x1_c00140{left:127.620000px;}
.x2_c00140{left:738.450000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.lsd_c00140{letter-spacing:-0.090848pt;}
.ls15_c00140{letter-spacing:-0.089600pt;}
.ls13_c00140{letter-spacing:-0.057600pt;}
.ls14_c00140{letter-spacing:-0.044800pt;}
.ls10_c00140{letter-spacing:-0.032000pt;}
.ls11_c00140{letter-spacing:-0.019200pt;}
.lsf_c00140{letter-spacing:-0.012800pt;}
.ls12_c00140{letter-spacing:-0.006400pt;}
.lse_c00140{letter-spacing:0.000000pt;}
.ls4_c00140{letter-spacing:0.006400pt;}
.lsa_c00140{letter-spacing:0.012800pt;}
.ls7_c00140{letter-spacing:0.019200pt;}
.ls2_c00140{letter-spacing:0.025600pt;}
.ls5_c00140{letter-spacing:0.032000pt;}
.ls9_c00140{letter-spacing:0.038400pt;}
.lsb_c00140{letter-spacing:0.044800pt;}
.ls1_c00140{letter-spacing:0.051200pt;}
.ls3_c00140{letter-spacing:0.057600pt;}
.ls8_c00140{letter-spacing:0.064000pt;}
.ls0_c00140{letter-spacing:0.070400pt;}
.ls6_c00140{letter-spacing:0.096000pt;}
.lsc_c00140{letter-spacing:0.108800pt;}
.ws1_c00140{word-spacing:0.000000pt;}
.ws0_c00140{word-spacing:0.171008pt;}
.ws2_c00140{word-spacing:18.790400pt;}
.ws3_c00140{word-spacing:19.744000pt;}
._d_c00140{margin-left:-4.416000pt;}
._b_c00140{margin-left:-3.366400pt;}
._9_c00140{margin-left:-2.438400pt;}
._1_c00140{margin-left:-1.094400pt;}
._0_c00140{width:0.919168pt;}
._2_c00140{width:2.214400pt;}
._5_c00140{width:3.507200pt;}
._6_c00140{width:4.428800pt;}
._a_c00140{width:5.702400pt;}
._7_c00140{width:6.604800pt;}
._4_c00140{width:7.980800pt;}
._8_c00140{width:11.168000pt;}
._c_c00140{width:18.860800pt;}
._e_c00140{width:20.019200pt;}
._3_c00140{width:32.032000pt;}
.fs0_c00140{font-size:53.440000pt;}
.fs1_c00140{font-size:64.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y5_c00140{bottom:50.987067pt;}
.y4_c00140{bottom:69.387067pt;}
.y25_c00140{bottom:100.427067pt;}
.y24_c00140{bottom:128.027067pt;}
.y23_c00140{bottom:155.627067pt;}
.y22_c00140{bottom:183.227067pt;}
.y21_c00140{bottom:210.747067pt;}
.y20_c00140{bottom:238.347067pt;}
.y1f_c00140{bottom:265.947067pt;}
.y1e_c00140{bottom:293.547067pt;}
.y1d_c00140{bottom:321.147067pt;}
.y1c_c00140{bottom:348.747067pt;}
.y1b_c00140{bottom:376.347067pt;}
.y1a_c00140{bottom:403.947067pt;}
.y19_c00140{bottom:431.547067pt;}
.y18_c00140{bottom:459.147067pt;}
.y17_c00140{bottom:497.387067pt;}
.y16_c00140{bottom:525.067067pt;}
.y15_c00140{bottom:552.587067pt;}
.y14_c00140{bottom:580.187067pt;}
.y13_c00140{bottom:607.787067pt;}
.y12_c00140{bottom:635.387067pt;}
.y11_c00140{bottom:673.627067pt;}
.y10_c00140{bottom:701.307067pt;}
.yf_c00140{bottom:728.907067pt;}
.ye_c00140{bottom:756.507067pt;}
.yd_c00140{bottom:784.107067pt;}
.yc_c00140{bottom:811.707067pt;}
.yb_c00140{bottom:839.307067pt;}
.ya_c00140{bottom:866.827067pt;}
.y9_c00140{bottom:905.067067pt;}
.y8_c00140{bottom:932.747067pt;}
.y7_c00140{bottom:960.347067pt;}
.y6_c00140{bottom:987.947067pt;}
.y3_c00140{bottom:1006.347067pt;}
.y2_c00140{bottom:1035.947576pt;}
.y1_c00140{bottom:1063.147200pt;}
.h1_c00140{height:47.020937pt;}
.h2_c00140{height:56.156250pt;}
.h3_c00140{height:56.312500pt;}
.h0_c00140{height:1122.666667pt;}
.w1_c00140{width:793.333333pt;}
.w0_c00140{width:793.626667pt;}
.x0_c00140{left:0.000000pt;}
.x1_c00140{left:113.440000pt;}
.x2_c00140{left:656.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_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_90322609ac4539ba342a793b.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.095703;font-style:normal;font-weight:normal;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_d1f33d680f969f4e1a5d92f9.woff2')format("woff");}.ff2_c00141{font-family:ff2_c00141;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00141{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls18_c00141{letter-spacing:-0.115200px;}
.ls12_c00141{letter-spacing:-0.057600px;}
.ls10_c00141{letter-spacing:-0.048096px;}
.ls17_c00141{letter-spacing:-0.043200px;}
.ls16_c00141{letter-spacing:-0.028800px;}
.ls1b_c00141{letter-spacing:-0.021600px;}
.ls15_c00141{letter-spacing:-0.014400px;}
.ls13_c00141{letter-spacing:-0.007200px;}
.ls11_c00141{letter-spacing:0.000000px;}
.ls5_c00141{letter-spacing:0.007200px;}
.ls2_c00141{letter-spacing:0.014400px;}
.ls9_c00141{letter-spacing:0.021600px;}
.ls0_c00141{letter-spacing:0.028800px;}
.ls6_c00141{letter-spacing:0.036000px;}
.ls4_c00141{letter-spacing:0.043200px;}
.lsb_c00141{letter-spacing:0.050400px;}
.ls1_c00141{letter-spacing:0.057600px;}
.ls3_c00141{letter-spacing:0.072000px;}
.lse_c00141{letter-spacing:0.079200px;}
.lsa_c00141{letter-spacing:0.086400px;}
.lsc_c00141{letter-spacing:0.093600px;}
.lsf_c00141{letter-spacing:0.100800px;}
.ls7_c00141{letter-spacing:0.108000px;}
.lsd_c00141{letter-spacing:0.115200px;}
.ls8_c00141{letter-spacing:0.360000px;}
.ls1a_c00141{letter-spacing:2.520000px;}
.ls14_c00141{letter-spacing:7.560000px;}
.ls19_c00141{letter-spacing:9.720000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00141{word-spacing:-0.331200px;}
.ws1_c00141{word-spacing:0.000000px;}
.ws0_c00141{word-spacing:0.138276px;}
._e_c00141{margin-left:-10.396800px;}
._f_c00141{margin-left:-9.388800px;}
._6_c00141{margin-left:-8.366400px;}
._5_c00141{margin-left:-7.034400px;}
._c_c00141{margin-left:-5.587200px;}
._b_c00141{margin-left:-4.363200px;}
._11_c00141{margin-left:-2.678400px;}
._1_c00141{margin-left:-1.310400px;}
._8_c00141{width:1.490400px;}
._9_c00141{width:2.743200px;}
._a_c00141{width:3.895200px;}
._7_c00141{width:5.011200px;}
._2_c00141{width:6.091200px;}
._3_c00141{width:7.300800px;}
._4_c00141{width:8.568000px;}
._d_c00141{width:9.705600px;}
._14_c00141{width:11.217600px;}
._10_c00141{width:13.593600px;}
._17_c00141{width:14.702400px;}
._0_c00141{width:16.171200px;}
._13_c00141{width:19.965600px;}
._12_c00141{width:21.204000px;}
._16_c00141{width:25.156800px;}
._15_c00141{width:26.244000px;}
.fc0_c00141{color:rgb(0,0,0);}
.fs0_c00141{font-size:60.120000px;}
.fs1_c00141{font-size:72.000000px;}
.y0_c00141{bottom:0.000000px;}
.y6_c00141{bottom:57.360450px;}
.y5_c00141{bottom:78.060450px;}
.y26_c00141{bottom:137.910450px;}
.y25_c00141{bottom:168.960450px;}
.y24_c00141{bottom:200.010450px;}
.y23_c00141{bottom:231.060450px;}
.y22_c00141{bottom:262.110450px;}
.y21_c00141{bottom:293.070450px;}
.y20_c00141{bottom:324.120450px;}
.y1f_c00141{bottom:355.170450px;}
.y1e_c00141{bottom:386.220450px;}
.y1d_c00141{bottom:417.270450px;}
.y1c_c00141{bottom:448.320450px;}
.y1b_c00141{bottom:479.370450px;}
.y1a_c00141{bottom:510.420450px;}
.y19_c00141{bottom:541.470450px;}
.y18_c00141{bottom:572.520450px;}
.y17_c00141{bottom:603.570450px;}
.y16_c00141{bottom:634.620450px;}
.y15_c00141{bottom:665.670450px;}
.y14_c00141{bottom:696.720450px;}
.y13_c00141{bottom:727.770450px;}
.y12_c00141{bottom:758.820450px;}
.y11_c00141{bottom:789.870450px;}
.y10_c00141{bottom:820.920450px;}
.yf_c00141{bottom:851.970450px;}
.ye_c00141{bottom:894.900450px;}
.yd_c00141{bottom:926.040450px;}
.yc_c00141{bottom:957.090450px;}
.yb_c00141{bottom:988.140450px;}
.ya_c00141{bottom:1019.190450px;}
.y9_c00141{bottom:1062.120450px;}
.y8_c00141{bottom:1093.260450px;}
.y7_c00141{bottom:1124.310450px;}
.y4_c00141{bottom:1144.380657px;}
.y3_c00141{bottom:1161.660648px;}
.y2_c00141{bottom:1178.850459px;}
.y1_c00141{bottom:1196.130450px;}
.h1_c00141{height:52.898555px;}
.h2_c00141{height:63.175781px;}
.h3_c00141{height:63.351562px;}
.h0_c00141{height:1263.000000px;}
.w1_c00141{width:892.500000px;}
.w0_c00141{width:892.830000px;}
.x0_c00141{left:0.000000px;}
.x4_c00141{left:127.620000px;}
.x1_c00141{left:649.620000px;}
.x3_c00141{left:738.450000px;}
.x2_c00141{left:765.450198px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls18_c00141{letter-spacing:-0.102400pt;}
.ls12_c00141{letter-spacing:-0.051200pt;}
.ls10_c00141{letter-spacing:-0.042752pt;}
.ls17_c00141{letter-spacing:-0.038400pt;}
.ls16_c00141{letter-spacing:-0.025600pt;}
.ls1b_c00141{letter-spacing:-0.019200pt;}
.ls15_c00141{letter-spacing:-0.012800pt;}
.ls13_c00141{letter-spacing:-0.006400pt;}
.ls11_c00141{letter-spacing:0.000000pt;}
.ls5_c00141{letter-spacing:0.006400pt;}
.ls2_c00141{letter-spacing:0.012800pt;}
.ls9_c00141{letter-spacing:0.019200pt;}
.ls0_c00141{letter-spacing:0.025600pt;}
.ls6_c00141{letter-spacing:0.032000pt;}
.ls4_c00141{letter-spacing:0.038400pt;}
.lsb_c00141{letter-spacing:0.044800pt;}
.ls1_c00141{letter-spacing:0.051200pt;}
.ls3_c00141{letter-spacing:0.064000pt;}
.lse_c00141{letter-spacing:0.070400pt;}
.lsa_c00141{letter-spacing:0.076800pt;}
.lsc_c00141{letter-spacing:0.083200pt;}
.lsf_c00141{letter-spacing:0.089600pt;}
.ls7_c00141{letter-spacing:0.096000pt;}
.lsd_c00141{letter-spacing:0.102400pt;}
.ls8_c00141{letter-spacing:0.320000pt;}
.ls1a_c00141{letter-spacing:2.240000pt;}
.ls14_c00141{letter-spacing:6.720000pt;}
.ls19_c00141{letter-spacing:8.640000pt;}
.ws2_c00141{word-spacing:-0.294400pt;}
.ws1_c00141{word-spacing:0.000000pt;}
.ws0_c00141{word-spacing:0.122912pt;}
._e_c00141{margin-left:-9.241600pt;}
._f_c00141{margin-left:-8.345600pt;}
._6_c00141{margin-left:-7.436800pt;}
._5_c00141{margin-left:-6.252800pt;}
._c_c00141{margin-left:-4.966400pt;}
._b_c00141{margin-left:-3.878400pt;}
._11_c00141{margin-left:-2.380800pt;}
._1_c00141{margin-left:-1.164800pt;}
._8_c00141{width:1.324800pt;}
._9_c00141{width:2.438400pt;}
._a_c00141{width:3.462400pt;}
._7_c00141{width:4.454400pt;}
._2_c00141{width:5.414400pt;}
._3_c00141{width:6.489600pt;}
._4_c00141{width:7.616000pt;}
._d_c00141{width:8.627200pt;}
._14_c00141{width:9.971200pt;}
._10_c00141{width:12.083200pt;}
._17_c00141{width:13.068800pt;}
._0_c00141{width:14.374400pt;}
._13_c00141{width:17.747200pt;}
._12_c00141{width:18.848000pt;}
._16_c00141{width:22.361600pt;}
._15_c00141{width:23.328000pt;}
.fs0_c00141{font-size:53.440000pt;}
.fs1_c00141{font-size:64.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.y6_c00141{bottom:50.987067pt;}
.y5_c00141{bottom:69.387067pt;}
.y26_c00141{bottom:122.587067pt;}
.y25_c00141{bottom:150.187067pt;}
.y24_c00141{bottom:177.787067pt;}
.y23_c00141{bottom:205.387067pt;}
.y22_c00141{bottom:232.987067pt;}
.y21_c00141{bottom:260.507067pt;}
.y20_c00141{bottom:288.107067pt;}
.y1f_c00141{bottom:315.707067pt;}
.y1e_c00141{bottom:343.307067pt;}
.y1d_c00141{bottom:370.907067pt;}
.y1c_c00141{bottom:398.507067pt;}
.y1b_c00141{bottom:426.107067pt;}
.y1a_c00141{bottom:453.707067pt;}
.y19_c00141{bottom:481.307067pt;}
.y18_c00141{bottom:508.907067pt;}
.y17_c00141{bottom:536.507067pt;}
.y16_c00141{bottom:564.107067pt;}
.y15_c00141{bottom:591.707067pt;}
.y14_c00141{bottom:619.307067pt;}
.y13_c00141{bottom:646.907067pt;}
.y12_c00141{bottom:674.507067pt;}
.y11_c00141{bottom:702.107067pt;}
.y10_c00141{bottom:729.707067pt;}
.yf_c00141{bottom:757.307067pt;}
.ye_c00141{bottom:795.467067pt;}
.yd_c00141{bottom:823.147067pt;}
.yc_c00141{bottom:850.747067pt;}
.yb_c00141{bottom:878.347067pt;}
.ya_c00141{bottom:905.947067pt;}
.y9_c00141{bottom:944.107067pt;}
.y8_c00141{bottom:971.787067pt;}
.y7_c00141{bottom:999.387067pt;}
.y4_c00141{bottom:1017.227251pt;}
.y3_c00141{bottom:1032.587243pt;}
.y2_c00141{bottom:1047.867075pt;}
.y1_c00141{bottom:1063.227067pt;}
.h1_c00141{height:47.020937pt;}
.h2_c00141{height:56.156250pt;}
.h3_c00141{height:56.312500pt;}
.h0_c00141{height:1122.666667pt;}
.w1_c00141{width:793.333333pt;}
.w0_c00141{width:793.626667pt;}
.x0_c00141{left:0.000000pt;}
.x4_c00141{left:113.440000pt;}
.x1_c00141{left:577.440000pt;}
.x3_c00141{left:656.400000pt;}
.x2_c00141{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dad27648b15a08fb91041b01.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.095703;font-style:normal;font-weight:normal;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_52200188f512841645905d37.woff2')format("woff");}.ff2_c00142{font-family:ff2_c00142;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00142{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls11_c00142{letter-spacing:-0.102204px;}
.ls17_c00142{letter-spacing:-0.050400px;}
.ls16_c00142{letter-spacing:-0.036000px;}
.ls18_c00142{letter-spacing:-0.021600px;}
.ls15_c00142{letter-spacing:-0.014400px;}
.ls14_c00142{letter-spacing:-0.007200px;}
.ls12_c00142{letter-spacing:0.000000px;}
.ls2_c00142{letter-spacing:0.007200px;}
.lse_c00142{letter-spacing:0.010800px;}
.ls6_c00142{letter-spacing:0.014400px;}
.ls10_c00142{letter-spacing:0.021600px;}
.lsf_c00142{letter-spacing:0.027000px;}
.ls3_c00142{letter-spacing:0.028800px;}
.lsc_c00142{letter-spacing:0.032400px;}
.ls4_c00142{letter-spacing:0.036000px;}
.ls0_c00142{letter-spacing:0.043200px;}
.lsd_c00142{letter-spacing:0.048600px;}
.ls5_c00142{letter-spacing:0.050400px;}
.ls7_c00142{letter-spacing:0.057600px;}
.ls9_c00142{letter-spacing:0.064800px;}
.lsb_c00142{letter-spacing:0.072000px;}
.ls1_c00142{letter-spacing:0.086400px;}
.lsa_c00142{letter-spacing:0.108000px;}
.ls8_c00142{letter-spacing:0.115200px;}
.ls19_c00142{letter-spacing:1.800000px;}
.ls1a_c00142{letter-spacing:2.520000px;}
.ls13_c00142{letter-spacing:23.400000px;}
.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:-18.108000px;}
.ws3_c00142{word-spacing:-0.072000px;}
.ws2_c00142{word-spacing:0.000000px;}
.ws9_c00142{word-spacing:0.135000px;}
.ws1_c00142{word-spacing:0.192384px;}
.ws6_c00142{word-spacing:3.013200px;}
.ws5_c00142{word-spacing:3.029400px;}
.ws4_c00142{word-spacing:3.083400px;}
.ws8_c00142{word-spacing:5.551200px;}
.ws7_c00142{word-spacing:5.567400px;}
._3_c00142{margin-left:-23.400000px;}
._4_c00142{margin-left:-22.348800px;}
._b_c00142{margin-left:-5.198400px;}
._2_c00142{margin-left:-3.988800px;}
._1_c00142{margin-left:-2.908800px;}
._6_c00142{margin-left:-1.807200px;}
._0_c00142{width:1.034064px;}
._9_c00142{width:2.064672px;}
._a_c00142{width:3.128256px;}
._c_c00142{width:4.167072px;}
._7_c00142{width:12.204000px;}
._8_c00142{width:14.011200px;}
._5_c00142{width:23.724000px;}
.fc2_c00142{color:rgb(68,84,106);}
.fc1_c00142{color:rgb(0,0,0);}
.fc0_c00142{color:rgb(32,31,30);}
.fs2_c00142{font-size:54.000000px;}
.fs0_c00142{font-size:60.120000px;}
.fs1_c00142{font-size:72.000000px;}
.y0_c00142{bottom:0.000000px;}
.y5_c00142{bottom:57.360450px;}
.y4_c00142{bottom:78.060450px;}
.y21_c00142{bottom:120.090450px;}
.y20_c00142{bottom:151.140450px;}
.y1f_c00142{bottom:182.190450px;}
.y1e_c00142{bottom:213.240450px;}
.y1d_c00142{bottom:244.290450px;}
.y1c_c00142{bottom:275.340450px;}
.y1b_c00142{bottom:302.340450px;}
.y1a_c00142{bottom:514.380450px;}
.y19_c00142{bottom:529.860900px;}
.y18_c00142{bottom:545.430450px;}
.y17_c00142{bottom:575.940450px;}
.y16_c00142{bottom:614.550450px;}
.y15_c00142{bottom:645.690450px;}
.y14_c00142{bottom:676.740450px;}
.y13_c00142{bottom:707.790450px;}
.y12_c00142{bottom:738.840450px;}
.y11_c00142{bottom:769.890450px;}
.y10_c00142{bottom:800.940450px;}
.yf_c00142{bottom:831.990450px;}
.ye_c00142{bottom:863.040450px;}
.yd_c00142{bottom:894.090450px;}
.yc_c00142{bottom:925.140450px;}
.yb_c00142{bottom:956.190450px;}
.ya_c00142{bottom:987.240450px;}
.y9_c00142{bottom:1018.290450px;}
.y8_c00142{bottom:1049.340450px;}
.y7_c00142{bottom:1080.390450px;}
.y6_c00142{bottom:1111.440450px;}
.y3_c00142{bottom:1132.140450px;}
.y2_c00142{bottom:1165.441023px;}
.y1_c00142{bottom:1196.040600px;}
.h4_c00142{height:47.513672px;}
.h1_c00142{height:52.898555px;}
.h2_c00142{height:63.175781px;}
.h3_c00142{height:63.351562px;}
.h0_c00142{height:1263.000000px;}
.w1_c00142{width:892.500000px;}
.w0_c00142{width:892.830000px;}
.x0_c00142{left:0.000000px;}
.x1_c00142{left:127.620000px;}
.x2_c00142{left:738.450000px;}
.x3_c00142{left:740.159850px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls11_c00142{letter-spacing:-0.090848pt;}
.ls17_c00142{letter-spacing:-0.044800pt;}
.ls16_c00142{letter-spacing:-0.032000pt;}
.ls18_c00142{letter-spacing:-0.019200pt;}
.ls15_c00142{letter-spacing:-0.012800pt;}
.ls14_c00142{letter-spacing:-0.006400pt;}
.ls12_c00142{letter-spacing:0.000000pt;}
.ls2_c00142{letter-spacing:0.006400pt;}
.lse_c00142{letter-spacing:0.009600pt;}
.ls6_c00142{letter-spacing:0.012800pt;}
.ls10_c00142{letter-spacing:0.019200pt;}
.lsf_c00142{letter-spacing:0.024000pt;}
.ls3_c00142{letter-spacing:0.025600pt;}
.lsc_c00142{letter-spacing:0.028800pt;}
.ls4_c00142{letter-spacing:0.032000pt;}
.ls0_c00142{letter-spacing:0.038400pt;}
.lsd_c00142{letter-spacing:0.043200pt;}
.ls5_c00142{letter-spacing:0.044800pt;}
.ls7_c00142{letter-spacing:0.051200pt;}
.ls9_c00142{letter-spacing:0.057600pt;}
.lsb_c00142{letter-spacing:0.064000pt;}
.ls1_c00142{letter-spacing:0.076800pt;}
.lsa_c00142{letter-spacing:0.096000pt;}
.ls8_c00142{letter-spacing:0.102400pt;}
.ls19_c00142{letter-spacing:1.600000pt;}
.ls1a_c00142{letter-spacing:2.240000pt;}
.ls13_c00142{letter-spacing:20.800000pt;}
.ws0_c00142{word-spacing:-16.096000pt;}
.ws3_c00142{word-spacing:-0.064000pt;}
.ws2_c00142{word-spacing:0.000000pt;}
.ws9_c00142{word-spacing:0.120000pt;}
.ws1_c00142{word-spacing:0.171008pt;}
.ws6_c00142{word-spacing:2.678400pt;}
.ws5_c00142{word-spacing:2.692800pt;}
.ws4_c00142{word-spacing:2.740800pt;}
.ws8_c00142{word-spacing:4.934400pt;}
.ws7_c00142{word-spacing:4.948800pt;}
._3_c00142{margin-left:-20.800000pt;}
._4_c00142{margin-left:-19.865600pt;}
._b_c00142{margin-left:-4.620800pt;}
._2_c00142{margin-left:-3.545600pt;}
._1_c00142{margin-left:-2.585600pt;}
._6_c00142{margin-left:-1.606400pt;}
._0_c00142{width:0.919168pt;}
._9_c00142{width:1.835264pt;}
._a_c00142{width:2.780672pt;}
._c_c00142{width:3.704064pt;}
._7_c00142{width:10.848000pt;}
._8_c00142{width:12.454400pt;}
._5_c00142{width:21.088000pt;}
.fs2_c00142{font-size:48.000000pt;}
.fs0_c00142{font-size:53.440000pt;}
.fs1_c00142{font-size:64.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y5_c00142{bottom:50.987067pt;}
.y4_c00142{bottom:69.387067pt;}
.y21_c00142{bottom:106.747067pt;}
.y20_c00142{bottom:134.347067pt;}
.y1f_c00142{bottom:161.947067pt;}
.y1e_c00142{bottom:189.547067pt;}
.y1d_c00142{bottom:217.147067pt;}
.y1c_c00142{bottom:244.747067pt;}
.y1b_c00142{bottom:268.747067pt;}
.y1a_c00142{bottom:457.227067pt;}
.y19_c00142{bottom:470.987467pt;}
.y18_c00142{bottom:484.827067pt;}
.y17_c00142{bottom:511.947067pt;}
.y16_c00142{bottom:546.267067pt;}
.y15_c00142{bottom:573.947067pt;}
.y14_c00142{bottom:601.547067pt;}
.y13_c00142{bottom:629.147067pt;}
.y12_c00142{bottom:656.747067pt;}
.y11_c00142{bottom:684.347067pt;}
.y10_c00142{bottom:711.947067pt;}
.yf_c00142{bottom:739.547067pt;}
.ye_c00142{bottom:767.147067pt;}
.yd_c00142{bottom:794.747067pt;}
.yc_c00142{bottom:822.347067pt;}
.yb_c00142{bottom:849.947067pt;}
.ya_c00142{bottom:877.547067pt;}
.y9_c00142{bottom:905.147067pt;}
.y8_c00142{bottom:932.747067pt;}
.y7_c00142{bottom:960.347067pt;}
.y6_c00142{bottom:987.947067pt;}
.y3_c00142{bottom:1006.347067pt;}
.y2_c00142{bottom:1035.947576pt;}
.y1_c00142{bottom:1063.147200pt;}
.h4_c00142{height:42.234375pt;}
.h1_c00142{height:47.020937pt;}
.h2_c00142{height:56.156250pt;}
.h3_c00142{height:56.312500pt;}
.h0_c00142{height:1122.666667pt;}
.w1_c00142{width:793.333333pt;}
.w0_c00142{width:793.626667pt;}
.x0_c00142{left:0.000000pt;}
.x1_c00142{left:113.440000pt;}
.x2_c00142{left:656.400000pt;}
.x3_c00142{left:657.919867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae97213be7af225747ac1403.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.095703;font-style:normal;font-weight:normal;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_3f7f3eeb4a6d11fa9233e984.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00143{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.lse_c00143{letter-spacing:-0.048096px;}
.ls11_c00143{letter-spacing:-0.036000px;}
.ls12_c00143{letter-spacing:-0.021600px;}
.ls10_c00143{letter-spacing:-0.014400px;}
.ls13_c00143{letter-spacing:-0.007200px;}
.lsf_c00143{letter-spacing:0.000000px;}
.ls6_c00143{letter-spacing:0.007200px;}
.ls5_c00143{letter-spacing:0.014400px;}
.ls3_c00143{letter-spacing:0.021600px;}
.ls0_c00143{letter-spacing:0.028800px;}
.ls2_c00143{letter-spacing:0.036000px;}
.ls7_c00143{letter-spacing:0.043200px;}
.ls9_c00143{letter-spacing:0.050400px;}
.ls8_c00143{letter-spacing:0.057600px;}
.lsc_c00143{letter-spacing:0.064800px;}
.lsd_c00143{letter-spacing:0.072000px;}
.ls4_c00143{letter-spacing:0.079200px;}
.ls1_c00143{letter-spacing:0.086400px;}
.lsa_c00143{letter-spacing:0.100800px;}
.lsb_c00143{letter-spacing:0.108000px;}
.ls14_c00143{letter-spacing:7.200000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00143{word-spacing:0.000000px;}
.ws2_c00143{word-spacing:0.136800px;}
.ws0_c00143{word-spacing:0.138276px;}
._10_c00143{margin-left:-7.970400px;}
._11_c00143{margin-left:-6.544800px;}
._c_c00143{margin-left:-4.701600px;}
._d_c00143{margin-left:-3.679200px;}
._a_c00143{margin-left:-2.419200px;}
._1_c00143{margin-left:-1.166400px;}
._6_c00143{width:1.065600px;}
._8_c00143{width:2.534400px;}
._f_c00143{width:3.564000px;}
._e_c00143{width:4.687200px;}
._4_c00143{width:6.098400px;}
._0_c00143{width:7.891200px;}
._b_c00143{width:12.146400px;}
._7_c00143{width:13.644000px;}
._5_c00143{width:16.560000px;}
._3_c00143{width:19.440000px;}
._2_c00143{width:20.484000px;}
._9_c00143{width:25.538400px;}
.fc0_c00143{color:rgb(0,0,0);}
.fs0_c00143{font-size:60.120000px;}
.fs1_c00143{font-size:72.000000px;}
.y0_c00143{bottom:0.000000px;}
.y6_c00143{bottom:57.360450px;}
.y5_c00143{bottom:78.060450px;}
.y26_c00143{bottom:131.250450px;}
.y25_c00143{bottom:162.390450px;}
.y24_c00143{bottom:193.350450px;}
.y23_c00143{bottom:224.400450px;}
.y22_c00143{bottom:255.450450px;}
.y21_c00143{bottom:286.500450px;}
.y20_c00143{bottom:329.520450px;}
.y1f_c00143{bottom:360.660450px;}
.y1e_c00143{bottom:391.710450px;}
.y1d_c00143{bottom:434.640450px;}
.y1c_c00143{bottom:465.780450px;}
.y1b_c00143{bottom:496.830450px;}
.y1a_c00143{bottom:527.880450px;}
.y19_c00143{bottom:558.930450px;}
.y18_c00143{bottom:589.980450px;}
.y17_c00143{bottom:621.030450px;}
.y16_c00143{bottom:655.230450px;}
.y15_c00143{bottom:677.460450px;}
.y14_c00143{bottom:720.660450px;}
.y13_c00143{bottom:751.800450px;}
.y12_c00143{bottom:782.850450px;}
.y11_c00143{bottom:813.900450px;}
.y10_c00143{bottom:844.950450px;}
.yf_c00143{bottom:876.000450px;}
.ye_c00143{bottom:907.050450px;}
.yd_c00143{bottom:938.100450px;}
.yc_c00143{bottom:969.150450px;}
.yb_c00143{bottom:1000.200450px;}
.ya_c00143{bottom:1031.160450px;}
.y9_c00143{bottom:1062.210450px;}
.y8_c00143{bottom:1093.260450px;}
.y7_c00143{bottom:1124.310450px;}
.y4_c00143{bottom:1144.380657px;}
.y3_c00143{bottom:1161.660648px;}
.y2_c00143{bottom:1178.850459px;}
.y1_c00143{bottom:1196.130450px;}
.h1_c00143{height:52.898555px;}
.h2_c00143{height:63.175781px;}
.h3_c00143{height:63.351562px;}
.h0_c00143{height:1263.000000px;}
.w1_c00143{width:892.500000px;}
.w0_c00143{width:892.830000px;}
.x0_c00143{left:0.000000px;}
.x4_c00143{left:127.620000px;}
.x1_c00143{left:649.620000px;}
.x3_c00143{left:738.450000px;}
.x2_c00143{left:765.450198px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.lse_c00143{letter-spacing:-0.042752pt;}
.ls11_c00143{letter-spacing:-0.032000pt;}
.ls12_c00143{letter-spacing:-0.019200pt;}
.ls10_c00143{letter-spacing:-0.012800pt;}
.ls13_c00143{letter-spacing:-0.006400pt;}
.lsf_c00143{letter-spacing:0.000000pt;}
.ls6_c00143{letter-spacing:0.006400pt;}
.ls5_c00143{letter-spacing:0.012800pt;}
.ls3_c00143{letter-spacing:0.019200pt;}
.ls0_c00143{letter-spacing:0.025600pt;}
.ls2_c00143{letter-spacing:0.032000pt;}
.ls7_c00143{letter-spacing:0.038400pt;}
.ls9_c00143{letter-spacing:0.044800pt;}
.ls8_c00143{letter-spacing:0.051200pt;}
.lsc_c00143{letter-spacing:0.057600pt;}
.lsd_c00143{letter-spacing:0.064000pt;}
.ls4_c00143{letter-spacing:0.070400pt;}
.ls1_c00143{letter-spacing:0.076800pt;}
.lsa_c00143{letter-spacing:0.089600pt;}
.lsb_c00143{letter-spacing:0.096000pt;}
.ls14_c00143{letter-spacing:6.400000pt;}
.ws1_c00143{word-spacing:0.000000pt;}
.ws2_c00143{word-spacing:0.121600pt;}
.ws0_c00143{word-spacing:0.122912pt;}
._10_c00143{margin-left:-7.084800pt;}
._11_c00143{margin-left:-5.817600pt;}
._c_c00143{margin-left:-4.179200pt;}
._d_c00143{margin-left:-3.270400pt;}
._a_c00143{margin-left:-2.150400pt;}
._1_c00143{margin-left:-1.036800pt;}
._6_c00143{width:0.947200pt;}
._8_c00143{width:2.252800pt;}
._f_c00143{width:3.168000pt;}
._e_c00143{width:4.166400pt;}
._4_c00143{width:5.420800pt;}
._0_c00143{width:7.014400pt;}
._b_c00143{width:10.796800pt;}
._7_c00143{width:12.128000pt;}
._5_c00143{width:14.720000pt;}
._3_c00143{width:17.280000pt;}
._2_c00143{width:18.208000pt;}
._9_c00143{width:22.700800pt;}
.fs0_c00143{font-size:53.440000pt;}
.fs1_c00143{font-size:64.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y6_c00143{bottom:50.987067pt;}
.y5_c00143{bottom:69.387067pt;}
.y26_c00143{bottom:116.667067pt;}
.y25_c00143{bottom:144.347067pt;}
.y24_c00143{bottom:171.867067pt;}
.y23_c00143{bottom:199.467067pt;}
.y22_c00143{bottom:227.067067pt;}
.y21_c00143{bottom:254.667067pt;}
.y20_c00143{bottom:292.907067pt;}
.y1f_c00143{bottom:320.587067pt;}
.y1e_c00143{bottom:348.187067pt;}
.y1d_c00143{bottom:386.347067pt;}
.y1c_c00143{bottom:414.027067pt;}
.y1b_c00143{bottom:441.627067pt;}
.y1a_c00143{bottom:469.227067pt;}
.y19_c00143{bottom:496.827067pt;}
.y18_c00143{bottom:524.427067pt;}
.y17_c00143{bottom:552.027067pt;}
.y16_c00143{bottom:582.427067pt;}
.y15_c00143{bottom:602.187067pt;}
.y14_c00143{bottom:640.587067pt;}
.y13_c00143{bottom:668.267067pt;}
.y12_c00143{bottom:695.867067pt;}
.y11_c00143{bottom:723.467067pt;}
.y10_c00143{bottom:751.067067pt;}
.yf_c00143{bottom:778.667067pt;}
.ye_c00143{bottom:806.267067pt;}
.yd_c00143{bottom:833.867067pt;}
.yc_c00143{bottom:861.467067pt;}
.yb_c00143{bottom:889.067067pt;}
.ya_c00143{bottom:916.587067pt;}
.y9_c00143{bottom:944.187067pt;}
.y8_c00143{bottom:971.787067pt;}
.y7_c00143{bottom:999.387067pt;}
.y4_c00143{bottom:1017.227251pt;}
.y3_c00143{bottom:1032.587243pt;}
.y2_c00143{bottom:1047.867075pt;}
.y1_c00143{bottom:1063.227067pt;}
.h1_c00143{height:47.020937pt;}
.h2_c00143{height:56.156250pt;}
.h3_c00143{height:56.312500pt;}
.h0_c00143{height:1122.666667pt;}
.w1_c00143{width:793.333333pt;}
.w0_c00143{width:793.626667pt;}
.x0_c00143{left:0.000000pt;}
.x4_c00143{left:113.440000pt;}
.x1_c00143{left:577.440000pt;}
.x3_c00143{left:656.400000pt;}
.x2_c00143{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.095703;font-style:normal;font-weight:normal;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_e9faf76cdc5d79d09a78b825.woff2')format("woff");}.ff2_c00144{font-family:ff2_c00144;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.lsc_c00144{letter-spacing:-0.102204px;}
.ls13_c00144{letter-spacing:-0.100800px;}
.lsf_c00144{letter-spacing:-0.043200px;}
.ls10_c00144{letter-spacing:-0.028800px;}
.ls12_c00144{letter-spacing:-0.021600px;}
.ls11_c00144{letter-spacing:-0.014400px;}
.lse_c00144{letter-spacing:-0.007200px;}
.lsd_c00144{letter-spacing:0.000000px;}
.ls5_c00144{letter-spacing:0.007200px;}
.ls2_c00144{letter-spacing:0.014400px;}
.ls3_c00144{letter-spacing:0.021600px;}
.lsa_c00144{letter-spacing:0.028800px;}
.ls0_c00144{letter-spacing:0.036000px;}
.ls7_c00144{letter-spacing:0.043200px;}
.ls6_c00144{letter-spacing:0.050400px;}
.ls9_c00144{letter-spacing:0.057600px;}
.ls8_c00144{letter-spacing:0.064800px;}
.ls4_c00144{letter-spacing:0.072000px;}
.lsb_c00144{letter-spacing:0.093600px;}
.ls1_c00144{letter-spacing:0.100800px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00144{word-spacing:0.000000px;}
.ws0_c00144{word-spacing:0.192384px;}
._b_c00144{margin-left:-5.119200px;}
._a_c00144{margin-left:-3.981600px;}
._6_c00144{margin-left:-2.656800px;}
._2_c00144{margin-left:-1.231200px;}
._0_c00144{width:1.034064px;}
._7_c00144{width:2.059200px;}
._8_c00144{width:3.360672px;}
._c_c00144{width:4.660128px;}
._3_c00144{width:6.040800px;}
._1_c00144{width:7.164000px;}
._9_c00144{width:9.295200px;}
._12_c00144{width:10.296000px;}
._11_c00144{width:11.376000px;}
._d_c00144{width:17.020800px;}
._e_c00144{width:19.094400px;}
._5_c00144{width:24.184800px;}
._4_c00144{width:25.185600px;}
._f_c00144{width:36.129600px;}
._10_c00144{width:37.281600px;}
.fc1_c00144{color:rgb(0,0,0);}
.fc0_c00144{color:rgb(32,31,30);}
.fs0_c00144{font-size:60.120000px;}
.fs1_c00144{font-size:72.000000px;}
.y0_c00144{bottom:0.000000px;}
.y5_c00144{bottom:57.360450px;}
.y4_c00144{bottom:78.060450px;}
.y23_c00144{bottom:163.020450px;}
.y22_c00144{bottom:194.070450px;}
.y21_c00144{bottom:225.120450px;}
.y20_c00144{bottom:256.170450px;}
.y1f_c00144{bottom:287.220450px;}
.y1e_c00144{bottom:318.270450px;}
.y1d_c00144{bottom:349.320450px;}
.y1c_c00144{bottom:380.370450px;}
.y1b_c00144{bottom:411.420450px;}
.y1a_c00144{bottom:442.470450px;}
.y19_c00144{bottom:485.400450px;}
.y18_c00144{bottom:516.540450px;}
.y17_c00144{bottom:547.590450px;}
.y16_c00144{bottom:578.640450px;}
.y15_c00144{bottom:609.690450px;}
.y14_c00144{bottom:652.620450px;}
.y13_c00144{bottom:683.760450px;}
.y12_c00144{bottom:714.810450px;}
.y11_c00144{bottom:745.860450px;}
.y10_c00144{bottom:776.910450px;}
.yf_c00144{bottom:807.960450px;}
.ye_c00144{bottom:839.010450px;}
.yd_c00144{bottom:870.060450px;}
.yc_c00144{bottom:913.080450px;}
.yb_c00144{bottom:944.220450px;}
.ya_c00144{bottom:975.180450px;}
.y9_c00144{bottom:1006.230450px;}
.y8_c00144{bottom:1049.250450px;}
.y7_c00144{bottom:1080.390450px;}
.y6_c00144{bottom:1111.440450px;}
.y3_c00144{bottom:1132.140450px;}
.y2_c00144{bottom:1165.441023px;}
.y1_c00144{bottom:1196.040600px;}
.h1_c00144{height:52.898555px;}
.h2_c00144{height:63.175781px;}
.h0_c00144{height:1263.000000px;}
.w1_c00144{width:892.500000px;}
.w0_c00144{width:892.830000px;}
.x0_c00144{left:0.000000px;}
.x1_c00144{left:127.620000px;}
.x2_c00144{left:738.450000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.lsc_c00144{letter-spacing:-0.090848pt;}
.ls13_c00144{letter-spacing:-0.089600pt;}
.lsf_c00144{letter-spacing:-0.038400pt;}
.ls10_c00144{letter-spacing:-0.025600pt;}
.ls12_c00144{letter-spacing:-0.019200pt;}
.ls11_c00144{letter-spacing:-0.012800pt;}
.lse_c00144{letter-spacing:-0.006400pt;}
.lsd_c00144{letter-spacing:0.000000pt;}
.ls5_c00144{letter-spacing:0.006400pt;}
.ls2_c00144{letter-spacing:0.012800pt;}
.ls3_c00144{letter-spacing:0.019200pt;}
.lsa_c00144{letter-spacing:0.025600pt;}
.ls0_c00144{letter-spacing:0.032000pt;}
.ls7_c00144{letter-spacing:0.038400pt;}
.ls6_c00144{letter-spacing:0.044800pt;}
.ls9_c00144{letter-spacing:0.051200pt;}
.ls8_c00144{letter-spacing:0.057600pt;}
.ls4_c00144{letter-spacing:0.064000pt;}
.lsb_c00144{letter-spacing:0.083200pt;}
.ls1_c00144{letter-spacing:0.089600pt;}
.ws1_c00144{word-spacing:0.000000pt;}
.ws0_c00144{word-spacing:0.171008pt;}
._b_c00144{margin-left:-4.550400pt;}
._a_c00144{margin-left:-3.539200pt;}
._6_c00144{margin-left:-2.361600pt;}
._2_c00144{margin-left:-1.094400pt;}
._0_c00144{width:0.919168pt;}
._7_c00144{width:1.830400pt;}
._8_c00144{width:2.987264pt;}
._c_c00144{width:4.142336pt;}
._3_c00144{width:5.369600pt;}
._1_c00144{width:6.368000pt;}
._9_c00144{width:8.262400pt;}
._12_c00144{width:9.152000pt;}
._11_c00144{width:10.112000pt;}
._d_c00144{width:15.129600pt;}
._e_c00144{width:16.972800pt;}
._5_c00144{width:21.497600pt;}
._4_c00144{width:22.387200pt;}
._f_c00144{width:32.115200pt;}
._10_c00144{width:33.139200pt;}
.fs0_c00144{font-size:53.440000pt;}
.fs1_c00144{font-size:64.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y5_c00144{bottom:50.987067pt;}
.y4_c00144{bottom:69.387067pt;}
.y23_c00144{bottom:144.907067pt;}
.y22_c00144{bottom:172.507067pt;}
.y21_c00144{bottom:200.107067pt;}
.y20_c00144{bottom:227.707067pt;}
.y1f_c00144{bottom:255.307067pt;}
.y1e_c00144{bottom:282.907067pt;}
.y1d_c00144{bottom:310.507067pt;}
.y1c_c00144{bottom:338.107067pt;}
.y1b_c00144{bottom:365.707067pt;}
.y1a_c00144{bottom:393.307067pt;}
.y19_c00144{bottom:431.467067pt;}
.y18_c00144{bottom:459.147067pt;}
.y17_c00144{bottom:486.747067pt;}
.y16_c00144{bottom:514.347067pt;}
.y15_c00144{bottom:541.947067pt;}
.y14_c00144{bottom:580.107067pt;}
.y13_c00144{bottom:607.787067pt;}
.y12_c00144{bottom:635.387067pt;}
.y11_c00144{bottom:662.987067pt;}
.y10_c00144{bottom:690.587067pt;}
.yf_c00144{bottom:718.187067pt;}
.ye_c00144{bottom:745.787067pt;}
.yd_c00144{bottom:773.387067pt;}
.yc_c00144{bottom:811.627067pt;}
.yb_c00144{bottom:839.307067pt;}
.ya_c00144{bottom:866.827067pt;}
.y9_c00144{bottom:894.427067pt;}
.y8_c00144{bottom:932.667067pt;}
.y7_c00144{bottom:960.347067pt;}
.y6_c00144{bottom:987.947067pt;}
.y3_c00144{bottom:1006.347067pt;}
.y2_c00144{bottom:1035.947576pt;}
.y1_c00144{bottom:1063.147200pt;}
.h1_c00144{height:47.020937pt;}
.h2_c00144{height:56.156250pt;}
.h0_c00144{height:1122.666667pt;}
.w1_c00144{width:793.333333pt;}
.w0_c00144{width:793.626667pt;}
.x0_c00144{left:0.000000pt;}
.x1_c00144{left:113.440000pt;}
.x2_c00144{left:656.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_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_751b1ed2e7443c2f90f72329.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.095703;font-style:normal;font-weight:normal;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_e61311c4e0a81161b4916920.woff2')format("woff");}.ff2_c00145{font-family:ff2_c00145;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00145{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls16_c00145{letter-spacing:-0.079200px;}
.ls17_c00145{letter-spacing:-0.072000px;}
.ls12_c00145{letter-spacing:-0.057600px;}
.lsf_c00145{letter-spacing:-0.048096px;}
.ls13_c00145{letter-spacing:-0.043200px;}
.ls15_c00145{letter-spacing:-0.036000px;}
.ls14_c00145{letter-spacing:-0.028800px;}
.ls19_c00145{letter-spacing:-0.021600px;}
.ls1a_c00145{letter-spacing:-0.014400px;}
.ls11_c00145{letter-spacing:-0.007200px;}
.ls10_c00145{letter-spacing:0.000000px;}
.ls18_c00145{letter-spacing:0.007200px;}
.ls4_c00145{letter-spacing:0.014400px;}
.ls5_c00145{letter-spacing:0.021600px;}
.ls1_c00145{letter-spacing:0.028800px;}
.ls2_c00145{letter-spacing:0.036000px;}
.ls0_c00145{letter-spacing:0.043200px;}
.lsa_c00145{letter-spacing:0.050400px;}
.lsd_c00145{letter-spacing:0.057600px;}
.ls6_c00145{letter-spacing:0.064800px;}
.ls3_c00145{letter-spacing:0.072000px;}
.lse_c00145{letter-spacing:0.086400px;}
.ls7_c00145{letter-spacing:0.093600px;}
.ls9_c00145{letter-spacing:0.100800px;}
.lsc_c00145{letter-spacing:0.115200px;}
.lsb_c00145{letter-spacing:0.136800px;}
.ls8_c00145{letter-spacing:0.144000px;}
.ls1b_c00145{letter-spacing:5.760000px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00145{word-spacing:-18.072000px;}
.wse_c00145{word-spacing:-1.166400px;}
.ws2_c00145{word-spacing:0.000000px;}
.ws1_c00145{word-spacing:0.138276px;}
.wsa_c00145{word-spacing:0.230400px;}
.wsb_c00145{word-spacing:0.345600px;}
.wsd_c00145{word-spacing:3.585600px;}
.ws6_c00145{word-spacing:6.033600px;}
.ws8_c00145{word-spacing:6.048000px;}
.ws9_c00145{word-spacing:6.055200px;}
.ws5_c00145{word-spacing:6.148800px;}
.ws7_c00145{word-spacing:6.199200px;}
.ws3_c00145{word-spacing:6.897600px;}
.wsc_c00145{word-spacing:12.837600px;}
.ws4_c00145{word-spacing:17.618400px;}
._d_c00145{margin-left:-5.961600px;}
._b_c00145{margin-left:-4.305600px;}
._a_c00145{margin-left:-3.254400px;}
._0_c00145{margin-left:-1.123200px;}
._4_c00145{width:1.915200px;}
._3_c00145{width:3.196800px;}
._9_c00145{width:4.204800px;}
._c_c00145{width:5.788800px;}
._2_c00145{width:6.804000px;}
._1_c00145{width:7.884000px;}
._8_c00145{width:12.448800px;}
._7_c00145{width:14.083200px;}
._6_c00145{width:15.091200px;}
._5_c00145{width:16.545600px;}
.fc0_c00145{color:rgb(0,0,0);}
.fs0_c00145{font-size:60.120000px;}
.fs1_c00145{font-size:72.000000px;}
.y0_c00145{bottom:0.000000px;}
.y6_c00145{bottom:57.360450px;}
.y5_c00145{bottom:78.060450px;}
.y24_c00145{bottom:163.920450px;}
.y23_c00145{bottom:195.060450px;}
.y22_c00145{bottom:226.110450px;}
.y21_c00145{bottom:257.070450px;}
.y20_c00145{bottom:288.120450px;}
.y1f_c00145{bottom:319.170450px;}
.y1e_c00145{bottom:362.190450px;}
.y1d_c00145{bottom:393.330450px;}
.y1c_c00145{bottom:424.380450px;}
.y1b_c00145{bottom:455.430450px;}
.y1a_c00145{bottom:486.480450px;}
.y19_c00145{bottom:517.530450px;}
.y18_c00145{bottom:560.460450px;}
.y17_c00145{bottom:591.600450px;}
.y16_c00145{bottom:622.650450px;}
.y15_c00145{bottom:653.610450px;}
.y14_c00145{bottom:684.660450px;}
.y13_c00145{bottom:715.800450px;}
.y12_c00145{bottom:758.730450px;}
.y11_c00145{bottom:789.870450px;}
.y10_c00145{bottom:820.920450px;}
.yf_c00145{bottom:851.970450px;}
.ye_c00145{bottom:894.900450px;}
.yd_c00145{bottom:926.040450px;}
.yc_c00145{bottom:957.090450px;}
.yb_c00145{bottom:988.140450px;}
.ya_c00145{bottom:1019.190450px;}
.y9_c00145{bottom:1050.240450px;}
.y8_c00145{bottom:1093.170450px;}
.y7_c00145{bottom:1124.310450px;}
.y4_c00145{bottom:1144.380657px;}
.y3_c00145{bottom:1161.660648px;}
.y2_c00145{bottom:1178.850459px;}
.y1_c00145{bottom:1196.130450px;}
.h1_c00145{height:52.898555px;}
.h2_c00145{height:63.175781px;}
.h3_c00145{height:63.351562px;}
.h0_c00145{height:1263.000000px;}
.w1_c00145{width:892.500000px;}
.w0_c00145{width:892.830000px;}
.x0_c00145{left:0.000000px;}
.x4_c00145{left:127.620000px;}
.x1_c00145{left:649.620000px;}
.x3_c00145{left:738.450000px;}
.x2_c00145{left:765.450198px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls16_c00145{letter-spacing:-0.070400pt;}
.ls17_c00145{letter-spacing:-0.064000pt;}
.ls12_c00145{letter-spacing:-0.051200pt;}
.lsf_c00145{letter-spacing:-0.042752pt;}
.ls13_c00145{letter-spacing:-0.038400pt;}
.ls15_c00145{letter-spacing:-0.032000pt;}
.ls14_c00145{letter-spacing:-0.025600pt;}
.ls19_c00145{letter-spacing:-0.019200pt;}
.ls1a_c00145{letter-spacing:-0.012800pt;}
.ls11_c00145{letter-spacing:-0.006400pt;}
.ls10_c00145{letter-spacing:0.000000pt;}
.ls18_c00145{letter-spacing:0.006400pt;}
.ls4_c00145{letter-spacing:0.012800pt;}
.ls5_c00145{letter-spacing:0.019200pt;}
.ls1_c00145{letter-spacing:0.025600pt;}
.ls2_c00145{letter-spacing:0.032000pt;}
.ls0_c00145{letter-spacing:0.038400pt;}
.lsa_c00145{letter-spacing:0.044800pt;}
.lsd_c00145{letter-spacing:0.051200pt;}
.ls6_c00145{letter-spacing:0.057600pt;}
.ls3_c00145{letter-spacing:0.064000pt;}
.lse_c00145{letter-spacing:0.076800pt;}
.ls7_c00145{letter-spacing:0.083200pt;}
.ls9_c00145{letter-spacing:0.089600pt;}
.lsc_c00145{letter-spacing:0.102400pt;}
.lsb_c00145{letter-spacing:0.121600pt;}
.ls8_c00145{letter-spacing:0.128000pt;}
.ls1b_c00145{letter-spacing:5.120000pt;}
.ws0_c00145{word-spacing:-16.064000pt;}
.wse_c00145{word-spacing:-1.036800pt;}
.ws2_c00145{word-spacing:0.000000pt;}
.ws1_c00145{word-spacing:0.122912pt;}
.wsa_c00145{word-spacing:0.204800pt;}
.wsb_c00145{word-spacing:0.307200pt;}
.wsd_c00145{word-spacing:3.187200pt;}
.ws6_c00145{word-spacing:5.363200pt;}
.ws8_c00145{word-spacing:5.376000pt;}
.ws9_c00145{word-spacing:5.382400pt;}
.ws5_c00145{word-spacing:5.465600pt;}
.ws7_c00145{word-spacing:5.510400pt;}
.ws3_c00145{word-spacing:6.131200pt;}
.wsc_c00145{word-spacing:11.411200pt;}
.ws4_c00145{word-spacing:15.660800pt;}
._d_c00145{margin-left:-5.299200pt;}
._b_c00145{margin-left:-3.827200pt;}
._a_c00145{margin-left:-2.892800pt;}
._0_c00145{margin-left:-0.998400pt;}
._4_c00145{width:1.702400pt;}
._3_c00145{width:2.841600pt;}
._9_c00145{width:3.737600pt;}
._c_c00145{width:5.145600pt;}
._2_c00145{width:6.048000pt;}
._1_c00145{width:7.008000pt;}
._8_c00145{width:11.065600pt;}
._7_c00145{width:12.518400pt;}
._6_c00145{width:13.414400pt;}
._5_c00145{width:14.707200pt;}
.fs0_c00145{font-size:53.440000pt;}
.fs1_c00145{font-size:64.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y6_c00145{bottom:50.987067pt;}
.y5_c00145{bottom:69.387067pt;}
.y24_c00145{bottom:145.707067pt;}
.y23_c00145{bottom:173.387067pt;}
.y22_c00145{bottom:200.987067pt;}
.y21_c00145{bottom:228.507067pt;}
.y20_c00145{bottom:256.107067pt;}
.y1f_c00145{bottom:283.707067pt;}
.y1e_c00145{bottom:321.947067pt;}
.y1d_c00145{bottom:349.627067pt;}
.y1c_c00145{bottom:377.227067pt;}
.y1b_c00145{bottom:404.827067pt;}
.y1a_c00145{bottom:432.427067pt;}
.y19_c00145{bottom:460.027067pt;}
.y18_c00145{bottom:498.187067pt;}
.y17_c00145{bottom:525.867067pt;}
.y16_c00145{bottom:553.467067pt;}
.y15_c00145{bottom:580.987067pt;}
.y14_c00145{bottom:608.587067pt;}
.y13_c00145{bottom:636.267067pt;}
.y12_c00145{bottom:674.427067pt;}
.y11_c00145{bottom:702.107067pt;}
.y10_c00145{bottom:729.707067pt;}
.yf_c00145{bottom:757.307067pt;}
.ye_c00145{bottom:795.467067pt;}
.yd_c00145{bottom:823.147067pt;}
.yc_c00145{bottom:850.747067pt;}
.yb_c00145{bottom:878.347067pt;}
.ya_c00145{bottom:905.947067pt;}
.y9_c00145{bottom:933.547067pt;}
.y8_c00145{bottom:971.707067pt;}
.y7_c00145{bottom:999.387067pt;}
.y4_c00145{bottom:1017.227251pt;}
.y3_c00145{bottom:1032.587243pt;}
.y2_c00145{bottom:1047.867075pt;}
.y1_c00145{bottom:1063.227067pt;}
.h1_c00145{height:47.020937pt;}
.h2_c00145{height:56.156250pt;}
.h3_c00145{height:56.312500pt;}
.h0_c00145{height:1122.666667pt;}
.w1_c00145{width:793.333333pt;}
.w0_c00145{width:793.626667pt;}
.x0_c00145{left:0.000000pt;}
.x4_c00145{left:113.440000pt;}
.x1_c00145{left:577.440000pt;}
.x3_c00145{left:656.400000pt;}
.x2_c00145{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ce77ba40ca4cb7ea9c72284.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.095703;font-style:normal;font-weight:normal;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_c918dd69aa6ff8452f275c72.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.093262;font-style: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;}
.ls16_c00146{letter-spacing:-0.360000px;}
.lsf_c00146{letter-spacing:-0.102204px;}
.ls13_c00146{letter-spacing:-0.036000px;}
.ls12_c00146{letter-spacing:-0.021600px;}
.ls14_c00146{letter-spacing:-0.014400px;}
.ls11_c00146{letter-spacing:-0.007200px;}
.ls10_c00146{letter-spacing:0.000000px;}
.ls8_c00146{letter-spacing:0.007200px;}
.ls5_c00146{letter-spacing:0.014400px;}
.ls9_c00146{letter-spacing:0.021600px;}
.ls2_c00146{letter-spacing:0.028800px;}
.ls3_c00146{letter-spacing:0.036000px;}
.lsa_c00146{letter-spacing:0.043200px;}
.ls7_c00146{letter-spacing:0.050400px;}
.ls4_c00146{letter-spacing:0.057600px;}
.lsb_c00146{letter-spacing:0.064800px;}
.ls1_c00146{letter-spacing:0.072000px;}
.lse_c00146{letter-spacing:0.079200px;}
.ls0_c00146{letter-spacing:0.086400px;}
.ls6_c00146{letter-spacing:0.093600px;}
.lsd_c00146{letter-spacing:0.100800px;}
.lsc_c00146{letter-spacing:0.129600px;}
.ls15_c00146{letter-spacing:8.928000px;}
.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;}
}
.ws5_c00146{word-spacing:-4.032000px;}
.wsa_c00146{word-spacing:-0.057600px;}
.ws8_c00146{word-spacing:-0.007200px;}
.ws1_c00146{word-spacing:0.000000px;}
.ws3_c00146{word-spacing:0.007200px;}
.ws4_c00146{word-spacing:0.093600px;}
.ws0_c00146{word-spacing:0.192384px;}
.ws9_c00146{word-spacing:0.316800px;}
.ws6_c00146{word-spacing:0.604800px;}
.ws7_c00146{word-spacing:0.626400px;}
.ws2_c00146{word-spacing:5.774400px;}
.wsb_c00146{word-spacing:7.509600px;}
._c_c00146{margin-left:-9.619200px;}
._b_c00146{margin-left:-8.611200px;}
._3_c00146{margin-left:-4.348800px;}
._4_c00146{margin-left:-2.930400px;}
._1_c00146{margin-left:-1.454400px;}
._0_c00146{width:1.034064px;}
._6_c00146{width:3.031200px;}
._5_c00146{width:4.298400px;}
._9_c00146{width:5.781600px;}
._d_c00146{width:7.480800px;}
._a_c00146{width:8.985600px;}
._8_c00146{width:10.144800px;}
._7_c00146{width:11.152800px;}
._2_c00146{width:14.364000px;}
.fc2_c00146{color:rgb(255,0,0);}
.fc1_c00146{color:rgb(0,0,0);}
.fc0_c00146{color:rgb(32,31,30);}
.fs0_c00146{font-size:60.120000px;}
.fs1_c00146{font-size:72.000000px;}
.y0_c00146{bottom:0.000000px;}
.y5_c00146{bottom:57.360450px;}
.y4_c00146{bottom:78.060450px;}
.y24_c00146{bottom:131.070450px;}
.y23_c00146{bottom:162.210450px;}
.y22_c00146{bottom:193.260450px;}
.y21_c00146{bottom:236.190450px;}
.y20_c00146{bottom:267.330450px;}
.y1f_c00146{bottom:298.380450px;}
.y1e_c00146{bottom:329.430450px;}
.y1d_c00146{bottom:372.360450px;}
.y1c_c00146{bottom:403.500450px;}
.y1b_c00146{bottom:434.550450px;}
.y1a_c00146{bottom:465.600450px;}
.y19_c00146{bottom:496.650450px;}
.y18_c00146{bottom:530.850450px;}
.y17_c00146{bottom:553.170450px;}
.y16_c00146{bottom:578.550450px;}
.y15_c00146{bottom:621.570450px;}
.y14_c00146{bottom:652.710450px;}
.y13_c00146{bottom:683.760450px;}
.y12_c00146{bottom:726.780450px;}
.y11_c00146{bottom:757.920450px;}
.y10_c00146{bottom:788.970450px;}
.yf_c00146{bottom:820.020450px;}
.ye_c00146{bottom:851.070450px;}
.yd_c00146{bottom:882.120450px;}
.yc_c00146{bottom:913.170450px;}
.yb_c00146{bottom:956.100450px;}
.ya_c00146{bottom:987.240450px;}
.y9_c00146{bottom:1018.290450px;}
.y8_c00146{bottom:1049.340450px;}
.y7_c00146{bottom:1080.390450px;}
.y6_c00146{bottom:1111.440450px;}
.y3_c00146{bottom:1132.140450px;}
.y2_c00146{bottom:1165.441023px;}
.y1_c00146{bottom:1196.040600px;}
.h1_c00146{height:52.898555px;}
.h2_c00146{height:63.175781px;}
.h3_c00146{height:63.351562px;}
.h0_c00146{height:1263.000000px;}
.w1_c00146{width:892.500000px;}
.w0_c00146{width:892.830000px;}
.x0_c00146{left:0.000000px;}
.x1_c00146{left:127.620000px;}
.x2_c00146{left:738.450000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls16_c00146{letter-spacing:-0.320000pt;}
.lsf_c00146{letter-spacing:-0.090848pt;}
.ls13_c00146{letter-spacing:-0.032000pt;}
.ls12_c00146{letter-spacing:-0.019200pt;}
.ls14_c00146{letter-spacing:-0.012800pt;}
.ls11_c00146{letter-spacing:-0.006400pt;}
.ls10_c00146{letter-spacing:0.000000pt;}
.ls8_c00146{letter-spacing:0.006400pt;}
.ls5_c00146{letter-spacing:0.012800pt;}
.ls9_c00146{letter-spacing:0.019200pt;}
.ls2_c00146{letter-spacing:0.025600pt;}
.ls3_c00146{letter-spacing:0.032000pt;}
.lsa_c00146{letter-spacing:0.038400pt;}
.ls7_c00146{letter-spacing:0.044800pt;}
.ls4_c00146{letter-spacing:0.051200pt;}
.lsb_c00146{letter-spacing:0.057600pt;}
.ls1_c00146{letter-spacing:0.064000pt;}
.lse_c00146{letter-spacing:0.070400pt;}
.ls0_c00146{letter-spacing:0.076800pt;}
.ls6_c00146{letter-spacing:0.083200pt;}
.lsd_c00146{letter-spacing:0.089600pt;}
.lsc_c00146{letter-spacing:0.115200pt;}
.ls15_c00146{letter-spacing:7.936000pt;}
.ws5_c00146{word-spacing:-3.584000pt;}
.wsa_c00146{word-spacing:-0.051200pt;}
.ws8_c00146{word-spacing:-0.006400pt;}
.ws1_c00146{word-spacing:0.000000pt;}
.ws3_c00146{word-spacing:0.006400pt;}
.ws4_c00146{word-spacing:0.083200pt;}
.ws0_c00146{word-spacing:0.171008pt;}
.ws9_c00146{word-spacing:0.281600pt;}
.ws6_c00146{word-spacing:0.537600pt;}
.ws7_c00146{word-spacing:0.556800pt;}
.ws2_c00146{word-spacing:5.132800pt;}
.wsb_c00146{word-spacing:6.675200pt;}
._c_c00146{margin-left:-8.550400pt;}
._b_c00146{margin-left:-7.654400pt;}
._3_c00146{margin-left:-3.865600pt;}
._4_c00146{margin-left:-2.604800pt;}
._1_c00146{margin-left:-1.292800pt;}
._0_c00146{width:0.919168pt;}
._6_c00146{width:2.694400pt;}
._5_c00146{width:3.820800pt;}
._9_c00146{width:5.139200pt;}
._d_c00146{width:6.649600pt;}
._a_c00146{width:7.987200pt;}
._8_c00146{width:9.017600pt;}
._7_c00146{width:9.913600pt;}
._2_c00146{width:12.768000pt;}
.fs0_c00146{font-size:53.440000pt;}
.fs1_c00146{font-size:64.000000pt;}
.y0_c00146{bottom:0.000000pt;}
.y5_c00146{bottom:50.987067pt;}
.y4_c00146{bottom:69.387067pt;}
.y24_c00146{bottom:116.507067pt;}
.y23_c00146{bottom:144.187067pt;}
.y22_c00146{bottom:171.787067pt;}
.y21_c00146{bottom:209.947067pt;}
.y20_c00146{bottom:237.627067pt;}
.y1f_c00146{bottom:265.227067pt;}
.y1e_c00146{bottom:292.827067pt;}
.y1d_c00146{bottom:330.987067pt;}
.y1c_c00146{bottom:358.667067pt;}
.y1b_c00146{bottom:386.267067pt;}
.y1a_c00146{bottom:413.867067pt;}
.y19_c00146{bottom:441.467067pt;}
.y18_c00146{bottom:471.867067pt;}
.y17_c00146{bottom:491.707067pt;}
.y16_c00146{bottom:514.267067pt;}
.y15_c00146{bottom:552.507067pt;}
.y14_c00146{bottom:580.187067pt;}
.y13_c00146{bottom:607.787067pt;}
.y12_c00146{bottom:646.027067pt;}
.y11_c00146{bottom:673.707067pt;}
.y10_c00146{bottom:701.307067pt;}
.yf_c00146{bottom:728.907067pt;}
.ye_c00146{bottom:756.507067pt;}
.yd_c00146{bottom:784.107067pt;}
.yc_c00146{bottom:811.707067pt;}
.yb_c00146{bottom:849.867067pt;}
.ya_c00146{bottom:877.547067pt;}
.y9_c00146{bottom:905.147067pt;}
.y8_c00146{bottom:932.747067pt;}
.y7_c00146{bottom:960.347067pt;}
.y6_c00146{bottom:987.947067pt;}
.y3_c00146{bottom:1006.347067pt;}
.y2_c00146{bottom:1035.947576pt;}
.y1_c00146{bottom:1063.147200pt;}
.h1_c00146{height:47.020937pt;}
.h2_c00146{height:56.156250pt;}
.h3_c00146{height:56.312500pt;}
.h0_c00146{height:1122.666667pt;}
.w1_c00146{width:793.333333pt;}
.w0_c00146{width:793.626667pt;}
.x0_c00146{left:0.000000pt;}
.x1_c00146{left:113.440000pt;}
.x2_c00146{left:656.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_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_2e699d44fc3682ac6963f2b3.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.095703;font-style:normal;font-weight:normal;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_635ac313f9d0e1142bcb5941.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00147{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls12_c00147{letter-spacing:-0.050400px;}
.lsd_c00147{letter-spacing:-0.048096px;}
.ls14_c00147{letter-spacing:-0.028800px;}
.ls10_c00147{letter-spacing:-0.021600px;}
.ls11_c00147{letter-spacing:-0.014400px;}
.lsf_c00147{letter-spacing:-0.007200px;}
.lse_c00147{letter-spacing:0.000000px;}
.ls2_c00147{letter-spacing:0.007200px;}
.ls5_c00147{letter-spacing:0.014400px;}
.ls9_c00147{letter-spacing:0.021600px;}
.ls0_c00147{letter-spacing:0.028800px;}
.lsa_c00147{letter-spacing:0.036000px;}
.lsb_c00147{letter-spacing:0.043200px;}
.ls1_c00147{letter-spacing:0.050400px;}
.ls3_c00147{letter-spacing:0.057600px;}
.lsc_c00147{letter-spacing:0.064800px;}
.ls4_c00147{letter-spacing:0.072000px;}
.ls6_c00147{letter-spacing:0.079200px;}
.ls8_c00147{letter-spacing:0.108000px;}
.ls7_c00147{letter-spacing:0.201600px;}
.ls13_c00147{letter-spacing:2.793600px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00147{word-spacing:-1.216800px;}
.ws5_c00147{word-spacing:-0.799200px;}
.ws6_c00147{word-spacing:-0.748800px;}
.ws1_c00147{word-spacing:0.000000px;}
.ws0_c00147{word-spacing:0.138276px;}
.ws8_c00147{word-spacing:5.040000px;}
.ws7_c00147{word-spacing:5.774400px;}
.ws4_c00147{word-spacing:14.054400px;}
.ws3_c00147{word-spacing:14.061600px;}
._3_c00147{margin-left:-3.614400px;}
._9_c00147{margin-left:-2.448000px;}
._0_c00147{margin-left:-1.108800px;}
._1_c00147{width:1.432800px;}
._7_c00147{width:2.844000px;}
._6_c00147{width:4.485600px;}
._5_c00147{width:5.724000px;}
._a_c00147{width:7.560000px;}
._2_c00147{width:11.152800px;}
._8_c00147{width:12.931200px;}
._4_c00147{width:14.047200px;}
._b_c00147{width:28.756800px;}
.fc0_c00147{color:rgb(0,0,0);}
.fs0_c00147{font-size:60.120000px;}
.fs1_c00147{font-size:72.000000px;}
.y0_c00147{bottom:0.000000px;}
.y6_c00147{bottom:57.360450px;}
.y5_c00147{bottom:78.060450px;}
.y26_c00147{bottom:113.790450px;}
.y25_c00147{bottom:144.930450px;}
.y24_c00147{bottom:175.980450px;}
.y23_c00147{bottom:207.030450px;}
.y22_c00147{bottom:238.080450px;}
.y21_c00147{bottom:281.010450px;}
.y20_c00147{bottom:312.150450px;}
.y1f_c00147{bottom:343.200450px;}
.y1e_c00147{bottom:374.250450px;}
.y1d_c00147{bottom:405.300450px;}
.y1c_c00147{bottom:436.350450px;}
.y1b_c00147{bottom:479.280450px;}
.y1a_c00147{bottom:510.420450px;}
.y19_c00147{bottom:541.470450px;}
.y18_c00147{bottom:572.520450px;}
.y17_c00147{bottom:603.570450px;}
.y16_c00147{bottom:634.620450px;}
.y15_c00147{bottom:665.670450px;}
.y14_c00147{bottom:696.720450px;}
.y13_c00147{bottom:739.650450px;}
.y12_c00147{bottom:770.790450px;}
.y11_c00147{bottom:801.840450px;}
.y10_c00147{bottom:832.890450px;}
.yf_c00147{bottom:863.940450px;}
.ye_c00147{bottom:894.990450px;}
.yd_c00147{bottom:925.950450px;}
.yc_c00147{bottom:957.090450px;}
.yb_c00147{bottom:988.140450px;}
.ya_c00147{bottom:1031.070450px;}
.y9_c00147{bottom:1062.210450px;}
.y8_c00147{bottom:1093.260450px;}
.y7_c00147{bottom:1124.310450px;}
.y4_c00147{bottom:1144.380657px;}
.y3_c00147{bottom:1161.660648px;}
.y2_c00147{bottom:1178.850459px;}
.y1_c00147{bottom:1196.130450px;}
.h1_c00147{height:52.898555px;}
.h2_c00147{height:63.175781px;}
.h3_c00147{height:63.351562px;}
.h0_c00147{height:1263.000000px;}
.w1_c00147{width:892.500000px;}
.w0_c00147{width:892.830000px;}
.x0_c00147{left:0.000000px;}
.x4_c00147{left:127.620000px;}
.x1_c00147{left:649.620000px;}
.x3_c00147{left:738.450000px;}
.x2_c00147{left:765.450198px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls12_c00147{letter-spacing:-0.044800pt;}
.lsd_c00147{letter-spacing:-0.042752pt;}
.ls14_c00147{letter-spacing:-0.025600pt;}
.ls10_c00147{letter-spacing:-0.019200pt;}
.ls11_c00147{letter-spacing:-0.012800pt;}
.lsf_c00147{letter-spacing:-0.006400pt;}
.lse_c00147{letter-spacing:0.000000pt;}
.ls2_c00147{letter-spacing:0.006400pt;}
.ls5_c00147{letter-spacing:0.012800pt;}
.ls9_c00147{letter-spacing:0.019200pt;}
.ls0_c00147{letter-spacing:0.025600pt;}
.lsa_c00147{letter-spacing:0.032000pt;}
.lsb_c00147{letter-spacing:0.038400pt;}
.ls1_c00147{letter-spacing:0.044800pt;}
.ls3_c00147{letter-spacing:0.051200pt;}
.lsc_c00147{letter-spacing:0.057600pt;}
.ls4_c00147{letter-spacing:0.064000pt;}
.ls6_c00147{letter-spacing:0.070400pt;}
.ls8_c00147{letter-spacing:0.096000pt;}
.ls7_c00147{letter-spacing:0.179200pt;}
.ls13_c00147{letter-spacing:2.483200pt;}
.ws2_c00147{word-spacing:-1.081600pt;}
.ws5_c00147{word-spacing:-0.710400pt;}
.ws6_c00147{word-spacing:-0.665600pt;}
.ws1_c00147{word-spacing:0.000000pt;}
.ws0_c00147{word-spacing:0.122912pt;}
.ws8_c00147{word-spacing:4.480000pt;}
.ws7_c00147{word-spacing:5.132800pt;}
.ws4_c00147{word-spacing:12.492800pt;}
.ws3_c00147{word-spacing:12.499200pt;}
._3_c00147{margin-left:-3.212800pt;}
._9_c00147{margin-left:-2.176000pt;}
._0_c00147{margin-left:-0.985600pt;}
._1_c00147{width:1.273600pt;}
._7_c00147{width:2.528000pt;}
._6_c00147{width:3.987200pt;}
._5_c00147{width:5.088000pt;}
._a_c00147{width:6.720000pt;}
._2_c00147{width:9.913600pt;}
._8_c00147{width:11.494400pt;}
._4_c00147{width:12.486400pt;}
._b_c00147{width:25.561600pt;}
.fs0_c00147{font-size:53.440000pt;}
.fs1_c00147{font-size:64.000000pt;}
.y0_c00147{bottom:0.000000pt;}
.y6_c00147{bottom:50.987067pt;}
.y5_c00147{bottom:69.387067pt;}
.y26_c00147{bottom:101.147067pt;}
.y25_c00147{bottom:128.827067pt;}
.y24_c00147{bottom:156.427067pt;}
.y23_c00147{bottom:184.027067pt;}
.y22_c00147{bottom:211.627067pt;}
.y21_c00147{bottom:249.787067pt;}
.y20_c00147{bottom:277.467067pt;}
.y1f_c00147{bottom:305.067067pt;}
.y1e_c00147{bottom:332.667067pt;}
.y1d_c00147{bottom:360.267067pt;}
.y1c_c00147{bottom:387.867067pt;}
.y1b_c00147{bottom:426.027067pt;}
.y1a_c00147{bottom:453.707067pt;}
.y19_c00147{bottom:481.307067pt;}
.y18_c00147{bottom:508.907067pt;}
.y17_c00147{bottom:536.507067pt;}
.y16_c00147{bottom:564.107067pt;}
.y15_c00147{bottom:591.707067pt;}
.y14_c00147{bottom:619.307067pt;}
.y13_c00147{bottom:657.467067pt;}
.y12_c00147{bottom:685.147067pt;}
.y11_c00147{bottom:712.747067pt;}
.y10_c00147{bottom:740.347067pt;}
.yf_c00147{bottom:767.947067pt;}
.ye_c00147{bottom:795.547067pt;}
.yd_c00147{bottom:823.067067pt;}
.yc_c00147{bottom:850.747067pt;}
.yb_c00147{bottom:878.347067pt;}
.ya_c00147{bottom:916.507067pt;}
.y9_c00147{bottom:944.187067pt;}
.y8_c00147{bottom:971.787067pt;}
.y7_c00147{bottom:999.387067pt;}
.y4_c00147{bottom:1017.227251pt;}
.y3_c00147{bottom:1032.587243pt;}
.y2_c00147{bottom:1047.867075pt;}
.y1_c00147{bottom:1063.227067pt;}
.h1_c00147{height:47.020937pt;}
.h2_c00147{height:56.156250pt;}
.h3_c00147{height:56.312500pt;}
.h0_c00147{height:1122.666667pt;}
.w1_c00147{width:793.333333pt;}
.w0_c00147{width:793.626667pt;}
.x0_c00147{left:0.000000pt;}
.x4_c00147{left:113.440000pt;}
.x1_c00147{left:577.440000pt;}
.x3_c00147{left:656.400000pt;}
.x2_c00147{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd36fa7e8c0057347038b31b.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.095703;font-style:normal;font-weight:normal;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_99e8bb6bcae2a9744c5a7a7f.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00148{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.lse_c00148{letter-spacing:-0.691200px;}
.lsa_c00148{letter-spacing:-0.102204px;}
.ls10_c00148{letter-spacing:-0.086400px;}
.lsf_c00148{letter-spacing:-0.028800px;}
.ls11_c00148{letter-spacing:-0.021600px;}
.lsc_c00148{letter-spacing:-0.014400px;}
.lsd_c00148{letter-spacing:-0.007200px;}
.lsb_c00148{letter-spacing:0.000000px;}
.ls1_c00148{letter-spacing:0.007200px;}
.ls0_c00148{letter-spacing:0.014400px;}
.ls8_c00148{letter-spacing:0.021600px;}
.ls5_c00148{letter-spacing:0.028800px;}
.ls2_c00148{letter-spacing:0.036000px;}
.ls7_c00148{letter-spacing:0.043200px;}
.ls3_c00148{letter-spacing:0.050400px;}
.ls4_c00148{letter-spacing:0.057600px;}
.ls9_c00148{letter-spacing:0.072000px;}
.ls6_c00148{letter-spacing:0.086400px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00148{word-spacing:-18.057600px;}
.ws7_c00148{word-spacing:-4.327200px;}
.ws6_c00148{word-spacing:-1.605600px;}
.ws2_c00148{word-spacing:0.000000px;}
.ws1_c00148{word-spacing:0.192384px;}
.ws5_c00148{word-spacing:0.345600px;}
.ws4_c00148{word-spacing:1.044000px;}
.ws3_c00148{word-spacing:9.352800px;}
._a_c00148{margin-left:-5.011200px;}
._b_c00148{margin-left:-4.000464px;}
._7_c00148{margin-left:-2.880000px;}
._3_c00148{margin-left:-1.015200px;}
._0_c00148{width:1.034064px;}
._1_c00148{width:2.505600px;}
._8_c00148{width:4.017600px;}
._9_c00148{width:5.738400px;}
._d_c00148{width:8.236800px;}
._2_c00148{width:9.345600px;}
._6_c00148{width:10.764000px;}
._c_c00148{width:11.966400px;}
._5_c00148{width:12.974400px;}
._4_c00148{width:14.025600px;}
.fc1_c00148{color:rgb(0,0,0);}
.fc0_c00148{color:rgb(32,31,30);}
.fs0_c00148{font-size:60.120000px;}
.fs1_c00148{font-size:72.000000px;}
.y0_c00148{bottom:0.000000px;}
.y5_c00148{bottom:57.360450px;}
.y4_c00148{bottom:78.060450px;}
.y24_c00148{bottom:131.970450px;}
.y23_c00148{bottom:163.020450px;}
.y22_c00148{bottom:194.070450px;}
.y21_c00148{bottom:225.120450px;}
.y20_c00148{bottom:256.170450px;}
.y1f_c00148{bottom:287.220450px;}
.y1e_c00148{bottom:330.150450px;}
.y1d_c00148{bottom:361.290450px;}
.y1c_c00148{bottom:392.340450px;}
.y1b_c00148{bottom:423.390450px;}
.y1a_c00148{bottom:454.440450px;}
.y19_c00148{bottom:485.490450px;}
.y18_c00148{bottom:528.510450px;}
.y17_c00148{bottom:559.650450px;}
.y16_c00148{bottom:590.700450px;}
.y15_c00148{bottom:621.660450px;}
.y14_c00148{bottom:652.710450px;}
.y13_c00148{bottom:683.760450px;}
.y12_c00148{bottom:714.810450px;}
.y11_c00148{bottom:757.830450px;}
.y10_c00148{bottom:788.970450px;}
.yf_c00148{bottom:820.020450px;}
.ye_c00148{bottom:851.070450px;}
.yd_c00148{bottom:894.000450px;}
.yc_c00148{bottom:925.140450px;}
.yb_c00148{bottom:956.190450px;}
.ya_c00148{bottom:987.240450px;}
.y9_c00148{bottom:1018.290450px;}
.y8_c00148{bottom:1049.340450px;}
.y7_c00148{bottom:1080.390450px;}
.y6_c00148{bottom:1111.440450px;}
.y3_c00148{bottom:1132.140450px;}
.y2_c00148{bottom:1165.441023px;}
.y1_c00148{bottom:1196.040600px;}
.h1_c00148{height:52.898555px;}
.h2_c00148{height:63.175781px;}
.h3_c00148{height:63.351562px;}
.h0_c00148{height:1263.000000px;}
.w1_c00148{width:892.500000px;}
.w0_c00148{width:892.830000px;}
.x0_c00148{left:0.000000px;}
.x1_c00148{left:127.620000px;}
.x2_c00148{left:738.450000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.lse_c00148{letter-spacing:-0.614400pt;}
.lsa_c00148{letter-spacing:-0.090848pt;}
.ls10_c00148{letter-spacing:-0.076800pt;}
.lsf_c00148{letter-spacing:-0.025600pt;}
.ls11_c00148{letter-spacing:-0.019200pt;}
.lsc_c00148{letter-spacing:-0.012800pt;}
.lsd_c00148{letter-spacing:-0.006400pt;}
.lsb_c00148{letter-spacing:0.000000pt;}
.ls1_c00148{letter-spacing:0.006400pt;}
.ls0_c00148{letter-spacing:0.012800pt;}
.ls8_c00148{letter-spacing:0.019200pt;}
.ls5_c00148{letter-spacing:0.025600pt;}
.ls2_c00148{letter-spacing:0.032000pt;}
.ls7_c00148{letter-spacing:0.038400pt;}
.ls3_c00148{letter-spacing:0.044800pt;}
.ls4_c00148{letter-spacing:0.051200pt;}
.ls9_c00148{letter-spacing:0.064000pt;}
.ls6_c00148{letter-spacing:0.076800pt;}
.ws0_c00148{word-spacing:-16.051200pt;}
.ws7_c00148{word-spacing:-3.846400pt;}
.ws6_c00148{word-spacing:-1.427200pt;}
.ws2_c00148{word-spacing:0.000000pt;}
.ws1_c00148{word-spacing:0.171008pt;}
.ws5_c00148{word-spacing:0.307200pt;}
.ws4_c00148{word-spacing:0.928000pt;}
.ws3_c00148{word-spacing:8.313600pt;}
._a_c00148{margin-left:-4.454400pt;}
._b_c00148{margin-left:-3.555968pt;}
._7_c00148{margin-left:-2.560000pt;}
._3_c00148{margin-left:-0.902400pt;}
._0_c00148{width:0.919168pt;}
._1_c00148{width:2.227200pt;}
._8_c00148{width:3.571200pt;}
._9_c00148{width:5.100800pt;}
._d_c00148{width:7.321600pt;}
._2_c00148{width:8.307200pt;}
._6_c00148{width:9.568000pt;}
._c_c00148{width:10.636800pt;}
._5_c00148{width:11.532800pt;}
._4_c00148{width:12.467200pt;}
.fs0_c00148{font-size:53.440000pt;}
.fs1_c00148{font-size:64.000000pt;}
.y0_c00148{bottom:0.000000pt;}
.y5_c00148{bottom:50.987067pt;}
.y4_c00148{bottom:69.387067pt;}
.y24_c00148{bottom:117.307067pt;}
.y23_c00148{bottom:144.907067pt;}
.y22_c00148{bottom:172.507067pt;}
.y21_c00148{bottom:200.107067pt;}
.y20_c00148{bottom:227.707067pt;}
.y1f_c00148{bottom:255.307067pt;}
.y1e_c00148{bottom:293.467067pt;}
.y1d_c00148{bottom:321.147067pt;}
.y1c_c00148{bottom:348.747067pt;}
.y1b_c00148{bottom:376.347067pt;}
.y1a_c00148{bottom:403.947067pt;}
.y19_c00148{bottom:431.547067pt;}
.y18_c00148{bottom:469.787067pt;}
.y17_c00148{bottom:497.467067pt;}
.y16_c00148{bottom:525.067067pt;}
.y15_c00148{bottom:552.587067pt;}
.y14_c00148{bottom:580.187067pt;}
.y13_c00148{bottom:607.787067pt;}
.y12_c00148{bottom:635.387067pt;}
.y11_c00148{bottom:673.627067pt;}
.y10_c00148{bottom:701.307067pt;}
.yf_c00148{bottom:728.907067pt;}
.ye_c00148{bottom:756.507067pt;}
.yd_c00148{bottom:794.667067pt;}
.yc_c00148{bottom:822.347067pt;}
.yb_c00148{bottom:849.947067pt;}
.ya_c00148{bottom:877.547067pt;}
.y9_c00148{bottom:905.147067pt;}
.y8_c00148{bottom:932.747067pt;}
.y7_c00148{bottom:960.347067pt;}
.y6_c00148{bottom:987.947067pt;}
.y3_c00148{bottom:1006.347067pt;}
.y2_c00148{bottom:1035.947576pt;}
.y1_c00148{bottom:1063.147200pt;}
.h1_c00148{height:47.020937pt;}
.h2_c00148{height:56.156250pt;}
.h3_c00148{height:56.312500pt;}
.h0_c00148{height:1122.666667pt;}
.w1_c00148{width:793.333333pt;}
.w0_c00148{width:793.626667pt;}
.x0_c00148{left:0.000000pt;}
.x1_c00148{left:113.440000pt;}
.x2_c00148{left:656.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_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_7563bc23f959fc32ad72546c.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_92ee3bf9c4909957d0fb7ab5.woff2')format("woff");}.ff2_c00149{font-family:ff2_c00149;line-height:1.093262;font-style: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;}
.ls17_c00149{letter-spacing:-0.180000px;}
.lsf_c00149{letter-spacing:-0.079200px;}
.ls14_c00149{letter-spacing:-0.057600px;}
.lsd_c00149{letter-spacing:-0.048096px;}
.ls15_c00149{letter-spacing:-0.036000px;}
.ls11_c00149{letter-spacing:-0.028800px;}
.ls10_c00149{letter-spacing:-0.014400px;}
.ls16_c00149{letter-spacing:-0.010800px;}
.ls13_c00149{letter-spacing:-0.007200px;}
.lse_c00149{letter-spacing:0.000000px;}
.ls5_c00149{letter-spacing:0.007200px;}
.ls9_c00149{letter-spacing:0.014400px;}
.lsc_c00149{letter-spacing:0.016200px;}
.ls3_c00149{letter-spacing:0.021600px;}
.ls4_c00149{letter-spacing:0.028800px;}
.lsa_c00149{letter-spacing:0.036000px;}
.ls2_c00149{letter-spacing:0.043200px;}
.ls0_c00149{letter-spacing:0.050400px;}
.lsb_c00149{letter-spacing:0.057600px;}
.ls8_c00149{letter-spacing:0.064800px;}
.ls1_c00149{letter-spacing:0.072000px;}
.ls6_c00149{letter-spacing:0.100800px;}
.ls7_c00149{letter-spacing:0.108000px;}
.ls12_c00149{letter-spacing:13.320000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00149{word-spacing:-18.007200px;}
.ws1_c00149{word-spacing:-17.820000px;}
.ws5_c00149{word-spacing:-2.930400px;}
.ws6_c00149{word-spacing:-0.424800px;}
.ws3_c00149{word-spacing:0.000000px;}
.ws2_c00149{word-spacing:0.138276px;}
.ws7_c00149{word-spacing:0.162000px;}
.ws8_c00149{word-spacing:0.189000px;}
.ws4_c00149{word-spacing:9.720000px;}
._b_c00149{margin-left:-14.342400px;}
._a_c00149{margin-left:-13.010400px;}
._8_c00149{margin-left:-4.795200px;}
._4_c00149{margin-left:-3.744000px;}
._5_c00149{margin-left:-2.563200px;}
._1_c00149{margin-left:-1.245600px;}
._0_c00149{width:1.749600px;}
._6_c00149{width:5.335200px;}
._7_c00149{width:6.537600px;}
._3_c00149{width:8.647200px;}
._2_c00149{width:9.669600px;}
._9_c00149{width:13.320000px;}
._c_c00149{width:14.414400px;}
._d_c00149{width:16.344000px;}
._f_c00149{width:21.376800px;}
._e_c00149{width:22.658400px;}
.fc1_c00149{color:rgb(68,84,106);}
.fc0_c00149{color:rgb(0,0,0);}
.fs2_c00149{font-size:54.000000px;}
.fs0_c00149{font-size:60.120000px;}
.fs1_c00149{font-size:72.000000px;}
.y0_c00149{bottom:0.000000px;}
.y6_c00149{bottom:57.360450px;}
.y5_c00149{bottom:78.060450px;}
.y21_c00149{bottom:114.870450px;}
.y20_c00149{bottom:145.920450px;}
.y1f_c00149{bottom:176.970450px;}
.y1e_c00149{bottom:208.020450px;}
.y1d_c00149{bottom:239.070450px;}
.y1c_c00149{bottom:282.000450px;}
.y1b_c00149{bottom:320.970450px;}
.y1a_c00149{bottom:478.740450px;}
.y19_c00149{bottom:517.440450px;}
.y18_c00149{bottom:560.460450px;}
.y17_c00149{bottom:591.600450px;}
.y16_c00149{bottom:622.650450px;}
.y15_c00149{bottom:665.580450px;}
.y14_c00149{bottom:696.720450px;}
.y13_c00149{bottom:727.770450px;}
.y12_c00149{bottom:770.700450px;}
.y11_c00149{bottom:801.840450px;}
.y10_c00149{bottom:832.890450px;}
.yf_c00149{bottom:863.940450px;}
.ye_c00149{bottom:894.990450px;}
.yd_c00149{bottom:926.040450px;}
.yc_c00149{bottom:957.090450px;}
.yb_c00149{bottom:988.140450px;}
.ya_c00149{bottom:1019.190450px;}
.y9_c00149{bottom:1062.120450px;}
.y8_c00149{bottom:1093.260450px;}
.y7_c00149{bottom:1124.310450px;}
.y4_c00149{bottom:1144.380657px;}
.y3_c00149{bottom:1161.660648px;}
.y2_c00149{bottom:1178.850459px;}
.y1_c00149{bottom:1196.130450px;}
.h4_c00149{height:47.513672px;}
.h1_c00149{height:52.898555px;}
.h2_c00149{height:63.175781px;}
.h3_c00149{height:63.351562px;}
.h0_c00149{height:1263.000000px;}
.w1_c00149{width:892.500000px;}
.w0_c00149{width:892.830000px;}
.x0_c00149{left:0.000000px;}
.x4_c00149{left:127.620000px;}
.x1_c00149{left:649.620000px;}
.x5_c00149{left:702.450000px;}
.x3_c00149{left:738.450000px;}
.x2_c00149{left:765.450198px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls17_c00149{letter-spacing:-0.160000pt;}
.lsf_c00149{letter-spacing:-0.070400pt;}
.ls14_c00149{letter-spacing:-0.051200pt;}
.lsd_c00149{letter-spacing:-0.042752pt;}
.ls15_c00149{letter-spacing:-0.032000pt;}
.ls11_c00149{letter-spacing:-0.025600pt;}
.ls10_c00149{letter-spacing:-0.012800pt;}
.ls16_c00149{letter-spacing:-0.009600pt;}
.ls13_c00149{letter-spacing:-0.006400pt;}
.lse_c00149{letter-spacing:0.000000pt;}
.ls5_c00149{letter-spacing:0.006400pt;}
.ls9_c00149{letter-spacing:0.012800pt;}
.lsc_c00149{letter-spacing:0.014400pt;}
.ls3_c00149{letter-spacing:0.019200pt;}
.ls4_c00149{letter-spacing:0.025600pt;}
.lsa_c00149{letter-spacing:0.032000pt;}
.ls2_c00149{letter-spacing:0.038400pt;}
.ls0_c00149{letter-spacing:0.044800pt;}
.lsb_c00149{letter-spacing:0.051200pt;}
.ls8_c00149{letter-spacing:0.057600pt;}
.ls1_c00149{letter-spacing:0.064000pt;}
.ls6_c00149{letter-spacing:0.089600pt;}
.ls7_c00149{letter-spacing:0.096000pt;}
.ls12_c00149{letter-spacing:11.840000pt;}
.ws0_c00149{word-spacing:-16.006400pt;}
.ws1_c00149{word-spacing:-15.840000pt;}
.ws5_c00149{word-spacing:-2.604800pt;}
.ws6_c00149{word-spacing:-0.377600pt;}
.ws3_c00149{word-spacing:0.000000pt;}
.ws2_c00149{word-spacing:0.122912pt;}
.ws7_c00149{word-spacing:0.144000pt;}
.ws8_c00149{word-spacing:0.168000pt;}
.ws4_c00149{word-spacing:8.640000pt;}
._b_c00149{margin-left:-12.748800pt;}
._a_c00149{margin-left:-11.564800pt;}
._8_c00149{margin-left:-4.262400pt;}
._4_c00149{margin-left:-3.328000pt;}
._5_c00149{margin-left:-2.278400pt;}
._1_c00149{margin-left:-1.107200pt;}
._0_c00149{width:1.555200pt;}
._6_c00149{width:4.742400pt;}
._7_c00149{width:5.811200pt;}
._3_c00149{width:7.686400pt;}
._2_c00149{width:8.595200pt;}
._9_c00149{width:11.840000pt;}
._c_c00149{width:12.812800pt;}
._d_c00149{width:14.528000pt;}
._f_c00149{width:19.001600pt;}
._e_c00149{width:20.140800pt;}
.fs2_c00149{font-size:48.000000pt;}
.fs0_c00149{font-size:53.440000pt;}
.fs1_c00149{font-size:64.000000pt;}
.y0_c00149{bottom:0.000000pt;}
.y6_c00149{bottom:50.987067pt;}
.y5_c00149{bottom:69.387067pt;}
.y21_c00149{bottom:102.107067pt;}
.y20_c00149{bottom:129.707067pt;}
.y1f_c00149{bottom:157.307067pt;}
.y1e_c00149{bottom:184.907067pt;}
.y1d_c00149{bottom:212.507067pt;}
.y1c_c00149{bottom:250.667067pt;}
.y1b_c00149{bottom:285.307067pt;}
.y1a_c00149{bottom:425.547067pt;}
.y19_c00149{bottom:459.947067pt;}
.y18_c00149{bottom:498.187067pt;}
.y17_c00149{bottom:525.867067pt;}
.y16_c00149{bottom:553.467067pt;}
.y15_c00149{bottom:591.627067pt;}
.y14_c00149{bottom:619.307067pt;}
.y13_c00149{bottom:646.907067pt;}
.y12_c00149{bottom:685.067067pt;}
.y11_c00149{bottom:712.747067pt;}
.y10_c00149{bottom:740.347067pt;}
.yf_c00149{bottom:767.947067pt;}
.ye_c00149{bottom:795.547067pt;}
.yd_c00149{bottom:823.147067pt;}
.yc_c00149{bottom:850.747067pt;}
.yb_c00149{bottom:878.347067pt;}
.ya_c00149{bottom:905.947067pt;}
.y9_c00149{bottom:944.107067pt;}
.y8_c00149{bottom:971.787067pt;}
.y7_c00149{bottom:999.387067pt;}
.y4_c00149{bottom:1017.227251pt;}
.y3_c00149{bottom:1032.587243pt;}
.y2_c00149{bottom:1047.867075pt;}
.y1_c00149{bottom:1063.227067pt;}
.h4_c00149{height:42.234375pt;}
.h1_c00149{height:47.020937pt;}
.h2_c00149{height:56.156250pt;}
.h3_c00149{height:56.312500pt;}
.h0_c00149{height:1122.666667pt;}
.w1_c00149{width:793.333333pt;}
.w0_c00149{width:793.626667pt;}
.x0_c00149{left:0.000000pt;}
.x4_c00149{left:113.440000pt;}
.x1_c00149{left:577.440000pt;}
.x5_c00149{left:624.400000pt;}
.x3_c00149{left:656.400000pt;}
.x2_c00149{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d090126cc552f1644384781.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.095703;font-style:normal;font-weight:normal;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_d73f9a1f03d6fe3dfb8736a7.woff2')format("woff");}.ff2_c00150{font-family:ff2_c00150;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls12_c00150{letter-spacing:-3.240000px;}
.lsd_c00150{letter-spacing:-0.102204px;}
.ls10_c00150{letter-spacing:-0.079200px;}
.ls14_c00150{letter-spacing:-0.036000px;}
.ls15_c00150{letter-spacing:-0.028800px;}
.ls13_c00150{letter-spacing:-0.021600px;}
.lsf_c00150{letter-spacing:-0.007200px;}
.lse_c00150{letter-spacing:0.000000px;}
.lsa_c00150{letter-spacing:0.007200px;}
.ls3_c00150{letter-spacing:0.014400px;}
.ls7_c00150{letter-spacing:0.021600px;}
.ls6_c00150{letter-spacing:0.028800px;}
.ls1_c00150{letter-spacing:0.036000px;}
.ls4_c00150{letter-spacing:0.043200px;}
.ls2_c00150{letter-spacing:0.050400px;}
.ls0_c00150{letter-spacing:0.057600px;}
.ls9_c00150{letter-spacing:0.064800px;}
.ls8_c00150{letter-spacing:0.072000px;}
.lsc_c00150{letter-spacing:0.086400px;}
.ls5_c00150{letter-spacing:0.108000px;}
.lsb_c00150{letter-spacing:0.187200px;}
.ls11_c00150{letter-spacing:2.520000px;}
.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:-17.992800px;}
.ws4_c00150{word-spacing:-3.657600px;}
.ws7_c00150{word-spacing:-0.064800px;}
.ws8_c00150{word-spacing:-0.028800px;}
.ws2_c00150{word-spacing:0.000000px;}
.ws1_c00150{word-spacing:0.192384px;}
.ws6_c00150{word-spacing:2.145600px;}
.ws3_c00150{word-spacing:3.535200px;}
.ws9_c00150{word-spacing:11.124000px;}
.ws5_c00150{word-spacing:19.065600px;}
._4_c00150{margin-left:-5.313600px;}
._3_c00150{margin-left:-4.312800px;}
._7_c00150{margin-left:-2.677392px;}
._2_c00150{margin-left:-1.123200px;}
._0_c00150{width:1.034064px;}
._6_c00150{width:2.865600px;}
._8_c00150{width:3.882960px;}
._9_c00150{width:5.320800px;}
._1_c00150{width:6.422400px;}
._5_c00150{width:7.891200px;}
._d_c00150{width:13.291200px;}
._b_c00150{width:15.379200px;}
._c_c00150{width:16.862400px;}
._a_c00150{width:19.072800px;}
.fc1_c00150{color:rgb(0,0,0);}
.fc0_c00150{color:rgb(32,31,30);}
.fs0_c00150{font-size:60.120000px;}
.fs1_c00150{font-size:72.000000px;}
.y0_c00150{bottom:0.000000px;}
.y5_c00150{bottom:57.360450px;}
.y4_c00150{bottom:78.060450px;}
.y25_c00150{bottom:148.980450px;}
.y24_c00150{bottom:179.940450px;}
.y23_c00150{bottom:211.080450px;}
.y22_c00150{bottom:242.130450px;}
.y21_c00150{bottom:273.000450px;}
.y20_c00150{bottom:304.140450px;}
.y1f_c00150{bottom:335.190450px;}
.y1e_c00150{bottom:366.240450px;}
.y1d_c00150{bottom:397.290450px;}
.y1c_c00150{bottom:428.340450px;}
.y1b_c00150{bottom:459.390450px;}
.y1a_c00150{bottom:490.440450px;}
.y19_c00150{bottom:521.490450px;}
.y18_c00150{bottom:552.540450px;}
.y17_c00150{bottom:583.590450px;}
.y16_c00150{bottom:614.640450px;}
.y15_c00150{bottom:645.690450px;}
.y14_c00150{bottom:676.740450px;}
.y13_c00150{bottom:707.790450px;}
.y12_c00150{bottom:738.840450px;}
.y11_c00150{bottom:769.890450px;}
.y10_c00150{bottom:800.940450px;}
.yf_c00150{bottom:831.990450px;}
.ye_c00150{bottom:863.040450px;}
.yd_c00150{bottom:894.090450px;}
.yc_c00150{bottom:925.140450px;}
.yb_c00150{bottom:956.190450px;}
.ya_c00150{bottom:987.240450px;}
.y9_c00150{bottom:1018.290450px;}
.y8_c00150{bottom:1049.340450px;}
.y7_c00150{bottom:1080.390450px;}
.y6_c00150{bottom:1111.440450px;}
.y3_c00150{bottom:1132.140450px;}
.y2_c00150{bottom:1165.441023px;}
.y1_c00150{bottom:1196.040600px;}
.h1_c00150{height:52.898555px;}
.h2_c00150{height:63.175781px;}
.h3_c00150{height:63.351562px;}
.h0_c00150{height:1263.000000px;}
.w1_c00150{width:892.500000px;}
.w0_c00150{width:892.830000px;}
.x0_c00150{left:0.000000px;}
.x1_c00150{left:127.620000px;}
.x2_c00150{left:738.450000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls12_c00150{letter-spacing:-2.880000pt;}
.lsd_c00150{letter-spacing:-0.090848pt;}
.ls10_c00150{letter-spacing:-0.070400pt;}
.ls14_c00150{letter-spacing:-0.032000pt;}
.ls15_c00150{letter-spacing:-0.025600pt;}
.ls13_c00150{letter-spacing:-0.019200pt;}
.lsf_c00150{letter-spacing:-0.006400pt;}
.lse_c00150{letter-spacing:0.000000pt;}
.lsa_c00150{letter-spacing:0.006400pt;}
.ls3_c00150{letter-spacing:0.012800pt;}
.ls7_c00150{letter-spacing:0.019200pt;}
.ls6_c00150{letter-spacing:0.025600pt;}
.ls1_c00150{letter-spacing:0.032000pt;}
.ls4_c00150{letter-spacing:0.038400pt;}
.ls2_c00150{letter-spacing:0.044800pt;}
.ls0_c00150{letter-spacing:0.051200pt;}
.ls9_c00150{letter-spacing:0.057600pt;}
.ls8_c00150{letter-spacing:0.064000pt;}
.lsc_c00150{letter-spacing:0.076800pt;}
.ls5_c00150{letter-spacing:0.096000pt;}
.lsb_c00150{letter-spacing:0.166400pt;}
.ls11_c00150{letter-spacing:2.240000pt;}
.ws0_c00150{word-spacing:-15.993600pt;}
.ws4_c00150{word-spacing:-3.251200pt;}
.ws7_c00150{word-spacing:-0.057600pt;}
.ws8_c00150{word-spacing:-0.025600pt;}
.ws2_c00150{word-spacing:0.000000pt;}
.ws1_c00150{word-spacing:0.171008pt;}
.ws6_c00150{word-spacing:1.907200pt;}
.ws3_c00150{word-spacing:3.142400pt;}
.ws9_c00150{word-spacing:9.888000pt;}
.ws5_c00150{word-spacing:16.947200pt;}
._4_c00150{margin-left:-4.723200pt;}
._3_c00150{margin-left:-3.833600pt;}
._7_c00150{margin-left:-2.379904pt;}
._2_c00150{margin-left:-0.998400pt;}
._0_c00150{width:0.919168pt;}
._6_c00150{width:2.547200pt;}
._8_c00150{width:3.451520pt;}
._9_c00150{width:4.729600pt;}
._1_c00150{width:5.708800pt;}
._5_c00150{width:7.014400pt;}
._d_c00150{width:11.814400pt;}
._b_c00150{width:13.670400pt;}
._c_c00150{width:14.988800pt;}
._a_c00150{width:16.953600pt;}
.fs0_c00150{font-size:53.440000pt;}
.fs1_c00150{font-size:64.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y5_c00150{bottom:50.987067pt;}
.y4_c00150{bottom:69.387067pt;}
.y25_c00150{bottom:132.427067pt;}
.y24_c00150{bottom:159.947067pt;}
.y23_c00150{bottom:187.627067pt;}
.y22_c00150{bottom:215.227067pt;}
.y21_c00150{bottom:242.667067pt;}
.y20_c00150{bottom:270.347067pt;}
.y1f_c00150{bottom:297.947067pt;}
.y1e_c00150{bottom:325.547067pt;}
.y1d_c00150{bottom:353.147067pt;}
.y1c_c00150{bottom:380.747067pt;}
.y1b_c00150{bottom:408.347067pt;}
.y1a_c00150{bottom:435.947067pt;}
.y19_c00150{bottom:463.547067pt;}
.y18_c00150{bottom:491.147067pt;}
.y17_c00150{bottom:518.747067pt;}
.y16_c00150{bottom:546.347067pt;}
.y15_c00150{bottom:573.947067pt;}
.y14_c00150{bottom:601.547067pt;}
.y13_c00150{bottom:629.147067pt;}
.y12_c00150{bottom:656.747067pt;}
.y11_c00150{bottom:684.347067pt;}
.y10_c00150{bottom:711.947067pt;}
.yf_c00150{bottom:739.547067pt;}
.ye_c00150{bottom:767.147067pt;}
.yd_c00150{bottom:794.747067pt;}
.yc_c00150{bottom:822.347067pt;}
.yb_c00150{bottom:849.947067pt;}
.ya_c00150{bottom:877.547067pt;}
.y9_c00150{bottom:905.147067pt;}
.y8_c00150{bottom:932.747067pt;}
.y7_c00150{bottom:960.347067pt;}
.y6_c00150{bottom:987.947067pt;}
.y3_c00150{bottom:1006.347067pt;}
.y2_c00150{bottom:1035.947576pt;}
.y1_c00150{bottom:1063.147200pt;}
.h1_c00150{height:47.020937pt;}
.h2_c00150{height:56.156250pt;}
.h3_c00150{height:56.312500pt;}
.h0_c00150{height:1122.666667pt;}
.w1_c00150{width:793.333333pt;}
.w0_c00150{width:793.626667pt;}
.x0_c00150{left:0.000000pt;}
.x1_c00150{left:113.440000pt;}
.x2_c00150{left:656.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_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_b7217fd6f93820b587afb7fe.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.095703;font-style:normal;font-weight:normal;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_fe325580584da975426e1296.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00151{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls14_c00151{letter-spacing:-0.273600px;}
.ls16_c00151{letter-spacing:-0.230400px;}
.ls12_c00151{letter-spacing:-0.072000px;}
.ls1a_c00151{letter-spacing:-0.057600px;}
.ls10_c00151{letter-spacing:-0.048096px;}
.ls1b_c00151{letter-spacing:-0.043200px;}
.ls15_c00151{letter-spacing:-0.028800px;}
.ls17_c00151{letter-spacing:-0.021600px;}
.ls13_c00151{letter-spacing:-0.014400px;}
.ls19_c00151{letter-spacing:-0.007200px;}
.ls11_c00151{letter-spacing:0.000000px;}
.lsb_c00151{letter-spacing:0.005400px;}
.lsa_c00151{letter-spacing:0.007200px;}
.lsc_c00151{letter-spacing:0.010800px;}
.ls1_c00151{letter-spacing:0.014400px;}
.lsd_c00151{letter-spacing:0.016200px;}
.ls7_c00151{letter-spacing:0.021600px;}
.ls0_c00151{letter-spacing:0.028800px;}
.ls6_c00151{letter-spacing:0.036000px;}
.lsf_c00151{letter-spacing:0.043200px;}
.ls8_c00151{letter-spacing:0.050400px;}
.ls2_c00151{letter-spacing:0.057600px;}
.ls4_c00151{letter-spacing:0.064800px;}
.ls3_c00151{letter-spacing:0.079200px;}
.ls5_c00151{letter-spacing:0.093600px;}
.lse_c00151{letter-spacing:0.115200px;}
.ls18_c00151{letter-spacing:0.201600px;}
.ls9_c00151{letter-spacing:0.360000px;}
.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;}
}
.ws1_c00151{word-spacing:-18.043200px;}
.ws3_c00151{word-spacing:-17.992800px;}
.ws2_c00151{word-spacing:-17.978400px;}
.ws4_c00151{word-spacing:-17.942400px;}
.ws0_c00151{word-spacing:-17.928000px;}
.wsb_c00151{word-spacing:-0.194400px;}
.ws6_c00151{word-spacing:0.000000px;}
.ws5_c00151{word-spacing:0.138276px;}
.wsa_c00151{word-spacing:0.167400px;}
.ws9_c00151{word-spacing:2.327400px;}
.ws8_c00151{word-spacing:2.332800px;}
.ws10_c00151{word-spacing:3.232800px;}
.wse_c00151{word-spacing:3.427200px;}
.wsf_c00151{word-spacing:3.549600px;}
.ws7_c00151{word-spacing:8.582400px;}
.wsd_c00151{word-spacing:13.975200px;}
.wsc_c00151{word-spacing:15.480000px;}
._a_c00151{margin-left:-3.909600px;}
._b_c00151{margin-left:-2.592000px;}
._5_c00151{margin-left:-1.123200px;}
._6_c00151{width:1.742400px;}
._2_c00151{width:2.952000px;}
._3_c00151{width:4.075200px;}
._4_c00151{width:5.385600px;}
._1_c00151{width:6.624000px;}
._0_c00151{width:7.891200px;}
._7_c00151{width:9.288000px;}
._c_c00151{width:13.305600px;}
._9_c00151{width:14.378400px;}
._8_c00151{width:15.444000px;}
._e_c00151{width:16.754400px;}
._d_c00151{width:21.182400px;}
.fc1_c00151{color:rgb(68,84,106);}
.fc0_c00151{color:rgb(0,0,0);}
.fs2_c00151{font-size:54.000000px;}
.fs0_c00151{font-size:60.120000px;}
.fs1_c00151{font-size:72.000000px;}
.y0_c00151{bottom:0.000000px;}
.y6_c00151{bottom:57.360450px;}
.y5_c00151{bottom:78.060450px;}
.y20_c00151{bottom:152.310450px;}
.y1f_c00151{bottom:183.450450px;}
.y1e_c00151{bottom:214.500450px;}
.y1d_c00151{bottom:245.550450px;}
.y1c_c00151{bottom:276.600450px;}
.y1b_c00151{bottom:307.650450px;}
.y1a_c00151{bottom:338.700450px;}
.y19_c00151{bottom:369.750450px;}
.y18_c00151{bottom:400.800450px;}
.y17_c00151{bottom:431.850450px;}
.y16_c00151{bottom:462.900450px;}
.y15_c00151{bottom:493.950450px;}
.y14_c00151{bottom:525.000450px;}
.y13_c00151{bottom:556.050450px;}
.y12_c00151{bottom:587.100450px;}
.y11_c00151{bottom:614.100450px;}
.y10_c00151{bottom:852.780000px;}
.yf_c00151{bottom:868.260450px;}
.ye_c00151{bottom:906.960450px;}
.yd_c00151{bottom:938.100450px;}
.yc_c00151{bottom:969.150450px;}
.yb_c00151{bottom:1000.200450px;}
.ya_c00151{bottom:1031.160450px;}
.y9_c00151{bottom:1062.210450px;}
.y8_c00151{bottom:1093.260450px;}
.y7_c00151{bottom:1124.310450px;}
.y4_c00151{bottom:1144.380657px;}
.y3_c00151{bottom:1161.660648px;}
.y2_c00151{bottom:1178.850459px;}
.y1_c00151{bottom:1196.130450px;}
.h4_c00151{height:47.513672px;}
.h1_c00151{height:52.898555px;}
.h2_c00151{height:63.175781px;}
.h3_c00151{height:63.351562px;}
.h0_c00151{height:1263.000000px;}
.w1_c00151{width:892.500000px;}
.w0_c00151{width:892.830000px;}
.x0_c00151{left:0.000000px;}
.x4_c00151{left:127.620000px;}
.x6_c00151{left:446.490000px;}
.x1_c00151{left:649.620000px;}
.x3_c00151{left:738.450000px;}
.x5_c00151{left:749.700000px;}
.x2_c00151{left:765.450198px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls14_c00151{letter-spacing:-0.243200pt;}
.ls16_c00151{letter-spacing:-0.204800pt;}
.ls12_c00151{letter-spacing:-0.064000pt;}
.ls1a_c00151{letter-spacing:-0.051200pt;}
.ls10_c00151{letter-spacing:-0.042752pt;}
.ls1b_c00151{letter-spacing:-0.038400pt;}
.ls15_c00151{letter-spacing:-0.025600pt;}
.ls17_c00151{letter-spacing:-0.019200pt;}
.ls13_c00151{letter-spacing:-0.012800pt;}
.ls19_c00151{letter-spacing:-0.006400pt;}
.ls11_c00151{letter-spacing:0.000000pt;}
.lsb_c00151{letter-spacing:0.004800pt;}
.lsa_c00151{letter-spacing:0.006400pt;}
.lsc_c00151{letter-spacing:0.009600pt;}
.ls1_c00151{letter-spacing:0.012800pt;}
.lsd_c00151{letter-spacing:0.014400pt;}
.ls7_c00151{letter-spacing:0.019200pt;}
.ls0_c00151{letter-spacing:0.025600pt;}
.ls6_c00151{letter-spacing:0.032000pt;}
.lsf_c00151{letter-spacing:0.038400pt;}
.ls8_c00151{letter-spacing:0.044800pt;}
.ls2_c00151{letter-spacing:0.051200pt;}
.ls4_c00151{letter-spacing:0.057600pt;}
.ls3_c00151{letter-spacing:0.070400pt;}
.ls5_c00151{letter-spacing:0.083200pt;}
.lse_c00151{letter-spacing:0.102400pt;}
.ls18_c00151{letter-spacing:0.179200pt;}
.ls9_c00151{letter-spacing:0.320000pt;}
.ws1_c00151{word-spacing:-16.038400pt;}
.ws3_c00151{word-spacing:-15.993600pt;}
.ws2_c00151{word-spacing:-15.980800pt;}
.ws4_c00151{word-spacing:-15.948800pt;}
.ws0_c00151{word-spacing:-15.936000pt;}
.wsb_c00151{word-spacing:-0.172800pt;}
.ws6_c00151{word-spacing:0.000000pt;}
.ws5_c00151{word-spacing:0.122912pt;}
.wsa_c00151{word-spacing:0.148800pt;}
.ws9_c00151{word-spacing:2.068800pt;}
.ws8_c00151{word-spacing:2.073600pt;}
.ws10_c00151{word-spacing:2.873600pt;}
.wse_c00151{word-spacing:3.046400pt;}
.wsf_c00151{word-spacing:3.155200pt;}
.ws7_c00151{word-spacing:7.628800pt;}
.wsd_c00151{word-spacing:12.422400pt;}
.wsc_c00151{word-spacing:13.760000pt;}
._a_c00151{margin-left:-3.475200pt;}
._b_c00151{margin-left:-2.304000pt;}
._5_c00151{margin-left:-0.998400pt;}
._6_c00151{width:1.548800pt;}
._2_c00151{width:2.624000pt;}
._3_c00151{width:3.622400pt;}
._4_c00151{width:4.787200pt;}
._1_c00151{width:5.888000pt;}
._0_c00151{width:7.014400pt;}
._7_c00151{width:8.256000pt;}
._c_c00151{width:11.827200pt;}
._9_c00151{width:12.780800pt;}
._8_c00151{width:13.728000pt;}
._e_c00151{width:14.892800pt;}
._d_c00151{width:18.828800pt;}
.fs2_c00151{font-size:48.000000pt;}
.fs0_c00151{font-size:53.440000pt;}
.fs1_c00151{font-size:64.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.y6_c00151{bottom:50.987067pt;}
.y5_c00151{bottom:69.387067pt;}
.y20_c00151{bottom:135.387067pt;}
.y1f_c00151{bottom:163.067067pt;}
.y1e_c00151{bottom:190.667067pt;}
.y1d_c00151{bottom:218.267067pt;}
.y1c_c00151{bottom:245.867067pt;}
.y1b_c00151{bottom:273.467067pt;}
.y1a_c00151{bottom:301.067067pt;}
.y19_c00151{bottom:328.667067pt;}
.y18_c00151{bottom:356.267067pt;}
.y17_c00151{bottom:383.867067pt;}
.y16_c00151{bottom:411.467067pt;}
.y15_c00151{bottom:439.067067pt;}
.y14_c00151{bottom:466.667067pt;}
.y13_c00151{bottom:494.267067pt;}
.y12_c00151{bottom:521.867067pt;}
.y11_c00151{bottom:545.867067pt;}
.y10_c00151{bottom:758.026667pt;}
.yf_c00151{bottom:771.787067pt;}
.ye_c00151{bottom:806.187067pt;}
.yd_c00151{bottom:833.867067pt;}
.yc_c00151{bottom:861.467067pt;}
.yb_c00151{bottom:889.067067pt;}
.ya_c00151{bottom:916.587067pt;}
.y9_c00151{bottom:944.187067pt;}
.y8_c00151{bottom:971.787067pt;}
.y7_c00151{bottom:999.387067pt;}
.y4_c00151{bottom:1017.227251pt;}
.y3_c00151{bottom:1032.587243pt;}
.y2_c00151{bottom:1047.867075pt;}
.y1_c00151{bottom:1063.227067pt;}
.h4_c00151{height:42.234375pt;}
.h1_c00151{height:47.020937pt;}
.h2_c00151{height:56.156250pt;}
.h3_c00151{height:56.312500pt;}
.h0_c00151{height:1122.666667pt;}
.w1_c00151{width:793.333333pt;}
.w0_c00151{width:793.626667pt;}
.x0_c00151{left:0.000000pt;}
.x4_c00151{left:113.440000pt;}
.x6_c00151{left:396.880000pt;}
.x1_c00151{left:577.440000pt;}
.x3_c00151{left:656.400000pt;}
.x5_c00151{left:666.400000pt;}
.x2_c00151{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d63feb5d1d3a7e39799a704.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.095703;font-style:normal;font-weight:normal;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_0320c29f76db1c85dbb211ca.woff2')format("woff");}.ff2_c00152{font-family:ff2_c00152;line-height:1.093262;font-style: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:-20.880000px;}
.v0_c00152{vertical-align:0.000000px;}
.v1_c00152{vertical-align:27.000000px;}
.lsf_c00152{letter-spacing:-0.102204px;}
.ls15_c00152{letter-spacing:-0.093600px;}
.ls1d_c00152{letter-spacing:-0.084168px;}
.ls16_c00152{letter-spacing:-0.079200px;}
.ls11_c00152{letter-spacing:-0.043200px;}
.ls1a_c00152{letter-spacing:-0.037800px;}
.ls18_c00152{letter-spacing:-0.036000px;}
.ls17_c00152{letter-spacing:-0.028800px;}
.ls12_c00152{letter-spacing:-0.021600px;}
.ls1c_c00152{letter-spacing:-0.014400px;}
.ls14_c00152{letter-spacing:-0.007200px;}
.ls10_c00152{letter-spacing:0.000000px;}
.lsb_c00152{letter-spacing:0.005400px;}
.ls0_c00152{letter-spacing:0.010800px;}
.lsd_c00152{letter-spacing:0.012024px;}
.ls3_c00152{letter-spacing:0.014400px;}
.lsa_c00152{letter-spacing:0.016200px;}
.ls2_c00152{letter-spacing:0.021600px;}
.lsc_c00152{letter-spacing:0.028800px;}
.ls8_c00152{letter-spacing:0.036000px;}
.ls6_c00152{letter-spacing:0.043200px;}
.ls4_c00152{letter-spacing:0.050400px;}
.ls7_c00152{letter-spacing:0.064800px;}
.lse_c00152{letter-spacing:0.090180px;}
.ls9_c00152{letter-spacing:0.100800px;}
.ls1_c00152{letter-spacing:0.108000px;}
.ls1e_c00152{letter-spacing:0.114228px;}
.ls5_c00152{letter-spacing:0.136800px;}
.ls19_c00152{letter-spacing:0.181944px;}
.ls1b_c00152{letter-spacing:0.331200px;}
.ls13_c00152{letter-spacing:7.560000px;}
.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:-17.971200px;}
.ws1_c00152{word-spacing:-12.151944px;}
.ws2_c00152{word-spacing:-9.720000px;}
.wsd_c00152{word-spacing:-3.996000px;}
.wsa_c00152{word-spacing:-3.083400px;}
.ws9_c00152{word-spacing:-2.716200px;}
.wsb_c00152{word-spacing:-2.662200px;}
.ws4_c00152{word-spacing:0.000000px;}
.ws5_c00152{word-spacing:0.167400px;}
.wsc_c00152{word-spacing:0.172800px;}
.ws3_c00152{word-spacing:0.192384px;}
.ws7_c00152{word-spacing:0.199800px;}
.ws6_c00152{word-spacing:0.221400px;}
.ws8_c00152{word-spacing:0.345600px;}
._5_c00152{margin-left:-8.373600px;}
._4_c00152{margin-left:-7.020000px;}
._a_c00152{margin-left:-5.248800px;}
._7_c00152{margin-left:-3.880800px;}
._6_c00152{margin-left:-2.563200px;}
._1_c00152{margin-left:-1.112400px;}
._0_c00152{width:1.034064px;}
._2_c00152{width:7.020000px;}
._3_c00152{width:8.136000px;}
._9_c00152{width:19.044000px;}
._8_c00152{width:20.138400px;}
.fc2_c00152{color:rgb(68,84,106);}
.fc1_c00152{color:rgb(0,0,0);}
.fc0_c00152{color:rgb(32,31,30);}
.fs4_c00152{font-size:38.880000px;}
.fs3_c00152{font-size:47.880000px;}
.fs2_c00152{font-size:54.000000px;}
.fs0_c00152{font-size:60.120000px;}
.fs1_c00152{font-size:72.000000px;}
.y0_c00152{bottom:0.000000px;}
.y5_c00152{bottom:57.360450px;}
.y4_c00152{bottom:78.060450px;}
.y1b_c00152{bottom:109.920639px;}
.y1a_c00152{bottom:132.330450px;}
.y19_c00152{bottom:145.020450px;}
.y18_c00152{bottom:190.110450px;}
.y17_c00152{bottom:221.160450px;}
.y16_c00152{bottom:252.210450px;}
.y15_c00152{bottom:283.260450px;}
.y14_c00152{bottom:314.310450px;}
.y13_c00152{bottom:345.360450px;}
.y12_c00152{bottom:372.360450px;}
.y11_c00152{bottom:555.960000px;}
.y10_c00152{bottom:571.440450px;}
.yf_c00152{bottom:610.140450px;}
.ye_c00152{bottom:641.280450px;}
.yd_c00152{bottom:672.330450px;}
.yc_c00152{bottom:703.380450px;}
.yb_c00152{bottom:734.430450px;}
.ya_c00152{bottom:765.480450px;}
.y9_c00152{bottom:796.530450px;}
.y8_c00152{bottom:827.580450px;}
.y7_c00152{bottom:854.580450px;}
.y6_c00152{bottom:1115.760450px;}
.y3_c00152{bottom:1132.140450px;}
.y2_c00152{bottom:1165.441023px;}
.y1_c00152{bottom:1196.040600px;}
.h6_c00152{height:34.114922px;}
.h3_c00152{height:47.513672px;}
.h7_c00152{height:52.751777px;}
.h1_c00152{height:52.898555px;}
.h2_c00152{height:63.175781px;}
.h4_c00152{height:63.351562px;}
.h5_c00152{height:69.011895px;}
.h0_c00152{height:1263.000000px;}
.w1_c00152{width:892.500000px;}
.w0_c00152{width:892.830000px;}
.x0_c00152{left:0.000000px;}
.x1_c00152{left:127.620000px;}
.x3_c00152{left:736.110000px;}
.x2_c00152{left:738.450000px;}
@media print{
.v2_c00152{vertical-align:-18.560000pt;}
.v0_c00152{vertical-align:0.000000pt;}
.v1_c00152{vertical-align:24.000000pt;}
.lsf_c00152{letter-spacing:-0.090848pt;}
.ls15_c00152{letter-spacing:-0.083200pt;}
.ls1d_c00152{letter-spacing:-0.074816pt;}
.ls16_c00152{letter-spacing:-0.070400pt;}
.ls11_c00152{letter-spacing:-0.038400pt;}
.ls1a_c00152{letter-spacing:-0.033600pt;}
.ls18_c00152{letter-spacing:-0.032000pt;}
.ls17_c00152{letter-spacing:-0.025600pt;}
.ls12_c00152{letter-spacing:-0.019200pt;}
.ls1c_c00152{letter-spacing:-0.012800pt;}
.ls14_c00152{letter-spacing:-0.006400pt;}
.ls10_c00152{letter-spacing:0.000000pt;}
.lsb_c00152{letter-spacing:0.004800pt;}
.ls0_c00152{letter-spacing:0.009600pt;}
.lsd_c00152{letter-spacing:0.010688pt;}
.ls3_c00152{letter-spacing:0.012800pt;}
.lsa_c00152{letter-spacing:0.014400pt;}
.ls2_c00152{letter-spacing:0.019200pt;}
.lsc_c00152{letter-spacing:0.025600pt;}
.ls8_c00152{letter-spacing:0.032000pt;}
.ls6_c00152{letter-spacing:0.038400pt;}
.ls4_c00152{letter-spacing:0.044800pt;}
.ls7_c00152{letter-spacing:0.057600pt;}
.lse_c00152{letter-spacing:0.080160pt;}
.ls9_c00152{letter-spacing:0.089600pt;}
.ls1_c00152{letter-spacing:0.096000pt;}
.ls1e_c00152{letter-spacing:0.101536pt;}
.ls5_c00152{letter-spacing:0.121600pt;}
.ls19_c00152{letter-spacing:0.161728pt;}
.ls1b_c00152{letter-spacing:0.294400pt;}
.ls13_c00152{letter-spacing:6.720000pt;}
.ws0_c00152{word-spacing:-15.974400pt;}
.ws1_c00152{word-spacing:-10.801728pt;}
.ws2_c00152{word-spacing:-8.640000pt;}
.wsd_c00152{word-spacing:-3.552000pt;}
.wsa_c00152{word-spacing:-2.740800pt;}
.ws9_c00152{word-spacing:-2.414400pt;}
.wsb_c00152{word-spacing:-2.366400pt;}
.ws4_c00152{word-spacing:0.000000pt;}
.ws5_c00152{word-spacing:0.148800pt;}
.wsc_c00152{word-spacing:0.153600pt;}
.ws3_c00152{word-spacing:0.171008pt;}
.ws7_c00152{word-spacing:0.177600pt;}
.ws6_c00152{word-spacing:0.196800pt;}
.ws8_c00152{word-spacing:0.307200pt;}
._5_c00152{margin-left:-7.443200pt;}
._4_c00152{margin-left:-6.240000pt;}
._a_c00152{margin-left:-4.665600pt;}
._7_c00152{margin-left:-3.449600pt;}
._6_c00152{margin-left:-2.278400pt;}
._1_c00152{margin-left:-0.988800pt;}
._0_c00152{width:0.919168pt;}
._2_c00152{width:6.240000pt;}
._3_c00152{width:7.232000pt;}
._9_c00152{width:16.928000pt;}
._8_c00152{width:17.900800pt;}
.fs4_c00152{font-size:34.560000pt;}
.fs3_c00152{font-size:42.560000pt;}
.fs2_c00152{font-size:48.000000pt;}
.fs0_c00152{font-size:53.440000pt;}
.fs1_c00152{font-size:64.000000pt;}
.y0_c00152{bottom:0.000000pt;}
.y5_c00152{bottom:50.987067pt;}
.y4_c00152{bottom:69.387067pt;}
.y1b_c00152{bottom:97.707235pt;}
.y1a_c00152{bottom:117.627067pt;}
.y19_c00152{bottom:128.907067pt;}
.y18_c00152{bottom:168.987067pt;}
.y17_c00152{bottom:196.587067pt;}
.y16_c00152{bottom:224.187067pt;}
.y15_c00152{bottom:251.787067pt;}
.y14_c00152{bottom:279.387067pt;}
.y13_c00152{bottom:306.987067pt;}
.y12_c00152{bottom:330.987067pt;}
.y11_c00152{bottom:494.186667pt;}
.y10_c00152{bottom:507.947067pt;}
.yf_c00152{bottom:542.347067pt;}
.ye_c00152{bottom:570.027067pt;}
.yd_c00152{bottom:597.627067pt;}
.yc_c00152{bottom:625.227067pt;}
.yb_c00152{bottom:652.827067pt;}
.ya_c00152{bottom:680.427067pt;}
.y9_c00152{bottom:708.027067pt;}
.y8_c00152{bottom:735.627067pt;}
.y7_c00152{bottom:759.627067pt;}
.y6_c00152{bottom:991.787067pt;}
.y3_c00152{bottom:1006.347067pt;}
.y2_c00152{bottom:1035.947576pt;}
.y1_c00152{bottom:1063.147200pt;}
.h6_c00152{height:30.324375pt;}
.h3_c00152{height:42.234375pt;}
.h7_c00152{height:46.890469pt;}
.h1_c00152{height:47.020937pt;}
.h2_c00152{height:56.156250pt;}
.h4_c00152{height:56.312500pt;}
.h5_c00152{height:61.343906pt;}
.h0_c00152{height:1122.666667pt;}
.w1_c00152{width:793.333333pt;}
.w0_c00152{width:793.626667pt;}
.x0_c00152{left:0.000000pt;}
.x1_c00152{left:113.440000pt;}
.x3_c00152{left:654.320000pt;}
.x2_c00152{left:656.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_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_b28bb0d0da449f3e65312833.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.095703;font-style:normal;font-weight:normal;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_5221b256b3ec6445e845d929.woff2')format("woff");}.ff2_c00153{font-family:ff2_c00153;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls18_c00153{letter-spacing:-0.216000px;}
.ls17_c00153{letter-spacing:-0.172800px;}
.ls16_c00153{letter-spacing:-0.057600px;}
.ls15_c00153{letter-spacing:-0.050400px;}
.lsf_c00153{letter-spacing:-0.048096px;}
.ls12_c00153{letter-spacing:-0.021600px;}
.ls11_c00153{letter-spacing:-0.014400px;}
.ls13_c00153{letter-spacing:-0.007200px;}
.ls10_c00153{letter-spacing:0.000000px;}
.ls1_c00153{letter-spacing:0.007200px;}
.ls4_c00153{letter-spacing:0.014400px;}
.ls7_c00153{letter-spacing:0.021600px;}
.ls3_c00153{letter-spacing:0.028800px;}
.lsc_c00153{letter-spacing:0.032400px;}
.ls0_c00153{letter-spacing:0.036000px;}
.ls5_c00153{letter-spacing:0.043200px;}
.lsd_c00153{letter-spacing:0.050400px;}
.lsb_c00153{letter-spacing:0.057600px;}
.lse_c00153{letter-spacing:0.064800px;}
.ls8_c00153{letter-spacing:0.072000px;}
.ls2_c00153{letter-spacing:0.079200px;}
.ls6_c00153{letter-spacing:0.086400px;}
.lsa_c00153{letter-spacing:0.100800px;}
.ls9_c00153{letter-spacing:0.129600px;}
.ls14_c00153{letter-spacing:3.600000px;}
.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:-18.028800px;}
.ws2_c00153{word-spacing:0.000000px;}
.ws1_c00153{word-spacing:0.138276px;}
.ws9_c00153{word-spacing:0.145800px;}
.ws8_c00153{word-spacing:0.178200px;}
.ws7_c00153{word-spacing:12.160800px;}
.ws6_c00153{word-spacing:15.494400px;}
.ws4_c00153{word-spacing:15.681600px;}
.ws5_c00153{word-spacing:15.710400px;}
.ws3_c00153{word-spacing:15.854400px;}
.wsa_c00153{word-spacing:16.581600px;}
._8_c00153{margin-left:-4.392000px;}
._9_c00153{margin-left:-2.808000px;}
._0_c00153{margin-left:-1.022400px;}
._5_c00153{width:1.209600px;}
._4_c00153{width:2.275200px;}
._c_c00153{width:3.657600px;}
._d_c00153{width:4.989600px;}
._6_c00153{width:6.969600px;}
._7_c00153{width:8.150400px;}
._a_c00153{width:9.892800px;}
._2_c00153{width:11.368800px;}
._3_c00153{width:13.053600px;}
._b_c00153{width:14.090400px;}
._1_c00153{width:15.444000px;}
._e_c00153{width:17.049600px;}
.fc1_c00153{color:rgb(68,84,106);}
.fc0_c00153{color:rgb(0,0,0);}
.fs2_c00153{font-size:54.000000px;}
.fs0_c00153{font-size:60.120000px;}
.fs1_c00153{font-size:72.000000px;}
.y0_c00153{bottom:0.000000px;}
.y6_c00153{bottom:57.360450px;}
.y5_c00153{bottom:78.060450px;}
.y22_c00153{bottom:114.150450px;}
.y21_c00153{bottom:145.200450px;}
.y20_c00153{bottom:176.250450px;}
.y1f_c00153{bottom:207.300450px;}
.y1e_c00153{bottom:238.350450px;}
.y1d_c00153{bottom:269.400450px;}
.y1c_c00153{bottom:300.450450px;}
.y1b_c00153{bottom:331.500450px;}
.y1a_c00153{bottom:362.550450px;}
.y19_c00153{bottom:393.600450px;}
.y18_c00153{bottom:420.510450px;}
.y17_c00153{bottom:619.950450px;}
.y16_c00153{bottom:658.560450px;}
.y15_c00153{bottom:689.700450px;}
.y14_c00153{bottom:720.750450px;}
.y13_c00153{bottom:751.800450px;}
.y12_c00153{bottom:782.850450px;}
.y11_c00153{bottom:813.900450px;}
.y10_c00153{bottom:844.950450px;}
.yf_c00153{bottom:876.000450px;}
.ye_c00153{bottom:907.050450px;}
.yd_c00153{bottom:938.100450px;}
.yc_c00153{bottom:969.150450px;}
.yb_c00153{bottom:1000.200450px;}
.ya_c00153{bottom:1031.160450px;}
.y9_c00153{bottom:1062.210450px;}
.y8_c00153{bottom:1093.260450px;}
.y7_c00153{bottom:1124.310450px;}
.y4_c00153{bottom:1144.380657px;}
.y3_c00153{bottom:1161.660648px;}
.y2_c00153{bottom:1178.850459px;}
.y1_c00153{bottom:1196.130450px;}
.h4_c00153{height:47.513672px;}
.h1_c00153{height:52.898555px;}
.h2_c00153{height:63.175781px;}
.h3_c00153{height:63.351562px;}
.h0_c00153{height:1263.000000px;}
.w1_c00153{width:892.500000px;}
.w0_c00153{width:892.830000px;}
.x0_c00153{left:0.000000px;}
.x4_c00153{left:127.620000px;}
.x1_c00153{left:649.620000px;}
.x5_c00153{left:657.990000px;}
.x3_c00153{left:738.450000px;}
.x2_c00153{left:765.450198px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls18_c00153{letter-spacing:-0.192000pt;}
.ls17_c00153{letter-spacing:-0.153600pt;}
.ls16_c00153{letter-spacing:-0.051200pt;}
.ls15_c00153{letter-spacing:-0.044800pt;}
.lsf_c00153{letter-spacing:-0.042752pt;}
.ls12_c00153{letter-spacing:-0.019200pt;}
.ls11_c00153{letter-spacing:-0.012800pt;}
.ls13_c00153{letter-spacing:-0.006400pt;}
.ls10_c00153{letter-spacing:0.000000pt;}
.ls1_c00153{letter-spacing:0.006400pt;}
.ls4_c00153{letter-spacing:0.012800pt;}
.ls7_c00153{letter-spacing:0.019200pt;}
.ls3_c00153{letter-spacing:0.025600pt;}
.lsc_c00153{letter-spacing:0.028800pt;}
.ls0_c00153{letter-spacing:0.032000pt;}
.ls5_c00153{letter-spacing:0.038400pt;}
.lsd_c00153{letter-spacing:0.044800pt;}
.lsb_c00153{letter-spacing:0.051200pt;}
.lse_c00153{letter-spacing:0.057600pt;}
.ls8_c00153{letter-spacing:0.064000pt;}
.ls2_c00153{letter-spacing:0.070400pt;}
.ls6_c00153{letter-spacing:0.076800pt;}
.lsa_c00153{letter-spacing:0.089600pt;}
.ls9_c00153{letter-spacing:0.115200pt;}
.ls14_c00153{letter-spacing:3.200000pt;}
.ws0_c00153{word-spacing:-16.025600pt;}
.ws2_c00153{word-spacing:0.000000pt;}
.ws1_c00153{word-spacing:0.122912pt;}
.ws9_c00153{word-spacing:0.129600pt;}
.ws8_c00153{word-spacing:0.158400pt;}
.ws7_c00153{word-spacing:10.809600pt;}
.ws6_c00153{word-spacing:13.772800pt;}
.ws4_c00153{word-spacing:13.939200pt;}
.ws5_c00153{word-spacing:13.964800pt;}
.ws3_c00153{word-spacing:14.092800pt;}
.wsa_c00153{word-spacing:14.739200pt;}
._8_c00153{margin-left:-3.904000pt;}
._9_c00153{margin-left:-2.496000pt;}
._0_c00153{margin-left:-0.908800pt;}
._5_c00153{width:1.075200pt;}
._4_c00153{width:2.022400pt;}
._c_c00153{width:3.251200pt;}
._d_c00153{width:4.435200pt;}
._6_c00153{width:6.195200pt;}
._7_c00153{width:7.244800pt;}
._a_c00153{width:8.793600pt;}
._2_c00153{width:10.105600pt;}
._3_c00153{width:11.603200pt;}
._b_c00153{width:12.524800pt;}
._1_c00153{width:13.728000pt;}
._e_c00153{width:15.155200pt;}
.fs2_c00153{font-size:48.000000pt;}
.fs0_c00153{font-size:53.440000pt;}
.fs1_c00153{font-size:64.000000pt;}
.y0_c00153{bottom:0.000000pt;}
.y6_c00153{bottom:50.987067pt;}
.y5_c00153{bottom:69.387067pt;}
.y22_c00153{bottom:101.467067pt;}
.y21_c00153{bottom:129.067067pt;}
.y20_c00153{bottom:156.667067pt;}
.y1f_c00153{bottom:184.267067pt;}
.y1e_c00153{bottom:211.867067pt;}
.y1d_c00153{bottom:239.467067pt;}
.y1c_c00153{bottom:267.067067pt;}
.y1b_c00153{bottom:294.667067pt;}
.y1a_c00153{bottom:322.267067pt;}
.y19_c00153{bottom:349.867067pt;}
.y18_c00153{bottom:373.787067pt;}
.y17_c00153{bottom:551.067067pt;}
.y16_c00153{bottom:585.387067pt;}
.y15_c00153{bottom:613.067067pt;}
.y14_c00153{bottom:640.667067pt;}
.y13_c00153{bottom:668.267067pt;}
.y12_c00153{bottom:695.867067pt;}
.y11_c00153{bottom:723.467067pt;}
.y10_c00153{bottom:751.067067pt;}
.yf_c00153{bottom:778.667067pt;}
.ye_c00153{bottom:806.267067pt;}
.yd_c00153{bottom:833.867067pt;}
.yc_c00153{bottom:861.467067pt;}
.yb_c00153{bottom:889.067067pt;}
.ya_c00153{bottom:916.587067pt;}
.y9_c00153{bottom:944.187067pt;}
.y8_c00153{bottom:971.787067pt;}
.y7_c00153{bottom:999.387067pt;}
.y4_c00153{bottom:1017.227251pt;}
.y3_c00153{bottom:1032.587243pt;}
.y2_c00153{bottom:1047.867075pt;}
.y1_c00153{bottom:1063.227067pt;}
.h4_c00153{height:42.234375pt;}
.h1_c00153{height:47.020937pt;}
.h2_c00153{height:56.156250pt;}
.h3_c00153{height:56.312500pt;}
.h0_c00153{height:1122.666667pt;}
.w1_c00153{width:793.333333pt;}
.w0_c00153{width:793.626667pt;}
.x0_c00153{left:0.000000pt;}
.x4_c00153{left:113.440000pt;}
.x1_c00153{left:577.440000pt;}
.x5_c00153{left:584.880000pt;}
.x3_c00153{left:656.400000pt;}
.x2_c00153{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d85bbf02b2197e5a6e1b124.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.095703;font-style:normal;font-weight:normal;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_67515c4782262d4cf97267a2.woff2')format("woff");}.ff2_c00154{font-family:ff2_c00154;line-height:1.093262;font-style:normal;font-weight:normal;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_13e4c6e9a2b74dbc3af2e38a.woff2')format("woff");}.ff3_c00154{font-family:ff3_c00154;line-height:0.896973;font-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_c00154{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2_c00154{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls11_c00154{letter-spacing:-0.090180px;}
.ls16_c00154{letter-spacing:-0.043200px;}
.ls15_c00154{letter-spacing:-0.007200px;}
.ls12_c00154{letter-spacing:0.000000px;}
.lse_c00154{letter-spacing:0.005400px;}
.ls6_c00154{letter-spacing:0.007200px;}
.ls10_c00154{letter-spacing:0.010800px;}
.ls0_c00154{letter-spacing:0.014400px;}
.lsf_c00154{letter-spacing:0.016200px;}
.ls9_c00154{letter-spacing:0.021600px;}
.ls4_c00154{letter-spacing:0.027000px;}
.ls7_c00154{letter-spacing:0.028800px;}
.lsb_c00154{letter-spacing:0.036000px;}
.ls5_c00154{letter-spacing:0.037800px;}
.ls2_c00154{letter-spacing:0.043200px;}
.ls1_c00154{letter-spacing:0.050400px;}
.lsc_c00154{letter-spacing:0.057600px;}
.ls8_c00154{letter-spacing:0.064800px;}
.ls3_c00154{letter-spacing:0.072000px;}
.ls14_c00154{letter-spacing:0.086400px;}
.lsd_c00154{letter-spacing:0.115200px;}
.lsa_c00154{letter-spacing:0.144000px;}
.ls13_c00154{letter-spacing:2.167200px;}
.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;}
}
.wsb_c00154{word-spacing:-2.354400px;}
.ws1_c00154{word-spacing:0.000000px;}
.ws7_c00154{word-spacing:0.140400px;}
.ws6_c00154{word-spacing:0.145800px;}
.wsc_c00154{word-spacing:0.167400px;}
.ws0_c00154{word-spacing:0.186372px;}
.ws2_c00154{word-spacing:2.080800px;}
.ws4_c00154{word-spacing:2.678400px;}
.ws3_c00154{word-spacing:3.024000px;}
.ws5_c00154{word-spacing:3.067200px;}
.ws9_c00154{word-spacing:14.608800px;}
.ws8_c00154{word-spacing:16.761600px;}
.wsa_c00154{word-spacing:21.772800px;}
._b_c00154{margin-left:-4.185756px;}
._3_c00154{margin-left:-2.913444px;}
._2_c00154{margin-left:-1.392156px;}
._0_c00154{width:1.028052px;}
._1_c00154{width:2.116800px;}
._8_c00154{width:3.204000px;}
._6_c00154{width:6.004800px;}
._7_c00154{width:7.228800px;}
._4_c00154{width:8.272800px;}
._9_c00154{width:10.764000px;}
._a_c00154{width:12.052800px;}
._e_c00154{width:14.342400px;}
._d_c00154{width:16.308000px;}
._5_c00154{width:20.160000px;}
._c_c00154{width:68.378400px;}
.fc2_c00154{color:rgb(68,84,106);}
.fc1_c00154{color:rgb(0,0,0);}
.fc0_c00154{color:rgb(32,31,30);}
.fs2_c00154{font-size:54.000000px;}
.fs0_c00154{font-size:60.120000px;}
.fs1_c00154{font-size:72.000000px;}
.y0_c00154{bottom:0.000000px;}
.y23_c00154{bottom:3.240450px;}
.y27_c00154{bottom:3.240600px;}
.y5_c00154{bottom:57.360450px;}
.y4_c00154{bottom:78.060450px;}
.y21_c00154{bottom:126.750450px;}
.y20_c00154{bottom:157.890450px;}
.y1f_c00154{bottom:188.940450px;}
.y1e_c00154{bottom:219.990450px;}
.y1d_c00154{bottom:251.040450px;}
.y1c_c00154{bottom:282.090450px;}
.y1b_c00154{bottom:313.140450px;}
.y28_c00154{bottom:329.430450px;}
.y26_c00154{bottom:341.760000px;}
.y1a_c00154{bottom:344.190450px;}
.y25_c00154{bottom:345.000000px;}
.y22_c00154{bottom:357.240000px;}
.y24_c00154{bottom:360.480450px;}
.y19_c00154{bottom:375.240450px;}
.y18_c00154{bottom:406.290450px;}
.y17_c00154{bottom:437.340450px;}
.y16_c00154{bottom:468.390450px;}
.y15_c00154{bottom:499.440450px;}
.y14_c00154{bottom:530.490450px;}
.y13_c00154{bottom:561.540450px;}
.y12_c00154{bottom:592.590450px;}
.y11_c00154{bottom:623.640450px;}
.y10_c00154{bottom:654.690450px;}
.yf_c00154{bottom:685.740450px;}
.ye_c00154{bottom:716.790450px;}
.yd_c00154{bottom:747.840450px;}
.yc_c00154{bottom:778.890450px;}
.yb_c00154{bottom:805.890450px;}
.ya_c00154{bottom:995.070000px;}
.y9_c00154{bottom:1010.550450px;}
.y8_c00154{bottom:1049.250450px;}
.y7_c00154{bottom:1080.390450px;}
.y6_c00154{bottom:1111.440450px;}
.y3_c00154{bottom:1132.140450px;}
.y2_c00154{bottom:1165.441023px;}
.y1_c00154{bottom:1196.040600px;}
.h5_c00154{height:15.300000px;}
.h4_c00154{height:47.513672px;}
.h6_c00154{height:49.042969px;}
.h1_c00154{height:52.898555px;}
.h2_c00154{height:63.175781px;}
.h3_c00154{height:63.351562px;}
.h0_c00154{height:1263.000000px;}
.w2_c00154{width:261.180000px;}
.w1_c00154{width:892.500000px;}
.w0_c00154{width:892.830000px;}
.x0_c00154{left:0.000000px;}
.x1_c00154{left:127.620000px;}
.x5_c00154{left:131.850000px;}
.x6_c00154{left:257.490000px;}
.x4_c00154{left:402.028905px;}
.x2_c00154{left:738.450676px;}
.x3_c00154{left:747.450000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls11_c00154{letter-spacing:-0.080160pt;}
.ls16_c00154{letter-spacing:-0.038400pt;}
.ls15_c00154{letter-spacing:-0.006400pt;}
.ls12_c00154{letter-spacing:0.000000pt;}
.lse_c00154{letter-spacing:0.004800pt;}
.ls6_c00154{letter-spacing:0.006400pt;}
.ls10_c00154{letter-spacing:0.009600pt;}
.ls0_c00154{letter-spacing:0.012800pt;}
.lsf_c00154{letter-spacing:0.014400pt;}
.ls9_c00154{letter-spacing:0.019200pt;}
.ls4_c00154{letter-spacing:0.024000pt;}
.ls7_c00154{letter-spacing:0.025600pt;}
.lsb_c00154{letter-spacing:0.032000pt;}
.ls5_c00154{letter-spacing:0.033600pt;}
.ls2_c00154{letter-spacing:0.038400pt;}
.ls1_c00154{letter-spacing:0.044800pt;}
.lsc_c00154{letter-spacing:0.051200pt;}
.ls8_c00154{letter-spacing:0.057600pt;}
.ls3_c00154{letter-spacing:0.064000pt;}
.ls14_c00154{letter-spacing:0.076800pt;}
.lsd_c00154{letter-spacing:0.102400pt;}
.lsa_c00154{letter-spacing:0.128000pt;}
.ls13_c00154{letter-spacing:1.926400pt;}
.wsb_c00154{word-spacing:-2.092800pt;}
.ws1_c00154{word-spacing:0.000000pt;}
.ws7_c00154{word-spacing:0.124800pt;}
.ws6_c00154{word-spacing:0.129600pt;}
.wsc_c00154{word-spacing:0.148800pt;}
.ws0_c00154{word-spacing:0.165664pt;}
.ws2_c00154{word-spacing:1.849600pt;}
.ws4_c00154{word-spacing:2.380800pt;}
.ws3_c00154{word-spacing:2.688000pt;}
.ws5_c00154{word-spacing:2.726400pt;}
.ws9_c00154{word-spacing:12.985600pt;}
.ws8_c00154{word-spacing:14.899200pt;}
.wsa_c00154{word-spacing:19.353600pt;}
._b_c00154{margin-left:-3.720672pt;}
._3_c00154{margin-left:-2.589728pt;}
._2_c00154{margin-left:-1.237472pt;}
._0_c00154{width:0.913824pt;}
._1_c00154{width:1.881600pt;}
._8_c00154{width:2.848000pt;}
._6_c00154{width:5.337600pt;}
._7_c00154{width:6.425600pt;}
._4_c00154{width:7.353600pt;}
._9_c00154{width:9.568000pt;}
._a_c00154{width:10.713600pt;}
._e_c00154{width:12.748800pt;}
._d_c00154{width:14.496000pt;}
._5_c00154{width:17.920000pt;}
._c_c00154{width:60.780800pt;}
.fs2_c00154{font-size:48.000000pt;}
.fs0_c00154{font-size:53.440000pt;}
.fs1_c00154{font-size:64.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y23_c00154{bottom:2.880400pt;}
.y27_c00154{bottom:2.880533pt;}
.y5_c00154{bottom:50.987067pt;}
.y4_c00154{bottom:69.387067pt;}
.y21_c00154{bottom:112.667067pt;}
.y20_c00154{bottom:140.347067pt;}
.y1f_c00154{bottom:167.947067pt;}
.y1e_c00154{bottom:195.547067pt;}
.y1d_c00154{bottom:223.147067pt;}
.y1c_c00154{bottom:250.747067pt;}
.y1b_c00154{bottom:278.347067pt;}
.y28_c00154{bottom:292.827067pt;}
.y26_c00154{bottom:303.786667pt;}
.y1a_c00154{bottom:305.947067pt;}
.y25_c00154{bottom:306.666667pt;}
.y22_c00154{bottom:317.546667pt;}
.y24_c00154{bottom:320.427067pt;}
.y19_c00154{bottom:333.547067pt;}
.y18_c00154{bottom:361.147067pt;}
.y17_c00154{bottom:388.747067pt;}
.y16_c00154{bottom:416.347067pt;}
.y15_c00154{bottom:443.947067pt;}
.y14_c00154{bottom:471.547067pt;}
.y13_c00154{bottom:499.147067pt;}
.y12_c00154{bottom:526.747067pt;}
.y11_c00154{bottom:554.347067pt;}
.y10_c00154{bottom:581.947067pt;}
.yf_c00154{bottom:609.547067pt;}
.ye_c00154{bottom:637.147067pt;}
.yd_c00154{bottom:664.747067pt;}
.yc_c00154{bottom:692.347067pt;}
.yb_c00154{bottom:716.347067pt;}
.ya_c00154{bottom:884.506667pt;}
.y9_c00154{bottom:898.267067pt;}
.y8_c00154{bottom:932.667067pt;}
.y7_c00154{bottom:960.347067pt;}
.y6_c00154{bottom:987.947067pt;}
.y3_c00154{bottom:1006.347067pt;}
.y2_c00154{bottom:1035.947576pt;}
.y1_c00154{bottom:1063.147200pt;}
.h5_c00154{height:13.600000pt;}
.h4_c00154{height:42.234375pt;}
.h6_c00154{height:43.593750pt;}
.h1_c00154{height:47.020937pt;}
.h2_c00154{height:56.156250pt;}
.h3_c00154{height:56.312500pt;}
.h0_c00154{height:1122.666667pt;}
.w2_c00154{width:232.160000pt;}
.w1_c00154{width:793.333333pt;}
.w0_c00154{width:793.626667pt;}
.x0_c00154{left:0.000000pt;}
.x1_c00154{left:113.440000pt;}
.x5_c00154{left:117.200000pt;}
.x6_c00154{left:228.880000pt;}
.x4_c00154{left:357.359026pt;}
.x2_c00154{left:656.400601pt;}
.x3_c00154{left:664.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_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_1f393397a5df415ef32b624e.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.095703;font-style:normal;font-weight:normal;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_ee776ae5e47b42a83fc0a6b0.woff2')format("woff");}.ff2_c00155{font-family:ff2_c00155;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.lse_c00155{letter-spacing:-0.237600px;}
.lsd_c00155{letter-spacing:-0.057600px;}
.lsa_c00155{letter-spacing:-0.048096px;}
.ls10_c00155{letter-spacing:-0.036000px;}
.lsc_c00155{letter-spacing:-0.014400px;}
.lsf_c00155{letter-spacing:-0.007200px;}
.lsb_c00155{letter-spacing:0.000000px;}
.ls7_c00155{letter-spacing:0.007200px;}
.ls3_c00155{letter-spacing:0.014400px;}
.ls5_c00155{letter-spacing:0.021600px;}
.ls1_c00155{letter-spacing:0.028800px;}
.ls4_c00155{letter-spacing:0.036000px;}
.ls6_c00155{letter-spacing:0.043200px;}
.ls8_c00155{letter-spacing:0.050400px;}
.ls2_c00155{letter-spacing:0.064800px;}
.ls0_c00155{letter-spacing:0.079200px;}
.ls9_c00155{letter-spacing:0.136800px;}
.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:-17.985600px;}
.ws5_c00155{word-spacing:-0.482400px;}
.ws2_c00155{word-spacing:0.000000px;}
.ws1_c00155{word-spacing:0.138276px;}
.ws6_c00155{word-spacing:0.156600px;}
.ws4_c00155{word-spacing:1.728000px;}
.ws3_c00155{word-spacing:8.625600px;}
._8_c00155{margin-left:-2.232000px;}
._6_c00155{margin-left:-1.036800px;}
._5_c00155{width:1.800000px;}
._0_c00155{width:3.520800px;}
._1_c00155{width:4.521600px;}
._7_c00155{width:6.084000px;}
._9_c00155{width:7.430400px;}
._4_c00155{width:8.625600px;}
._a_c00155{width:10.432800px;}
._2_c00155{width:11.491200px;}
._3_c00155{width:12.628800px;}
._b_c00155{width:20.217600px;}
._c_c00155{width:21.657600px;}
._d_c00155{width:25.524000px;}
.fc1_c00155{color:rgb(68,84,106);}
.fc0_c00155{color:rgb(0,0,0);}
.fs2_c00155{font-size:54.000000px;}
.fs0_c00155{font-size:60.120000px;}
.fs1_c00155{font-size:72.000000px;}
.y0_c00155{bottom:0.000000px;}
.y6_c00155{bottom:57.360450px;}
.y5_c00155{bottom:78.060450px;}
.y20_c00155{bottom:119.910450px;}
.y1f_c00155{bottom:150.960450px;}
.y1e_c00155{bottom:182.010450px;}
.y1d_c00155{bottom:213.060450px;}
.y1c_c00155{bottom:244.110450px;}
.y1b_c00155{bottom:282.990450px;}
.y1a_c00155{bottom:513.930600px;}
.y19_c00155{bottom:552.540450px;}
.y18_c00155{bottom:583.680450px;}
.y17_c00155{bottom:614.730450px;}
.y16_c00155{bottom:645.780450px;}
.y15_c00155{bottom:676.830450px;}
.y14_c00155{bottom:707.880450px;}
.y13_c00155{bottom:742.080450px;}
.y12_c00155{bottom:764.400450px;}
.y11_c00155{bottom:789.780450px;}
.y10_c00155{bottom:832.800450px;}
.yf_c00155{bottom:863.940450px;}
.ye_c00155{bottom:894.990450px;}
.yd_c00155{bottom:926.040450px;}
.yc_c00155{bottom:957.090450px;}
.yb_c00155{bottom:1000.110450px;}
.ya_c00155{bottom:1031.160450px;}
.y9_c00155{bottom:1062.210450px;}
.y8_c00155{bottom:1093.260450px;}
.y7_c00155{bottom:1124.310450px;}
.y4_c00155{bottom:1144.380657px;}
.y3_c00155{bottom:1161.660648px;}
.y2_c00155{bottom:1178.850459px;}
.y1_c00155{bottom:1196.130450px;}
.h4_c00155{height:47.513672px;}
.h1_c00155{height:52.898555px;}
.h2_c00155{height:63.175781px;}
.h3_c00155{height:63.351562px;}
.h0_c00155{height:1263.000000px;}
.w1_c00155{width:892.500000px;}
.w0_c00155{width:892.830000px;}
.x0_c00155{left:0.000000px;}
.x4_c00155{left:127.620000px;}
.x5_c00155{left:648.270000px;}
.x1_c00155{left:649.620000px;}
.x3_c00155{left:738.450000px;}
.x2_c00155{left:765.450198px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.lse_c00155{letter-spacing:-0.211200pt;}
.lsd_c00155{letter-spacing:-0.051200pt;}
.lsa_c00155{letter-spacing:-0.042752pt;}
.ls10_c00155{letter-spacing:-0.032000pt;}
.lsc_c00155{letter-spacing:-0.012800pt;}
.lsf_c00155{letter-spacing:-0.006400pt;}
.lsb_c00155{letter-spacing:0.000000pt;}
.ls7_c00155{letter-spacing:0.006400pt;}
.ls3_c00155{letter-spacing:0.012800pt;}
.ls5_c00155{letter-spacing:0.019200pt;}
.ls1_c00155{letter-spacing:0.025600pt;}
.ls4_c00155{letter-spacing:0.032000pt;}
.ls6_c00155{letter-spacing:0.038400pt;}
.ls8_c00155{letter-spacing:0.044800pt;}
.ls2_c00155{letter-spacing:0.057600pt;}
.ls0_c00155{letter-spacing:0.070400pt;}
.ls9_c00155{letter-spacing:0.121600pt;}
.ws0_c00155{word-spacing:-15.987200pt;}
.ws5_c00155{word-spacing:-0.428800pt;}
.ws2_c00155{word-spacing:0.000000pt;}
.ws1_c00155{word-spacing:0.122912pt;}
.ws6_c00155{word-spacing:0.139200pt;}
.ws4_c00155{word-spacing:1.536000pt;}
.ws3_c00155{word-spacing:7.667200pt;}
._8_c00155{margin-left:-1.984000pt;}
._6_c00155{margin-left:-0.921600pt;}
._5_c00155{width:1.600000pt;}
._0_c00155{width:3.129600pt;}
._1_c00155{width:4.019200pt;}
._7_c00155{width:5.408000pt;}
._9_c00155{width:6.604800pt;}
._4_c00155{width:7.667200pt;}
._a_c00155{width:9.273600pt;}
._2_c00155{width:10.214400pt;}
._3_c00155{width:11.225600pt;}
._b_c00155{width:17.971200pt;}
._c_c00155{width:19.251200pt;}
._d_c00155{width:22.688000pt;}
.fs2_c00155{font-size:48.000000pt;}
.fs0_c00155{font-size:53.440000pt;}
.fs1_c00155{font-size:64.000000pt;}
.y0_c00155{bottom:0.000000pt;}
.y6_c00155{bottom:50.987067pt;}
.y5_c00155{bottom:69.387067pt;}
.y20_c00155{bottom:106.587067pt;}
.y1f_c00155{bottom:134.187067pt;}
.y1e_c00155{bottom:161.787067pt;}
.y1d_c00155{bottom:189.387067pt;}
.y1c_c00155{bottom:216.987067pt;}
.y1b_c00155{bottom:251.547067pt;}
.y1a_c00155{bottom:456.827200pt;}
.y19_c00155{bottom:491.147067pt;}
.y18_c00155{bottom:518.827067pt;}
.y17_c00155{bottom:546.427067pt;}
.y16_c00155{bottom:574.027067pt;}
.y15_c00155{bottom:601.627067pt;}
.y14_c00155{bottom:629.227067pt;}
.y13_c00155{bottom:659.627067pt;}
.y12_c00155{bottom:679.467067pt;}
.y11_c00155{bottom:702.027067pt;}
.y10_c00155{bottom:740.267067pt;}
.yf_c00155{bottom:767.947067pt;}
.ye_c00155{bottom:795.547067pt;}
.yd_c00155{bottom:823.147067pt;}
.yc_c00155{bottom:850.747067pt;}
.yb_c00155{bottom:888.987067pt;}
.ya_c00155{bottom:916.587067pt;}
.y9_c00155{bottom:944.187067pt;}
.y8_c00155{bottom:971.787067pt;}
.y7_c00155{bottom:999.387067pt;}
.y4_c00155{bottom:1017.227251pt;}
.y3_c00155{bottom:1032.587243pt;}
.y2_c00155{bottom:1047.867075pt;}
.y1_c00155{bottom:1063.227067pt;}
.h4_c00155{height:42.234375pt;}
.h1_c00155{height:47.020937pt;}
.h2_c00155{height:56.156250pt;}
.h3_c00155{height:56.312500pt;}
.h0_c00155{height:1122.666667pt;}
.w1_c00155{width:793.333333pt;}
.w0_c00155{width:793.626667pt;}
.x0_c00155{left:0.000000pt;}
.x4_c00155{left:113.440000pt;}
.x5_c00155{left:576.240000pt;}
.x1_c00155{left:577.440000pt;}
.x3_c00155{left:656.400000pt;}
.x2_c00155{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0511ae7d035fefeafd2ce41e.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.095703;font-style:normal;font-weight:normal;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_2049ca335e75a1a70fffdc13.woff2')format("woff");}.ff2_c00156{font-family:ff2_c00156;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00156{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.lsc_c00156{letter-spacing:-0.102204px;}
.ls11_c00156{letter-spacing:-0.028800px;}
.ls10_c00156{letter-spacing:-0.021600px;}
.lsf_c00156{letter-spacing:-0.014400px;}
.lse_c00156{letter-spacing:-0.007200px;}
.lsd_c00156{letter-spacing:0.000000px;}
.ls5_c00156{letter-spacing:0.007200px;}
.ls0_c00156{letter-spacing:0.014400px;}
.ls3_c00156{letter-spacing:0.021600px;}
.ls6_c00156{letter-spacing:0.028800px;}
.ls2_c00156{letter-spacing:0.036000px;}
.ls7_c00156{letter-spacing:0.050400px;}
.ls4_c00156{letter-spacing:0.057600px;}
.ls9_c00156{letter-spacing:0.064800px;}
.ls1_c00156{letter-spacing:0.072000px;}
.lsb_c00156{letter-spacing:0.079200px;}
.ls8_c00156{letter-spacing:0.100800px;}
.lsa_c00156{letter-spacing:0.108000px;}
.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;}
}
.ws3_c00156{word-spacing:-1.130400px;}
.ws1_c00156{word-spacing:0.000000px;}
.ws0_c00156{word-spacing:0.192384px;}
.ws4_c00156{word-spacing:1.807200px;}
.ws2_c00156{word-spacing:8.964000px;}
._a_c00156{margin-left:-3.528000px;}
._5_c00156{margin-left:-2.404800px;}
._6_c00156{margin-left:-1.303200px;}
._0_c00156{width:1.034064px;}
._8_c00156{width:2.287152px;}
._9_c00156{width:3.631392px;}
._7_c00156{width:5.047200px;}
._2_c00156{width:6.494400px;}
._1_c00156{width:7.545600px;}
._4_c00156{width:8.604000px;}
._3_c00156{width:9.748800px;}
._b_c00156{width:16.884000px;}
.fc1_c00156{color:rgb(0,0,0);}
.fc0_c00156{color:rgb(32,31,30);}
.fs0_c00156{font-size:60.120000px;}
.fs1_c00156{font-size:72.000000px;}
.y0_c00156{bottom:0.000000px;}
.y5_c00156{bottom:57.360450px;}
.y4_c00156{bottom:78.060450px;}
.y24_c00156{bottom:120.000450px;}
.y23_c00156{bottom:151.050450px;}
.y22_c00156{bottom:193.980450px;}
.y21_c00156{bottom:225.120450px;}
.y20_c00156{bottom:256.170450px;}
.y1f_c00156{bottom:287.220450px;}
.y1e_c00156{bottom:318.270450px;}
.y1d_c00156{bottom:349.320450px;}
.y1c_c00156{bottom:380.370450px;}
.y1b_c00156{bottom:423.300450px;}
.y1a_c00156{bottom:454.440450px;}
.y19_c00156{bottom:485.490450px;}
.y18_c00156{bottom:516.540450px;}
.y17_c00156{bottom:547.590450px;}
.y16_c00156{bottom:578.640450px;}
.y15_c00156{bottom:609.690450px;}
.y14_c00156{bottom:640.740450px;}
.y13_c00156{bottom:683.670450px;}
.y12_c00156{bottom:714.810450px;}
.y11_c00156{bottom:745.860450px;}
.y10_c00156{bottom:776.910450px;}
.yf_c00156{bottom:807.960450px;}
.ye_c00156{bottom:839.010450px;}
.yd_c00156{bottom:882.030450px;}
.yc_c00156{bottom:913.170450px;}
.yb_c00156{bottom:944.220450px;}
.ya_c00156{bottom:975.180450px;}
.y9_c00156{bottom:1006.230450px;}
.y8_c00156{bottom:1037.280450px;}
.y7_c00156{bottom:1080.300450px;}
.y6_c00156{bottom:1111.440450px;}
.y3_c00156{bottom:1132.140450px;}
.y2_c00156{bottom:1165.441023px;}
.y1_c00156{bottom:1196.040600px;}
.h1_c00156{height:52.898555px;}
.h2_c00156{height:63.175781px;}
.h3_c00156{height:63.351562px;}
.h0_c00156{height:1263.000000px;}
.w1_c00156{width:892.500000px;}
.w0_c00156{width:892.830000px;}
.x0_c00156{left:0.000000px;}
.x1_c00156{left:127.620000px;}
.x2_c00156{left:738.450000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.lsc_c00156{letter-spacing:-0.090848pt;}
.ls11_c00156{letter-spacing:-0.025600pt;}
.ls10_c00156{letter-spacing:-0.019200pt;}
.lsf_c00156{letter-spacing:-0.012800pt;}
.lse_c00156{letter-spacing:-0.006400pt;}
.lsd_c00156{letter-spacing:0.000000pt;}
.ls5_c00156{letter-spacing:0.006400pt;}
.ls0_c00156{letter-spacing:0.012800pt;}
.ls3_c00156{letter-spacing:0.019200pt;}
.ls6_c00156{letter-spacing:0.025600pt;}
.ls2_c00156{letter-spacing:0.032000pt;}
.ls7_c00156{letter-spacing:0.044800pt;}
.ls4_c00156{letter-spacing:0.051200pt;}
.ls9_c00156{letter-spacing:0.057600pt;}
.ls1_c00156{letter-spacing:0.064000pt;}
.lsb_c00156{letter-spacing:0.070400pt;}
.ls8_c00156{letter-spacing:0.089600pt;}
.lsa_c00156{letter-spacing:0.096000pt;}
.ws3_c00156{word-spacing:-1.004800pt;}
.ws1_c00156{word-spacing:0.000000pt;}
.ws0_c00156{word-spacing:0.171008pt;}
.ws4_c00156{word-spacing:1.606400pt;}
.ws2_c00156{word-spacing:7.968000pt;}
._a_c00156{margin-left:-3.136000pt;}
._5_c00156{margin-left:-2.137600pt;}
._6_c00156{margin-left:-1.158400pt;}
._0_c00156{width:0.919168pt;}
._8_c00156{width:2.033024pt;}
._9_c00156{width:3.227904pt;}
._7_c00156{width:4.486400pt;}
._2_c00156{width:5.772800pt;}
._1_c00156{width:6.707200pt;}
._4_c00156{width:7.648000pt;}
._3_c00156{width:8.665600pt;}
._b_c00156{width:15.008000pt;}
.fs0_c00156{font-size:53.440000pt;}
.fs1_c00156{font-size:64.000000pt;}
.y0_c00156{bottom:0.000000pt;}
.y5_c00156{bottom:50.987067pt;}
.y4_c00156{bottom:69.387067pt;}
.y24_c00156{bottom:106.667067pt;}
.y23_c00156{bottom:134.267067pt;}
.y22_c00156{bottom:172.427067pt;}
.y21_c00156{bottom:200.107067pt;}
.y20_c00156{bottom:227.707067pt;}
.y1f_c00156{bottom:255.307067pt;}
.y1e_c00156{bottom:282.907067pt;}
.y1d_c00156{bottom:310.507067pt;}
.y1c_c00156{bottom:338.107067pt;}
.y1b_c00156{bottom:376.267067pt;}
.y1a_c00156{bottom:403.947067pt;}
.y19_c00156{bottom:431.547067pt;}
.y18_c00156{bottom:459.147067pt;}
.y17_c00156{bottom:486.747067pt;}
.y16_c00156{bottom:514.347067pt;}
.y15_c00156{bottom:541.947067pt;}
.y14_c00156{bottom:569.547067pt;}
.y13_c00156{bottom:607.707067pt;}
.y12_c00156{bottom:635.387067pt;}
.y11_c00156{bottom:662.987067pt;}
.y10_c00156{bottom:690.587067pt;}
.yf_c00156{bottom:718.187067pt;}
.ye_c00156{bottom:745.787067pt;}
.yd_c00156{bottom:784.027067pt;}
.yc_c00156{bottom:811.707067pt;}
.yb_c00156{bottom:839.307067pt;}
.ya_c00156{bottom:866.827067pt;}
.y9_c00156{bottom:894.427067pt;}
.y8_c00156{bottom:922.027067pt;}
.y7_c00156{bottom:960.267067pt;}
.y6_c00156{bottom:987.947067pt;}
.y3_c00156{bottom:1006.347067pt;}
.y2_c00156{bottom:1035.947576pt;}
.y1_c00156{bottom:1063.147200pt;}
.h1_c00156{height:47.020937pt;}
.h2_c00156{height:56.156250pt;}
.h3_c00156{height:56.312500pt;}
.h0_c00156{height:1122.666667pt;}
.w1_c00156{width:793.333333pt;}
.w0_c00156{width:793.626667pt;}
.x0_c00156{left:0.000000pt;}
.x1_c00156{left:113.440000pt;}
.x2_c00156{left:656.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_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_ed005f6c5150659b5f8cd734.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.095703;font-style:normal;font-weight:normal;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_8deee40c1c262a4b305d1611.woff2')format("woff");}.ff2_c00157{font-family:ff2_c00157;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00157{font-family:ff3_c00157;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00157{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls11_c00157{letter-spacing:-0.048096px;}
.ls13_c00157{letter-spacing:-0.043200px;}
.ls17_c00157{letter-spacing:-0.028800px;}
.ls16_c00157{letter-spacing:-0.021600px;}
.ls15_c00157{letter-spacing:-0.014400px;}
.ls14_c00157{letter-spacing:-0.007200px;}
.ls12_c00157{letter-spacing:0.000000px;}
.lse_c00157{letter-spacing:0.010800px;}
.ls2_c00157{letter-spacing:0.014400px;}
.lsa_c00157{letter-spacing:0.021600px;}
.ls0_c00157{letter-spacing:0.028800px;}
.ls3_c00157{letter-spacing:0.036000px;}
.lsf_c00157{letter-spacing:0.037800px;}
.ls7_c00157{letter-spacing:0.043200px;}
.ls10_c00157{letter-spacing:0.050400px;}
.ls8_c00157{letter-spacing:0.057600px;}
.ls4_c00157{letter-spacing:0.064800px;}
.lsd_c00157{letter-spacing:0.072000px;}
.lsb_c00157{letter-spacing:0.100800px;}
.ls1_c00157{letter-spacing:0.108000px;}
.ls5_c00157{letter-spacing:0.115200px;}
.lsc_c00157{letter-spacing:0.151200px;}
.ls9_c00157{letter-spacing:0.439200px;}
.ls6_c00157{letter-spacing:5.040000px;}
.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;}
}
.ws1_c00157{word-spacing:-18.000000px;}
.ws2_c00157{word-spacing:-17.992800px;}
.ws0_c00157{word-spacing:-17.985600px;}
.ws7_c00157{word-spacing:-1.857600px;}
.ws4_c00157{word-spacing:0.000000px;}
.ws3_c00157{word-spacing:0.138276px;}
.wsa_c00157{word-spacing:0.140400px;}
.ws9_c00157{word-spacing:0.167400px;}
.ws8_c00157{word-spacing:7.084800px;}
.ws6_c00157{word-spacing:8.971200px;}
.ws5_c00157{word-spacing:9.338400px;}
._5_c00157{margin-left:-6.048000px;}
._6_c00157{margin-left:-5.040000px;}
._7_c00157{margin-left:-3.787200px;}
._8_c00157{margin-left:-2.196000px;}
._0_c00157{margin-left:-1.036800px;}
._2_c00157{width:1.310400px;}
._9_c00157{width:2.318400px;}
._4_c00157{width:4.996800px;}
._b_c00157{width:6.523200px;}
._3_c00157{width:7.876800px;}
._1_c00157{width:9.338400px;}
._c_c00157{width:12.247200px;}
._a_c00157{width:14.004000px;}
.fc1_c00157{color:rgb(5,99,193);}
.fc2_c00157{color:rgb(68,84,106);}
.fc0_c00157{color:rgb(0,0,0);}
.fs2_c00157{font-size:54.000000px;}
.fs0_c00157{font-size:60.120000px;}
.fs1_c00157{font-size:72.000000px;}
.y0_c00157{bottom:0.000000px;}
.y6_c00157{bottom:57.360450px;}
.y5_c00157{bottom:78.060450px;}
.y21_c00157{bottom:144.930450px;}
.y20_c00157{bottom:175.980450px;}
.y1f_c00157{bottom:207.030450px;}
.y1e_c00157{bottom:246.000450px;}
.y1d_c00157{bottom:397.650450px;}
.y1c_c00157{bottom:436.260600px;}
.y1b_c00157{bottom:467.400600px;}
.y1a_c00157{bottom:498.450600px;}
.y19_c00157{bottom:529.500450px;}
.y18_c00157{bottom:572.430450px;}
.y17_c00157{bottom:603.570450px;}
.y16_c00157{bottom:634.620450px;}
.y15_c00157{bottom:665.670450px;}
.y14_c00157{bottom:696.720450px;}
.y13_c00157{bottom:727.770450px;}
.y12_c00157{bottom:770.700450px;}
.y11_c00157{bottom:801.840450px;}
.y10_c00157{bottom:832.890450px;}
.yf_c00157{bottom:863.940450px;}
.ye_c00157{bottom:894.990450px;}
.yd_c00157{bottom:926.040450px;}
.yc_c00157{bottom:957.090450px;}
.yb_c00157{bottom:1000.110450px;}
.ya_c00157{bottom:1031.160450px;}
.y9_c00157{bottom:1062.210450px;}
.y8_c00157{bottom:1093.260450px;}
.y7_c00157{bottom:1124.310450px;}
.y4_c00157{bottom:1144.380657px;}
.y3_c00157{bottom:1161.660648px;}
.y2_c00157{bottom:1178.850459px;}
.y1_c00157{bottom:1196.130450px;}
.h5_c00157{height:47.513672px;}
.h1_c00157{height:52.898555px;}
.h2_c00157{height:63.175781px;}
.h3_c00157{height:63.351562px;}
.h4_c00157{height:63.949219px;}
.h0_c00157{height:1263.000000px;}
.w1_c00157{width:892.500000px;}
.w0_c00157{width:892.830000px;}
.x0_c00157{left:0.000000px;}
.x4_c00157{left:127.620000px;}
.x1_c00157{left:649.620000px;}
.x3_c00157{left:738.450000px;}
.x5_c00157{left:756.450000px;}
.x2_c00157{left:765.450198px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls11_c00157{letter-spacing:-0.042752pt;}
.ls13_c00157{letter-spacing:-0.038400pt;}
.ls17_c00157{letter-spacing:-0.025600pt;}
.ls16_c00157{letter-spacing:-0.019200pt;}
.ls15_c00157{letter-spacing:-0.012800pt;}
.ls14_c00157{letter-spacing:-0.006400pt;}
.ls12_c00157{letter-spacing:0.000000pt;}
.lse_c00157{letter-spacing:0.009600pt;}
.ls2_c00157{letter-spacing:0.012800pt;}
.lsa_c00157{letter-spacing:0.019200pt;}
.ls0_c00157{letter-spacing:0.025600pt;}
.ls3_c00157{letter-spacing:0.032000pt;}
.lsf_c00157{letter-spacing:0.033600pt;}
.ls7_c00157{letter-spacing:0.038400pt;}
.ls10_c00157{letter-spacing:0.044800pt;}
.ls8_c00157{letter-spacing:0.051200pt;}
.ls4_c00157{letter-spacing:0.057600pt;}
.lsd_c00157{letter-spacing:0.064000pt;}
.lsb_c00157{letter-spacing:0.089600pt;}
.ls1_c00157{letter-spacing:0.096000pt;}
.ls5_c00157{letter-spacing:0.102400pt;}
.lsc_c00157{letter-spacing:0.134400pt;}
.ls9_c00157{letter-spacing:0.390400pt;}
.ls6_c00157{letter-spacing:4.480000pt;}
.ws1_c00157{word-spacing:-16.000000pt;}
.ws2_c00157{word-spacing:-15.993600pt;}
.ws0_c00157{word-spacing:-15.987200pt;}
.ws7_c00157{word-spacing:-1.651200pt;}
.ws4_c00157{word-spacing:0.000000pt;}
.ws3_c00157{word-spacing:0.122912pt;}
.wsa_c00157{word-spacing:0.124800pt;}
.ws9_c00157{word-spacing:0.148800pt;}
.ws8_c00157{word-spacing:6.297600pt;}
.ws6_c00157{word-spacing:7.974400pt;}
.ws5_c00157{word-spacing:8.300800pt;}
._5_c00157{margin-left:-5.376000pt;}
._6_c00157{margin-left:-4.480000pt;}
._7_c00157{margin-left:-3.366400pt;}
._8_c00157{margin-left:-1.952000pt;}
._0_c00157{margin-left:-0.921600pt;}
._2_c00157{width:1.164800pt;}
._9_c00157{width:2.060800pt;}
._4_c00157{width:4.441600pt;}
._b_c00157{width:5.798400pt;}
._3_c00157{width:7.001600pt;}
._1_c00157{width:8.300800pt;}
._c_c00157{width:10.886400pt;}
._a_c00157{width:12.448000pt;}
.fs2_c00157{font-size:48.000000pt;}
.fs0_c00157{font-size:53.440000pt;}
.fs1_c00157{font-size:64.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y6_c00157{bottom:50.987067pt;}
.y5_c00157{bottom:69.387067pt;}
.y21_c00157{bottom:128.827067pt;}
.y20_c00157{bottom:156.427067pt;}
.y1f_c00157{bottom:184.027067pt;}
.y1e_c00157{bottom:218.667067pt;}
.y1d_c00157{bottom:353.467067pt;}
.y1c_c00157{bottom:387.787200pt;}
.y1b_c00157{bottom:415.467200pt;}
.y1a_c00157{bottom:443.067200pt;}
.y19_c00157{bottom:470.667067pt;}
.y18_c00157{bottom:508.827067pt;}
.y17_c00157{bottom:536.507067pt;}
.y16_c00157{bottom:564.107067pt;}
.y15_c00157{bottom:591.707067pt;}
.y14_c00157{bottom:619.307067pt;}
.y13_c00157{bottom:646.907067pt;}
.y12_c00157{bottom:685.067067pt;}
.y11_c00157{bottom:712.747067pt;}
.y10_c00157{bottom:740.347067pt;}
.yf_c00157{bottom:767.947067pt;}
.ye_c00157{bottom:795.547067pt;}
.yd_c00157{bottom:823.147067pt;}
.yc_c00157{bottom:850.747067pt;}
.yb_c00157{bottom:888.987067pt;}
.ya_c00157{bottom:916.587067pt;}
.y9_c00157{bottom:944.187067pt;}
.y8_c00157{bottom:971.787067pt;}
.y7_c00157{bottom:999.387067pt;}
.y4_c00157{bottom:1017.227251pt;}
.y3_c00157{bottom:1032.587243pt;}
.y2_c00157{bottom:1047.867075pt;}
.y1_c00157{bottom:1063.227067pt;}
.h5_c00157{height:42.234375pt;}
.h1_c00157{height:47.020937pt;}
.h2_c00157{height:56.156250pt;}
.h3_c00157{height:56.312500pt;}
.h4_c00157{height:56.843750pt;}
.h0_c00157{height:1122.666667pt;}
.w1_c00157{width:793.333333pt;}
.w0_c00157{width:793.626667pt;}
.x0_c00157{left:0.000000pt;}
.x4_c00157{left:113.440000pt;}
.x1_c00157{left:577.440000pt;}
.x3_c00157{left:656.400000pt;}
.x5_c00157{left:672.400000pt;}
.x2_c00157{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a23cce103bb23bd3018dc408.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.095703;font-style:normal;font-weight:normal;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_9782a3e6b6eac05b9596fcda.woff2')format("woff");}.ff2_c00158{font-family:ff2_c00158;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00158{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls12_c00158{letter-spacing:-0.180000px;}
.lsb_c00158{letter-spacing:-0.102204px;}
.ls14_c00158{letter-spacing:-0.057600px;}
.ls13_c00158{letter-spacing:-0.050400px;}
.ls10_c00158{letter-spacing:-0.043200px;}
.lse_c00158{letter-spacing:-0.028800px;}
.lsf_c00158{letter-spacing:-0.021600px;}
.ls11_c00158{letter-spacing:-0.014400px;}
.lsd_c00158{letter-spacing:-0.007200px;}
.lsc_c00158{letter-spacing:0.000000px;}
.ls1_c00158{letter-spacing:0.007200px;}
.ls0_c00158{letter-spacing:0.014400px;}
.ls6_c00158{letter-spacing:0.021600px;}
.ls9_c00158{letter-spacing:0.028800px;}
.lsa_c00158{letter-spacing:0.036000px;}
.ls2_c00158{letter-spacing:0.043200px;}
.ls7_c00158{letter-spacing:0.050400px;}
.ls4_c00158{letter-spacing:0.057600px;}
.ls3_c00158{letter-spacing:0.064800px;}
.ls5_c00158{letter-spacing:0.072000px;}
.ls8_c00158{letter-spacing:0.086400px;}
.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;}
}
.ws2_c00158{word-spacing:-18.036000px;}
.ws3_c00158{word-spacing:-18.028800px;}
.ws1_c00158{word-spacing:-18.007200px;}
.ws0_c00158{word-spacing:-17.971200px;}
.ws8_c00158{word-spacing:-2.174400px;}
.ws6_c00158{word-spacing:-1.872000px;}
.ws5_c00158{word-spacing:0.000000px;}
.ws4_c00158{word-spacing:0.192384px;}
.wsb_c00158{word-spacing:7.560000px;}
.wsa_c00158{word-spacing:10.072800px;}
.wsd_c00158{word-spacing:14.587200px;}
.wsc_c00158{word-spacing:14.752800px;}
.ws7_c00158{word-spacing:16.192800px;}
.ws9_c00158{word-spacing:20.109600px;}
._f_c00158{margin-left:-4.017600px;}
._3_c00158{margin-left:-2.203200px;}
._4_c00158{margin-left:-1.195200px;}
._0_c00158{width:1.034064px;}
._d_c00158{width:2.246400px;}
._a_c00158{width:3.427200px;}
._6_c00158{width:4.708800px;}
._5_c00158{width:6.508800px;}
._2_c00158{width:7.790400px;}
._1_c00158{width:8.985600px;}
._7_c00158{width:10.072800px;}
._e_c00158{width:11.390400px;}
._11_c00158{width:13.291200px;}
._10_c00158{width:14.702400px;}
._8_c00158{width:15.703200px;}
._9_c00158{width:16.951536px;}
._b_c00158{width:19.368000px;}
._c_c00158{width:20.577600px;}
.fc1_c00158{color:rgb(0,0,0);}
.fc0_c00158{color:rgb(32,31,30);}
.fs0_c00158{font-size:60.120000px;}
.fs1_c00158{font-size:72.000000px;}
.y0_c00158{bottom:0.000000px;}
.y5_c00158{bottom:57.360450px;}
.y4_c00158{bottom:78.060450px;}
.y24_c00158{bottom:131.880450px;}
.y23_c00158{bottom:163.020450px;}
.y22_c00158{bottom:194.070450px;}
.y21_c00158{bottom:225.120450px;}
.y20_c00158{bottom:256.170450px;}
.y1f_c00158{bottom:287.220450px;}
.y1e_c00158{bottom:318.270450px;}
.y1d_c00158{bottom:349.320450px;}
.y1c_c00158{bottom:392.250450px;}
.y1b_c00158{bottom:423.390450px;}
.y1a_c00158{bottom:454.440450px;}
.y19_c00158{bottom:485.490450px;}
.y18_c00158{bottom:516.540450px;}
.y17_c00158{bottom:547.590450px;}
.y16_c00158{bottom:578.640450px;}
.y15_c00158{bottom:609.690450px;}
.y14_c00158{bottom:652.620450px;}
.y13_c00158{bottom:683.760450px;}
.y12_c00158{bottom:714.810450px;}
.y11_c00158{bottom:745.860450px;}
.y10_c00158{bottom:776.910450px;}
.yf_c00158{bottom:819.930450px;}
.ye_c00158{bottom:851.070450px;}
.yd_c00158{bottom:882.120450px;}
.yc_c00158{bottom:913.170450px;}
.yb_c00158{bottom:944.220450px;}
.ya_c00158{bottom:975.180450px;}
.y9_c00158{bottom:1006.230450px;}
.y8_c00158{bottom:1037.280450px;}
.y7_c00158{bottom:1080.300450px;}
.y6_c00158{bottom:1111.440450px;}
.y3_c00158{bottom:1132.140450px;}
.y2_c00158{bottom:1165.441023px;}
.y1_c00158{bottom:1196.040600px;}
.h1_c00158{height:52.898555px;}
.h2_c00158{height:63.175781px;}
.h3_c00158{height:63.351562px;}
.h0_c00158{height:1263.000000px;}
.w1_c00158{width:892.500000px;}
.w0_c00158{width:892.830000px;}
.x0_c00158{left:0.000000px;}
.x1_c00158{left:127.620000px;}
.x2_c00158{left:738.450000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls12_c00158{letter-spacing:-0.160000pt;}
.lsb_c00158{letter-spacing:-0.090848pt;}
.ls14_c00158{letter-spacing:-0.051200pt;}
.ls13_c00158{letter-spacing:-0.044800pt;}
.ls10_c00158{letter-spacing:-0.038400pt;}
.lse_c00158{letter-spacing:-0.025600pt;}
.lsf_c00158{letter-spacing:-0.019200pt;}
.ls11_c00158{letter-spacing:-0.012800pt;}
.lsd_c00158{letter-spacing:-0.006400pt;}
.lsc_c00158{letter-spacing:0.000000pt;}
.ls1_c00158{letter-spacing:0.006400pt;}
.ls0_c00158{letter-spacing:0.012800pt;}
.ls6_c00158{letter-spacing:0.019200pt;}
.ls9_c00158{letter-spacing:0.025600pt;}
.lsa_c00158{letter-spacing:0.032000pt;}
.ls2_c00158{letter-spacing:0.038400pt;}
.ls7_c00158{letter-spacing:0.044800pt;}
.ls4_c00158{letter-spacing:0.051200pt;}
.ls3_c00158{letter-spacing:0.057600pt;}
.ls5_c00158{letter-spacing:0.064000pt;}
.ls8_c00158{letter-spacing:0.076800pt;}
.ws2_c00158{word-spacing:-16.032000pt;}
.ws3_c00158{word-spacing:-16.025600pt;}
.ws1_c00158{word-spacing:-16.006400pt;}
.ws0_c00158{word-spacing:-15.974400pt;}
.ws8_c00158{word-spacing:-1.932800pt;}
.ws6_c00158{word-spacing:-1.664000pt;}
.ws5_c00158{word-spacing:0.000000pt;}
.ws4_c00158{word-spacing:0.171008pt;}
.wsb_c00158{word-spacing:6.720000pt;}
.wsa_c00158{word-spacing:8.953600pt;}
.wsd_c00158{word-spacing:12.966400pt;}
.wsc_c00158{word-spacing:13.113600pt;}
.ws7_c00158{word-spacing:14.393600pt;}
.ws9_c00158{word-spacing:17.875200pt;}
._f_c00158{margin-left:-3.571200pt;}
._3_c00158{margin-left:-1.958400pt;}
._4_c00158{margin-left:-1.062400pt;}
._0_c00158{width:0.919168pt;}
._d_c00158{width:1.996800pt;}
._a_c00158{width:3.046400pt;}
._6_c00158{width:4.185600pt;}
._5_c00158{width:5.785600pt;}
._2_c00158{width:6.924800pt;}
._1_c00158{width:7.987200pt;}
._7_c00158{width:8.953600pt;}
._e_c00158{width:10.124800pt;}
._11_c00158{width:11.814400pt;}
._10_c00158{width:13.068800pt;}
._8_c00158{width:13.958400pt;}
._9_c00158{width:15.068032pt;}
._b_c00158{width:17.216000pt;}
._c_c00158{width:18.291200pt;}
.fs0_c00158{font-size:53.440000pt;}
.fs1_c00158{font-size:64.000000pt;}
.y0_c00158{bottom:0.000000pt;}
.y5_c00158{bottom:50.987067pt;}
.y4_c00158{bottom:69.387067pt;}
.y24_c00158{bottom:117.227067pt;}
.y23_c00158{bottom:144.907067pt;}
.y22_c00158{bottom:172.507067pt;}
.y21_c00158{bottom:200.107067pt;}
.y20_c00158{bottom:227.707067pt;}
.y1f_c00158{bottom:255.307067pt;}
.y1e_c00158{bottom:282.907067pt;}
.y1d_c00158{bottom:310.507067pt;}
.y1c_c00158{bottom:348.667067pt;}
.y1b_c00158{bottom:376.347067pt;}
.y1a_c00158{bottom:403.947067pt;}
.y19_c00158{bottom:431.547067pt;}
.y18_c00158{bottom:459.147067pt;}
.y17_c00158{bottom:486.747067pt;}
.y16_c00158{bottom:514.347067pt;}
.y15_c00158{bottom:541.947067pt;}
.y14_c00158{bottom:580.107067pt;}
.y13_c00158{bottom:607.787067pt;}
.y12_c00158{bottom:635.387067pt;}
.y11_c00158{bottom:662.987067pt;}
.y10_c00158{bottom:690.587067pt;}
.yf_c00158{bottom:728.827067pt;}
.ye_c00158{bottom:756.507067pt;}
.yd_c00158{bottom:784.107067pt;}
.yc_c00158{bottom:811.707067pt;}
.yb_c00158{bottom:839.307067pt;}
.ya_c00158{bottom:866.827067pt;}
.y9_c00158{bottom:894.427067pt;}
.y8_c00158{bottom:922.027067pt;}
.y7_c00158{bottom:960.267067pt;}
.y6_c00158{bottom:987.947067pt;}
.y3_c00158{bottom:1006.347067pt;}
.y2_c00158{bottom:1035.947576pt;}
.y1_c00158{bottom:1063.147200pt;}
.h1_c00158{height:47.020937pt;}
.h2_c00158{height:56.156250pt;}
.h3_c00158{height:56.312500pt;}
.h0_c00158{height:1122.666667pt;}
.w1_c00158{width:793.333333pt;}
.w0_c00158{width:793.626667pt;}
.x0_c00158{left:0.000000pt;}
.x1_c00158{left:113.440000pt;}
.x2_c00158{left:656.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_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_8250327adfa716443bbc9482.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.095703;font-style:normal;font-weight:normal;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_ae81373878f8eaf668a3424f.woff2')format("woff");}.ff2_c00159{font-family:ff2_c00159;line-height:1.093262;font-style: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);}
.v0_c00159{vertical-align:0.000000px;}
.ls17_c00159{letter-spacing:-0.093600px;}
.ls14_c00159{letter-spacing:-0.050400px;}
.lse_c00159{letter-spacing:-0.048096px;}
.ls16_c00159{letter-spacing:-0.043200px;}
.ls10_c00159{letter-spacing:-0.021600px;}
.ls13_c00159{letter-spacing:-0.014400px;}
.ls15_c00159{letter-spacing:-0.007200px;}
.lsf_c00159{letter-spacing:0.000000px;}
.ls4_c00159{letter-spacing:0.007200px;}
.ls1_c00159{letter-spacing:0.014400px;}
.ls6_c00159{letter-spacing:0.021600px;}
.ls0_c00159{letter-spacing:0.028800px;}
.ls8_c00159{letter-spacing:0.036000px;}
.ls2_c00159{letter-spacing:0.043200px;}
.ls5_c00159{letter-spacing:0.050400px;}
.ls3_c00159{letter-spacing:0.057600px;}
.lsa_c00159{letter-spacing:0.064800px;}
.lsc_c00159{letter-spacing:0.072000px;}
.ls9_c00159{letter-spacing:0.079200px;}
.ls7_c00159{letter-spacing:0.086400px;}
.ls11_c00159{letter-spacing:0.100800px;}
.lsd_c00159{letter-spacing:0.108000px;}
.lsb_c00159{letter-spacing:0.129600px;}
.ls12_c00159{letter-spacing:2.160000px;}
.ls18_c00159{letter-spacing:13.140000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00159{word-spacing:-18.021600px;}
.ws2_c00159{word-spacing:0.000000px;}
.ws4_c00159{word-spacing:0.007200px;}
.ws1_c00159{word-spacing:0.138276px;}
.ws5_c00159{word-spacing:0.172800px;}
.ws7_c00159{word-spacing:1.022400px;}
.ws8_c00159{word-spacing:1.130400px;}
.ws3_c00159{word-spacing:2.109600px;}
.ws6_c00159{word-spacing:2.160000px;}
._10_c00159{margin-left:-12.938400px;}
._7_c00159{margin-left:-4.636800px;}
._8_c00159{margin-left:-3.578400px;}
._4_c00159{margin-left:-2.484000px;}
._1_c00159{margin-left:-1.368000px;}
._0_c00159{width:1.411200px;}
._3_c00159{width:2.851200px;}
._5_c00159{width:5.392800px;}
._9_c00159{width:8.618400px;}
._b_c00159{width:10.332000px;}
._a_c00159{width:12.247200px;}
._f_c00159{width:13.305600px;}
._e_c00159{width:15.148800px;}
._2_c00159{width:16.538400px;}
._6_c00159{width:24.458400px;}
._c_c00159{width:38.275200px;}
._d_c00159{width:39.420000px;}
.fc0_c00159{color:rgb(0,0,0);}
.fs0_c00159{font-size:60.120000px;}
.fs1_c00159{font-size:72.000000px;}
.y0_c00159{bottom:0.000000px;}
.y6_c00159{bottom:57.360450px;}
.y5_c00159{bottom:78.060450px;}
.y25_c00159{bottom:156.000450px;}
.y24_c00159{bottom:187.140450px;}
.y23_c00159{bottom:218.190450px;}
.y22_c00159{bottom:261.120450px;}
.y21_c00159{bottom:292.260450px;}
.y20_c00159{bottom:323.310450px;}
.y1f_c00159{bottom:354.360450px;}
.y1e_c00159{bottom:385.410450px;}
.y1d_c00159{bottom:416.460450px;}
.y1c_c00159{bottom:459.390450px;}
.y1b_c00159{bottom:490.530450px;}
.y1a_c00159{bottom:521.580450px;}
.y19_c00159{bottom:552.630450px;}
.y18_c00159{bottom:583.680450px;}
.y17_c00159{bottom:617.880450px;}
.y16_c00159{bottom:640.200450px;}
.y15_c00159{bottom:665.580450px;}
.y14_c00159{bottom:708.600450px;}
.y13_c00159{bottom:739.740450px;}
.y12_c00159{bottom:770.790450px;}
.y11_c00159{bottom:801.840450px;}
.y10_c00159{bottom:832.890450px;}
.yf_c00159{bottom:875.910450px;}
.ye_c00159{bottom:907.050450px;}
.yd_c00159{bottom:938.100450px;}
.yc_c00159{bottom:969.150450px;}
.yb_c00159{bottom:1000.200450px;}
.ya_c00159{bottom:1031.160450px;}
.y9_c00159{bottom:1062.210450px;}
.y8_c00159{bottom:1093.260450px;}
.y7_c00159{bottom:1124.310450px;}
.y4_c00159{bottom:1144.380657px;}
.y3_c00159{bottom:1161.660648px;}
.y2_c00159{bottom:1178.850459px;}
.y1_c00159{bottom:1196.130450px;}
.h1_c00159{height:52.898555px;}
.h2_c00159{height:63.175781px;}
.h3_c00159{height:63.351562px;}
.h0_c00159{height:1263.000000px;}
.w1_c00159{width:892.500000px;}
.w0_c00159{width:892.830000px;}
.x0_c00159{left:0.000000px;}
.x4_c00159{left:127.620000px;}
.x1_c00159{left:649.620000px;}
.x3_c00159{left:738.450000px;}
.x2_c00159{left:765.450198px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls17_c00159{letter-spacing:-0.083200pt;}
.ls14_c00159{letter-spacing:-0.044800pt;}
.lse_c00159{letter-spacing:-0.042752pt;}
.ls16_c00159{letter-spacing:-0.038400pt;}
.ls10_c00159{letter-spacing:-0.019200pt;}
.ls13_c00159{letter-spacing:-0.012800pt;}
.ls15_c00159{letter-spacing:-0.006400pt;}
.lsf_c00159{letter-spacing:0.000000pt;}
.ls4_c00159{letter-spacing:0.006400pt;}
.ls1_c00159{letter-spacing:0.012800pt;}
.ls6_c00159{letter-spacing:0.019200pt;}
.ls0_c00159{letter-spacing:0.025600pt;}
.ls8_c00159{letter-spacing:0.032000pt;}
.ls2_c00159{letter-spacing:0.038400pt;}
.ls5_c00159{letter-spacing:0.044800pt;}
.ls3_c00159{letter-spacing:0.051200pt;}
.lsa_c00159{letter-spacing:0.057600pt;}
.lsc_c00159{letter-spacing:0.064000pt;}
.ls9_c00159{letter-spacing:0.070400pt;}
.ls7_c00159{letter-spacing:0.076800pt;}
.ls11_c00159{letter-spacing:0.089600pt;}
.lsd_c00159{letter-spacing:0.096000pt;}
.lsb_c00159{letter-spacing:0.115200pt;}
.ls12_c00159{letter-spacing:1.920000pt;}
.ls18_c00159{letter-spacing:11.680000pt;}
.ws0_c00159{word-spacing:-16.019200pt;}
.ws2_c00159{word-spacing:0.000000pt;}
.ws4_c00159{word-spacing:0.006400pt;}
.ws1_c00159{word-spacing:0.122912pt;}
.ws5_c00159{word-spacing:0.153600pt;}
.ws7_c00159{word-spacing:0.908800pt;}
.ws8_c00159{word-spacing:1.004800pt;}
.ws3_c00159{word-spacing:1.875200pt;}
.ws6_c00159{word-spacing:1.920000pt;}
._10_c00159{margin-left:-11.500800pt;}
._7_c00159{margin-left:-4.121600pt;}
._8_c00159{margin-left:-3.180800pt;}
._4_c00159{margin-left:-2.208000pt;}
._1_c00159{margin-left:-1.216000pt;}
._0_c00159{width:1.254400pt;}
._3_c00159{width:2.534400pt;}
._5_c00159{width:4.793600pt;}
._9_c00159{width:7.660800pt;}
._b_c00159{width:9.184000pt;}
._a_c00159{width:10.886400pt;}
._f_c00159{width:11.827200pt;}
._e_c00159{width:13.465600pt;}
._2_c00159{width:14.700800pt;}
._6_c00159{width:21.740800pt;}
._c_c00159{width:34.022400pt;}
._d_c00159{width:35.040000pt;}
.fs0_c00159{font-size:53.440000pt;}
.fs1_c00159{font-size:64.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y6_c00159{bottom:50.987067pt;}
.y5_c00159{bottom:69.387067pt;}
.y25_c00159{bottom:138.667067pt;}
.y24_c00159{bottom:166.347067pt;}
.y23_c00159{bottom:193.947067pt;}
.y22_c00159{bottom:232.107067pt;}
.y21_c00159{bottom:259.787067pt;}
.y20_c00159{bottom:287.387067pt;}
.y1f_c00159{bottom:314.987067pt;}
.y1e_c00159{bottom:342.587067pt;}
.y1d_c00159{bottom:370.187067pt;}
.y1c_c00159{bottom:408.347067pt;}
.y1b_c00159{bottom:436.027067pt;}
.y1a_c00159{bottom:463.627067pt;}
.y19_c00159{bottom:491.227067pt;}
.y18_c00159{bottom:518.827067pt;}
.y17_c00159{bottom:549.227067pt;}
.y16_c00159{bottom:569.067067pt;}
.y15_c00159{bottom:591.627067pt;}
.y14_c00159{bottom:629.867067pt;}
.y13_c00159{bottom:657.547067pt;}
.y12_c00159{bottom:685.147067pt;}
.y11_c00159{bottom:712.747067pt;}
.y10_c00159{bottom:740.347067pt;}
.yf_c00159{bottom:778.587067pt;}
.ye_c00159{bottom:806.267067pt;}
.yd_c00159{bottom:833.867067pt;}
.yc_c00159{bottom:861.467067pt;}
.yb_c00159{bottom:889.067067pt;}
.ya_c00159{bottom:916.587067pt;}
.y9_c00159{bottom:944.187067pt;}
.y8_c00159{bottom:971.787067pt;}
.y7_c00159{bottom:999.387067pt;}
.y4_c00159{bottom:1017.227251pt;}
.y3_c00159{bottom:1032.587243pt;}
.y2_c00159{bottom:1047.867075pt;}
.y1_c00159{bottom:1063.227067pt;}
.h1_c00159{height:47.020937pt;}
.h2_c00159{height:56.156250pt;}
.h3_c00159{height:56.312500pt;}
.h0_c00159{height:1122.666667pt;}
.w1_c00159{width:793.333333pt;}
.w0_c00159{width:793.626667pt;}
.x0_c00159{left:0.000000pt;}
.x4_c00159{left:113.440000pt;}
.x1_c00159{left:577.440000pt;}
.x3_c00159{left:656.400000pt;}
.x2_c00159{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_01966e3f5e799b33a12ae830.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.095703;font-style:normal;font-weight:normal;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_b6a12b4b9961bde49e303f99.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls11_c00160{letter-spacing:-1.080000px;}
.lsc_c00160{letter-spacing:-0.102204px;}
.ls12_c00160{letter-spacing:-0.050400px;}
.ls13_c00160{letter-spacing:-0.036000px;}
.ls14_c00160{letter-spacing:-0.028800px;}
.lsf_c00160{letter-spacing:-0.021600px;}
.ls10_c00160{letter-spacing:-0.014400px;}
.lse_c00160{letter-spacing:-0.007200px;}
.lsd_c00160{letter-spacing:0.000000px;}
.ls2_c00160{letter-spacing:0.007200px;}
.ls7_c00160{letter-spacing:0.014400px;}
.ls4_c00160{letter-spacing:0.021600px;}
.ls8_c00160{letter-spacing:0.028800px;}
.ls1_c00160{letter-spacing:0.036000px;}
.lsa_c00160{letter-spacing:0.043200px;}
.ls0_c00160{letter-spacing:0.050400px;}
.ls5_c00160{letter-spacing:0.057600px;}
.ls6_c00160{letter-spacing:0.064800px;}
.lsb_c00160{letter-spacing:0.072000px;}
.ls3_c00160{letter-spacing:0.079200px;}
.ls9_c00160{letter-spacing:0.093600px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00160{word-spacing:0.000000px;}
.ws3_c00160{word-spacing:0.156600px;}
.ws0_c00160{word-spacing:0.192384px;}
.ws2_c00160{word-spacing:25.039800px;}
._b_c00160{margin-left:-3.182400px;}
._2_c00160{margin-left:-1.526400px;}
._0_c00160{width:1.034064px;}
._9_c00160{width:2.121552px;}
._1_c00160{width:3.909600px;}
._5_c00160{width:5.371200px;}
._8_c00160{width:7.380000px;}
._6_c00160{width:8.978400px;}
._3_c00160{width:10.087200px;}
._c_c00160{width:12.160800px;}
._d_c00160{width:13.348800px;}
._f_c00160{width:14.752800px;}
._e_c00160{width:15.825600px;}
._7_c00160{width:19.152000px;}
._a_c00160{width:23.004000px;}
._4_c00160{width:37.792800px;}
.fc2_c00160{color:rgb(68,84,106);}
.fc1_c00160{color:rgb(0,0,0);}
.fc0_c00160{color:rgb(32,31,30);}
.fs2_c00160{font-size:54.000000px;}
.fs0_c00160{font-size:60.120000px;}
.fs1_c00160{font-size:72.000000px;}
.y0_c00160{bottom:0.000000px;}
.y25_c00160{bottom:3.240450px;}
.y5_c00160{bottom:57.360450px;}
.y4_c00160{bottom:78.060450px;}
.y23_c00160{bottom:174.990450px;}
.y22_c00160{bottom:206.130450px;}
.y21_c00160{bottom:237.090450px;}
.y20_c00160{bottom:268.140450px;}
.y1f_c00160{bottom:299.190450px;}
.y1e_c00160{bottom:330.240450px;}
.y1d_c00160{bottom:361.290450px;}
.y1c_c00160{bottom:392.340450px;}
.y1b_c00160{bottom:435.360450px;}
.y1a_c00160{bottom:466.500450px;}
.y19_c00160{bottom:497.550450px;}
.y18_c00160{bottom:528.600450px;}
.y17_c00160{bottom:559.650450px;}
.y16_c00160{bottom:602.580450px;}
.y15_c00160{bottom:633.720450px;}
.y14_c00160{bottom:664.770450px;}
.y13_c00160{bottom:707.700450px;}
.y12_c00160{bottom:738.840450px;}
.y11_c00160{bottom:769.890450px;}
.y10_c00160{bottom:800.940450px;}
.yf_c00160{bottom:831.990450px;}
.ye_c00160{bottom:863.040450px;}
.yd_c00160{bottom:894.090450px;}
.yc_c00160{bottom:925.140450px;}
.yb_c00160{bottom:956.190450px;}
.ya_c00160{bottom:987.240450px;}
.y9_c00160{bottom:1018.290450px;}
.y8_c00160{bottom:1049.340450px;}
.y7_c00160{bottom:1080.390450px;}
.y27_c00160{bottom:1097.040000px;}
.y28_c00160{bottom:1100.280450px;}
.y6_c00160{bottom:1111.440450px;}
.y24_c00160{bottom:1112.520000px;}
.y26_c00160{bottom:1115.760450px;}
.y3_c00160{bottom:1132.140450px;}
.y2_c00160{bottom:1165.441023px;}
.y1_c00160{bottom:1196.040600px;}
.h3_c00160{height:15.300000px;}
.h4_c00160{height:47.513672px;}
.h1_c00160{height:52.898555px;}
.h2_c00160{height:63.175781px;}
.h5_c00160{height:63.351562px;}
.h0_c00160{height:1263.000000px;}
.w3_c00160{width:161.640000px;}
.w2_c00160{width:186.750000px;}
.w1_c00160{width:892.500000px;}
.w0_c00160{width:892.830000px;}
.x0_c00160{left:0.000000px;}
.x1_c00160{left:127.620000px;}
.x5_c00160{left:132.120000px;}
.x7_c00160{left:134.370000px;}
.x6_c00160{left:182.970000px;}
.x4_c00160{left:326.700000px;}
.x3_c00160{left:327.870000px;}
.x2_c00160{left:738.450000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls11_c00160{letter-spacing:-0.960000pt;}
.lsc_c00160{letter-spacing:-0.090848pt;}
.ls12_c00160{letter-spacing:-0.044800pt;}
.ls13_c00160{letter-spacing:-0.032000pt;}
.ls14_c00160{letter-spacing:-0.025600pt;}
.lsf_c00160{letter-spacing:-0.019200pt;}
.ls10_c00160{letter-spacing:-0.012800pt;}
.lse_c00160{letter-spacing:-0.006400pt;}
.lsd_c00160{letter-spacing:0.000000pt;}
.ls2_c00160{letter-spacing:0.006400pt;}
.ls7_c00160{letter-spacing:0.012800pt;}
.ls4_c00160{letter-spacing:0.019200pt;}
.ls8_c00160{letter-spacing:0.025600pt;}
.ls1_c00160{letter-spacing:0.032000pt;}
.lsa_c00160{letter-spacing:0.038400pt;}
.ls0_c00160{letter-spacing:0.044800pt;}
.ls5_c00160{letter-spacing:0.051200pt;}
.ls6_c00160{letter-spacing:0.057600pt;}
.lsb_c00160{letter-spacing:0.064000pt;}
.ls3_c00160{letter-spacing:0.070400pt;}
.ls9_c00160{letter-spacing:0.083200pt;}
.ws1_c00160{word-spacing:0.000000pt;}
.ws3_c00160{word-spacing:0.139200pt;}
.ws0_c00160{word-spacing:0.171008pt;}
.ws2_c00160{word-spacing:22.257600pt;}
._b_c00160{margin-left:-2.828800pt;}
._2_c00160{margin-left:-1.356800pt;}
._0_c00160{width:0.919168pt;}
._9_c00160{width:1.885824pt;}
._1_c00160{width:3.475200pt;}
._5_c00160{width:4.774400pt;}
._8_c00160{width:6.560000pt;}
._6_c00160{width:7.980800pt;}
._3_c00160{width:8.966400pt;}
._c_c00160{width:10.809600pt;}
._d_c00160{width:11.865600pt;}
._f_c00160{width:13.113600pt;}
._e_c00160{width:14.067200pt;}
._7_c00160{width:17.024000pt;}
._a_c00160{width:20.448000pt;}
._4_c00160{width:33.593600pt;}
.fs2_c00160{font-size:48.000000pt;}
.fs0_c00160{font-size:53.440000pt;}
.fs1_c00160{font-size:64.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y25_c00160{bottom:2.880400pt;}
.y5_c00160{bottom:50.987067pt;}
.y4_c00160{bottom:69.387067pt;}
.y23_c00160{bottom:155.547067pt;}
.y22_c00160{bottom:183.227067pt;}
.y21_c00160{bottom:210.747067pt;}
.y20_c00160{bottom:238.347067pt;}
.y1f_c00160{bottom:265.947067pt;}
.y1e_c00160{bottom:293.547067pt;}
.y1d_c00160{bottom:321.147067pt;}
.y1c_c00160{bottom:348.747067pt;}
.y1b_c00160{bottom:386.987067pt;}
.y1a_c00160{bottom:414.667067pt;}
.y19_c00160{bottom:442.267067pt;}
.y18_c00160{bottom:469.867067pt;}
.y17_c00160{bottom:497.467067pt;}
.y16_c00160{bottom:535.627067pt;}
.y15_c00160{bottom:563.307067pt;}
.y14_c00160{bottom:590.907067pt;}
.y13_c00160{bottom:629.067067pt;}
.y12_c00160{bottom:656.747067pt;}
.y11_c00160{bottom:684.347067pt;}
.y10_c00160{bottom:711.947067pt;}
.yf_c00160{bottom:739.547067pt;}
.ye_c00160{bottom:767.147067pt;}
.yd_c00160{bottom:794.747067pt;}
.yc_c00160{bottom:822.347067pt;}
.yb_c00160{bottom:849.947067pt;}
.ya_c00160{bottom:877.547067pt;}
.y9_c00160{bottom:905.147067pt;}
.y8_c00160{bottom:932.747067pt;}
.y7_c00160{bottom:960.347067pt;}
.y27_c00160{bottom:975.146667pt;}
.y28_c00160{bottom:978.027067pt;}
.y6_c00160{bottom:987.947067pt;}
.y24_c00160{bottom:988.906667pt;}
.y26_c00160{bottom:991.787067pt;}
.y3_c00160{bottom:1006.347067pt;}
.y2_c00160{bottom:1035.947576pt;}
.y1_c00160{bottom:1063.147200pt;}
.h3_c00160{height:13.600000pt;}
.h4_c00160{height:42.234375pt;}
.h1_c00160{height:47.020937pt;}
.h2_c00160{height:56.156250pt;}
.h5_c00160{height:56.312500pt;}
.h0_c00160{height:1122.666667pt;}
.w3_c00160{width:143.680000pt;}
.w2_c00160{width:166.000000pt;}
.w1_c00160{width:793.333333pt;}
.w0_c00160{width:793.626667pt;}
.x0_c00160{left:0.000000pt;}
.x1_c00160{left:113.440000pt;}
.x5_c00160{left:117.440000pt;}
.x7_c00160{left:119.440000pt;}
.x6_c00160{left:162.640000pt;}
.x4_c00160{left:290.400000pt;}
.x3_c00160{left:291.440000pt;}
.x2_c00160{left:656.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_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_f6c93e619b20af7aeff4f001.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_7906d291c9c5017bf40e36d9.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.093262;font-style: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;}
.ls16_c00161{letter-spacing:-0.273600px;}
.ls14_c00161{letter-spacing:-0.079200px;}
.lsd_c00161{letter-spacing:-0.048096px;}
.ls11_c00161{letter-spacing:-0.043200px;}
.ls10_c00161{letter-spacing:-0.036000px;}
.ls12_c00161{letter-spacing:-0.028800px;}
.ls13_c00161{letter-spacing:-0.021600px;}
.lsf_c00161{letter-spacing:-0.014400px;}
.ls15_c00161{letter-spacing:-0.007200px;}
.lse_c00161{letter-spacing:0.000000px;}
.lsc_c00161{letter-spacing:0.007200px;}
.lsa_c00161{letter-spacing:0.014400px;}
.ls7_c00161{letter-spacing:0.021600px;}
.ls1_c00161{letter-spacing:0.028800px;}
.ls2_c00161{letter-spacing:0.036000px;}
.ls9_c00161{letter-spacing:0.043200px;}
.ls5_c00161{letter-spacing:0.048600px;}
.ls0_c00161{letter-spacing:0.050400px;}
.ls8_c00161{letter-spacing:0.057600px;}
.ls3_c00161{letter-spacing:0.064800px;}
.ls6_c00161{letter-spacing:0.070200px;}
.ls4_c00161{letter-spacing:0.072000px;}
.lsb_c00161{letter-spacing:0.079200px;}
.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;}
}
.ws0_c00161{word-spacing:-18.079200px;}
.ws1_c00161{word-spacing:-18.007200px;}
.ws3_c00161{word-spacing:-17.992800px;}
.ws2_c00161{word-spacing:-17.985600px;}
.ws8_c00161{word-spacing:-2.124000px;}
.ws5_c00161{word-spacing:0.000000px;}
.ws7_c00161{word-spacing:0.108000px;}
.ws6_c00161{word-spacing:0.129600px;}
.ws4_c00161{word-spacing:0.138276px;}
._9_c00161{margin-left:-4.406400px;}
._4_c00161{margin-left:-3.326400px;}
._3_c00161{margin-left:-2.188800px;}
._0_c00161{margin-left:-1.188000px;}
._6_c00161{width:1.152000px;}
._5_c00161{width:2.865600px;}
._7_c00161{width:3.952800px;}
._8_c00161{width:5.335200px;}
._1_c00161{width:7.250400px;}
._2_c00161{width:8.294400px;}
._a_c00161{width:19.072800px;}
.fc1_c00161{color:rgb(68,84,106);}
.fc0_c00161{color:rgb(0,0,0);}
.fs2_c00161{font-size:54.000000px;}
.fs0_c00161{font-size:60.120000px;}
.fs1_c00161{font-size:72.000000px;}
.y0_c00161{bottom:0.000000px;}
.y6_c00161{bottom:57.360450px;}
.y5_c00161{bottom:78.060450px;}
.y20_c00161{bottom:112.170450px;}
.y1f_c00161{bottom:143.220450px;}
.y1e_c00161{bottom:174.270450px;}
.y1d_c00161{bottom:205.320450px;}
.y1c_c00161{bottom:236.280450px;}
.y1b_c00161{bottom:267.330450px;}
.y1a_c00161{bottom:298.380450px;}
.y19_c00161{bottom:329.430450px;}
.y18_c00161{bottom:372.450450px;}
.y17_c00161{bottom:403.590450px;}
.y16_c00161{bottom:434.640450px;}
.y15_c00161{bottom:465.690450px;}
.y14_c00161{bottom:496.740450px;}
.y13_c00161{bottom:527.790450px;}
.y12_c00161{bottom:558.840450px;}
.y11_c00161{bottom:589.800450px;}
.y10_c00161{bottom:620.850450px;}
.yf_c00161{bottom:651.900450px;}
.ye_c00161{bottom:682.950450px;}
.yd_c00161{bottom:714.000450px;}
.yc_c00161{bottom:757.020450px;}
.yb_c00161{bottom:795.990450px;}
.ya_c00161{bottom:1023.510450px;}
.y9_c00161{bottom:1062.120450px;}
.y8_c00161{bottom:1093.260450px;}
.y7_c00161{bottom:1124.310450px;}
.y4_c00161{bottom:1144.380657px;}
.y3_c00161{bottom:1161.660648px;}
.y2_c00161{bottom:1178.850459px;}
.y1_c00161{bottom:1196.130450px;}
.h3_c00161{height:47.513672px;}
.h1_c00161{height:52.898555px;}
.h2_c00161{height:63.175781px;}
.h4_c00161{height:63.351562px;}
.h0_c00161{height:1263.000000px;}
.w1_c00161{width:892.500000px;}
.w0_c00161{width:892.830000px;}
.x0_c00161{left:0.000000px;}
.x4_c00161{left:127.620000px;}
.x6_c00161{left:446.490000px;}
.x5_c00161{left:590.130000px;}
.x1_c00161{left:649.620000px;}
.x3_c00161{left:738.450000px;}
.x2_c00161{left:765.450198px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls16_c00161{letter-spacing:-0.243200pt;}
.ls14_c00161{letter-spacing:-0.070400pt;}
.lsd_c00161{letter-spacing:-0.042752pt;}
.ls11_c00161{letter-spacing:-0.038400pt;}
.ls10_c00161{letter-spacing:-0.032000pt;}
.ls12_c00161{letter-spacing:-0.025600pt;}
.ls13_c00161{letter-spacing:-0.019200pt;}
.lsf_c00161{letter-spacing:-0.012800pt;}
.ls15_c00161{letter-spacing:-0.006400pt;}
.lse_c00161{letter-spacing:0.000000pt;}
.lsc_c00161{letter-spacing:0.006400pt;}
.lsa_c00161{letter-spacing:0.012800pt;}
.ls7_c00161{letter-spacing:0.019200pt;}
.ls1_c00161{letter-spacing:0.025600pt;}
.ls2_c00161{letter-spacing:0.032000pt;}
.ls9_c00161{letter-spacing:0.038400pt;}
.ls5_c00161{letter-spacing:0.043200pt;}
.ls0_c00161{letter-spacing:0.044800pt;}
.ls8_c00161{letter-spacing:0.051200pt;}
.ls3_c00161{letter-spacing:0.057600pt;}
.ls6_c00161{letter-spacing:0.062400pt;}
.ls4_c00161{letter-spacing:0.064000pt;}
.lsb_c00161{letter-spacing:0.070400pt;}
.ws0_c00161{word-spacing:-16.070400pt;}
.ws1_c00161{word-spacing:-16.006400pt;}
.ws3_c00161{word-spacing:-15.993600pt;}
.ws2_c00161{word-spacing:-15.987200pt;}
.ws8_c00161{word-spacing:-1.888000pt;}
.ws5_c00161{word-spacing:0.000000pt;}
.ws7_c00161{word-spacing:0.096000pt;}
.ws6_c00161{word-spacing:0.115200pt;}
.ws4_c00161{word-spacing:0.122912pt;}
._9_c00161{margin-left:-3.916800pt;}
._4_c00161{margin-left:-2.956800pt;}
._3_c00161{margin-left:-1.945600pt;}
._0_c00161{margin-left:-1.056000pt;}
._6_c00161{width:1.024000pt;}
._5_c00161{width:2.547200pt;}
._7_c00161{width:3.513600pt;}
._8_c00161{width:4.742400pt;}
._1_c00161{width:6.444800pt;}
._2_c00161{width:7.372800pt;}
._a_c00161{width:16.953600pt;}
.fs2_c00161{font-size:48.000000pt;}
.fs0_c00161{font-size:53.440000pt;}
.fs1_c00161{font-size:64.000000pt;}
.y0_c00161{bottom:0.000000pt;}
.y6_c00161{bottom:50.987067pt;}
.y5_c00161{bottom:69.387067pt;}
.y20_c00161{bottom:99.707067pt;}
.y1f_c00161{bottom:127.307067pt;}
.y1e_c00161{bottom:154.907067pt;}
.y1d_c00161{bottom:182.507067pt;}
.y1c_c00161{bottom:210.027067pt;}
.y1b_c00161{bottom:237.627067pt;}
.y1a_c00161{bottom:265.227067pt;}
.y19_c00161{bottom:292.827067pt;}
.y18_c00161{bottom:331.067067pt;}
.y17_c00161{bottom:358.747067pt;}
.y16_c00161{bottom:386.347067pt;}
.y15_c00161{bottom:413.947067pt;}
.y14_c00161{bottom:441.547067pt;}
.y13_c00161{bottom:469.147067pt;}
.y12_c00161{bottom:496.747067pt;}
.y11_c00161{bottom:524.267067pt;}
.y10_c00161{bottom:551.867067pt;}
.yf_c00161{bottom:579.467067pt;}
.ye_c00161{bottom:607.067067pt;}
.yd_c00161{bottom:634.667067pt;}
.yc_c00161{bottom:672.907067pt;}
.yb_c00161{bottom:707.547067pt;}
.ya_c00161{bottom:909.787067pt;}
.y9_c00161{bottom:944.107067pt;}
.y8_c00161{bottom:971.787067pt;}
.y7_c00161{bottom:999.387067pt;}
.y4_c00161{bottom:1017.227251pt;}
.y3_c00161{bottom:1032.587243pt;}
.y2_c00161{bottom:1047.867075pt;}
.y1_c00161{bottom:1063.227067pt;}
.h3_c00161{height:42.234375pt;}
.h1_c00161{height:47.020937pt;}
.h2_c00161{height:56.156250pt;}
.h4_c00161{height:56.312500pt;}
.h0_c00161{height:1122.666667pt;}
.w1_c00161{width:793.333333pt;}
.w0_c00161{width:793.626667pt;}
.x0_c00161{left:0.000000pt;}
.x4_c00161{left:113.440000pt;}
.x6_c00161{left:396.880000pt;}
.x5_c00161{left:524.560000pt;}
.x1_c00161{left:577.440000pt;}
.x3_c00161{left:656.400000pt;}
.x2_c00161{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dcd9ed6632f317ab22a6f25c.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.095703;font-style:normal;font-weight:normal;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_8c18fd70b3f869b01c03aa94.woff2')format("woff");}.ff2_c00162{font-family:ff2_c00162;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00162{font-family:ff3_c00162;line-height:1.104004;font-style: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;}
.ls11_c00162{letter-spacing:-0.102204px;}
.ls14_c00162{letter-spacing:-0.093600px;}
.ls18_c00162{letter-spacing:-0.064800px;}
.ls17_c00162{letter-spacing:-0.050400px;}
.ls16_c00162{letter-spacing:-0.043200px;}
.ls1a_c00162{letter-spacing:-0.036000px;}
.ls19_c00162{letter-spacing:-0.028800px;}
.ls15_c00162{letter-spacing:-0.014400px;}
.ls13_c00162{letter-spacing:-0.007200px;}
.ls12_c00162{letter-spacing:0.000000px;}
.ls6_c00162{letter-spacing:0.007200px;}
.ls2_c00162{letter-spacing:0.014400px;}
.lsb_c00162{letter-spacing:0.021600px;}
.ls1_c00162{letter-spacing:0.028800px;}
.ls9_c00162{letter-spacing:0.036000px;}
.ls4_c00162{letter-spacing:0.043200px;}
.ls7_c00162{letter-spacing:0.050400px;}
.lsa_c00162{letter-spacing:0.057600px;}
.lsd_c00162{letter-spacing:0.064800px;}
.ls0_c00162{letter-spacing:0.072000px;}
.ls3_c00162{letter-spacing:0.079200px;}
.ls1d_c00162{letter-spacing:0.086400px;}
.ls5_c00162{letter-spacing:0.093600px;}
.ls10_c00162{letter-spacing:0.100800px;}
.lsc_c00162{letter-spacing:0.108000px;}
.lsf_c00162{letter-spacing:0.115200px;}
.lse_c00162{letter-spacing:0.122400px;}
.ls8_c00162{letter-spacing:0.302400px;}
.ls1c_c00162{letter-spacing:3.240000px;}
.ls1b_c00162{letter-spacing:5.760000px;}
.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;}
}
.ws1_c00162{word-spacing:-18.079200px;}
.ws3_c00162{word-spacing:-18.050400px;}
.ws6_c00162{word-spacing:-18.036000px;}
.ws5_c00162{word-spacing:-18.028800px;}
.ws2_c00162{word-spacing:-18.007200px;}
.ws0_c00162{word-spacing:-17.992800px;}
.ws4_c00162{word-spacing:-17.964000px;}
.wsa_c00162{word-spacing:-0.021600px;}
.ws8_c00162{word-spacing:0.000000px;}
.ws7_c00162{word-spacing:0.192384px;}
.ws9_c00162{word-spacing:7.545600px;}
._b_c00162{margin-left:-5.696928px;}
._a_c00162{margin-left:-3.988800px;}
._5_c00162{margin-left:-2.512800px;}
._3_c00162{margin-left:-1.281600px;}
._0_c00162{width:1.034064px;}
._1_c00162{width:2.649600px;}
._d_c00162{width:3.758400px;}
._7_c00162{width:4.939200px;}
._6_c00162{width:6.451200px;}
._4_c00162{width:8.265600px;}
._2_c00162{width:11.145600px;}
._8_c00162{width:12.204000px;}
._9_c00162{width:16.905600px;}
._e_c00162{width:22.708800px;}
._f_c00162{width:23.983200px;}
._c_c00162{width:32.371200px;}
.fc1_c00162{color:rgb(0,0,0);}
.fc0_c00162{color:rgb(32,31,30);}
.fs0_c00162{font-size:60.120000px;}
.fs1_c00162{font-size:72.000000px;}
.y0_c00162{bottom:0.000000px;}
.y5_c00162{bottom:57.360450px;}
.y4_c00162{bottom:78.060450px;}
.y22_c00162{bottom:170.130450px;}
.y21_c00162{bottom:201.090450px;}
.y20_c00162{bottom:232.140450px;}
.y1f_c00162{bottom:275.160450px;}
.y1e_c00162{bottom:306.300450px;}
.y1d_c00162{bottom:337.350450px;}
.y1c_c00162{bottom:368.400450px;}
.y1b_c00162{bottom:399.450450px;}
.y1a_c00162{bottom:430.500450px;}
.y19_c00162{bottom:461.550450px;}
.y18_c00162{bottom:492.600450px;}
.y17_c00162{bottom:523.650450px;}
.y16_c00162{bottom:554.700450px;}
.y15_c00162{bottom:597.630450px;}
.y14_c00162{bottom:628.770450px;}
.y13_c00162{bottom:659.820450px;}
.y12_c00162{bottom:690.870450px;}
.y11_c00162{bottom:733.800450px;}
.y10_c00162{bottom:764.940450px;}
.yf_c00162{bottom:795.990450px;}
.ye_c00162{bottom:827.040450px;}
.yd_c00162{bottom:869.970450px;}
.yc_c00162{bottom:901.110450px;}
.yb_c00162{bottom:932.160450px;}
.ya_c00162{bottom:975.090450px;}
.y9_c00162{bottom:1006.230450px;}
.y8_c00162{bottom:1037.280450px;}
.y7_c00162{bottom:1080.300450px;}
.y6_c00162{bottom:1111.440450px;}
.y3_c00162{bottom:1132.140450px;}
.y2_c00162{bottom:1165.441023px;}
.y1_c00162{bottom:1196.040600px;}
.h1_c00162{height:52.898555px;}
.h2_c00162{height:63.175781px;}
.h3_c00162{height:63.351562px;}
.h4_c00162{height:63.949219px;}
.h0_c00162{height:1263.000000px;}
.w1_c00162{width:892.500000px;}
.w0_c00162{width:892.830000px;}
.x0_c00162{left:0.000000px;}
.x1_c00162{left:127.620000px;}
.x2_c00162{left:738.450000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls11_c00162{letter-spacing:-0.090848pt;}
.ls14_c00162{letter-spacing:-0.083200pt;}
.ls18_c00162{letter-spacing:-0.057600pt;}
.ls17_c00162{letter-spacing:-0.044800pt;}
.ls16_c00162{letter-spacing:-0.038400pt;}
.ls1a_c00162{letter-spacing:-0.032000pt;}
.ls19_c00162{letter-spacing:-0.025600pt;}
.ls15_c00162{letter-spacing:-0.012800pt;}
.ls13_c00162{letter-spacing:-0.006400pt;}
.ls12_c00162{letter-spacing:0.000000pt;}
.ls6_c00162{letter-spacing:0.006400pt;}
.ls2_c00162{letter-spacing:0.012800pt;}
.lsb_c00162{letter-spacing:0.019200pt;}
.ls1_c00162{letter-spacing:0.025600pt;}
.ls9_c00162{letter-spacing:0.032000pt;}
.ls4_c00162{letter-spacing:0.038400pt;}
.ls7_c00162{letter-spacing:0.044800pt;}
.lsa_c00162{letter-spacing:0.051200pt;}
.lsd_c00162{letter-spacing:0.057600pt;}
.ls0_c00162{letter-spacing:0.064000pt;}
.ls3_c00162{letter-spacing:0.070400pt;}
.ls1d_c00162{letter-spacing:0.076800pt;}
.ls5_c00162{letter-spacing:0.083200pt;}
.ls10_c00162{letter-spacing:0.089600pt;}
.lsc_c00162{letter-spacing:0.096000pt;}
.lsf_c00162{letter-spacing:0.102400pt;}
.lse_c00162{letter-spacing:0.108800pt;}
.ls8_c00162{letter-spacing:0.268800pt;}
.ls1c_c00162{letter-spacing:2.880000pt;}
.ls1b_c00162{letter-spacing:5.120000pt;}
.ws1_c00162{word-spacing:-16.070400pt;}
.ws3_c00162{word-spacing:-16.044800pt;}
.ws6_c00162{word-spacing:-16.032000pt;}
.ws5_c00162{word-spacing:-16.025600pt;}
.ws2_c00162{word-spacing:-16.006400pt;}
.ws0_c00162{word-spacing:-15.993600pt;}
.ws4_c00162{word-spacing:-15.968000pt;}
.wsa_c00162{word-spacing:-0.019200pt;}
.ws8_c00162{word-spacing:0.000000pt;}
.ws7_c00162{word-spacing:0.171008pt;}
.ws9_c00162{word-spacing:6.707200pt;}
._b_c00162{margin-left:-5.063936pt;}
._a_c00162{margin-left:-3.545600pt;}
._5_c00162{margin-left:-2.233600pt;}
._3_c00162{margin-left:-1.139200pt;}
._0_c00162{width:0.919168pt;}
._1_c00162{width:2.355200pt;}
._d_c00162{width:3.340800pt;}
._7_c00162{width:4.390400pt;}
._6_c00162{width:5.734400pt;}
._4_c00162{width:7.347200pt;}
._2_c00162{width:9.907200pt;}
._8_c00162{width:10.848000pt;}
._9_c00162{width:15.027200pt;}
._e_c00162{width:20.185600pt;}
._f_c00162{width:21.318400pt;}
._c_c00162{width:28.774400pt;}
.fs0_c00162{font-size:53.440000pt;}
.fs1_c00162{font-size:64.000000pt;}
.y0_c00162{bottom:0.000000pt;}
.y5_c00162{bottom:50.987067pt;}
.y4_c00162{bottom:69.387067pt;}
.y22_c00162{bottom:151.227067pt;}
.y21_c00162{bottom:178.747067pt;}
.y20_c00162{bottom:206.347067pt;}
.y1f_c00162{bottom:244.587067pt;}
.y1e_c00162{bottom:272.267067pt;}
.y1d_c00162{bottom:299.867067pt;}
.y1c_c00162{bottom:327.467067pt;}
.y1b_c00162{bottom:355.067067pt;}
.y1a_c00162{bottom:382.667067pt;}
.y19_c00162{bottom:410.267067pt;}
.y18_c00162{bottom:437.867067pt;}
.y17_c00162{bottom:465.467067pt;}
.y16_c00162{bottom:493.067067pt;}
.y15_c00162{bottom:531.227067pt;}
.y14_c00162{bottom:558.907067pt;}
.y13_c00162{bottom:586.507067pt;}
.y12_c00162{bottom:614.107067pt;}
.y11_c00162{bottom:652.267067pt;}
.y10_c00162{bottom:679.947067pt;}
.yf_c00162{bottom:707.547067pt;}
.ye_c00162{bottom:735.147067pt;}
.yd_c00162{bottom:773.307067pt;}
.yc_c00162{bottom:800.987067pt;}
.yb_c00162{bottom:828.587067pt;}
.ya_c00162{bottom:866.747067pt;}
.y9_c00162{bottom:894.427067pt;}
.y8_c00162{bottom:922.027067pt;}
.y7_c00162{bottom:960.267067pt;}
.y6_c00162{bottom:987.947067pt;}
.y3_c00162{bottom:1006.347067pt;}
.y2_c00162{bottom:1035.947576pt;}
.y1_c00162{bottom:1063.147200pt;}
.h1_c00162{height:47.020937pt;}
.h2_c00162{height:56.156250pt;}
.h3_c00162{height:56.312500pt;}
.h4_c00162{height:56.843750pt;}
.h0_c00162{height:1122.666667pt;}
.w1_c00162{width:793.333333pt;}
.w0_c00162{width:793.626667pt;}
.x0_c00162{left:0.000000pt;}
.x1_c00162{left:113.440000pt;}
.x2_c00162{left:656.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_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_8b8bc95befa43a828bd9c599.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.095703;font-style:normal;font-weight:normal;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_25aa998e3821a3509f9f9cae.woff2')format("woff");}.ff2_c00163{font-family:ff2_c00163;line-height:1.093262;font-style: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:-20.880000px;}
.v0_c00163{vertical-align:0.000000px;}
.v1_c00163{vertical-align:27.000000px;}
.ls1d_c00163{letter-spacing:-2.160000px;}
.ls20_c00163{letter-spacing:-0.270540px;}
.ls18_c00163{letter-spacing:-0.136800px;}
.ls1f_c00163{letter-spacing:-0.114228px;}
.ls1e_c00163{letter-spacing:-0.066132px;}
.ls14_c00163{letter-spacing:-0.064800px;}
.ls1c_c00163{letter-spacing:-0.057600px;}
.ls11_c00163{letter-spacing:-0.050400px;}
.lsf_c00163{letter-spacing:-0.048096px;}
.ls13_c00163{letter-spacing:-0.043200px;}
.ls17_c00163{letter-spacing:-0.036000px;}
.ls1b_c00163{letter-spacing:-0.028800px;}
.ls12_c00163{letter-spacing:-0.021600px;}
.ls19_c00163{letter-spacing:-0.014400px;}
.ls1a_c00163{letter-spacing:-0.007200px;}
.ls10_c00163{letter-spacing:0.000000px;}
.lsb_c00163{letter-spacing:0.007200px;}
.ls5_c00163{letter-spacing:0.014400px;}
.ls7_c00163{letter-spacing:0.021600px;}
.ls6_c00163{letter-spacing:0.028800px;}
.ls0_c00163{letter-spacing:0.036000px;}
.ls2_c00163{letter-spacing:0.043200px;}
.ls4_c00163{letter-spacing:0.050400px;}
.ls1_c00163{letter-spacing:0.057600px;}
.ls8_c00163{letter-spacing:0.064800px;}
.ls3_c00163{letter-spacing:0.072000px;}
.lsc_c00163{letter-spacing:0.079200px;}
.lsd_c00163{letter-spacing:0.100800px;}
.lse_c00163{letter-spacing:0.115200px;}
.lsa_c00163{letter-spacing:0.122400px;}
.ls16_c00163{letter-spacing:0.181944px;}
.ls9_c00163{letter-spacing:0.360000px;}
.ls15_c00163{letter-spacing:9.720000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00163{word-spacing:-18.043200px;}
.ws7_c00163{word-spacing:-18.036000px;}
.ws6_c00163{word-spacing:-18.021600px;}
.ws1_c00163{word-spacing:-18.000000px;}
.ws5_c00163{word-spacing:-17.985600px;}
.ws4_c00163{word-spacing:-17.964000px;}
.ws0_c00163{word-spacing:-17.949600px;}
.ws9_c00163{word-spacing:-14.915772px;}
.ws3_c00163{word-spacing:-12.151944px;}
.ws8_c00163{word-spacing:-9.720000px;}
.wsc_c00163{word-spacing:-1.540800px;}
.ws14_c00163{word-spacing:-0.748800px;}
.ws13_c00163{word-spacing:-0.734400px;}
.ws12_c00163{word-spacing:-0.136800px;}
.ws15_c00163{word-spacing:-0.100800px;}
.ws11_c00163{word-spacing:-0.057600px;}
.ws10_c00163{word-spacing:-0.021600px;}
.wsb_c00163{word-spacing:0.000000px;}
.ws16_c00163{word-spacing:0.021600px;}
.wsa_c00163{word-spacing:0.138276px;}
.wsf_c00163{word-spacing:7.567200px;}
.wsd_c00163{word-spacing:8.524800px;}
.wse_c00163{word-spacing:8.596800px;}
._7_c00163{margin-left:-10.699200px;}
._6_c00163{margin-left:-9.590400px;}
._b_c00163{margin-left:-2.440800px;}
._2_c00163{margin-left:-1.087200px;}
._0_c00163{width:1.044000px;}
._3_c00163{width:2.527200px;}
._1_c00163{width:3.888000px;}
._d_c00163{width:5.025600px;}
._9_c00163{width:6.033600px;}
._8_c00163{width:7.351200px;}
._4_c00163{width:8.820000px;}
._5_c00163{width:10.641600px;}
._e_c00163{width:12.607200px;}
._f_c00163{width:13.968000px;}
._a_c00163{width:15.076800px;}
._c_c00163{width:19.029600px;}
.fc1_c00163{color:rgb(5,99,193);}
.fc0_c00163{color:rgb(0,0,0);}
.fs3_c00163{font-size:38.880000px;}
.fs2_c00163{font-size:47.880000px;}
.fs0_c00163{font-size:60.120000px;}
.fs1_c00163{font-size:72.000000px;}
.y0_c00163{bottom:0.000000px;}
.y6_c00163{bottom:57.360450px;}
.y5_c00163{bottom:78.060450px;}
.y24_c00163{bottom:115.140450px;}
.y23_c00163{bottom:127.830450px;}
.y22_c00163{bottom:213.960450px;}
.y21_c00163{bottom:245.100450px;}
.y20_c00163{bottom:276.150450px;}
.y1f_c00163{bottom:307.200450px;}
.y1e_c00163{bottom:350.130450px;}
.y1d_c00163{bottom:381.180450px;}
.y1c_c00163{bottom:412.320450px;}
.y1b_c00163{bottom:443.370450px;}
.y1a_c00163{bottom:486.390450px;}
.y19_c00163{bottom:517.530450px;}
.y18_c00163{bottom:548.490450px;}
.y17_c00163{bottom:579.630450px;}
.y16_c00163{bottom:610.680450px;}
.y15_c00163{bottom:653.610450px;}
.y14_c00163{bottom:684.750450px;}
.y13_c00163{bottom:715.800450px;}
.y12_c00163{bottom:746.850450px;}
.y11_c00163{bottom:777.900450px;}
.y10_c00163{bottom:820.830450px;}
.yf_c00163{bottom:851.970450px;}
.ye_c00163{bottom:883.020450px;}
.yd_c00163{bottom:925.950450px;}
.yc_c00163{bottom:957.090450px;}
.yb_c00163{bottom:988.140450px;}
.ya_c00163{bottom:1019.190450px;}
.y9_c00163{bottom:1050.240450px;}
.y8_c00163{bottom:1093.170450px;}
.y7_c00163{bottom:1124.310450px;}
.y4_c00163{bottom:1144.380657px;}
.y3_c00163{bottom:1161.660648px;}
.y2_c00163{bottom:1178.850459px;}
.y1_c00163{bottom:1196.130450px;}
.h5_c00163{height:34.114922px;}
.h1_c00163{height:52.898555px;}
.h2_c00163{height:63.175781px;}
.h3_c00163{height:63.351562px;}
.h4_c00163{height:69.011895px;}
.h0_c00163{height:1263.000000px;}
.w1_c00163{width:892.500000px;}
.w0_c00163{width:892.830000px;}
.x0_c00163{left:0.000000px;}
.x4_c00163{left:127.620000px;}
.x1_c00163{left:649.620000px;}
.x3_c00163{left:738.450000px;}
.x2_c00163{left:765.450198px;}
@media print{
.v2_c00163{vertical-align:-18.560000pt;}
.v0_c00163{vertical-align:0.000000pt;}
.v1_c00163{vertical-align:24.000000pt;}
.ls1d_c00163{letter-spacing:-1.920000pt;}
.ls20_c00163{letter-spacing:-0.240480pt;}
.ls18_c00163{letter-spacing:-0.121600pt;}
.ls1f_c00163{letter-spacing:-0.101536pt;}
.ls1e_c00163{letter-spacing:-0.058784pt;}
.ls14_c00163{letter-spacing:-0.057600pt;}
.ls1c_c00163{letter-spacing:-0.051200pt;}
.ls11_c00163{letter-spacing:-0.044800pt;}
.lsf_c00163{letter-spacing:-0.042752pt;}
.ls13_c00163{letter-spacing:-0.038400pt;}
.ls17_c00163{letter-spacing:-0.032000pt;}
.ls1b_c00163{letter-spacing:-0.025600pt;}
.ls12_c00163{letter-spacing:-0.019200pt;}
.ls19_c00163{letter-spacing:-0.012800pt;}
.ls1a_c00163{letter-spacing:-0.006400pt;}
.ls10_c00163{letter-spacing:0.000000pt;}
.lsb_c00163{letter-spacing:0.006400pt;}
.ls5_c00163{letter-spacing:0.012800pt;}
.ls7_c00163{letter-spacing:0.019200pt;}
.ls6_c00163{letter-spacing:0.025600pt;}
.ls0_c00163{letter-spacing:0.032000pt;}
.ls2_c00163{letter-spacing:0.038400pt;}
.ls4_c00163{letter-spacing:0.044800pt;}
.ls1_c00163{letter-spacing:0.051200pt;}
.ls8_c00163{letter-spacing:0.057600pt;}
.ls3_c00163{letter-spacing:0.064000pt;}
.lsc_c00163{letter-spacing:0.070400pt;}
.lsd_c00163{letter-spacing:0.089600pt;}
.lse_c00163{letter-spacing:0.102400pt;}
.lsa_c00163{letter-spacing:0.108800pt;}
.ls16_c00163{letter-spacing:0.161728pt;}
.ls9_c00163{letter-spacing:0.320000pt;}
.ls15_c00163{letter-spacing:8.640000pt;}
.ws2_c00163{word-spacing:-16.038400pt;}
.ws7_c00163{word-spacing:-16.032000pt;}
.ws6_c00163{word-spacing:-16.019200pt;}
.ws1_c00163{word-spacing:-16.000000pt;}
.ws5_c00163{word-spacing:-15.987200pt;}
.ws4_c00163{word-spacing:-15.968000pt;}
.ws0_c00163{word-spacing:-15.955200pt;}
.ws9_c00163{word-spacing:-13.258464pt;}
.ws3_c00163{word-spacing:-10.801728pt;}
.ws8_c00163{word-spacing:-8.640000pt;}
.wsc_c00163{word-spacing:-1.369600pt;}
.ws14_c00163{word-spacing:-0.665600pt;}
.ws13_c00163{word-spacing:-0.652800pt;}
.ws12_c00163{word-spacing:-0.121600pt;}
.ws15_c00163{word-spacing:-0.089600pt;}
.ws11_c00163{word-spacing:-0.051200pt;}
.ws10_c00163{word-spacing:-0.019200pt;}
.wsb_c00163{word-spacing:0.000000pt;}
.ws16_c00163{word-spacing:0.019200pt;}
.wsa_c00163{word-spacing:0.122912pt;}
.wsf_c00163{word-spacing:6.726400pt;}
.wsd_c00163{word-spacing:7.577600pt;}
.wse_c00163{word-spacing:7.641600pt;}
._7_c00163{margin-left:-9.510400pt;}
._6_c00163{margin-left:-8.524800pt;}
._b_c00163{margin-left:-2.169600pt;}
._2_c00163{margin-left:-0.966400pt;}
._0_c00163{width:0.928000pt;}
._3_c00163{width:2.246400pt;}
._1_c00163{width:3.456000pt;}
._d_c00163{width:4.467200pt;}
._9_c00163{width:5.363200pt;}
._8_c00163{width:6.534400pt;}
._4_c00163{width:7.840000pt;}
._5_c00163{width:9.459200pt;}
._e_c00163{width:11.206400pt;}
._f_c00163{width:12.416000pt;}
._a_c00163{width:13.401600pt;}
._c_c00163{width:16.915200pt;}
.fs3_c00163{font-size:34.560000pt;}
.fs2_c00163{font-size:42.560000pt;}
.fs0_c00163{font-size:53.440000pt;}
.fs1_c00163{font-size:64.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y6_c00163{bottom:50.987067pt;}
.y5_c00163{bottom:69.387067pt;}
.y24_c00163{bottom:102.347067pt;}
.y23_c00163{bottom:113.627067pt;}
.y22_c00163{bottom:190.187067pt;}
.y21_c00163{bottom:217.867067pt;}
.y20_c00163{bottom:245.467067pt;}
.y1f_c00163{bottom:273.067067pt;}
.y1e_c00163{bottom:311.227067pt;}
.y1d_c00163{bottom:338.827067pt;}
.y1c_c00163{bottom:366.507067pt;}
.y1b_c00163{bottom:394.107067pt;}
.y1a_c00163{bottom:432.347067pt;}
.y19_c00163{bottom:460.027067pt;}
.y18_c00163{bottom:487.547067pt;}
.y17_c00163{bottom:515.227067pt;}
.y16_c00163{bottom:542.827067pt;}
.y15_c00163{bottom:580.987067pt;}
.y14_c00163{bottom:608.667067pt;}
.y13_c00163{bottom:636.267067pt;}
.y12_c00163{bottom:663.867067pt;}
.y11_c00163{bottom:691.467067pt;}
.y10_c00163{bottom:729.627067pt;}
.yf_c00163{bottom:757.307067pt;}
.ye_c00163{bottom:784.907067pt;}
.yd_c00163{bottom:823.067067pt;}
.yc_c00163{bottom:850.747067pt;}
.yb_c00163{bottom:878.347067pt;}
.ya_c00163{bottom:905.947067pt;}
.y9_c00163{bottom:933.547067pt;}
.y8_c00163{bottom:971.707067pt;}
.y7_c00163{bottom:999.387067pt;}
.y4_c00163{bottom:1017.227251pt;}
.y3_c00163{bottom:1032.587243pt;}
.y2_c00163{bottom:1047.867075pt;}
.y1_c00163{bottom:1063.227067pt;}
.h5_c00163{height:30.324375pt;}
.h1_c00163{height:47.020937pt;}
.h2_c00163{height:56.156250pt;}
.h3_c00163{height:56.312500pt;}
.h4_c00163{height:61.343906pt;}
.h0_c00163{height:1122.666667pt;}
.w1_c00163{width:793.333333pt;}
.w0_c00163{width:793.626667pt;}
.x0_c00163{left:0.000000pt;}
.x4_c00163{left:113.440000pt;}
.x1_c00163{left:577.440000pt;}
.x3_c00163{left:656.400000pt;}
.x2_c00163{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1afe6a0ba1f26b9326eb695f.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.095703;font-style:normal;font-weight:normal;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_0b26e2b8e9bd86eeb78cd0d4.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.093262;font-style:normal;font-weight:normal;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_13e4c6e9a2b74dbc3af2e38a.woff2')format("woff");}.ff3_c00164{font-family:ff3_c00164;line-height:0.896973;font-style:normal;font-weight:normal;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_a5cdb7e893b1203a18c8fe4a.woff2')format("woff");}.ff4_c00164{font-family:ff4_c00164;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls11_c00164{letter-spacing:-1.080000px;}
.lsf_c00164{letter-spacing:-0.102204px;}
.ls16_c00164{letter-spacing:-0.064800px;}
.ls14_c00164{letter-spacing:-0.043200px;}
.ls13_c00164{letter-spacing:-0.028800px;}
.ls15_c00164{letter-spacing:-0.021600px;}
.ls19_c00164{letter-spacing:-0.016776px;}
.ls12_c00164{letter-spacing:-0.014400px;}
.ls17_c00164{letter-spacing:-0.007200px;}
.ls10_c00164{letter-spacing:0.000000px;}
.ls6_c00164{letter-spacing:0.007200px;}
.lsa_c00164{letter-spacing:0.014400px;}
.ls0_c00164{letter-spacing:0.021600px;}
.ls8_c00164{letter-spacing:0.028800px;}
.lsd_c00164{letter-spacing:0.033552px;}
.ls3_c00164{letter-spacing:0.036000px;}
.ls1_c00164{letter-spacing:0.043200px;}
.ls7_c00164{letter-spacing:0.050400px;}
.ls9_c00164{letter-spacing:0.057600px;}
.lse_c00164{letter-spacing:0.064800px;}
.lsc_c00164{letter-spacing:0.067104px;}
.lsb_c00164{letter-spacing:0.086400px;}
.ls2_c00164{letter-spacing:0.100800px;}
.ls4_c00164{letter-spacing:0.144000px;}
.ls5_c00164{letter-spacing:5.400000px;}
.ls18_c00164{letter-spacing:10.080000px;}
.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;}
}
.ws1_c00164{word-spacing:-18.050400px;}
.ws0_c00164{word-spacing:-17.971200px;}
.wsb_c00164{word-spacing:-1.260000px;}
.wsa_c00164{word-spacing:-1.108800px;}
.ws8_c00164{word-spacing:-0.784800px;}
.ws9_c00164{word-spacing:-0.756000px;}
.ws3_c00164{word-spacing:0.000000px;}
.ws2_c00164{word-spacing:0.192384px;}
.ws4_c00164{word-spacing:7.524000px;}
.ws5_c00164{word-spacing:7.538400px;}
.ws6_c00164{word-spacing:8.143200px;}
.ws7_c00164{word-spacing:8.280000px;}
.wsc_c00164{word-spacing:10.022400px;}
._b_c00164{margin-left:-10.022400px;}
._6_c00164{margin-left:-5.457600px;}
._7_c00164{margin-left:-4.420800px;}
._8_c00164{margin-left:-3.376800px;}
._2_c00164{margin-left:-1.394208px;}
._0_c00164{width:1.034064px;}
._1_c00164{width:2.088000px;}
._5_c00164{width:3.218400px;}
._9_c00164{width:4.226400px;}
._4_c00164{width:5.400000px;}
._3_c00164{width:6.494400px;}
._a_c00164{width:8.222400px;}
._c_c00164{width:10.375200px;}
._d_c00164{width:11.383200px;}
._e_c00164{width:24.458400px;}
.fc3_c00164{color:rgb(0,0,255);}
.fc2_c00164{color:rgb(5,99,193);}
.fc1_c00164{color:rgb(0,0,0);}
.fc0_c00164{color:rgb(32,31,30);}
.fs0_c00164{font-size:60.120000px;}
.fs1_c00164{font-size:72.000000px;}
.fs2_c00164{font-size:83.880000px;}
.y0_c00164{bottom:0.000000px;}
.y5_c00164{bottom:57.360450px;}
.y4_c00164{bottom:78.060450px;}
.y23_c00164{bottom:151.500450px;}
.y22_c00164{bottom:190.020450px;}
.y21_c00164{bottom:228.540450px;}
.y20_c00164{bottom:259.680450px;}
.y1f_c00164{bottom:290.730450px;}
.y1e_c00164{bottom:321.780450px;}
.y1d_c00164{bottom:352.830450px;}
.y1c_c00164{bottom:383.880450px;}
.y1b_c00164{bottom:414.930450px;}
.y1a_c00164{bottom:449.220450px;}
.y19_c00164{bottom:482.430600px;}
.y18_c00164{bottom:528.510450px;}
.y17_c00164{bottom:571.530450px;}
.y16_c00164{bottom:602.670450px;}
.y15_c00164{bottom:633.720450px;}
.y14_c00164{bottom:664.680450px;}
.y13_c00164{bottom:695.730450px;}
.y12_c00164{bottom:726.870450px;}
.y11_c00164{bottom:757.920450px;}
.y10_c00164{bottom:788.970450px;}
.yf_c00164{bottom:820.020450px;}
.ye_c00164{bottom:851.070450px;}
.yd_c00164{bottom:882.120450px;}
.yc_c00164{bottom:913.170450px;}
.yb_c00164{bottom:956.100450px;}
.ya_c00164{bottom:987.150450px;}
.y9_c00164{bottom:1018.290450px;}
.y8_c00164{bottom:1049.340450px;}
.y7_c00164{bottom:1080.390450px;}
.y6_c00164{bottom:1111.440450px;}
.y3_c00164{bottom:1132.140450px;}
.y2_c00164{bottom:1165.441023px;}
.y1_c00164{bottom:1196.040600px;}
.h1_c00164{height:52.898555px;}
.h2_c00164{height:63.175781px;}
.h3_c00164{height:63.351562px;}
.h4_c00164{height:74.500840px;}
.h0_c00164{height:1263.000000px;}
.w1_c00164{width:892.500000px;}
.w0_c00164{width:892.830000px;}
.x0_c00164{left:0.000000px;}
.x1_c00164{left:127.620000px;}
.x2_c00164{left:738.450000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls11_c00164{letter-spacing:-0.960000pt;}
.lsf_c00164{letter-spacing:-0.090848pt;}
.ls16_c00164{letter-spacing:-0.057600pt;}
.ls14_c00164{letter-spacing:-0.038400pt;}
.ls13_c00164{letter-spacing:-0.025600pt;}
.ls15_c00164{letter-spacing:-0.019200pt;}
.ls19_c00164{letter-spacing:-0.014912pt;}
.ls12_c00164{letter-spacing:-0.012800pt;}
.ls17_c00164{letter-spacing:-0.006400pt;}
.ls10_c00164{letter-spacing:0.000000pt;}
.ls6_c00164{letter-spacing:0.006400pt;}
.lsa_c00164{letter-spacing:0.012800pt;}
.ls0_c00164{letter-spacing:0.019200pt;}
.ls8_c00164{letter-spacing:0.025600pt;}
.lsd_c00164{letter-spacing:0.029824pt;}
.ls3_c00164{letter-spacing:0.032000pt;}
.ls1_c00164{letter-spacing:0.038400pt;}
.ls7_c00164{letter-spacing:0.044800pt;}
.ls9_c00164{letter-spacing:0.051200pt;}
.lse_c00164{letter-spacing:0.057600pt;}
.lsc_c00164{letter-spacing:0.059648pt;}
.lsb_c00164{letter-spacing:0.076800pt;}
.ls2_c00164{letter-spacing:0.089600pt;}
.ls4_c00164{letter-spacing:0.128000pt;}
.ls5_c00164{letter-spacing:4.800000pt;}
.ls18_c00164{letter-spacing:8.960000pt;}
.ws1_c00164{word-spacing:-16.044800pt;}
.ws0_c00164{word-spacing:-15.974400pt;}
.wsb_c00164{word-spacing:-1.120000pt;}
.wsa_c00164{word-spacing:-0.985600pt;}
.ws8_c00164{word-spacing:-0.697600pt;}
.ws9_c00164{word-spacing:-0.672000pt;}
.ws3_c00164{word-spacing:0.000000pt;}
.ws2_c00164{word-spacing:0.171008pt;}
.ws4_c00164{word-spacing:6.688000pt;}
.ws5_c00164{word-spacing:6.700800pt;}
.ws6_c00164{word-spacing:7.238400pt;}
.ws7_c00164{word-spacing:7.360000pt;}
.wsc_c00164{word-spacing:8.908800pt;}
._b_c00164{margin-left:-8.908800pt;}
._6_c00164{margin-left:-4.851200pt;}
._7_c00164{margin-left:-3.929600pt;}
._8_c00164{margin-left:-3.001600pt;}
._2_c00164{margin-left:-1.239296pt;}
._0_c00164{width:0.919168pt;}
._1_c00164{width:1.856000pt;}
._5_c00164{width:2.860800pt;}
._9_c00164{width:3.756800pt;}
._4_c00164{width:4.800000pt;}
._3_c00164{width:5.772800pt;}
._a_c00164{width:7.308800pt;}
._c_c00164{width:9.222400pt;}
._d_c00164{width:10.118400pt;}
._e_c00164{width:21.740800pt;}
.fs0_c00164{font-size:53.440000pt;}
.fs1_c00164{font-size:64.000000pt;}
.fs2_c00164{font-size:74.560000pt;}
.y0_c00164{bottom:0.000000pt;}
.y5_c00164{bottom:50.987067pt;}
.y4_c00164{bottom:69.387067pt;}
.y23_c00164{bottom:134.667067pt;}
.y22_c00164{bottom:168.907067pt;}
.y21_c00164{bottom:203.147067pt;}
.y20_c00164{bottom:230.827067pt;}
.y1f_c00164{bottom:258.427067pt;}
.y1e_c00164{bottom:286.027067pt;}
.y1d_c00164{bottom:313.627067pt;}
.y1c_c00164{bottom:341.227067pt;}
.y1b_c00164{bottom:368.827067pt;}
.y1a_c00164{bottom:399.307067pt;}
.y19_c00164{bottom:428.827200pt;}
.y18_c00164{bottom:469.787067pt;}
.y17_c00164{bottom:508.027067pt;}
.y16_c00164{bottom:535.707067pt;}
.y15_c00164{bottom:563.307067pt;}
.y14_c00164{bottom:590.827067pt;}
.y13_c00164{bottom:618.427067pt;}
.y12_c00164{bottom:646.107067pt;}
.y11_c00164{bottom:673.707067pt;}
.y10_c00164{bottom:701.307067pt;}
.yf_c00164{bottom:728.907067pt;}
.ye_c00164{bottom:756.507067pt;}
.yd_c00164{bottom:784.107067pt;}
.yc_c00164{bottom:811.707067pt;}
.yb_c00164{bottom:849.867067pt;}
.ya_c00164{bottom:877.467067pt;}
.y9_c00164{bottom:905.147067pt;}
.y8_c00164{bottom:932.747067pt;}
.y7_c00164{bottom:960.347067pt;}
.y6_c00164{bottom:987.947067pt;}
.y3_c00164{bottom:1006.347067pt;}
.y2_c00164{bottom:1035.947576pt;}
.y1_c00164{bottom:1063.147200pt;}
.h1_c00164{height:47.020937pt;}
.h2_c00164{height:56.156250pt;}
.h3_c00164{height:56.312500pt;}
.h4_c00164{height:66.222969pt;}
.h0_c00164{height:1122.666667pt;}
.w1_c00164{width:793.333333pt;}
.w0_c00164{width:793.626667pt;}
.x0_c00164{left:0.000000pt;}
.x1_c00164{left:113.440000pt;}
.x2_c00164{left:656.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_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_f02820de1703731d1714a03a.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.095703;font-style:normal;font-weight:normal;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_629bf1989326590b64e01923.woff2')format("woff");}.ff2_c00165{font-family:ff2_c00165;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00165{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls14_c00165{letter-spacing:-1.080000px;}
.ls15_c00165{letter-spacing:-0.072000px;}
.ls12_c00165{letter-spacing:-0.057600px;}
.lsd_c00165{letter-spacing:-0.048096px;}
.ls11_c00165{letter-spacing:-0.036000px;}
.lsf_c00165{letter-spacing:-0.021600px;}
.ls13_c00165{letter-spacing:-0.014400px;}
.ls10_c00165{letter-spacing:-0.007200px;}
.lse_c00165{letter-spacing:0.000000px;}
.lsb_c00165{letter-spacing:0.007200px;}
.ls0_c00165{letter-spacing:0.014400px;}
.ls6_c00165{letter-spacing:0.021600px;}
.ls9_c00165{letter-spacing:0.028800px;}
.lsa_c00165{letter-spacing:0.036000px;}
.ls4_c00165{letter-spacing:0.043200px;}
.ls2_c00165{letter-spacing:0.050400px;}
.ls7_c00165{letter-spacing:0.057600px;}
.lsc_c00165{letter-spacing:0.064800px;}
.ls3_c00165{letter-spacing:0.072000px;}
.ls8_c00165{letter-spacing:0.086400px;}
.ls1_c00165{letter-spacing:0.093600px;}
.ls5_c00165{letter-spacing:0.108000px;}
.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;}
}
.wsb_c00165{word-spacing:-0.734400px;}
.ws9_c00165{word-spacing:-0.727200px;}
.ws5_c00165{word-spacing:-0.100800px;}
.ws1_c00165{word-spacing:0.000000px;}
.ws6_c00165{word-spacing:0.007200px;}
.ws2_c00165{word-spacing:0.021600px;}
.ws3_c00165{word-spacing:0.100800px;}
.ws0_c00165{word-spacing:0.138276px;}
.ws7_c00165{word-spacing:0.633600px;}
.ws8_c00165{word-spacing:0.712800px;}
.wsa_c00165{word-spacing:6.105600px;}
.ws4_c00165{word-spacing:10.260000px;}
.wsd_c00165{word-spacing:12.492000px;}
.wsc_c00165{word-spacing:12.520800px;}
.wse_c00165{word-spacing:12.672000px;}
._9_c00165{margin-left:-4.946400px;}
._1_c00165{margin-left:-3.902400px;}
._2_c00165{margin-left:-2.894400px;}
._3_c00165{margin-left:-1.713600px;}
._0_c00165{width:1.425600px;}
._4_c00165{width:3.945600px;}
._6_c00165{width:5.745600px;}
._5_c00165{width:7.142400px;}
._8_c00165{width:8.956800px;}
._7_c00165{width:10.051200px;}
._a_c00165{width:11.073600px;}
.fc0_c00165{color:rgb(0,0,0);}
.fs0_c00165{font-size:60.120000px;}
.fs1_c00165{font-size:72.000000px;}
.y0_c00165{bottom:0.000000px;}
.y6_c00165{bottom:57.360450px;}
.y5_c00165{bottom:78.060450px;}
.y26_c00165{bottom:125.220450px;}
.y25_c00165{bottom:156.270450px;}
.y24_c00165{bottom:187.410450px;}
.y23_c00165{bottom:218.460450px;}
.y22_c00165{bottom:249.510450px;}
.y21_c00165{bottom:287.940450px;}
.y20_c00165{bottom:319.080450px;}
.y1f_c00165{bottom:350.130450px;}
.y1e_c00165{bottom:381.180450px;}
.y1d_c00165{bottom:419.610450px;}
.y1c_c00165{bottom:450.750450px;}
.y1b_c00165{bottom:489.270450px;}
.y1a_c00165{bottom:520.410450px;}
.y19_c00165{bottom:551.370450px;}
.y18_c00165{bottom:582.420450px;}
.y17_c00165{bottom:613.470450px;}
.y16_c00165{bottom:644.520450px;}
.y15_c00165{bottom:675.570450px;}
.y14_c00165{bottom:706.620450px;}
.y13_c00165{bottom:737.670450px;}
.y12_c00165{bottom:768.720450px;}
.y11_c00165{bottom:799.770450px;}
.y10_c00165{bottom:842.790450px;}
.yf_c00165{bottom:873.930450px;}
.ye_c00165{bottom:904.980450px;}
.yd_c00165{bottom:935.940450px;}
.yc_c00165{bottom:966.990450px;}
.yb_c00165{bottom:1005.510450px;}
.ya_c00165{bottom:1036.650450px;}
.y9_c00165{bottom:1067.700450px;}
.y8_c00165{bottom:1101.900450px;}
.y7_c00165{bottom:1124.130450px;}
.y4_c00165{bottom:1144.380657px;}
.y3_c00165{bottom:1161.660648px;}
.y2_c00165{bottom:1178.850459px;}
.y1_c00165{bottom:1196.130450px;}
.h1_c00165{height:52.898555px;}
.h2_c00165{height:63.175781px;}
.h3_c00165{height:63.351562px;}
.h0_c00165{height:1263.000000px;}
.w1_c00165{width:892.500000px;}
.w0_c00165{width:892.830000px;}
.x0_c00165{left:0.000000px;}
.x4_c00165{left:127.620000px;}
.x1_c00165{left:649.620000px;}
.x3_c00165{left:738.450000px;}
.x2_c00165{left:765.450198px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls14_c00165{letter-spacing:-0.960000pt;}
.ls15_c00165{letter-spacing:-0.064000pt;}
.ls12_c00165{letter-spacing:-0.051200pt;}
.lsd_c00165{letter-spacing:-0.042752pt;}
.ls11_c00165{letter-spacing:-0.032000pt;}
.lsf_c00165{letter-spacing:-0.019200pt;}
.ls13_c00165{letter-spacing:-0.012800pt;}
.ls10_c00165{letter-spacing:-0.006400pt;}
.lse_c00165{letter-spacing:0.000000pt;}
.lsb_c00165{letter-spacing:0.006400pt;}
.ls0_c00165{letter-spacing:0.012800pt;}
.ls6_c00165{letter-spacing:0.019200pt;}
.ls9_c00165{letter-spacing:0.025600pt;}
.lsa_c00165{letter-spacing:0.032000pt;}
.ls4_c00165{letter-spacing:0.038400pt;}
.ls2_c00165{letter-spacing:0.044800pt;}
.ls7_c00165{letter-spacing:0.051200pt;}
.lsc_c00165{letter-spacing:0.057600pt;}
.ls3_c00165{letter-spacing:0.064000pt;}
.ls8_c00165{letter-spacing:0.076800pt;}
.ls1_c00165{letter-spacing:0.083200pt;}
.ls5_c00165{letter-spacing:0.096000pt;}
.wsb_c00165{word-spacing:-0.652800pt;}
.ws9_c00165{word-spacing:-0.646400pt;}
.ws5_c00165{word-spacing:-0.089600pt;}
.ws1_c00165{word-spacing:0.000000pt;}
.ws6_c00165{word-spacing:0.006400pt;}
.ws2_c00165{word-spacing:0.019200pt;}
.ws3_c00165{word-spacing:0.089600pt;}
.ws0_c00165{word-spacing:0.122912pt;}
.ws7_c00165{word-spacing:0.563200pt;}
.ws8_c00165{word-spacing:0.633600pt;}
.wsa_c00165{word-spacing:5.427200pt;}
.ws4_c00165{word-spacing:9.120000pt;}
.wsd_c00165{word-spacing:11.104000pt;}
.wsc_c00165{word-spacing:11.129600pt;}
.wse_c00165{word-spacing:11.264000pt;}
._9_c00165{margin-left:-4.396800pt;}
._1_c00165{margin-left:-3.468800pt;}
._2_c00165{margin-left:-2.572800pt;}
._3_c00165{margin-left:-1.523200pt;}
._0_c00165{width:1.267200pt;}
._4_c00165{width:3.507200pt;}
._6_c00165{width:5.107200pt;}
._5_c00165{width:6.348800pt;}
._8_c00165{width:7.961600pt;}
._7_c00165{width:8.934400pt;}
._a_c00165{width:9.843200pt;}
.fs0_c00165{font-size:53.440000pt;}
.fs1_c00165{font-size:64.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y6_c00165{bottom:50.987067pt;}
.y5_c00165{bottom:69.387067pt;}
.y26_c00165{bottom:111.307067pt;}
.y25_c00165{bottom:138.907067pt;}
.y24_c00165{bottom:166.587067pt;}
.y23_c00165{bottom:194.187067pt;}
.y22_c00165{bottom:221.787067pt;}
.y21_c00165{bottom:255.947067pt;}
.y20_c00165{bottom:283.627067pt;}
.y1f_c00165{bottom:311.227067pt;}
.y1e_c00165{bottom:338.827067pt;}
.y1d_c00165{bottom:372.987067pt;}
.y1c_c00165{bottom:400.667067pt;}
.y1b_c00165{bottom:434.907067pt;}
.y1a_c00165{bottom:462.587067pt;}
.y19_c00165{bottom:490.107067pt;}
.y18_c00165{bottom:517.707067pt;}
.y17_c00165{bottom:545.307067pt;}
.y16_c00165{bottom:572.907067pt;}
.y15_c00165{bottom:600.507067pt;}
.y14_c00165{bottom:628.107067pt;}
.y13_c00165{bottom:655.707067pt;}
.y12_c00165{bottom:683.307067pt;}
.y11_c00165{bottom:710.907067pt;}
.y10_c00165{bottom:749.147067pt;}
.yf_c00165{bottom:776.827067pt;}
.ye_c00165{bottom:804.427067pt;}
.yd_c00165{bottom:831.947067pt;}
.yc_c00165{bottom:859.547067pt;}
.yb_c00165{bottom:893.787067pt;}
.ya_c00165{bottom:921.467067pt;}
.y9_c00165{bottom:949.067067pt;}
.y8_c00165{bottom:979.467067pt;}
.y7_c00165{bottom:999.227067pt;}
.y4_c00165{bottom:1017.227251pt;}
.y3_c00165{bottom:1032.587243pt;}
.y2_c00165{bottom:1047.867075pt;}
.y1_c00165{bottom:1063.227067pt;}
.h1_c00165{height:47.020937pt;}
.h2_c00165{height:56.156250pt;}
.h3_c00165{height:56.312500pt;}
.h0_c00165{height:1122.666667pt;}
.w1_c00165{width:793.333333pt;}
.w0_c00165{width:793.626667pt;}
.x0_c00165{left:0.000000pt;}
.x4_c00165{left:113.440000pt;}
.x1_c00165{left:577.440000pt;}
.x3_c00165{left:656.400000pt;}
.x2_c00165{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bd9f50a55f20366a4a616131.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.095703;font-style:normal;font-weight:normal;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_dc15a267c383fa78f80564d0.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00166{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.lsf_c00166{letter-spacing:-0.180000px;}
.lsc_c00166{letter-spacing:-0.102204px;}
.ls11_c00166{letter-spacing:-0.043200px;}
.ls10_c00166{letter-spacing:-0.021600px;}
.ls12_c00166{letter-spacing:-0.014400px;}
.lse_c00166{letter-spacing:-0.007200px;}
.lsd_c00166{letter-spacing:0.000000px;}
.ls0_c00166{letter-spacing:0.007200px;}
.ls1_c00166{letter-spacing:0.014400px;}
.ls3_c00166{letter-spacing:0.021600px;}
.ls6_c00166{letter-spacing:0.028800px;}
.ls2_c00166{letter-spacing:0.036000px;}
.ls5_c00166{letter-spacing:0.043200px;}
.lsa_c00166{letter-spacing:0.050400px;}
.lsb_c00166{letter-spacing:0.057600px;}
.ls8_c00166{letter-spacing:0.072000px;}
.ls7_c00166{letter-spacing:0.079200px;}
.ls4_c00166{letter-spacing:0.108000px;}
.ls9_c00166{letter-spacing:0.122400px;}
.ls14_c00166{letter-spacing:0.129600px;}
.ls13_c00166{letter-spacing:1.440000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00166{word-spacing:0.000000px;}
.ws0_c00166{word-spacing:0.192384px;}
.ws5_c00166{word-spacing:11.052000px;}
.ws4_c00166{word-spacing:11.145600px;}
.ws3_c00166{word-spacing:25.538400px;}
.ws2_c00166{word-spacing:25.552800px;}
._8_c00166{margin-left:-3.859200px;}
._9_c00166{margin-left:-2.448000px;}
._7_c00166{margin-left:-1.051200px;}
._0_c00166{width:1.034064px;}
._13_c00166{width:2.119536px;}
._e_c00166{width:3.556800px;}
._f_c00166{width:4.888800px;}
._14_c00166{width:6.076800px;}
._a_c00166{width:7.185600px;}
._b_c00166{width:8.208000px;}
._10_c00166{width:9.223200px;}
._1_c00166{width:10.706400px;}
._12_c00166{width:11.894400px;}
._11_c00166{width:12.909600px;}
._6_c00166{width:13.996800px;}
._4_c00166{width:19.620000px;}
._5_c00166{width:20.656800px;}
._d_c00166{width:22.082400px;}
._c_c00166{width:24.804000px;}
._3_c00166{width:33.912000px;}
._2_c00166{width:35.244000px;}
.fc1_c00166{color:rgb(0,0,0);}
.fc0_c00166{color:rgb(32,31,30);}
.fs0_c00166{font-size:60.120000px;}
.fs1_c00166{font-size:72.000000px;}
.y0_c00166{bottom:0.000000px;}
.y5_c00166{bottom:57.360450px;}
.y4_c00166{bottom:78.060450px;}
.y25_c00166{bottom:111.450450px;}
.y24_c00166{bottom:142.500450px;}
.y23_c00166{bottom:173.550450px;}
.y22_c00166{bottom:204.600450px;}
.y21_c00166{bottom:243.030450px;}
.y20_c00166{bottom:274.170450px;}
.y1f_c00166{bottom:305.220450px;}
.y1e_c00166{bottom:336.270450px;}
.y1d_c00166{bottom:374.700450px;}
.y1c_c00166{bottom:405.840450px;}
.y1b_c00166{bottom:436.890450px;}
.y1a_c00166{bottom:467.940450px;}
.y19_c00166{bottom:498.990450px;}
.y18_c00166{bottom:537.510450px;}
.y17_c00166{bottom:568.650450px;}
.y16_c00166{bottom:599.700450px;}
.y15_c00166{bottom:630.660450px;}
.y14_c00166{bottom:661.710450px;}
.y13_c00166{bottom:692.760450px;}
.y12_c00166{bottom:723.810450px;}
.y11_c00166{bottom:754.860450px;}
.y10_c00166{bottom:793.380450px;}
.yf_c00166{bottom:824.520450px;}
.ye_c00166{bottom:855.570450px;}
.yd_c00166{bottom:886.620450px;}
.yc_c00166{bottom:917.670450px;}
.yb_c00166{bottom:948.720450px;}
.ya_c00166{bottom:987.150450px;}
.y9_c00166{bottom:1018.290450px;}
.y8_c00166{bottom:1049.340450px;}
.y7_c00166{bottom:1080.390450px;}
.y6_c00166{bottom:1111.350450px;}
.y3_c00166{bottom:1132.140450px;}
.y2_c00166{bottom:1165.441023px;}
.y1_c00166{bottom:1196.040600px;}
.h1_c00166{height:52.898555px;}
.h2_c00166{height:63.175781px;}
.h3_c00166{height:63.351562px;}
.h0_c00166{height:1263.000000px;}
.w1_c00166{width:892.500000px;}
.w0_c00166{width:892.830000px;}
.x0_c00166{left:0.000000px;}
.x1_c00166{left:127.620000px;}
.x2_c00166{left:738.450000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.lsf_c00166{letter-spacing:-0.160000pt;}
.lsc_c00166{letter-spacing:-0.090848pt;}
.ls11_c00166{letter-spacing:-0.038400pt;}
.ls10_c00166{letter-spacing:-0.019200pt;}
.ls12_c00166{letter-spacing:-0.012800pt;}
.lse_c00166{letter-spacing:-0.006400pt;}
.lsd_c00166{letter-spacing:0.000000pt;}
.ls0_c00166{letter-spacing:0.006400pt;}
.ls1_c00166{letter-spacing:0.012800pt;}
.ls3_c00166{letter-spacing:0.019200pt;}
.ls6_c00166{letter-spacing:0.025600pt;}
.ls2_c00166{letter-spacing:0.032000pt;}
.ls5_c00166{letter-spacing:0.038400pt;}
.lsa_c00166{letter-spacing:0.044800pt;}
.lsb_c00166{letter-spacing:0.051200pt;}
.ls8_c00166{letter-spacing:0.064000pt;}
.ls7_c00166{letter-spacing:0.070400pt;}
.ls4_c00166{letter-spacing:0.096000pt;}
.ls9_c00166{letter-spacing:0.108800pt;}
.ls14_c00166{letter-spacing:0.115200pt;}
.ls13_c00166{letter-spacing:1.280000pt;}
.ws1_c00166{word-spacing:0.000000pt;}
.ws0_c00166{word-spacing:0.171008pt;}
.ws5_c00166{word-spacing:9.824000pt;}
.ws4_c00166{word-spacing:9.907200pt;}
.ws3_c00166{word-spacing:22.700800pt;}
.ws2_c00166{word-spacing:22.713600pt;}
._8_c00166{margin-left:-3.430400pt;}
._9_c00166{margin-left:-2.176000pt;}
._7_c00166{margin-left:-0.934400pt;}
._0_c00166{width:0.919168pt;}
._13_c00166{width:1.884032pt;}
._e_c00166{width:3.161600pt;}
._f_c00166{width:4.345600pt;}
._14_c00166{width:5.401600pt;}
._a_c00166{width:6.387200pt;}
._b_c00166{width:7.296000pt;}
._10_c00166{width:8.198400pt;}
._1_c00166{width:9.516800pt;}
._12_c00166{width:10.572800pt;}
._11_c00166{width:11.475200pt;}
._6_c00166{width:12.441600pt;}
._4_c00166{width:17.440000pt;}
._5_c00166{width:18.361600pt;}
._d_c00166{width:19.628800pt;}
._c_c00166{width:22.048000pt;}
._3_c00166{width:30.144000pt;}
._2_c00166{width:31.328000pt;}
.fs0_c00166{font-size:53.440000pt;}
.fs1_c00166{font-size:64.000000pt;}
.y0_c00166{bottom:0.000000pt;}
.y5_c00166{bottom:50.987067pt;}
.y4_c00166{bottom:69.387067pt;}
.y25_c00166{bottom:99.067067pt;}
.y24_c00166{bottom:126.667067pt;}
.y23_c00166{bottom:154.267067pt;}
.y22_c00166{bottom:181.867067pt;}
.y21_c00166{bottom:216.027067pt;}
.y20_c00166{bottom:243.707067pt;}
.y1f_c00166{bottom:271.307067pt;}
.y1e_c00166{bottom:298.907067pt;}
.y1d_c00166{bottom:333.067067pt;}
.y1c_c00166{bottom:360.747067pt;}
.y1b_c00166{bottom:388.347067pt;}
.y1a_c00166{bottom:415.947067pt;}
.y19_c00166{bottom:443.547067pt;}
.y18_c00166{bottom:477.787067pt;}
.y17_c00166{bottom:505.467067pt;}
.y16_c00166{bottom:533.067067pt;}
.y15_c00166{bottom:560.587067pt;}
.y14_c00166{bottom:588.187067pt;}
.y13_c00166{bottom:615.787067pt;}
.y12_c00166{bottom:643.387067pt;}
.y11_c00166{bottom:670.987067pt;}
.y10_c00166{bottom:705.227067pt;}
.yf_c00166{bottom:732.907067pt;}
.ye_c00166{bottom:760.507067pt;}
.yd_c00166{bottom:788.107067pt;}
.yc_c00166{bottom:815.707067pt;}
.yb_c00166{bottom:843.307067pt;}
.ya_c00166{bottom:877.467067pt;}
.y9_c00166{bottom:905.147067pt;}
.y8_c00166{bottom:932.747067pt;}
.y7_c00166{bottom:960.347067pt;}
.y6_c00166{bottom:987.867067pt;}
.y3_c00166{bottom:1006.347067pt;}
.y2_c00166{bottom:1035.947576pt;}
.y1_c00166{bottom:1063.147200pt;}
.h1_c00166{height:47.020937pt;}
.h2_c00166{height:56.156250pt;}
.h3_c00166{height:56.312500pt;}
.h0_c00166{height:1122.666667pt;}
.w1_c00166{width:793.333333pt;}
.w0_c00166{width:793.626667pt;}
.x0_c00166{left:0.000000pt;}
.x1_c00166{left:113.440000pt;}
.x2_c00166{left:656.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_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_f628629198702b27cfd717dc.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.095703;font-style:normal;font-weight:normal;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_8f5034a3b1d37ce0ca51e02e.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00167{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls11_c00167{letter-spacing:-0.057600px;}
.lsa_c00167{letter-spacing:-0.048096px;}
.lsd_c00167{letter-spacing:-0.043200px;}
.ls10_c00167{letter-spacing:-0.021600px;}
.lsf_c00167{letter-spacing:-0.014400px;}
.lsc_c00167{letter-spacing:-0.007200px;}
.lsb_c00167{letter-spacing:0.000000px;}
.ls0_c00167{letter-spacing:0.007200px;}
.ls2_c00167{letter-spacing:0.014400px;}
.ls8_c00167{letter-spacing:0.021600px;}
.ls4_c00167{letter-spacing:0.028800px;}
.ls7_c00167{letter-spacing:0.036000px;}
.ls9_c00167{letter-spacing:0.043200px;}
.ls1_c00167{letter-spacing:0.050400px;}
.ls6_c00167{letter-spacing:0.057600px;}
.ls5_c00167{letter-spacing:0.064800px;}
.ls3_c00167{letter-spacing:0.072000px;}
.ls12_c00167{letter-spacing:4.320000px;}
.lse_c00167{letter-spacing:9.720000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:-17.942400px;}
.ws17_c00167{word-spacing:-1.065600px;}
.ws2_c00167{word-spacing:0.000000px;}
.ws1_c00167{word-spacing:0.138276px;}
.ws16_c00167{word-spacing:0.172800px;}
.ws15_c00167{word-spacing:0.230400px;}
.ws14_c00167{word-spacing:0.338400px;}
.wsd_c00167{word-spacing:2.476800px;}
.wsf_c00167{word-spacing:2.800800px;}
.wse_c00167{word-spacing:2.880000px;}
.wsc_c00167{word-spacing:4.320000px;}
.ws5_c00167{word-spacing:6.573600px;}
.ws6_c00167{word-spacing:6.739200px;}
.ws3_c00167{word-spacing:7.099200px;}
.ws4_c00167{word-spacing:7.178400px;}
.wsa_c00167{word-spacing:9.439200px;}
.ws7_c00167{word-spacing:9.576000px;}
.ws8_c00167{word-spacing:9.626400px;}
.wsb_c00167{word-spacing:9.712800px;}
.ws9_c00167{word-spacing:12.873600px;}
.ws12_c00167{word-spacing:23.205600px;}
.ws13_c00167{word-spacing:23.234400px;}
.ws11_c00167{word-spacing:23.284800px;}
.ws10_c00167{word-spacing:33.112800px;}
._8_c00167{margin-left:-10.987200px;}
._7_c00167{margin-left:-9.489600px;}
._d_c00167{margin-left:-4.564800px;}
._c_c00167{margin-left:-3.088800px;}
._2_c00167{margin-left:-1.216800px;}
._9_c00167{width:1.094400px;}
._f_c00167{width:3.038400px;}
._0_c00167{width:4.312800px;}
._b_c00167{width:5.709600px;}
._3_c00167{width:9.064800px;}
._1_c00167{width:10.389600px;}
._5_c00167{width:12.232800px;}
._4_c00167{width:13.248000px;}
._6_c00167{width:14.515200px;}
._a_c00167{width:15.854400px;}
._e_c00167{width:25.531200px;}
.fc0_c00167{color:rgb(0,0,0);}
.fs0_c00167{font-size:60.120000px;}
.fs1_c00167{font-size:72.000000px;}
.y0_c00167{bottom:0.000000px;}
.y6_c00167{bottom:57.360450px;}
.y5_c00167{bottom:78.060450px;}
.y25_c00167{bottom:153.930450px;}
.y24_c00167{bottom:184.980450px;}
.y23_c00167{bottom:216.030450px;}
.y22_c00167{bottom:247.080450px;}
.y21_c00167{bottom:285.510450px;}
.y20_c00167{bottom:316.650450px;}
.y1f_c00167{bottom:347.700450px;}
.y1e_c00167{bottom:378.660450px;}
.y1d_c00167{bottom:409.710450px;}
.y1c_c00167{bottom:440.760450px;}
.y1b_c00167{bottom:471.810450px;}
.y1a_c00167{bottom:502.950450px;}
.y19_c00167{bottom:534.000450px;}
.y18_c00167{bottom:576.930450px;}
.y17_c00167{bottom:608.070450px;}
.y16_c00167{bottom:639.120450px;}
.y15_c00167{bottom:682.050450px;}
.y14_c00167{bottom:713.190450px;}
.y13_c00167{bottom:744.240450px;}
.y12_c00167{bottom:775.290450px;}
.y11_c00167{bottom:806.340450px;}
.y10_c00167{bottom:837.390450px;}
.yf_c00167{bottom:868.350450px;}
.ye_c00167{bottom:899.400450px;}
.yd_c00167{bottom:930.450450px;}
.yc_c00167{bottom:961.500450px;}
.yb_c00167{bottom:992.640450px;}
.ya_c00167{bottom:1023.690450px;}
.y9_c00167{bottom:1062.120450px;}
.y8_c00167{bottom:1093.260450px;}
.y7_c00167{bottom:1124.310450px;}
.y4_c00167{bottom:1144.380657px;}
.y3_c00167{bottom:1161.660648px;}
.y2_c00167{bottom:1178.850459px;}
.y1_c00167{bottom:1196.130450px;}
.h1_c00167{height:52.898555px;}
.h2_c00167{height:63.175781px;}
.h3_c00167{height:63.351562px;}
.h0_c00167{height:1263.000000px;}
.w1_c00167{width:892.500000px;}
.w0_c00167{width:892.830000px;}
.x0_c00167{left:0.000000px;}
.x4_c00167{left:127.620000px;}
.x1_c00167{left:649.620000px;}
.x3_c00167{left:738.450000px;}
.x2_c00167{left:765.450198px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls11_c00167{letter-spacing:-0.051200pt;}
.lsa_c00167{letter-spacing:-0.042752pt;}
.lsd_c00167{letter-spacing:-0.038400pt;}
.ls10_c00167{letter-spacing:-0.019200pt;}
.lsf_c00167{letter-spacing:-0.012800pt;}
.lsc_c00167{letter-spacing:-0.006400pt;}
.lsb_c00167{letter-spacing:0.000000pt;}
.ls0_c00167{letter-spacing:0.006400pt;}
.ls2_c00167{letter-spacing:0.012800pt;}
.ls8_c00167{letter-spacing:0.019200pt;}
.ls4_c00167{letter-spacing:0.025600pt;}
.ls7_c00167{letter-spacing:0.032000pt;}
.ls9_c00167{letter-spacing:0.038400pt;}
.ls1_c00167{letter-spacing:0.044800pt;}
.ls6_c00167{letter-spacing:0.051200pt;}
.ls5_c00167{letter-spacing:0.057600pt;}
.ls3_c00167{letter-spacing:0.064000pt;}
.ls12_c00167{letter-spacing:3.840000pt;}
.lse_c00167{letter-spacing:8.640000pt;}
.ws0_c00167{word-spacing:-15.948800pt;}
.ws17_c00167{word-spacing:-0.947200pt;}
.ws2_c00167{word-spacing:0.000000pt;}
.ws1_c00167{word-spacing:0.122912pt;}
.ws16_c00167{word-spacing:0.153600pt;}
.ws15_c00167{word-spacing:0.204800pt;}
.ws14_c00167{word-spacing:0.300800pt;}
.wsd_c00167{word-spacing:2.201600pt;}
.wsf_c00167{word-spacing:2.489600pt;}
.wse_c00167{word-spacing:2.560000pt;}
.wsc_c00167{word-spacing:3.840000pt;}
.ws5_c00167{word-spacing:5.843200pt;}
.ws6_c00167{word-spacing:5.990400pt;}
.ws3_c00167{word-spacing:6.310400pt;}
.ws4_c00167{word-spacing:6.380800pt;}
.wsa_c00167{word-spacing:8.390400pt;}
.ws7_c00167{word-spacing:8.512000pt;}
.ws8_c00167{word-spacing:8.556800pt;}
.wsb_c00167{word-spacing:8.633600pt;}
.ws9_c00167{word-spacing:11.443200pt;}
.ws12_c00167{word-spacing:20.627200pt;}
.ws13_c00167{word-spacing:20.652800pt;}
.ws11_c00167{word-spacing:20.697600pt;}
.ws10_c00167{word-spacing:29.433600pt;}
._8_c00167{margin-left:-9.766400pt;}
._7_c00167{margin-left:-8.435200pt;}
._d_c00167{margin-left:-4.057600pt;}
._c_c00167{margin-left:-2.745600pt;}
._2_c00167{margin-left:-1.081600pt;}
._9_c00167{width:0.972800pt;}
._f_c00167{width:2.700800pt;}
._0_c00167{width:3.833600pt;}
._b_c00167{width:5.075200pt;}
._3_c00167{width:8.057600pt;}
._1_c00167{width:9.235200pt;}
._5_c00167{width:10.873600pt;}
._4_c00167{width:11.776000pt;}
._6_c00167{width:12.902400pt;}
._a_c00167{width:14.092800pt;}
._e_c00167{width:22.694400pt;}
.fs0_c00167{font-size:53.440000pt;}
.fs1_c00167{font-size:64.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y6_c00167{bottom:50.987067pt;}
.y5_c00167{bottom:69.387067pt;}
.y25_c00167{bottom:136.827067pt;}
.y24_c00167{bottom:164.427067pt;}
.y23_c00167{bottom:192.027067pt;}
.y22_c00167{bottom:219.627067pt;}
.y21_c00167{bottom:253.787067pt;}
.y20_c00167{bottom:281.467067pt;}
.y1f_c00167{bottom:309.067067pt;}
.y1e_c00167{bottom:336.587067pt;}
.y1d_c00167{bottom:364.187067pt;}
.y1c_c00167{bottom:391.787067pt;}
.y1b_c00167{bottom:419.387067pt;}
.y1a_c00167{bottom:447.067067pt;}
.y19_c00167{bottom:474.667067pt;}
.y18_c00167{bottom:512.827067pt;}
.y17_c00167{bottom:540.507067pt;}
.y16_c00167{bottom:568.107067pt;}
.y15_c00167{bottom:606.267067pt;}
.y14_c00167{bottom:633.947067pt;}
.y13_c00167{bottom:661.547067pt;}
.y12_c00167{bottom:689.147067pt;}
.y11_c00167{bottom:716.747067pt;}
.y10_c00167{bottom:744.347067pt;}
.yf_c00167{bottom:771.867067pt;}
.ye_c00167{bottom:799.467067pt;}
.yd_c00167{bottom:827.067067pt;}
.yc_c00167{bottom:854.667067pt;}
.yb_c00167{bottom:882.347067pt;}
.ya_c00167{bottom:909.947067pt;}
.y9_c00167{bottom:944.107067pt;}
.y8_c00167{bottom:971.787067pt;}
.y7_c00167{bottom:999.387067pt;}
.y4_c00167{bottom:1017.227251pt;}
.y3_c00167{bottom:1032.587243pt;}
.y2_c00167{bottom:1047.867075pt;}
.y1_c00167{bottom:1063.227067pt;}
.h1_c00167{height:47.020937pt;}
.h2_c00167{height:56.156250pt;}
.h3_c00167{height:56.312500pt;}
.h0_c00167{height:1122.666667pt;}
.w1_c00167{width:793.333333pt;}
.w0_c00167{width:793.626667pt;}
.x0_c00167{left:0.000000pt;}
.x4_c00167{left:113.440000pt;}
.x1_c00167{left:577.440000pt;}
.x3_c00167{left:656.400000pt;}
.x2_c00167{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd880f43ce1eea12f1a9cc36.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.095703;font-style:normal;font-weight:normal;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_8c0f2d304f0b260c4d176b8e.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls15_c00168{letter-spacing:-1.144800px;}
.lsb_c00168{letter-spacing:-0.102204px;}
.lsf_c00168{letter-spacing:-0.057600px;}
.ls12_c00168{letter-spacing:-0.036000px;}
.lsd_c00168{letter-spacing:-0.028800px;}
.ls10_c00168{letter-spacing:-0.021600px;}
.ls13_c00168{letter-spacing:-0.014400px;}
.lse_c00168{letter-spacing:-0.007200px;}
.lsc_c00168{letter-spacing:0.000000px;}
.ls2_c00168{letter-spacing:0.007200px;}
.ls3_c00168{letter-spacing:0.014400px;}
.ls0_c00168{letter-spacing:0.021600px;}
.ls4_c00168{letter-spacing:0.028800px;}
.ls8_c00168{letter-spacing:0.036000px;}
.ls7_c00168{letter-spacing:0.043200px;}
.ls1_c00168{letter-spacing:0.050400px;}
.ls5_c00168{letter-spacing:0.057600px;}
.lsa_c00168{letter-spacing:0.079200px;}
.ls9_c00168{letter-spacing:0.086400px;}
.ls6_c00168{letter-spacing:0.093600px;}
.ls11_c00168{letter-spacing:5.040000px;}
.ls14_c00168{letter-spacing:21.600000px;}
.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;}
}
.ws6_c00168{word-spacing:-2.505600px;}
.ws8_c00168{word-spacing:-2.253600px;}
.ws9_c00168{word-spacing:-2.232000px;}
.ws1_c00168{word-spacing:0.000000px;}
.ws0_c00168{word-spacing:0.192384px;}
.wsb_c00168{word-spacing:0.640800px;}
.wsa_c00168{word-spacing:0.669600px;}
.ws5_c00168{word-spacing:1.648800px;}
.ws4_c00168{word-spacing:1.792800px;}
.ws3_c00168{word-spacing:4.924800px;}
.ws7_c00168{word-spacing:4.939200px;}
.ws2_c00168{word-spacing:5.076000px;}
._b_c00168{margin-left:-22.615200px;}
._a_c00168{margin-left:-21.506400px;}
._7_c00168{margin-left:-5.097600px;}
._8_c00168{margin-left:-3.182400px;}
._f_c00168{margin-left:-2.116800px;}
._5_c00168{margin-left:-1.087200px;}
._0_c00168{width:1.034064px;}
._1_c00168{width:2.162736px;}
._c_c00168{width:3.230064px;}
._6_c00168{width:4.305600px;}
._e_c00168{width:5.846400px;}
._2_c00168{width:8.308800px;}
._10_c00168{width:10.756800px;}
._4_c00168{width:12.016800px;}
._3_c00168{width:13.298400px;}
._d_c00168{width:15.796800px;}
._9_c00168{width:21.571200px;}
.fc1_c00168{color:rgb(0,0,0);}
.fc0_c00168{color:rgb(32,31,30);}
.fs0_c00168{font-size:60.120000px;}
.fs1_c00168{font-size:72.000000px;}
.y0_c00168{bottom:0.000000px;}
.y5_c00168{bottom:57.360450px;}
.y4_c00168{bottom:78.060450px;}
.y24_c00168{bottom:124.500450px;}
.y23_c00168{bottom:155.550450px;}
.y22_c00168{bottom:186.600450px;}
.y21_c00168{bottom:217.650450px;}
.y20_c00168{bottom:248.610450px;}
.y1f_c00168{bottom:279.660450px;}
.y1e_c00168{bottom:310.800450px;}
.y1d_c00168{bottom:341.850450px;}
.y1c_c00168{bottom:372.900450px;}
.y1b_c00168{bottom:415.830450px;}
.y1a_c00168{bottom:446.970450px;}
.y19_c00168{bottom:478.020450px;}
.y18_c00168{bottom:509.070450px;}
.y17_c00168{bottom:540.120450px;}
.y16_c00168{bottom:583.050450px;}
.y15_c00168{bottom:614.190450px;}
.y14_c00168{bottom:645.240450px;}
.y13_c00168{bottom:676.290450px;}
.y12_c00168{bottom:719.220450px;}
.y11_c00168{bottom:750.360450px;}
.y10_c00168{bottom:781.410450px;}
.yf_c00168{bottom:812.370450px;}
.ye_c00168{bottom:843.510450px;}
.yd_c00168{bottom:886.530450px;}
.yc_c00168{bottom:917.670450px;}
.yb_c00168{bottom:948.720450px;}
.ya_c00168{bottom:979.680450px;}
.y9_c00168{bottom:1010.730450px;}
.y8_c00168{bottom:1041.780450px;}
.y7_c00168{bottom:1080.300450px;}
.y6_c00168{bottom:1111.440450px;}
.y3_c00168{bottom:1132.140450px;}
.y2_c00168{bottom:1165.441023px;}
.y1_c00168{bottom:1196.040600px;}
.h1_c00168{height:52.898555px;}
.h2_c00168{height:63.175781px;}
.h3_c00168{height:63.351562px;}
.h0_c00168{height:1263.000000px;}
.w1_c00168{width:892.500000px;}
.w0_c00168{width:892.830000px;}
.x0_c00168{left:0.000000px;}
.x1_c00168{left:127.620000px;}
.x2_c00168{left:738.450000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls15_c00168{letter-spacing:-1.017600pt;}
.lsb_c00168{letter-spacing:-0.090848pt;}
.lsf_c00168{letter-spacing:-0.051200pt;}
.ls12_c00168{letter-spacing:-0.032000pt;}
.lsd_c00168{letter-spacing:-0.025600pt;}
.ls10_c00168{letter-spacing:-0.019200pt;}
.ls13_c00168{letter-spacing:-0.012800pt;}
.lse_c00168{letter-spacing:-0.006400pt;}
.lsc_c00168{letter-spacing:0.000000pt;}
.ls2_c00168{letter-spacing:0.006400pt;}
.ls3_c00168{letter-spacing:0.012800pt;}
.ls0_c00168{letter-spacing:0.019200pt;}
.ls4_c00168{letter-spacing:0.025600pt;}
.ls8_c00168{letter-spacing:0.032000pt;}
.ls7_c00168{letter-spacing:0.038400pt;}
.ls1_c00168{letter-spacing:0.044800pt;}
.ls5_c00168{letter-spacing:0.051200pt;}
.lsa_c00168{letter-spacing:0.070400pt;}
.ls9_c00168{letter-spacing:0.076800pt;}
.ls6_c00168{letter-spacing:0.083200pt;}
.ls11_c00168{letter-spacing:4.480000pt;}
.ls14_c00168{letter-spacing:19.200000pt;}
.ws6_c00168{word-spacing:-2.227200pt;}
.ws8_c00168{word-spacing:-2.003200pt;}
.ws9_c00168{word-spacing:-1.984000pt;}
.ws1_c00168{word-spacing:0.000000pt;}
.ws0_c00168{word-spacing:0.171008pt;}
.wsb_c00168{word-spacing:0.569600pt;}
.wsa_c00168{word-spacing:0.595200pt;}
.ws5_c00168{word-spacing:1.465600pt;}
.ws4_c00168{word-spacing:1.593600pt;}
.ws3_c00168{word-spacing:4.377600pt;}
.ws7_c00168{word-spacing:4.390400pt;}
.ws2_c00168{word-spacing:4.512000pt;}
._b_c00168{margin-left:-20.102400pt;}
._a_c00168{margin-left:-19.116800pt;}
._7_c00168{margin-left:-4.531200pt;}
._8_c00168{margin-left:-2.828800pt;}
._f_c00168{margin-left:-1.881600pt;}
._5_c00168{margin-left:-0.966400pt;}
._0_c00168{width:0.919168pt;}
._1_c00168{width:1.922432pt;}
._c_c00168{width:2.871168pt;}
._6_c00168{width:3.827200pt;}
._e_c00168{width:5.196800pt;}
._2_c00168{width:7.385600pt;}
._10_c00168{width:9.561600pt;}
._4_c00168{width:10.681600pt;}
._3_c00168{width:11.820800pt;}
._d_c00168{width:14.041600pt;}
._9_c00168{width:19.174400pt;}
.fs0_c00168{font-size:53.440000pt;}
.fs1_c00168{font-size:64.000000pt;}
.y0_c00168{bottom:0.000000pt;}
.y5_c00168{bottom:50.987067pt;}
.y4_c00168{bottom:69.387067pt;}
.y24_c00168{bottom:110.667067pt;}
.y23_c00168{bottom:138.267067pt;}
.y22_c00168{bottom:165.867067pt;}
.y21_c00168{bottom:193.467067pt;}
.y20_c00168{bottom:220.987067pt;}
.y1f_c00168{bottom:248.587067pt;}
.y1e_c00168{bottom:276.267067pt;}
.y1d_c00168{bottom:303.867067pt;}
.y1c_c00168{bottom:331.467067pt;}
.y1b_c00168{bottom:369.627067pt;}
.y1a_c00168{bottom:397.307067pt;}
.y19_c00168{bottom:424.907067pt;}
.y18_c00168{bottom:452.507067pt;}
.y17_c00168{bottom:480.107067pt;}
.y16_c00168{bottom:518.267067pt;}
.y15_c00168{bottom:545.947067pt;}
.y14_c00168{bottom:573.547067pt;}
.y13_c00168{bottom:601.147067pt;}
.y12_c00168{bottom:639.307067pt;}
.y11_c00168{bottom:666.987067pt;}
.y10_c00168{bottom:694.587067pt;}
.yf_c00168{bottom:722.107067pt;}
.ye_c00168{bottom:749.787067pt;}
.yd_c00168{bottom:788.027067pt;}
.yc_c00168{bottom:815.707067pt;}
.yb_c00168{bottom:843.307067pt;}
.ya_c00168{bottom:870.827067pt;}
.y9_c00168{bottom:898.427067pt;}
.y8_c00168{bottom:926.027067pt;}
.y7_c00168{bottom:960.267067pt;}
.y6_c00168{bottom:987.947067pt;}
.y3_c00168{bottom:1006.347067pt;}
.y2_c00168{bottom:1035.947576pt;}
.y1_c00168{bottom:1063.147200pt;}
.h1_c00168{height:47.020937pt;}
.h2_c00168{height:56.156250pt;}
.h3_c00168{height:56.312500pt;}
.h0_c00168{height:1122.666667pt;}
.w1_c00168{width:793.333333pt;}
.w0_c00168{width:793.626667pt;}
.x0_c00168{left:0.000000pt;}
.x1_c00168{left:113.440000pt;}
.x2_c00168{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.095703;font-style:normal;font-weight:normal;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_795dd9404751b591a386cdfc.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.093262;font-style: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;}
.ls14_c00169{letter-spacing:-0.252000px;}
.ls13_c00169{letter-spacing:-0.072000px;}
.ls12_c00169{letter-spacing:-0.057600px;}
.ls19_c00169{letter-spacing:-0.050400px;}
.lsf_c00169{letter-spacing:-0.048096px;}
.ls15_c00169{letter-spacing:-0.028800px;}
.ls11_c00169{letter-spacing:-0.021600px;}
.ls17_c00169{letter-spacing:-0.014400px;}
.ls16_c00169{letter-spacing:-0.007200px;}
.ls10_c00169{letter-spacing:0.000000px;}
.ls9_c00169{letter-spacing:0.007200px;}
.ls3_c00169{letter-spacing:0.014400px;}
.ls7_c00169{letter-spacing:0.021600px;}
.ls8_c00169{letter-spacing:0.028800px;}
.lsc_c00169{letter-spacing:0.036000px;}
.ls6_c00169{letter-spacing:0.043200px;}
.lsd_c00169{letter-spacing:0.050400px;}
.ls4_c00169{letter-spacing:0.057600px;}
.ls5_c00169{letter-spacing:0.064800px;}
.lsa_c00169{letter-spacing:0.072000px;}
.ls0_c00169{letter-spacing:0.079200px;}
.lse_c00169{letter-spacing:0.086400px;}
.lsb_c00169{letter-spacing:0.093600px;}
.ls2_c00169{letter-spacing:0.100800px;}
.ls1_c00169{letter-spacing:0.115200px;}
.ls18_c00169{letter-spacing:5.328000px;}
.ls1a_c00169{letter-spacing:20.116800px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00169{word-spacing:0.000000px;}
.ws0_c00169{word-spacing:0.138276px;}
._c_c00169{margin-left:-21.326400px;}
._b_c00169{margin-left:-19.958400px;}
._9_c00169{margin-left:-6.307200px;}
._8_c00169{margin-left:-4.348800px;}
._7_c00169{margin-left:-3.326400px;}
._0_c00169{margin-left:-1.339200px;}
._3_c00169{width:1.778400px;}
._6_c00169{width:3.600000px;}
._1_c00169{width:5.025600px;}
._a_c00169{width:6.112800px;}
._2_c00169{width:8.661600px;}
._4_c00169{width:12.715200px;}
._5_c00169{width:13.896000px;}
._d_c00169{width:20.332800px;}
.fc1_c00169{color:rgb(255,0,0);}
.fc0_c00169{color:rgb(0,0,0);}
.fs0_c00169{font-size:60.120000px;}
.fs1_c00169{font-size:72.000000px;}
.y0_c00169{bottom:0.000000px;}
.y6_c00169{bottom:57.360450px;}
.y5_c00169{bottom:78.060450px;}
.y26_c00169{bottom:115.320450px;}
.y25_c00169{bottom:146.460450px;}
.y24_c00169{bottom:177.510450px;}
.y23_c00169{bottom:208.560450px;}
.y22_c00169{bottom:239.610450px;}
.y21_c00169{bottom:270.570450px;}
.y20_c00169{bottom:301.620450px;}
.y1f_c00169{bottom:344.640450px;}
.y1e_c00169{bottom:375.780450px;}
.y1d_c00169{bottom:406.830450px;}
.y1c_c00169{bottom:437.880450px;}
.y1b_c00169{bottom:468.930450px;}
.y1a_c00169{bottom:499.980450px;}
.y19_c00169{bottom:531.030450px;}
.y18_c00169{bottom:562.080450px;}
.y17_c00169{bottom:605.010450px;}
.y16_c00169{bottom:636.150450px;}
.y15_c00169{bottom:667.200450px;}
.y14_c00169{bottom:698.250450px;}
.y13_c00169{bottom:736.680450px;}
.y12_c00169{bottom:767.820450px;}
.y11_c00169{bottom:798.870450px;}
.y10_c00169{bottom:829.920450px;}
.yf_c00169{bottom:860.970450px;}
.ye_c00169{bottom:892.020450px;}
.yd_c00169{bottom:930.450450px;}
.yc_c00169{bottom:961.590450px;}
.yb_c00169{bottom:992.640450px;}
.ya_c00169{bottom:1023.690450px;}
.y9_c00169{bottom:1054.740450px;}
.y8_c00169{bottom:1093.170450px;}
.y7_c00169{bottom:1124.310450px;}
.y4_c00169{bottom:1144.380657px;}
.y3_c00169{bottom:1161.660648px;}
.y2_c00169{bottom:1178.850459px;}
.y1_c00169{bottom:1196.130450px;}
.h1_c00169{height:52.898555px;}
.h2_c00169{height:63.175781px;}
.h0_c00169{height:1263.000000px;}
.w1_c00169{width:892.500000px;}
.w0_c00169{width:892.830000px;}
.x0_c00169{left:0.000000px;}
.x4_c00169{left:127.620000px;}
.x1_c00169{left:649.620000px;}
.x3_c00169{left:738.450000px;}
.x2_c00169{left:765.450198px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls14_c00169{letter-spacing:-0.224000pt;}
.ls13_c00169{letter-spacing:-0.064000pt;}
.ls12_c00169{letter-spacing:-0.051200pt;}
.ls19_c00169{letter-spacing:-0.044800pt;}
.lsf_c00169{letter-spacing:-0.042752pt;}
.ls15_c00169{letter-spacing:-0.025600pt;}
.ls11_c00169{letter-spacing:-0.019200pt;}
.ls17_c00169{letter-spacing:-0.012800pt;}
.ls16_c00169{letter-spacing:-0.006400pt;}
.ls10_c00169{letter-spacing:0.000000pt;}
.ls9_c00169{letter-spacing:0.006400pt;}
.ls3_c00169{letter-spacing:0.012800pt;}
.ls7_c00169{letter-spacing:0.019200pt;}
.ls8_c00169{letter-spacing:0.025600pt;}
.lsc_c00169{letter-spacing:0.032000pt;}
.ls6_c00169{letter-spacing:0.038400pt;}
.lsd_c00169{letter-spacing:0.044800pt;}
.ls4_c00169{letter-spacing:0.051200pt;}
.ls5_c00169{letter-spacing:0.057600pt;}
.lsa_c00169{letter-spacing:0.064000pt;}
.ls0_c00169{letter-spacing:0.070400pt;}
.lse_c00169{letter-spacing:0.076800pt;}
.lsb_c00169{letter-spacing:0.083200pt;}
.ls2_c00169{letter-spacing:0.089600pt;}
.ls1_c00169{letter-spacing:0.102400pt;}
.ls18_c00169{letter-spacing:4.736000pt;}
.ls1a_c00169{letter-spacing:17.881600pt;}
.ws1_c00169{word-spacing:0.000000pt;}
.ws0_c00169{word-spacing:0.122912pt;}
._c_c00169{margin-left:-18.956800pt;}
._b_c00169{margin-left:-17.740800pt;}
._9_c00169{margin-left:-5.606400pt;}
._8_c00169{margin-left:-3.865600pt;}
._7_c00169{margin-left:-2.956800pt;}
._0_c00169{margin-left:-1.190400pt;}
._3_c00169{width:1.580800pt;}
._6_c00169{width:3.200000pt;}
._1_c00169{width:4.467200pt;}
._a_c00169{width:5.433600pt;}
._2_c00169{width:7.699200pt;}
._4_c00169{width:11.302400pt;}
._5_c00169{width:12.352000pt;}
._d_c00169{width:18.073600pt;}
.fs0_c00169{font-size:53.440000pt;}
.fs1_c00169{font-size:64.000000pt;}
.y0_c00169{bottom:0.000000pt;}
.y6_c00169{bottom:50.987067pt;}
.y5_c00169{bottom:69.387067pt;}
.y26_c00169{bottom:102.507067pt;}
.y25_c00169{bottom:130.187067pt;}
.y24_c00169{bottom:157.787067pt;}
.y23_c00169{bottom:185.387067pt;}
.y22_c00169{bottom:212.987067pt;}
.y21_c00169{bottom:240.507067pt;}
.y20_c00169{bottom:268.107067pt;}
.y1f_c00169{bottom:306.347067pt;}
.y1e_c00169{bottom:334.027067pt;}
.y1d_c00169{bottom:361.627067pt;}
.y1c_c00169{bottom:389.227067pt;}
.y1b_c00169{bottom:416.827067pt;}
.y1a_c00169{bottom:444.427067pt;}
.y19_c00169{bottom:472.027067pt;}
.y18_c00169{bottom:499.627067pt;}
.y17_c00169{bottom:537.787067pt;}
.y16_c00169{bottom:565.467067pt;}
.y15_c00169{bottom:593.067067pt;}
.y14_c00169{bottom:620.667067pt;}
.y13_c00169{bottom:654.827067pt;}
.y12_c00169{bottom:682.507067pt;}
.y11_c00169{bottom:710.107067pt;}
.y10_c00169{bottom:737.707067pt;}
.yf_c00169{bottom:765.307067pt;}
.ye_c00169{bottom:792.907067pt;}
.yd_c00169{bottom:827.067067pt;}
.yc_c00169{bottom:854.747067pt;}
.yb_c00169{bottom:882.347067pt;}
.ya_c00169{bottom:909.947067pt;}
.y9_c00169{bottom:937.547067pt;}
.y8_c00169{bottom:971.707067pt;}
.y7_c00169{bottom:999.387067pt;}
.y4_c00169{bottom:1017.227251pt;}
.y3_c00169{bottom:1032.587243pt;}
.y2_c00169{bottom:1047.867075pt;}
.y1_c00169{bottom:1063.227067pt;}
.h1_c00169{height:47.020937pt;}
.h2_c00169{height:56.156250pt;}
.h0_c00169{height:1122.666667pt;}
.w1_c00169{width:793.333333pt;}
.w0_c00169{width:793.626667pt;}
.x0_c00169{left:0.000000pt;}
.x4_c00169{left:113.440000pt;}
.x1_c00169{left:577.440000pt;}
.x3_c00169{left:656.400000pt;}
.x2_c00169{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63a1e48d808c22730a619d1f.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.095703;font-style:normal;font-weight:normal;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_6a32982c8546895f944ae2f5.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00170{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.lsc_c00170{letter-spacing:-0.102204px;}
.ls12_c00170{letter-spacing:-0.028800px;}
.ls10_c00170{letter-spacing:-0.021600px;}
.lsf_c00170{letter-spacing:-0.014400px;}
.lse_c00170{letter-spacing:-0.007200px;}
.lsd_c00170{letter-spacing:0.000000px;}
.ls3_c00170{letter-spacing:0.007200px;}
.ls7_c00170{letter-spacing:0.014400px;}
.ls6_c00170{letter-spacing:0.021600px;}
.ls5_c00170{letter-spacing:0.028800px;}
.ls1_c00170{letter-spacing:0.036000px;}
.ls4_c00170{letter-spacing:0.043200px;}
.ls0_c00170{letter-spacing:0.050400px;}
.ls8_c00170{letter-spacing:0.057600px;}
.lsa_c00170{letter-spacing:0.064800px;}
.ls2_c00170{letter-spacing:0.072000px;}
.ls9_c00170{letter-spacing:0.079200px;}
.lsb_c00170{letter-spacing:0.093600px;}
.ls11_c00170{letter-spacing:17.640000px;}
.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;}
}
.ws2_c00170{word-spacing:-18.050400px;}
.ws0_c00170{word-spacing:-18.036000px;}
.ws1_c00170{word-spacing:-18.021600px;}
.ws5_c00170{word-spacing:-1.108800px;}
.ws4_c00170{word-spacing:0.000000px;}
.wsa_c00170{word-spacing:0.100800px;}
.ws3_c00170{word-spacing:0.192384px;}
.ws6_c00170{word-spacing:8.503200px;}
.ws7_c00170{word-spacing:8.532000px;}
.wsb_c00170{word-spacing:9.309600px;}
.ws9_c00170{word-spacing:32.277600px;}
.ws8_c00170{word-spacing:32.371200px;}
._d_c00170{margin-left:-18.525600px;}
._e_c00170{margin-left:-17.481600px;}
._6_c00170{margin-left:-4.680000px;}
._5_c00170{margin-left:-3.607200px;}
._8_c00170{margin-left:-2.556000px;}
._2_c00170{margin-left:-1.137600px;}
._0_c00170{width:1.034064px;}
._1_c00170{width:2.829600px;}
._a_c00170{width:3.952800px;}
._b_c00170{width:5.378400px;}
._3_c00170{width:6.955200px;}
._4_c00170{width:8.042400px;}
._7_c00170{width:10.072800px;}
._f_c00170{width:15.451200px;}
._c_c00170{width:16.948800px;}
._9_c00170{width:19.058400px;}
.fc1_c00170{color:rgb(0,0,0);}
.fc0_c00170{color:rgb(32,31,30);}
.fs0_c00170{font-size:60.120000px;}
.fs1_c00170{font-size:72.000000px;}
.y0_c00170{bottom:0.000000px;}
.y5_c00170{bottom:57.360450px;}
.y4_c00170{bottom:78.060450px;}
.y25_c00170{bottom:111.990450px;}
.y24_c00170{bottom:143.130450px;}
.y23_c00170{bottom:174.180450px;}
.y22_c00170{bottom:205.230450px;}
.y21_c00170{bottom:236.280450px;}
.y20_c00170{bottom:267.330450px;}
.y1f_c00170{bottom:298.380450px;}
.y1e_c00170{bottom:341.310450px;}
.y1d_c00170{bottom:372.450450px;}
.y1c_c00170{bottom:403.500450px;}
.y1b_c00170{bottom:434.550450px;}
.y1a_c00170{bottom:465.600450px;}
.y19_c00170{bottom:496.650450px;}
.y18_c00170{bottom:527.700450px;}
.y17_c00170{bottom:558.750450px;}
.y16_c00170{bottom:601.680450px;}
.y15_c00170{bottom:632.730450px;}
.y14_c00170{bottom:663.870450px;}
.y13_c00170{bottom:706.800450px;}
.y12_c00170{bottom:737.940450px;}
.y11_c00170{bottom:768.990450px;}
.y10_c00170{bottom:800.040450px;}
.yf_c00170{bottom:831.090450px;}
.ye_c00170{bottom:862.140450px;}
.yd_c00170{bottom:893.190450px;}
.yc_c00170{bottom:924.240450px;}
.yb_c00170{bottom:958.530450px;}
.ya_c00170{bottom:980.760450px;}
.y9_c00170{bottom:1006.140450px;}
.y8_c00170{bottom:1049.250450px;}
.y7_c00170{bottom:1080.390450px;}
.y6_c00170{bottom:1111.440450px;}
.y3_c00170{bottom:1132.140450px;}
.y2_c00170{bottom:1165.441023px;}
.y1_c00170{bottom:1196.040600px;}
.h1_c00170{height:52.898555px;}
.h2_c00170{height:63.175781px;}
.h3_c00170{height:63.351562px;}
.h0_c00170{height:1263.000000px;}
.w1_c00170{width:892.500000px;}
.w0_c00170{width:892.830000px;}
.x0_c00170{left:0.000000px;}
.x1_c00170{left:127.620000px;}
.x2_c00170{left:738.450000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.lsc_c00170{letter-spacing:-0.090848pt;}
.ls12_c00170{letter-spacing:-0.025600pt;}
.ls10_c00170{letter-spacing:-0.019200pt;}
.lsf_c00170{letter-spacing:-0.012800pt;}
.lse_c00170{letter-spacing:-0.006400pt;}
.lsd_c00170{letter-spacing:0.000000pt;}
.ls3_c00170{letter-spacing:0.006400pt;}
.ls7_c00170{letter-spacing:0.012800pt;}
.ls6_c00170{letter-spacing:0.019200pt;}
.ls5_c00170{letter-spacing:0.025600pt;}
.ls1_c00170{letter-spacing:0.032000pt;}
.ls4_c00170{letter-spacing:0.038400pt;}
.ls0_c00170{letter-spacing:0.044800pt;}
.ls8_c00170{letter-spacing:0.051200pt;}
.lsa_c00170{letter-spacing:0.057600pt;}
.ls2_c00170{letter-spacing:0.064000pt;}
.ls9_c00170{letter-spacing:0.070400pt;}
.lsb_c00170{letter-spacing:0.083200pt;}
.ls11_c00170{letter-spacing:15.680000pt;}
.ws2_c00170{word-spacing:-16.044800pt;}
.ws0_c00170{word-spacing:-16.032000pt;}
.ws1_c00170{word-spacing:-16.019200pt;}
.ws5_c00170{word-spacing:-0.985600pt;}
.ws4_c00170{word-spacing:0.000000pt;}
.wsa_c00170{word-spacing:0.089600pt;}
.ws3_c00170{word-spacing:0.171008pt;}
.ws6_c00170{word-spacing:7.558400pt;}
.ws7_c00170{word-spacing:7.584000pt;}
.wsb_c00170{word-spacing:8.275200pt;}
.ws9_c00170{word-spacing:28.691200pt;}
.ws8_c00170{word-spacing:28.774400pt;}
._d_c00170{margin-left:-16.467200pt;}
._e_c00170{margin-left:-15.539200pt;}
._6_c00170{margin-left:-4.160000pt;}
._5_c00170{margin-left:-3.206400pt;}
._8_c00170{margin-left:-2.272000pt;}
._2_c00170{margin-left:-1.011200pt;}
._0_c00170{width:0.919168pt;}
._1_c00170{width:2.515200pt;}
._a_c00170{width:3.513600pt;}
._b_c00170{width:4.780800pt;}
._3_c00170{width:6.182400pt;}
._4_c00170{width:7.148800pt;}
._7_c00170{width:8.953600pt;}
._f_c00170{width:13.734400pt;}
._c_c00170{width:15.065600pt;}
._9_c00170{width:16.940800pt;}
.fs0_c00170{font-size:53.440000pt;}
.fs1_c00170{font-size:64.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y5_c00170{bottom:50.987067pt;}
.y4_c00170{bottom:69.387067pt;}
.y25_c00170{bottom:99.547067pt;}
.y24_c00170{bottom:127.227067pt;}
.y23_c00170{bottom:154.827067pt;}
.y22_c00170{bottom:182.427067pt;}
.y21_c00170{bottom:210.027067pt;}
.y20_c00170{bottom:237.627067pt;}
.y1f_c00170{bottom:265.227067pt;}
.y1e_c00170{bottom:303.387067pt;}
.y1d_c00170{bottom:331.067067pt;}
.y1c_c00170{bottom:358.667067pt;}
.y1b_c00170{bottom:386.267067pt;}
.y1a_c00170{bottom:413.867067pt;}
.y19_c00170{bottom:441.467067pt;}
.y18_c00170{bottom:469.067067pt;}
.y17_c00170{bottom:496.667067pt;}
.y16_c00170{bottom:534.827067pt;}
.y15_c00170{bottom:562.427067pt;}
.y14_c00170{bottom:590.107067pt;}
.y13_c00170{bottom:628.267067pt;}
.y12_c00170{bottom:655.947067pt;}
.y11_c00170{bottom:683.547067pt;}
.y10_c00170{bottom:711.147067pt;}
.yf_c00170{bottom:738.747067pt;}
.ye_c00170{bottom:766.347067pt;}
.yd_c00170{bottom:793.947067pt;}
.yc_c00170{bottom:821.547067pt;}
.yb_c00170{bottom:852.027067pt;}
.ya_c00170{bottom:871.787067pt;}
.y9_c00170{bottom:894.347067pt;}
.y8_c00170{bottom:932.667067pt;}
.y7_c00170{bottom:960.347067pt;}
.y6_c00170{bottom:987.947067pt;}
.y3_c00170{bottom:1006.347067pt;}
.y2_c00170{bottom:1035.947576pt;}
.y1_c00170{bottom:1063.147200pt;}
.h1_c00170{height:47.020937pt;}
.h2_c00170{height:56.156250pt;}
.h3_c00170{height:56.312500pt;}
.h0_c00170{height:1122.666667pt;}
.w1_c00170{width:793.333333pt;}
.w0_c00170{width:793.626667pt;}
.x0_c00170{left:0.000000pt;}
.x1_c00170{left:113.440000pt;}
.x2_c00170{left:656.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_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_0bc775098f68c2856a4bd633.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.095703;font-style:normal;font-weight:normal;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_ac37513211a26a0f8c2ec4b4.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00171{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.lsf_c00171{letter-spacing:-0.050400px;}
.lsc_c00171{letter-spacing:-0.048096px;}
.ls14_c00171{letter-spacing:-0.043200px;}
.ls11_c00171{letter-spacing:-0.021600px;}
.lse_c00171{letter-spacing:-0.014400px;}
.ls10_c00171{letter-spacing:-0.007200px;}
.lsd_c00171{letter-spacing:0.000000px;}
.ls5_c00171{letter-spacing:0.007200px;}
.ls2_c00171{letter-spacing:0.014400px;}
.ls1_c00171{letter-spacing:0.021600px;}
.ls4_c00171{letter-spacing:0.028800px;}
.lsa_c00171{letter-spacing:0.036000px;}
.ls6_c00171{letter-spacing:0.043200px;}
.ls9_c00171{letter-spacing:0.050400px;}
.ls0_c00171{letter-spacing:0.057600px;}
.ls7_c00171{letter-spacing:0.064800px;}
.ls8_c00171{letter-spacing:0.072000px;}
.ls3_c00171{letter-spacing:0.079200px;}
.lsb_c00171{letter-spacing:0.093600px;}
.ls13_c00171{letter-spacing:0.720000px;}
.ls12_c00171{letter-spacing:2.397600px;}
.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;}
}
.ws9_c00171{word-spacing:-2.570400px;}
.ws8_c00171{word-spacing:-2.548800px;}
.ws1_c00171{word-spacing:0.000000px;}
.ws0_c00171{word-spacing:0.138276px;}
.ws3_c00171{word-spacing:4.190400px;}
.wsa_c00171{word-spacing:4.363200px;}
.ws7_c00171{word-spacing:7.408800px;}
.ws5_c00171{word-spacing:7.776000px;}
.ws4_c00171{word-spacing:7.905600px;}
.ws6_c00171{word-spacing:7.934400px;}
.ws2_c00171{word-spacing:20.527200px;}
._b_c00171{margin-left:-4.708800px;}
._1_c00171{margin-left:-3.657600px;}
._a_c00171{margin-left:-2.426400px;}
._0_c00171{margin-left:-1.425600px;}
._4_c00171{width:1.245600px;}
._6_c00171{width:2.332800px;}
._2_c00171{width:3.621600px;}
._3_c00171{width:4.687200px;}
._7_c00171{width:6.811200px;}
._5_c00171{width:7.905600px;}
._9_c00171{width:12.232800px;}
._8_c00171{width:20.505600px;}
._c_c00171{width:37.087200px;}
.fc0_c00171{color:rgb(0,0,0);}
.fs0_c00171{font-size:60.120000px;}
.fs1_c00171{font-size:72.000000px;}
.y0_c00171{bottom:0.000000px;}
.y6_c00171{bottom:57.360450px;}
.y5_c00171{bottom:78.060450px;}
.y25_c00171{bottom:132.960450px;}
.y24_c00171{bottom:164.010450px;}
.y23_c00171{bottom:195.060450px;}
.y22_c00171{bottom:226.110450px;}
.y21_c00171{bottom:257.070450px;}
.y20_c00171{bottom:288.120450px;}
.y1f_c00171{bottom:319.170450px;}
.y1e_c00171{bottom:362.190450px;}
.y1d_c00171{bottom:393.330450px;}
.y1c_c00171{bottom:424.380450px;}
.y1b_c00171{bottom:455.430450px;}
.y1a_c00171{bottom:486.480450px;}
.y19_c00171{bottom:517.530450px;}
.y18_c00171{bottom:560.460450px;}
.y17_c00171{bottom:591.600450px;}
.y16_c00171{bottom:622.650450px;}
.y15_c00171{bottom:653.700450px;}
.y14_c00171{bottom:684.750450px;}
.y13_c00171{bottom:727.680450px;}
.y12_c00171{bottom:758.820450px;}
.y11_c00171{bottom:789.780450px;}
.y10_c00171{bottom:820.920450px;}
.yf_c00171{bottom:863.760450px;}
.ye_c00171{bottom:894.990450px;}
.yd_c00171{bottom:926.040450px;}
.yc_c00171{bottom:957.090450px;}
.yb_c00171{bottom:988.140450px;}
.ya_c00171{bottom:1031.070450px;}
.y9_c00171{bottom:1062.210450px;}
.y8_c00171{bottom:1093.260450px;}
.y7_c00171{bottom:1124.310450px;}
.y4_c00171{bottom:1144.380657px;}
.y3_c00171{bottom:1161.660648px;}
.y2_c00171{bottom:1178.850459px;}
.y1_c00171{bottom:1196.130450px;}
.h1_c00171{height:52.898555px;}
.h2_c00171{height:63.175781px;}
.h3_c00171{height:63.351562px;}
.h0_c00171{height:1263.000000px;}
.w1_c00171{width:892.500000px;}
.w0_c00171{width:892.830000px;}
.x0_c00171{left:0.000000px;}
.x4_c00171{left:127.620000px;}
.x1_c00171{left:649.620000px;}
.x3_c00171{left:738.450000px;}
.x2_c00171{left:765.450198px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.lsf_c00171{letter-spacing:-0.044800pt;}
.lsc_c00171{letter-spacing:-0.042752pt;}
.ls14_c00171{letter-spacing:-0.038400pt;}
.ls11_c00171{letter-spacing:-0.019200pt;}
.lse_c00171{letter-spacing:-0.012800pt;}
.ls10_c00171{letter-spacing:-0.006400pt;}
.lsd_c00171{letter-spacing:0.000000pt;}
.ls5_c00171{letter-spacing:0.006400pt;}
.ls2_c00171{letter-spacing:0.012800pt;}
.ls1_c00171{letter-spacing:0.019200pt;}
.ls4_c00171{letter-spacing:0.025600pt;}
.lsa_c00171{letter-spacing:0.032000pt;}
.ls6_c00171{letter-spacing:0.038400pt;}
.ls9_c00171{letter-spacing:0.044800pt;}
.ls0_c00171{letter-spacing:0.051200pt;}
.ls7_c00171{letter-spacing:0.057600pt;}
.ls8_c00171{letter-spacing:0.064000pt;}
.ls3_c00171{letter-spacing:0.070400pt;}
.lsb_c00171{letter-spacing:0.083200pt;}
.ls13_c00171{letter-spacing:0.640000pt;}
.ls12_c00171{letter-spacing:2.131200pt;}
.ws9_c00171{word-spacing:-2.284800pt;}
.ws8_c00171{word-spacing:-2.265600pt;}
.ws1_c00171{word-spacing:0.000000pt;}
.ws0_c00171{word-spacing:0.122912pt;}
.ws3_c00171{word-spacing:3.724800pt;}
.wsa_c00171{word-spacing:3.878400pt;}
.ws7_c00171{word-spacing:6.585600pt;}
.ws5_c00171{word-spacing:6.912000pt;}
.ws4_c00171{word-spacing:7.027200pt;}
.ws6_c00171{word-spacing:7.052800pt;}
.ws2_c00171{word-spacing:18.246400pt;}
._b_c00171{margin-left:-4.185600pt;}
._1_c00171{margin-left:-3.251200pt;}
._a_c00171{margin-left:-2.156800pt;}
._0_c00171{margin-left:-1.267200pt;}
._4_c00171{width:1.107200pt;}
._6_c00171{width:2.073600pt;}
._2_c00171{width:3.219200pt;}
._3_c00171{width:4.166400pt;}
._7_c00171{width:6.054400pt;}
._5_c00171{width:7.027200pt;}
._9_c00171{width:10.873600pt;}
._8_c00171{width:18.227200pt;}
._c_c00171{width:32.966400pt;}
.fs0_c00171{font-size:53.440000pt;}
.fs1_c00171{font-size:64.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y6_c00171{bottom:50.987067pt;}
.y5_c00171{bottom:69.387067pt;}
.y25_c00171{bottom:118.187067pt;}
.y24_c00171{bottom:145.787067pt;}
.y23_c00171{bottom:173.387067pt;}
.y22_c00171{bottom:200.987067pt;}
.y21_c00171{bottom:228.507067pt;}
.y20_c00171{bottom:256.107067pt;}
.y1f_c00171{bottom:283.707067pt;}
.y1e_c00171{bottom:321.947067pt;}
.y1d_c00171{bottom:349.627067pt;}
.y1c_c00171{bottom:377.227067pt;}
.y1b_c00171{bottom:404.827067pt;}
.y1a_c00171{bottom:432.427067pt;}
.y19_c00171{bottom:460.027067pt;}
.y18_c00171{bottom:498.187067pt;}
.y17_c00171{bottom:525.867067pt;}
.y16_c00171{bottom:553.467067pt;}
.y15_c00171{bottom:581.067067pt;}
.y14_c00171{bottom:608.667067pt;}
.y13_c00171{bottom:646.827067pt;}
.y12_c00171{bottom:674.507067pt;}
.y11_c00171{bottom:702.027067pt;}
.y10_c00171{bottom:729.707067pt;}
.yf_c00171{bottom:767.787067pt;}
.ye_c00171{bottom:795.547067pt;}
.yd_c00171{bottom:823.147067pt;}
.yc_c00171{bottom:850.747067pt;}
.yb_c00171{bottom:878.347067pt;}
.ya_c00171{bottom:916.507067pt;}
.y9_c00171{bottom:944.187067pt;}
.y8_c00171{bottom:971.787067pt;}
.y7_c00171{bottom:999.387067pt;}
.y4_c00171{bottom:1017.227251pt;}
.y3_c00171{bottom:1032.587243pt;}
.y2_c00171{bottom:1047.867075pt;}
.y1_c00171{bottom:1063.227067pt;}
.h1_c00171{height:47.020937pt;}
.h2_c00171{height:56.156250pt;}
.h3_c00171{height:56.312500pt;}
.h0_c00171{height:1122.666667pt;}
.w1_c00171{width:793.333333pt;}
.w0_c00171{width:793.626667pt;}
.x0_c00171{left:0.000000pt;}
.x4_c00171{left:113.440000pt;}
.x1_c00171{left:577.440000pt;}
.x3_c00171{left:656.400000pt;}
.x2_c00171{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00371c49d87e3ad53613b8d2.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.095703;font-style:normal;font-weight:normal;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_16c02692a42a765647b8d644.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls15_c00172{letter-spacing:-3.240000px;}
.lsd_c00172{letter-spacing:-0.102204px;}
.ls14_c00172{letter-spacing:-0.057600px;}
.ls13_c00172{letter-spacing:-0.036000px;}
.ls12_c00172{letter-spacing:-0.021600px;}
.ls10_c00172{letter-spacing:-0.014400px;}
.lsf_c00172{letter-spacing:-0.007200px;}
.lse_c00172{letter-spacing:0.000000px;}
.ls6_c00172{letter-spacing:0.007200px;}
.ls8_c00172{letter-spacing:0.014400px;}
.ls0_c00172{letter-spacing:0.021600px;}
.ls4_c00172{letter-spacing:0.028800px;}
.ls2_c00172{letter-spacing:0.036000px;}
.ls5_c00172{letter-spacing:0.043200px;}
.ls7_c00172{letter-spacing:0.050400px;}
.ls3_c00172{letter-spacing:0.057600px;}
.ls1_c00172{letter-spacing:0.064800px;}
.lsc_c00172{letter-spacing:0.079200px;}
.lsa_c00172{letter-spacing:0.093600px;}
.lsb_c00172{letter-spacing:0.100800px;}
.ls9_c00172{letter-spacing:0.108000px;}
.ls11_c00172{letter-spacing:11.520000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00172{word-spacing:-18.064800px;}
.ws3_c00172{word-spacing:-0.050400px;}
.ws2_c00172{word-spacing:0.000000px;}
.ws1_c00172{word-spacing:0.192384px;}
._a_c00172{margin-left:-12.326400px;}
._b_c00172{margin-left:-10.468800px;}
._5_c00172{margin-left:-3.916800px;}
._6_c00172{margin-left:-2.649600px;}
._4_c00172{margin-left:-1.159200px;}
._0_c00172{width:1.034064px;}
._7_c00172{width:2.191536px;}
._e_c00172{width:3.600000px;}
._8_c00172{width:5.047200px;}
._11_c00172{width:6.148800px;}
._d_c00172{width:7.682400px;}
._f_c00172{width:8.755200px;}
._2_c00172{width:9.770400px;}
._1_c00172{width:10.778400px;}
._9_c00172{width:12.218400px;}
._10_c00172{width:14.076000px;}
._c_c00172{width:15.609600px;}
._3_c00172{width:16.898400px;}
.fc1_c00172{color:rgb(0,0,0);}
.fc0_c00172{color:rgb(32,31,30);}
.fs0_c00172{font-size:60.120000px;}
.fs1_c00172{font-size:72.000000px;}
.y0_c00172{bottom:0.000000px;}
.y5_c00172{bottom:57.360450px;}
.y4_c00172{bottom:78.060450px;}
.y25_c00172{bottom:112.080450px;}
.y24_c00172{bottom:143.130450px;}
.y23_c00172{bottom:174.180450px;}
.y22_c00172{bottom:208.380450px;}
.y21_c00172{bottom:230.790450px;}
.y20_c00172{bottom:256.080450px;}
.y1f_c00172{bottom:299.100450px;}
.y1e_c00172{bottom:330.240450px;}
.y1d_c00172{bottom:361.290450px;}
.y1c_c00172{bottom:392.340450px;}
.y1b_c00172{bottom:423.390450px;}
.y1a_c00172{bottom:454.440450px;}
.y19_c00172{bottom:497.460450px;}
.y18_c00172{bottom:528.600450px;}
.y17_c00172{bottom:559.650450px;}
.y16_c00172{bottom:590.700450px;}
.y15_c00172{bottom:621.660450px;}
.y14_c00172{bottom:664.680450px;}
.y13_c00172{bottom:695.820450px;}
.y12_c00172{bottom:726.870450px;}
.y11_c00172{bottom:757.920450px;}
.y10_c00172{bottom:788.970450px;}
.yf_c00172{bottom:820.020450px;}
.ye_c00172{bottom:851.070450px;}
.yd_c00172{bottom:882.120450px;}
.yc_c00172{bottom:913.170450px;}
.yb_c00172{bottom:956.100450px;}
.ya_c00172{bottom:987.240450px;}
.y9_c00172{bottom:1018.290450px;}
.y8_c00172{bottom:1049.340450px;}
.y7_c00172{bottom:1080.390450px;}
.y6_c00172{bottom:1111.440450px;}
.y3_c00172{bottom:1132.140450px;}
.y2_c00172{bottom:1165.441023px;}
.y1_c00172{bottom:1196.040600px;}
.h1_c00172{height:52.898555px;}
.h2_c00172{height:63.175781px;}
.h3_c00172{height:63.351562px;}
.h0_c00172{height:1263.000000px;}
.w1_c00172{width:892.500000px;}
.w0_c00172{width:892.830000px;}
.x0_c00172{left:0.000000px;}
.x1_c00172{left:127.620000px;}
.x2_c00172{left:738.450000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls15_c00172{letter-spacing:-2.880000pt;}
.lsd_c00172{letter-spacing:-0.090848pt;}
.ls14_c00172{letter-spacing:-0.051200pt;}
.ls13_c00172{letter-spacing:-0.032000pt;}
.ls12_c00172{letter-spacing:-0.019200pt;}
.ls10_c00172{letter-spacing:-0.012800pt;}
.lsf_c00172{letter-spacing:-0.006400pt;}
.lse_c00172{letter-spacing:0.000000pt;}
.ls6_c00172{letter-spacing:0.006400pt;}
.ls8_c00172{letter-spacing:0.012800pt;}
.ls0_c00172{letter-spacing:0.019200pt;}
.ls4_c00172{letter-spacing:0.025600pt;}
.ls2_c00172{letter-spacing:0.032000pt;}
.ls5_c00172{letter-spacing:0.038400pt;}
.ls7_c00172{letter-spacing:0.044800pt;}
.ls3_c00172{letter-spacing:0.051200pt;}
.ls1_c00172{letter-spacing:0.057600pt;}
.lsc_c00172{letter-spacing:0.070400pt;}
.lsa_c00172{letter-spacing:0.083200pt;}
.lsb_c00172{letter-spacing:0.089600pt;}
.ls9_c00172{letter-spacing:0.096000pt;}
.ls11_c00172{letter-spacing:10.240000pt;}
.ws0_c00172{word-spacing:-16.057600pt;}
.ws3_c00172{word-spacing:-0.044800pt;}
.ws2_c00172{word-spacing:0.000000pt;}
.ws1_c00172{word-spacing:0.171008pt;}
._a_c00172{margin-left:-10.956800pt;}
._b_c00172{margin-left:-9.305600pt;}
._5_c00172{margin-left:-3.481600pt;}
._6_c00172{margin-left:-2.355200pt;}
._4_c00172{margin-left:-1.030400pt;}
._0_c00172{width:0.919168pt;}
._7_c00172{width:1.948032pt;}
._e_c00172{width:3.200000pt;}
._8_c00172{width:4.486400pt;}
._11_c00172{width:5.465600pt;}
._d_c00172{width:6.828800pt;}
._f_c00172{width:7.782400pt;}
._2_c00172{width:8.684800pt;}
._1_c00172{width:9.580800pt;}
._9_c00172{width:10.860800pt;}
._10_c00172{width:12.512000pt;}
._c_c00172{width:13.875200pt;}
._3_c00172{width:15.020800pt;}
.fs0_c00172{font-size:53.440000pt;}
.fs1_c00172{font-size:64.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y5_c00172{bottom:50.987067pt;}
.y4_c00172{bottom:69.387067pt;}
.y25_c00172{bottom:99.627067pt;}
.y24_c00172{bottom:127.227067pt;}
.y23_c00172{bottom:154.827067pt;}
.y22_c00172{bottom:185.227067pt;}
.y21_c00172{bottom:205.147067pt;}
.y20_c00172{bottom:227.627067pt;}
.y1f_c00172{bottom:265.867067pt;}
.y1e_c00172{bottom:293.547067pt;}
.y1d_c00172{bottom:321.147067pt;}
.y1c_c00172{bottom:348.747067pt;}
.y1b_c00172{bottom:376.347067pt;}
.y1a_c00172{bottom:403.947067pt;}
.y19_c00172{bottom:442.187067pt;}
.y18_c00172{bottom:469.867067pt;}
.y17_c00172{bottom:497.467067pt;}
.y16_c00172{bottom:525.067067pt;}
.y15_c00172{bottom:552.587067pt;}
.y14_c00172{bottom:590.827067pt;}
.y13_c00172{bottom:618.507067pt;}
.y12_c00172{bottom:646.107067pt;}
.y11_c00172{bottom:673.707067pt;}
.y10_c00172{bottom:701.307067pt;}
.yf_c00172{bottom:728.907067pt;}
.ye_c00172{bottom:756.507067pt;}
.yd_c00172{bottom:784.107067pt;}
.yc_c00172{bottom:811.707067pt;}
.yb_c00172{bottom:849.867067pt;}
.ya_c00172{bottom:877.547067pt;}
.y9_c00172{bottom:905.147067pt;}
.y8_c00172{bottom:932.747067pt;}
.y7_c00172{bottom:960.347067pt;}
.y6_c00172{bottom:987.947067pt;}
.y3_c00172{bottom:1006.347067pt;}
.y2_c00172{bottom:1035.947576pt;}
.y1_c00172{bottom:1063.147200pt;}
.h1_c00172{height:47.020937pt;}
.h2_c00172{height:56.156250pt;}
.h3_c00172{height:56.312500pt;}
.h0_c00172{height:1122.666667pt;}
.w1_c00172{width:793.333333pt;}
.w0_c00172{width:793.626667pt;}
.x0_c00172{left:0.000000pt;}
.x1_c00172{left:113.440000pt;}
.x2_c00172{left:656.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_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_66c8d2e44e7c8fe9f14fdc54.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.095703;font-style:normal;font-weight:normal;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_55a81529f2def961cedd0592.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.093262;font-style: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:-24.120000px;}
.v3_c00173{vertical-align:-20.880000px;}
.v0_c00173{vertical-align:0.000000px;}
.v1_c00173{vertical-align:24.120000px;}
.ls17_c00173{letter-spacing:-3.240000px;}
.ls16_c00173{letter-spacing:-1.080000px;}
.ls1a_c00173{letter-spacing:-0.132264px;}
.ls14_c00173{letter-spacing:-0.050400px;}
.lsf_c00173{letter-spacing:-0.048096px;}
.ls19_c00173{letter-spacing:-0.028800px;}
.ls15_c00173{letter-spacing:-0.021600px;}
.ls11_c00173{letter-spacing:-0.014400px;}
.ls13_c00173{letter-spacing:-0.007200px;}
.ls10_c00173{letter-spacing:0.000000px;}
.ls7_c00173{letter-spacing:0.007200px;}
.ls8_c00173{letter-spacing:0.014400px;}
.ls3_c00173{letter-spacing:0.021600px;}
.lsa_c00173{letter-spacing:0.028800px;}
.ls2_c00173{letter-spacing:0.036000px;}
.ls6_c00173{letter-spacing:0.043200px;}
.ls0_c00173{letter-spacing:0.050400px;}
.ls5_c00173{letter-spacing:0.057600px;}
.ls9_c00173{letter-spacing:0.064800px;}
.lsb_c00173{letter-spacing:0.072000px;}
.lse_c00173{letter-spacing:0.072144px;}
.ls1_c00173{letter-spacing:0.086400px;}
.ls4_c00173{letter-spacing:0.093600px;}
.ls18_c00173{letter-spacing:0.100800px;}
.lsc_c00173{letter-spacing:0.151200px;}
.lsd_c00173{letter-spacing:0.180000px;}
.ls12_c00173{letter-spacing:0.181944px;}
.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;}
}
.ws5_c00173{word-spacing:-18.100800px;}
.ws4_c00173{word-spacing:-18.057600px;}
.ws1_c00173{word-spacing:-18.043200px;}
.ws3_c00173{word-spacing:-18.036000px;}
.ws0_c00173{word-spacing:-18.021600px;}
.ws2_c00173{word-spacing:-12.151944px;}
.ws6_c00173{word-spacing:-9.720000px;}
.ws9_c00173{word-spacing:-3.304800px;}
.ws8_c00173{word-spacing:0.000000px;}
.ws7_c00173{word-spacing:0.138276px;}
._9_c00173{margin-left:-4.212000px;}
._7_c00173{margin-left:-2.808000px;}
._1_c00173{margin-left:-1.036800px;}
._2_c00173{width:1.785600px;}
._b_c00173{width:3.823200px;}
._10_c00173{width:5.572800px;}
._d_c00173{width:6.804000px;}
._f_c00173{width:7.876800px;}
._c_c00173{width:10.425600px;}
._6_c00173{width:11.455200px;}
._e_c00173{width:12.952800px;}
._8_c00173{width:14.025600px;}
._3_c00173{width:16.156800px;}
._4_c00173{width:21.024000px;}
._5_c00173{width:22.161600px;}
._0_c00173{width:29.109600px;}
._a_c00173{width:30.600000px;}
.fc0_c00173{color:rgb(0,0,0);}
.fs3_c00173{font-size:38.880000px;}
.fs2_c00173{font-size:47.880000px;}
.fs0_c00173{font-size:60.120000px;}
.fs1_c00173{font-size:72.000000px;}
.y0_c00173{bottom:0.000000px;}
.y6_c00173{bottom:57.360450px;}
.y5_c00173{bottom:78.060450px;}
.y24_c00173{bottom:115.140450px;}
.y23_c00173{bottom:127.830450px;}
.y22_c00173{bottom:249.960450px;}
.y21_c00173{bottom:281.100450px;}
.y20_c00173{bottom:312.150450px;}
.y1f_c00173{bottom:343.200450px;}
.y1e_c00173{bottom:374.250450px;}
.y1d_c00173{bottom:405.300450px;}
.y1c_c00173{bottom:436.350450px;}
.y1b_c00173{bottom:467.400450px;}
.y1a_c00173{bottom:498.450450px;}
.y19_c00173{bottom:529.500450px;}
.y18_c00173{bottom:560.550450px;}
.y17_c00173{bottom:603.480450px;}
.y16_c00173{bottom:634.620450px;}
.y15_c00173{bottom:665.670450px;}
.y14_c00173{bottom:696.720450px;}
.y13_c00173{bottom:739.650450px;}
.y12_c00173{bottom:770.790450px;}
.y11_c00173{bottom:801.840450px;}
.y10_c00173{bottom:832.890450px;}
.yf_c00173{bottom:863.940450px;}
.ye_c00173{bottom:894.990450px;}
.yd_c00173{bottom:926.040450px;}
.yc_c00173{bottom:969.060450px;}
.yb_c00173{bottom:1000.200450px;}
.ya_c00173{bottom:1031.160450px;}
.y9_c00173{bottom:1062.210450px;}
.y8_c00173{bottom:1093.260450px;}
.y7_c00173{bottom:1124.310450px;}
.y4_c00173{bottom:1144.380657px;}
.y3_c00173{bottom:1161.660648px;}
.y2_c00173{bottom:1178.850459px;}
.y1_c00173{bottom:1196.130450px;}
.h5_c00173{height:34.114922px;}
.h1_c00173{height:52.898555px;}
.h2_c00173{height:63.175781px;}
.h3_c00173{height:63.351562px;}
.h4_c00173{height:66.248789px;}
.h0_c00173{height:1263.000000px;}
.w1_c00173{width:892.500000px;}
.w0_c00173{width:892.830000px;}
.x0_c00173{left:0.000000px;}
.x4_c00173{left:127.620000px;}
.x1_c00173{left:649.620000px;}
.x3_c00173{left:738.450000px;}
.x2_c00173{left:765.450198px;}
@media print{
.v2_c00173{vertical-align:-21.440000pt;}
.v3_c00173{vertical-align:-18.560000pt;}
.v0_c00173{vertical-align:0.000000pt;}
.v1_c00173{vertical-align:21.440000pt;}
.ls17_c00173{letter-spacing:-2.880000pt;}
.ls16_c00173{letter-spacing:-0.960000pt;}
.ls1a_c00173{letter-spacing:-0.117568pt;}
.ls14_c00173{letter-spacing:-0.044800pt;}
.lsf_c00173{letter-spacing:-0.042752pt;}
.ls19_c00173{letter-spacing:-0.025600pt;}
.ls15_c00173{letter-spacing:-0.019200pt;}
.ls11_c00173{letter-spacing:-0.012800pt;}
.ls13_c00173{letter-spacing:-0.006400pt;}
.ls10_c00173{letter-spacing:0.000000pt;}
.ls7_c00173{letter-spacing:0.006400pt;}
.ls8_c00173{letter-spacing:0.012800pt;}
.ls3_c00173{letter-spacing:0.019200pt;}
.lsa_c00173{letter-spacing:0.025600pt;}
.ls2_c00173{letter-spacing:0.032000pt;}
.ls6_c00173{letter-spacing:0.038400pt;}
.ls0_c00173{letter-spacing:0.044800pt;}
.ls5_c00173{letter-spacing:0.051200pt;}
.ls9_c00173{letter-spacing:0.057600pt;}
.lsb_c00173{letter-spacing:0.064000pt;}
.lse_c00173{letter-spacing:0.064128pt;}
.ls1_c00173{letter-spacing:0.076800pt;}
.ls4_c00173{letter-spacing:0.083200pt;}
.ls18_c00173{letter-spacing:0.089600pt;}
.lsc_c00173{letter-spacing:0.134400pt;}
.lsd_c00173{letter-spacing:0.160000pt;}
.ls12_c00173{letter-spacing:0.161728pt;}
.ws5_c00173{word-spacing:-16.089600pt;}
.ws4_c00173{word-spacing:-16.051200pt;}
.ws1_c00173{word-spacing:-16.038400pt;}
.ws3_c00173{word-spacing:-16.032000pt;}
.ws0_c00173{word-spacing:-16.019200pt;}
.ws2_c00173{word-spacing:-10.801728pt;}
.ws6_c00173{word-spacing:-8.640000pt;}
.ws9_c00173{word-spacing:-2.937600pt;}
.ws8_c00173{word-spacing:0.000000pt;}
.ws7_c00173{word-spacing:0.122912pt;}
._9_c00173{margin-left:-3.744000pt;}
._7_c00173{margin-left:-2.496000pt;}
._1_c00173{margin-left:-0.921600pt;}
._2_c00173{width:1.587200pt;}
._b_c00173{width:3.398400pt;}
._10_c00173{width:4.953600pt;}
._d_c00173{width:6.048000pt;}
._f_c00173{width:7.001600pt;}
._c_c00173{width:9.267200pt;}
._6_c00173{width:10.182400pt;}
._e_c00173{width:11.513600pt;}
._8_c00173{width:12.467200pt;}
._3_c00173{width:14.361600pt;}
._4_c00173{width:18.688000pt;}
._5_c00173{width:19.699200pt;}
._0_c00173{width:25.875200pt;}
._a_c00173{width:27.200000pt;}
.fs3_c00173{font-size:34.560000pt;}
.fs2_c00173{font-size:42.560000pt;}
.fs0_c00173{font-size:53.440000pt;}
.fs1_c00173{font-size:64.000000pt;}
.y0_c00173{bottom:0.000000pt;}
.y6_c00173{bottom:50.987067pt;}
.y5_c00173{bottom:69.387067pt;}
.y24_c00173{bottom:102.347067pt;}
.y23_c00173{bottom:113.627067pt;}
.y22_c00173{bottom:222.187067pt;}
.y21_c00173{bottom:249.867067pt;}
.y20_c00173{bottom:277.467067pt;}
.y1f_c00173{bottom:305.067067pt;}
.y1e_c00173{bottom:332.667067pt;}
.y1d_c00173{bottom:360.267067pt;}
.y1c_c00173{bottom:387.867067pt;}
.y1b_c00173{bottom:415.467067pt;}
.y1a_c00173{bottom:443.067067pt;}
.y19_c00173{bottom:470.667067pt;}
.y18_c00173{bottom:498.267067pt;}
.y17_c00173{bottom:536.427067pt;}
.y16_c00173{bottom:564.107067pt;}
.y15_c00173{bottom:591.707067pt;}
.y14_c00173{bottom:619.307067pt;}
.y13_c00173{bottom:657.467067pt;}
.y12_c00173{bottom:685.147067pt;}
.y11_c00173{bottom:712.747067pt;}
.y10_c00173{bottom:740.347067pt;}
.yf_c00173{bottom:767.947067pt;}
.ye_c00173{bottom:795.547067pt;}
.yd_c00173{bottom:823.147067pt;}
.yc_c00173{bottom:861.387067pt;}
.yb_c00173{bottom:889.067067pt;}
.ya_c00173{bottom:916.587067pt;}
.y9_c00173{bottom:944.187067pt;}
.y8_c00173{bottom:971.787067pt;}
.y7_c00173{bottom:999.387067pt;}
.y4_c00173{bottom:1017.227251pt;}
.y3_c00173{bottom:1032.587243pt;}
.y2_c00173{bottom:1047.867075pt;}
.y1_c00173{bottom:1063.227067pt;}
.h5_c00173{height:30.324375pt;}
.h1_c00173{height:47.020937pt;}
.h2_c00173{height:56.156250pt;}
.h3_c00173{height:56.312500pt;}
.h4_c00173{height:58.887812pt;}
.h0_c00173{height:1122.666667pt;}
.w1_c00173{width:793.333333pt;}
.w0_c00173{width:793.626667pt;}
.x0_c00173{left:0.000000pt;}
.x4_c00173{left:113.440000pt;}
.x1_c00173{left:577.440000pt;}
.x3_c00173{left:656.400000pt;}
.x2_c00173{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a396294785b603f2a47243f4.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.095703;font-style:normal;font-weight:normal;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_247b1125a5ab0b7fbad4eb57.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00174{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.lsc_c00174{letter-spacing:-0.102204px;}
.ls11_c00174{letter-spacing:-0.079200px;}
.ls16_c00174{letter-spacing:-0.050400px;}
.lse_c00174{letter-spacing:-0.036000px;}
.ls13_c00174{letter-spacing:-0.028800px;}
.ls14_c00174{letter-spacing:-0.021600px;}
.ls10_c00174{letter-spacing:-0.014400px;}
.lsf_c00174{letter-spacing:-0.007200px;}
.lsd_c00174{letter-spacing:0.000000px;}
.lsb_c00174{letter-spacing:0.007200px;}
.ls8_c00174{letter-spacing:0.014400px;}
.ls9_c00174{letter-spacing:0.021600px;}
.ls3_c00174{letter-spacing:0.028800px;}
.ls6_c00174{letter-spacing:0.036000px;}
.ls5_c00174{letter-spacing:0.043200px;}
.ls0_c00174{letter-spacing:0.050400px;}
.ls7_c00174{letter-spacing:0.057600px;}
.ls2_c00174{letter-spacing:0.064800px;}
.ls1_c00174{letter-spacing:0.079200px;}
.lsa_c00174{letter-spacing:0.086400px;}
.ls4_c00174{letter-spacing:0.122400px;}
.ls15_c00174{letter-spacing:2.160000px;}
.ls12_c00174{letter-spacing:5.040000px;}
.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;}
}
.ws1_c00174{word-spacing:0.000000px;}
.ws0_c00174{word-spacing:0.192384px;}
.ws2_c00174{word-spacing:1.785600px;}
.ws3_c00174{word-spacing:2.167200px;}
._a_c00174{margin-left:-5.781600px;}
._2_c00174{margin-left:-4.773600px;}
._1_c00174{margin-left:-3.650400px;}
._c_c00174{margin-left:-2.556000px;}
._5_c00174{margin-left:-1.188000px;}
._0_c00174{width:1.034064px;}
._8_c00174{width:2.527200px;}
._b_c00174{width:3.571200px;}
._9_c00174{width:4.888800px;}
._6_c00174{width:6.177600px;}
._7_c00174{width:7.192800px;}
._10_c00174{width:8.618400px;}
._11_c00174{width:9.619200px;}
._d_c00174{width:11.822400px;}
._4_c00174{width:15.184800px;}
._3_c00174{width:16.200000px;}
._f_c00174{width:22.572000px;}
._e_c00174{width:23.767200px;}
.fc1_c00174{color:rgb(0,0,0);}
.fc0_c00174{color:rgb(32,31,30);}
.fs0_c00174{font-size:60.120000px;}
.fs1_c00174{font-size:72.000000px;}
.y0_c00174{bottom:0.000000px;}
.y5_c00174{bottom:57.360450px;}
.y4_c00174{bottom:78.060450px;}
.y23_c00174{bottom:162.930450px;}
.y22_c00174{bottom:194.070450px;}
.y21_c00174{bottom:225.120450px;}
.y20_c00174{bottom:256.170450px;}
.y1f_c00174{bottom:287.220450px;}
.y1e_c00174{bottom:318.270450px;}
.y1d_c00174{bottom:349.320450px;}
.y1c_c00174{bottom:380.370450px;}
.y1b_c00174{bottom:411.420450px;}
.y1a_c00174{bottom:442.470450px;}
.y19_c00174{bottom:473.520450px;}
.y18_c00174{bottom:504.570450px;}
.y17_c00174{bottom:535.620450px;}
.y16_c00174{bottom:578.550450px;}
.y15_c00174{bottom:609.690450px;}
.y14_c00174{bottom:640.740450px;}
.y13_c00174{bottom:671.790450px;}
.y12_c00174{bottom:702.840450px;}
.y11_c00174{bottom:733.890450px;}
.y10_c00174{bottom:764.940450px;}
.yf_c00174{bottom:807.870450px;}
.ye_c00174{bottom:839.010450px;}
.yd_c00174{bottom:870.060450px;}
.yc_c00174{bottom:901.110450px;}
.yb_c00174{bottom:944.130450px;}
.ya_c00174{bottom:975.180450px;}
.y9_c00174{bottom:1006.230450px;}
.y8_c00174{bottom:1049.250450px;}
.y7_c00174{bottom:1080.390450px;}
.y6_c00174{bottom:1111.440450px;}
.y3_c00174{bottom:1132.140450px;}
.y2_c00174{bottom:1165.441023px;}
.y1_c00174{bottom:1196.040600px;}
.h1_c00174{height:52.898555px;}
.h2_c00174{height:63.175781px;}
.h3_c00174{height:63.351562px;}
.h0_c00174{height:1263.000000px;}
.w1_c00174{width:892.500000px;}
.w0_c00174{width:892.830000px;}
.x0_c00174{left:0.000000px;}
.x1_c00174{left:127.620000px;}
.x2_c00174{left:738.450000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.lsc_c00174{letter-spacing:-0.090848pt;}
.ls11_c00174{letter-spacing:-0.070400pt;}
.ls16_c00174{letter-spacing:-0.044800pt;}
.lse_c00174{letter-spacing:-0.032000pt;}
.ls13_c00174{letter-spacing:-0.025600pt;}
.ls14_c00174{letter-spacing:-0.019200pt;}
.ls10_c00174{letter-spacing:-0.012800pt;}
.lsf_c00174{letter-spacing:-0.006400pt;}
.lsd_c00174{letter-spacing:0.000000pt;}
.lsb_c00174{letter-spacing:0.006400pt;}
.ls8_c00174{letter-spacing:0.012800pt;}
.ls9_c00174{letter-spacing:0.019200pt;}
.ls3_c00174{letter-spacing:0.025600pt;}
.ls6_c00174{letter-spacing:0.032000pt;}
.ls5_c00174{letter-spacing:0.038400pt;}
.ls0_c00174{letter-spacing:0.044800pt;}
.ls7_c00174{letter-spacing:0.051200pt;}
.ls2_c00174{letter-spacing:0.057600pt;}
.ls1_c00174{letter-spacing:0.070400pt;}
.lsa_c00174{letter-spacing:0.076800pt;}
.ls4_c00174{letter-spacing:0.108800pt;}
.ls15_c00174{letter-spacing:1.920000pt;}
.ls12_c00174{letter-spacing:4.480000pt;}
.ws1_c00174{word-spacing:0.000000pt;}
.ws0_c00174{word-spacing:0.171008pt;}
.ws2_c00174{word-spacing:1.587200pt;}
.ws3_c00174{word-spacing:1.926400pt;}
._a_c00174{margin-left:-5.139200pt;}
._2_c00174{margin-left:-4.243200pt;}
._1_c00174{margin-left:-3.244800pt;}
._c_c00174{margin-left:-2.272000pt;}
._5_c00174{margin-left:-1.056000pt;}
._0_c00174{width:0.919168pt;}
._8_c00174{width:2.246400pt;}
._b_c00174{width:3.174400pt;}
._9_c00174{width:4.345600pt;}
._6_c00174{width:5.491200pt;}
._7_c00174{width:6.393600pt;}
._10_c00174{width:7.660800pt;}
._11_c00174{width:8.550400pt;}
._d_c00174{width:10.508800pt;}
._4_c00174{width:13.497600pt;}
._3_c00174{width:14.400000pt;}
._f_c00174{width:20.064000pt;}
._e_c00174{width:21.126400pt;}
.fs0_c00174{font-size:53.440000pt;}
.fs1_c00174{font-size:64.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y5_c00174{bottom:50.987067pt;}
.y4_c00174{bottom:69.387067pt;}
.y23_c00174{bottom:144.827067pt;}
.y22_c00174{bottom:172.507067pt;}
.y21_c00174{bottom:200.107067pt;}
.y20_c00174{bottom:227.707067pt;}
.y1f_c00174{bottom:255.307067pt;}
.y1e_c00174{bottom:282.907067pt;}
.y1d_c00174{bottom:310.507067pt;}
.y1c_c00174{bottom:338.107067pt;}
.y1b_c00174{bottom:365.707067pt;}
.y1a_c00174{bottom:393.307067pt;}
.y19_c00174{bottom:420.907067pt;}
.y18_c00174{bottom:448.507067pt;}
.y17_c00174{bottom:476.107067pt;}
.y16_c00174{bottom:514.267067pt;}
.y15_c00174{bottom:541.947067pt;}
.y14_c00174{bottom:569.547067pt;}
.y13_c00174{bottom:597.147067pt;}
.y12_c00174{bottom:624.747067pt;}
.y11_c00174{bottom:652.347067pt;}
.y10_c00174{bottom:679.947067pt;}
.yf_c00174{bottom:718.107067pt;}
.ye_c00174{bottom:745.787067pt;}
.yd_c00174{bottom:773.387067pt;}
.yc_c00174{bottom:800.987067pt;}
.yb_c00174{bottom:839.227067pt;}
.ya_c00174{bottom:866.827067pt;}
.y9_c00174{bottom:894.427067pt;}
.y8_c00174{bottom:932.667067pt;}
.y7_c00174{bottom:960.347067pt;}
.y6_c00174{bottom:987.947067pt;}
.y3_c00174{bottom:1006.347067pt;}
.y2_c00174{bottom:1035.947576pt;}
.y1_c00174{bottom:1063.147200pt;}
.h1_c00174{height:47.020937pt;}
.h2_c00174{height:56.156250pt;}
.h3_c00174{height:56.312500pt;}
.h0_c00174{height:1122.666667pt;}
.w1_c00174{width:793.333333pt;}
.w0_c00174{width:793.626667pt;}
.x0_c00174{left:0.000000pt;}
.x1_c00174{left:113.440000pt;}
.x2_c00174{left:656.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_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_0bb1d162888c65b0bf71e22d.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.095703;font-style:normal;font-weight:normal;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_b77801953da1f3534da0d014.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00175{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls15_c00175{letter-spacing:-0.252000px;}
.ls11_c00175{letter-spacing:-0.086400px;}
.ls10_c00175{letter-spacing:-0.079200px;}
.lsd_c00175{letter-spacing:-0.048096px;}
.ls16_c00175{letter-spacing:-0.036000px;}
.ls14_c00175{letter-spacing:-0.028800px;}
.lsf_c00175{letter-spacing:-0.021600px;}
.ls13_c00175{letter-spacing:-0.014400px;}
.ls12_c00175{letter-spacing:-0.007200px;}
.lse_c00175{letter-spacing:0.000000px;}
.ls5_c00175{letter-spacing:0.007200px;}
.ls1_c00175{letter-spacing:0.014400px;}
.ls4_c00175{letter-spacing:0.021600px;}
.ls8_c00175{letter-spacing:0.028800px;}
.lsb_c00175{letter-spacing:0.036000px;}
.ls0_c00175{letter-spacing:0.043200px;}
.ls9_c00175{letter-spacing:0.050400px;}
.ls2_c00175{letter-spacing:0.057600px;}
.ls6_c00175{letter-spacing:0.072000px;}
.lsa_c00175{letter-spacing:0.079200px;}
.lsc_c00175{letter-spacing:0.093600px;}
.ls3_c00175{letter-spacing:0.115200px;}
.ls7_c00175{letter-spacing:0.151200px;}
.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;}
}
.ws1_c00175{word-spacing:-18.093600px;}
.ws0_c00175{word-spacing:-18.021600px;}
.ws4_c00175{word-spacing:-1.857600px;}
.ws3_c00175{word-spacing:0.000000px;}
.ws2_c00175{word-spacing:0.138276px;}
.ws5_c00175{word-spacing:7.574400px;}
._7_c00175{margin-left:-3.816000px;}
._4_c00175{margin-left:-2.520000px;}
._2_c00175{margin-left:-1.454400px;}
._6_c00175{width:1.072800px;}
._1_c00175{width:2.404800px;}
._0_c00175{width:3.556800px;}
._5_c00175{width:4.968000px;}
._b_c00175{width:6.098400px;}
._9_c00175{width:7.120800px;}
._a_c00175{width:8.215200px;}
._8_c00175{width:19.756800px;}
._3_c00175{width:22.982400px;}
.fc0_c00175{color:rgb(0,0,0);}
.fs0_c00175{font-size:60.120000px;}
.fs1_c00175{font-size:72.000000px;}
.y0_c00175{bottom:0.000000px;}
.y6_c00175{bottom:57.360450px;}
.y5_c00175{bottom:78.060450px;}
.y25_c00175{bottom:156.810450px;}
.y24_c00175{bottom:187.950450px;}
.y23_c00175{bottom:219.000450px;}
.y22_c00175{bottom:262.020450px;}
.y21_c00175{bottom:293.070450px;}
.y20_c00175{bottom:324.120450px;}
.y1f_c00175{bottom:355.170450px;}
.y1e_c00175{bottom:386.220450px;}
.y1d_c00175{bottom:417.270450px;}
.y1c_c00175{bottom:448.320450px;}
.y1b_c00175{bottom:479.370450px;}
.y1a_c00175{bottom:510.420450px;}
.y19_c00175{bottom:541.470450px;}
.y18_c00175{bottom:572.520450px;}
.y17_c00175{bottom:603.570450px;}
.y16_c00175{bottom:646.590450px;}
.y15_c00175{bottom:677.640450px;}
.y14_c00175{bottom:708.690450px;}
.y13_c00175{bottom:739.740450px;}
.y12_c00175{bottom:770.790450px;}
.y11_c00175{bottom:813.810450px;}
.y10_c00175{bottom:844.950450px;}
.yf_c00175{bottom:876.000450px;}
.ye_c00175{bottom:907.050450px;}
.yd_c00175{bottom:938.100450px;}
.yc_c00175{bottom:969.150450px;}
.yb_c00175{bottom:1000.200450px;}
.ya_c00175{bottom:1031.160450px;}
.y9_c00175{bottom:1062.210450px;}
.y8_c00175{bottom:1093.260450px;}
.y7_c00175{bottom:1124.310450px;}
.y4_c00175{bottom:1144.380657px;}
.y3_c00175{bottom:1161.660648px;}
.y2_c00175{bottom:1178.850459px;}
.y1_c00175{bottom:1196.130450px;}
.h1_c00175{height:52.898555px;}
.h2_c00175{height:63.175781px;}
.h3_c00175{height:63.351562px;}
.h0_c00175{height:1263.000000px;}
.w1_c00175{width:892.500000px;}
.w0_c00175{width:892.830000px;}
.x0_c00175{left:0.000000px;}
.x4_c00175{left:127.620000px;}
.x1_c00175{left:649.620000px;}
.x3_c00175{left:738.450000px;}
.x2_c00175{left:765.450198px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls15_c00175{letter-spacing:-0.224000pt;}
.ls11_c00175{letter-spacing:-0.076800pt;}
.ls10_c00175{letter-spacing:-0.070400pt;}
.lsd_c00175{letter-spacing:-0.042752pt;}
.ls16_c00175{letter-spacing:-0.032000pt;}
.ls14_c00175{letter-spacing:-0.025600pt;}
.lsf_c00175{letter-spacing:-0.019200pt;}
.ls13_c00175{letter-spacing:-0.012800pt;}
.ls12_c00175{letter-spacing:-0.006400pt;}
.lse_c00175{letter-spacing:0.000000pt;}
.ls5_c00175{letter-spacing:0.006400pt;}
.ls1_c00175{letter-spacing:0.012800pt;}
.ls4_c00175{letter-spacing:0.019200pt;}
.ls8_c00175{letter-spacing:0.025600pt;}
.lsb_c00175{letter-spacing:0.032000pt;}
.ls0_c00175{letter-spacing:0.038400pt;}
.ls9_c00175{letter-spacing:0.044800pt;}
.ls2_c00175{letter-spacing:0.051200pt;}
.ls6_c00175{letter-spacing:0.064000pt;}
.lsa_c00175{letter-spacing:0.070400pt;}
.lsc_c00175{letter-spacing:0.083200pt;}
.ls3_c00175{letter-spacing:0.102400pt;}
.ls7_c00175{letter-spacing:0.134400pt;}
.ws1_c00175{word-spacing:-16.083200pt;}
.ws0_c00175{word-spacing:-16.019200pt;}
.ws4_c00175{word-spacing:-1.651200pt;}
.ws3_c00175{word-spacing:0.000000pt;}
.ws2_c00175{word-spacing:0.122912pt;}
.ws5_c00175{word-spacing:6.732800pt;}
._7_c00175{margin-left:-3.392000pt;}
._4_c00175{margin-left:-2.240000pt;}
._2_c00175{margin-left:-1.292800pt;}
._6_c00175{width:0.953600pt;}
._1_c00175{width:2.137600pt;}
._0_c00175{width:3.161600pt;}
._5_c00175{width:4.416000pt;}
._b_c00175{width:5.420800pt;}
._9_c00175{width:6.329600pt;}
._a_c00175{width:7.302400pt;}
._8_c00175{width:17.561600pt;}
._3_c00175{width:20.428800pt;}
.fs0_c00175{font-size:53.440000pt;}
.fs1_c00175{font-size:64.000000pt;}
.y0_c00175{bottom:0.000000pt;}
.y6_c00175{bottom:50.987067pt;}
.y5_c00175{bottom:69.387067pt;}
.y25_c00175{bottom:139.387067pt;}
.y24_c00175{bottom:167.067067pt;}
.y23_c00175{bottom:194.667067pt;}
.y22_c00175{bottom:232.907067pt;}
.y21_c00175{bottom:260.507067pt;}
.y20_c00175{bottom:288.107067pt;}
.y1f_c00175{bottom:315.707067pt;}
.y1e_c00175{bottom:343.307067pt;}
.y1d_c00175{bottom:370.907067pt;}
.y1c_c00175{bottom:398.507067pt;}
.y1b_c00175{bottom:426.107067pt;}
.y1a_c00175{bottom:453.707067pt;}
.y19_c00175{bottom:481.307067pt;}
.y18_c00175{bottom:508.907067pt;}
.y17_c00175{bottom:536.507067pt;}
.y16_c00175{bottom:574.747067pt;}
.y15_c00175{bottom:602.347067pt;}
.y14_c00175{bottom:629.947067pt;}
.y13_c00175{bottom:657.547067pt;}
.y12_c00175{bottom:685.147067pt;}
.y11_c00175{bottom:723.387067pt;}
.y10_c00175{bottom:751.067067pt;}
.yf_c00175{bottom:778.667067pt;}
.ye_c00175{bottom:806.267067pt;}
.yd_c00175{bottom:833.867067pt;}
.yc_c00175{bottom:861.467067pt;}
.yb_c00175{bottom:889.067067pt;}
.ya_c00175{bottom:916.587067pt;}
.y9_c00175{bottom:944.187067pt;}
.y8_c00175{bottom:971.787067pt;}
.y7_c00175{bottom:999.387067pt;}
.y4_c00175{bottom:1017.227251pt;}
.y3_c00175{bottom:1032.587243pt;}
.y2_c00175{bottom:1047.867075pt;}
.y1_c00175{bottom:1063.227067pt;}
.h1_c00175{height:47.020937pt;}
.h2_c00175{height:56.156250pt;}
.h3_c00175{height:56.312500pt;}
.h0_c00175{height:1122.666667pt;}
.w1_c00175{width:793.333333pt;}
.w0_c00175{width:793.626667pt;}
.x0_c00175{left:0.000000pt;}
.x4_c00175{left:113.440000pt;}
.x1_c00175{left:577.440000pt;}
.x3_c00175{left:656.400000pt;}
.x2_c00175{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2065d88eaed96cad2bb4ca31.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.095703;font-style:normal;font-weight:normal;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_1d4a619f509ea7f20a729af6.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls16_c00176{letter-spacing:-0.316800px;}
.ls12_c00176{letter-spacing:-0.129600px;}
.lsf_c00176{letter-spacing:-0.102204px;}
.ls14_c00176{letter-spacing:-0.036000px;}
.ls11_c00176{letter-spacing:-0.028800px;}
.ls17_c00176{letter-spacing:-0.021600px;}
.ls15_c00176{letter-spacing:-0.014400px;}
.ls10_c00176{letter-spacing:0.000000px;}
.ls3_c00176{letter-spacing:0.007200px;}
.ls0_c00176{letter-spacing:0.014400px;}
.ls5_c00176{letter-spacing:0.021600px;}
.lsa_c00176{letter-spacing:0.028800px;}
.ls2_c00176{letter-spacing:0.036000px;}
.ls9_c00176{letter-spacing:0.043200px;}
.lsd_c00176{letter-spacing:0.050400px;}
.ls8_c00176{letter-spacing:0.057600px;}
.ls6_c00176{letter-spacing:0.064800px;}
.ls7_c00176{letter-spacing:0.072000px;}
.lsb_c00176{letter-spacing:0.079200px;}
.lsc_c00176{letter-spacing:0.086400px;}
.ls1_c00176{letter-spacing:0.108000px;}
.lse_c00176{letter-spacing:0.115200px;}
.ls4_c00176{letter-spacing:0.158400px;}
.ls13_c00176{letter-spacing:9.720000px;}
.ls18_c00176{letter-spacing:19.080000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00176{word-spacing:-18.014400px;}
.ws3_c00176{word-spacing:-2.196000px;}
.ws2_c00176{word-spacing:0.000000px;}
.ws1_c00176{word-spacing:0.192384px;}
.ws4_c00176{word-spacing:20.844000px;}
._16_c00176{margin-left:-19.108800px;}
._b_c00176{margin-left:-10.670400px;}
._c_c00176{margin-left:-9.633600px;}
._e_c00176{margin-left:-4.550400px;}
._8_c00176{margin-left:-3.412800px;}
._9_c00176{margin-left:-2.397600px;}
._4_c00176{margin-left:-1.180800px;}
._0_c00176{width:1.034064px;}
._2_c00176{width:2.352672px;}
._7_c00176{width:3.619584px;}
._6_c00176{width:4.708800px;}
._5_c00176{width:6.098400px;}
._11_c00176{width:7.135200px;}
._15_c00176{width:8.200800px;}
._a_c00176{width:9.676800px;}
._13_c00176{width:10.857600px;}
._f_c00176{width:12.564000px;}
._10_c00176{width:13.658400px;}
._3_c00176{width:15.444000px;}
._12_c00176{width:17.035200px;}
._d_c00176{width:19.281600px;}
._14_c00176{width:20.786400px;}
._1_c00176{width:23.068800px;}
.fc1_c00176{color:rgb(0,0,0);}
.fc0_c00176{color:rgb(32,31,30);}
.fs0_c00176{font-size:60.120000px;}
.fs1_c00176{font-size:72.000000px;}
.y0_c00176{bottom:0.000000px;}
.y5_c00176{bottom:57.360450px;}
.y4_c00176{bottom:78.060450px;}
.y23_c00176{bottom:174.990450px;}
.y22_c00176{bottom:206.130450px;}
.y21_c00176{bottom:237.090450px;}
.y20_c00176{bottom:268.140450px;}
.y1f_c00176{bottom:299.190450px;}
.y1e_c00176{bottom:330.240450px;}
.y1d_c00176{bottom:361.290450px;}
.y1c_c00176{bottom:392.340450px;}
.y1b_c00176{bottom:423.390450px;}
.y1a_c00176{bottom:466.410450px;}
.y19_c00176{bottom:497.550450px;}
.y18_c00176{bottom:528.600450px;}
.y17_c00176{bottom:559.650450px;}
.y16_c00176{bottom:590.700450px;}
.y15_c00176{bottom:621.660450px;}
.y14_c00176{bottom:652.710450px;}
.y13_c00176{bottom:683.760450px;}
.y12_c00176{bottom:714.810450px;}
.y11_c00176{bottom:745.860450px;}
.y10_c00176{bottom:776.910450px;}
.yf_c00176{bottom:819.930450px;}
.ye_c00176{bottom:851.070450px;}
.yd_c00176{bottom:882.120450px;}
.yc_c00176{bottom:913.170450px;}
.yb_c00176{bottom:944.220450px;}
.ya_c00176{bottom:975.180450px;}
.y9_c00176{bottom:1018.200450px;}
.y8_c00176{bottom:1049.340450px;}
.y7_c00176{bottom:1080.390450px;}
.y6_c00176{bottom:1111.440450px;}
.y3_c00176{bottom:1132.140450px;}
.y2_c00176{bottom:1165.441023px;}
.y1_c00176{bottom:1196.040600px;}
.h1_c00176{height:52.898555px;}
.h2_c00176{height:63.175781px;}
.h3_c00176{height:63.351562px;}
.h0_c00176{height:1263.000000px;}
.w1_c00176{width:892.500000px;}
.w0_c00176{width:892.830000px;}
.x0_c00176{left:0.000000px;}
.x1_c00176{left:127.620000px;}
.x2_c00176{left:738.450000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls16_c00176{letter-spacing:-0.281600pt;}
.ls12_c00176{letter-spacing:-0.115200pt;}
.lsf_c00176{letter-spacing:-0.090848pt;}
.ls14_c00176{letter-spacing:-0.032000pt;}
.ls11_c00176{letter-spacing:-0.025600pt;}
.ls17_c00176{letter-spacing:-0.019200pt;}
.ls15_c00176{letter-spacing:-0.012800pt;}
.ls10_c00176{letter-spacing:0.000000pt;}
.ls3_c00176{letter-spacing:0.006400pt;}
.ls0_c00176{letter-spacing:0.012800pt;}
.ls5_c00176{letter-spacing:0.019200pt;}
.lsa_c00176{letter-spacing:0.025600pt;}
.ls2_c00176{letter-spacing:0.032000pt;}
.ls9_c00176{letter-spacing:0.038400pt;}
.lsd_c00176{letter-spacing:0.044800pt;}
.ls8_c00176{letter-spacing:0.051200pt;}
.ls6_c00176{letter-spacing:0.057600pt;}
.ls7_c00176{letter-spacing:0.064000pt;}
.lsb_c00176{letter-spacing:0.070400pt;}
.lsc_c00176{letter-spacing:0.076800pt;}
.ls1_c00176{letter-spacing:0.096000pt;}
.lse_c00176{letter-spacing:0.102400pt;}
.ls4_c00176{letter-spacing:0.140800pt;}
.ls13_c00176{letter-spacing:8.640000pt;}
.ls18_c00176{letter-spacing:16.960000pt;}
.ws0_c00176{word-spacing:-16.012800pt;}
.ws3_c00176{word-spacing:-1.952000pt;}
.ws2_c00176{word-spacing:0.000000pt;}
.ws1_c00176{word-spacing:0.171008pt;}
.ws4_c00176{word-spacing:18.528000pt;}
._16_c00176{margin-left:-16.985600pt;}
._b_c00176{margin-left:-9.484800pt;}
._c_c00176{margin-left:-8.563200pt;}
._e_c00176{margin-left:-4.044800pt;}
._8_c00176{margin-left:-3.033600pt;}
._9_c00176{margin-left:-2.131200pt;}
._4_c00176{margin-left:-1.049600pt;}
._0_c00176{width:0.919168pt;}
._2_c00176{width:2.091264pt;}
._7_c00176{width:3.217408pt;}
._6_c00176{width:4.185600pt;}
._5_c00176{width:5.420800pt;}
._11_c00176{width:6.342400pt;}
._15_c00176{width:7.289600pt;}
._a_c00176{width:8.601600pt;}
._13_c00176{width:9.651200pt;}
._f_c00176{width:11.168000pt;}
._10_c00176{width:12.140800pt;}
._3_c00176{width:13.728000pt;}
._12_c00176{width:15.142400pt;}
._d_c00176{width:17.139200pt;}
._14_c00176{width:18.476800pt;}
._1_c00176{width:20.505600pt;}
.fs0_c00176{font-size:53.440000pt;}
.fs1_c00176{font-size:64.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y5_c00176{bottom:50.987067pt;}
.y4_c00176{bottom:69.387067pt;}
.y23_c00176{bottom:155.547067pt;}
.y22_c00176{bottom:183.227067pt;}
.y21_c00176{bottom:210.747067pt;}
.y20_c00176{bottom:238.347067pt;}
.y1f_c00176{bottom:265.947067pt;}
.y1e_c00176{bottom:293.547067pt;}
.y1d_c00176{bottom:321.147067pt;}
.y1c_c00176{bottom:348.747067pt;}
.y1b_c00176{bottom:376.347067pt;}
.y1a_c00176{bottom:414.587067pt;}
.y19_c00176{bottom:442.267067pt;}
.y18_c00176{bottom:469.867067pt;}
.y17_c00176{bottom:497.467067pt;}
.y16_c00176{bottom:525.067067pt;}
.y15_c00176{bottom:552.587067pt;}
.y14_c00176{bottom:580.187067pt;}
.y13_c00176{bottom:607.787067pt;}
.y12_c00176{bottom:635.387067pt;}
.y11_c00176{bottom:662.987067pt;}
.y10_c00176{bottom:690.587067pt;}
.yf_c00176{bottom:728.827067pt;}
.ye_c00176{bottom:756.507067pt;}
.yd_c00176{bottom:784.107067pt;}
.yc_c00176{bottom:811.707067pt;}
.yb_c00176{bottom:839.307067pt;}
.ya_c00176{bottom:866.827067pt;}
.y9_c00176{bottom:905.067067pt;}
.y8_c00176{bottom:932.747067pt;}
.y7_c00176{bottom:960.347067pt;}
.y6_c00176{bottom:987.947067pt;}
.y3_c00176{bottom:1006.347067pt;}
.y2_c00176{bottom:1035.947576pt;}
.y1_c00176{bottom:1063.147200pt;}
.h1_c00176{height:47.020937pt;}
.h2_c00176{height:56.156250pt;}
.h3_c00176{height:56.312500pt;}
.h0_c00176{height:1122.666667pt;}
.w1_c00176{width:793.333333pt;}
.w0_c00176{width:793.626667pt;}
.x0_c00176{left:0.000000pt;}
.x1_c00176{left:113.440000pt;}
.x2_c00176{left:656.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_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_6fa056ad8dbe148e4dbee240.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.095703;font-style:normal;font-weight:normal;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_f401440796d5a6b6550ede28.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls19_c00177{letter-spacing:-0.525600px;}
.ls15_c00177{letter-spacing:-0.064800px;}
.ls17_c00177{letter-spacing:-0.057600px;}
.ls11_c00177{letter-spacing:-0.048096px;}
.ls16_c00177{letter-spacing:-0.043200px;}
.ls18_c00177{letter-spacing:-0.036000px;}
.ls1a_c00177{letter-spacing:-0.028800px;}
.ls13_c00177{letter-spacing:-0.021600px;}
.ls14_c00177{letter-spacing:-0.007200px;}
.ls12_c00177{letter-spacing:0.000000px;}
.ls3_c00177{letter-spacing:0.007200px;}
.ls2_c00177{letter-spacing:0.014400px;}
.ls5_c00177{letter-spacing:0.021600px;}
.ls0_c00177{letter-spacing:0.028800px;}
.ls6_c00177{letter-spacing:0.036000px;}
.ls7_c00177{letter-spacing:0.043200px;}
.ls1_c00177{letter-spacing:0.050400px;}
.ls4_c00177{letter-spacing:0.057600px;}
.lsb_c00177{letter-spacing:0.064800px;}
.ls8_c00177{letter-spacing:0.072000px;}
.ls10_c00177{letter-spacing:0.079200px;}
.ls9_c00177{letter-spacing:0.086400px;}
.lsf_c00177{letter-spacing:0.100800px;}
.lsa_c00177{letter-spacing:0.108000px;}
.lse_c00177{letter-spacing:0.115200px;}
.lsd_c00177{letter-spacing:0.122400px;}
.ls1d_c00177{letter-spacing:3.240000px;}
.ls1b_c00177{letter-spacing:4.680000px;}
.lsc_c00177{letter-spacing:7.200000px;}
.ls1c_c00177{letter-spacing:9.273600px;}
.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:-18.050400px;}
.ws1_c00177{word-spacing:-18.043200px;}
.ws2_c00177{word-spacing:-18.014400px;}
.ws0_c00177{word-spacing:-17.935200px;}
.ws5_c00177{word-spacing:0.000000px;}
.wsa_c00177{word-spacing:0.007200px;}
.ws4_c00177{word-spacing:0.138276px;}
.ws6_c00177{word-spacing:3.189600px;}
.wsb_c00177{word-spacing:4.622400px;}
.wsc_c00177{word-spacing:4.651200px;}
.wse_c00177{word-spacing:6.825600px;}
.wsd_c00177{word-spacing:7.200000px;}
.ws9_c00177{word-spacing:17.157600px;}
.ws7_c00177{word-spacing:17.172000px;}
.ws8_c00177{word-spacing:17.179200px;}
._c_c00177{margin-left:-10.267200px;}
._d_c00177{margin-left:-9.115200px;}
._9_c00177{margin-left:-7.632000px;}
._7_c00177{margin-left:-4.903200px;}
._5_c00177{margin-left:-3.607200px;}
._3_c00177{margin-left:-2.311200px;}
._1_c00177{margin-left:-1.029600px;}
._2_c00177{width:1.598400px;}
._0_c00177{width:3.211200px;}
._6_c00177{width:4.622400px;}
._8_c00177{width:7.092000px;}
._a_c00177{width:8.712000px;}
._b_c00177{width:9.878400px;}
._4_c00177{width:16.567200px;}
._e_c00177{width:26.668800px;}
._f_c00177{width:28.065600px;}
.fc0_c00177{color:rgb(0,0,0);}
.fs0_c00177{font-size:60.120000px;}
.fs1_c00177{font-size:72.000000px;}
.y0_c00177{bottom:0.000000px;}
.y6_c00177{bottom:57.360450px;}
.y5_c00177{bottom:78.060450px;}
.y26_c00177{bottom:118.470450px;}
.y25_c00177{bottom:149.520450px;}
.y24_c00177{bottom:180.480450px;}
.y23_c00177{bottom:214.770450px;}
.y22_c00177{bottom:237.090450px;}
.y21_c00177{bottom:262.470450px;}
.y20_c00177{bottom:305.490450px;}
.y1f_c00177{bottom:336.630450px;}
.y1e_c00177{bottom:367.680450px;}
.y1d_c00177{bottom:398.730450px;}
.y1c_c00177{bottom:429.780450px;}
.y1b_c00177{bottom:460.830450px;}
.y1a_c00177{bottom:491.880450px;}
.y19_c00177{bottom:522.930450px;}
.y18_c00177{bottom:565.860450px;}
.y17_c00177{bottom:597.000450px;}
.y16_c00177{bottom:628.050450px;}
.y15_c00177{bottom:659.100450px;}
.y14_c00177{bottom:702.030450px;}
.y13_c00177{bottom:733.170450px;}
.y12_c00177{bottom:764.220450px;}
.y11_c00177{bottom:795.270450px;}
.y10_c00177{bottom:838.290450px;}
.yf_c00177{bottom:869.430450px;}
.ye_c00177{bottom:900.480450px;}
.yd_c00177{bottom:931.440450px;}
.yc_c00177{bottom:962.490450px;}
.yb_c00177{bottom:1005.510450px;}
.ya_c00177{bottom:1036.560450px;}
.y9_c00177{bottom:1067.700450px;}
.y8_c00177{bottom:1101.900450px;}
.y7_c00177{bottom:1124.220450px;}
.y4_c00177{bottom:1144.380657px;}
.y3_c00177{bottom:1161.660648px;}
.y2_c00177{bottom:1178.850459px;}
.y1_c00177{bottom:1196.130450px;}
.h1_c00177{height:52.898555px;}
.h2_c00177{height:63.175781px;}
.h3_c00177{height:63.351562px;}
.h0_c00177{height:1263.000000px;}
.w1_c00177{width:892.500000px;}
.w0_c00177{width:892.830000px;}
.x0_c00177{left:0.000000px;}
.x4_c00177{left:127.620000px;}
.x1_c00177{left:649.620000px;}
.x3_c00177{left:738.450000px;}
.x2_c00177{left:765.450198px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls19_c00177{letter-spacing:-0.467200pt;}
.ls15_c00177{letter-spacing:-0.057600pt;}
.ls17_c00177{letter-spacing:-0.051200pt;}
.ls11_c00177{letter-spacing:-0.042752pt;}
.ls16_c00177{letter-spacing:-0.038400pt;}
.ls18_c00177{letter-spacing:-0.032000pt;}
.ls1a_c00177{letter-spacing:-0.025600pt;}
.ls13_c00177{letter-spacing:-0.019200pt;}
.ls14_c00177{letter-spacing:-0.006400pt;}
.ls12_c00177{letter-spacing:0.000000pt;}
.ls3_c00177{letter-spacing:0.006400pt;}
.ls2_c00177{letter-spacing:0.012800pt;}
.ls5_c00177{letter-spacing:0.019200pt;}
.ls0_c00177{letter-spacing:0.025600pt;}
.ls6_c00177{letter-spacing:0.032000pt;}
.ls7_c00177{letter-spacing:0.038400pt;}
.ls1_c00177{letter-spacing:0.044800pt;}
.ls4_c00177{letter-spacing:0.051200pt;}
.lsb_c00177{letter-spacing:0.057600pt;}
.ls8_c00177{letter-spacing:0.064000pt;}
.ls10_c00177{letter-spacing:0.070400pt;}
.ls9_c00177{letter-spacing:0.076800pt;}
.lsf_c00177{letter-spacing:0.089600pt;}
.lsa_c00177{letter-spacing:0.096000pt;}
.lse_c00177{letter-spacing:0.102400pt;}
.lsd_c00177{letter-spacing:0.108800pt;}
.ls1d_c00177{letter-spacing:2.880000pt;}
.ls1b_c00177{letter-spacing:4.160000pt;}
.lsc_c00177{letter-spacing:6.400000pt;}
.ls1c_c00177{letter-spacing:8.243200pt;}
.ws3_c00177{word-spacing:-16.044800pt;}
.ws1_c00177{word-spacing:-16.038400pt;}
.ws2_c00177{word-spacing:-16.012800pt;}
.ws0_c00177{word-spacing:-15.942400pt;}
.ws5_c00177{word-spacing:0.000000pt;}
.wsa_c00177{word-spacing:0.006400pt;}
.ws4_c00177{word-spacing:0.122912pt;}
.ws6_c00177{word-spacing:2.835200pt;}
.wsb_c00177{word-spacing:4.108800pt;}
.wsc_c00177{word-spacing:4.134400pt;}
.wse_c00177{word-spacing:6.067200pt;}
.wsd_c00177{word-spacing:6.400000pt;}
.ws9_c00177{word-spacing:15.251200pt;}
.ws7_c00177{word-spacing:15.264000pt;}
.ws8_c00177{word-spacing:15.270400pt;}
._c_c00177{margin-left:-9.126400pt;}
._d_c00177{margin-left:-8.102400pt;}
._9_c00177{margin-left:-6.784000pt;}
._7_c00177{margin-left:-4.358400pt;}
._5_c00177{margin-left:-3.206400pt;}
._3_c00177{margin-left:-2.054400pt;}
._1_c00177{margin-left:-0.915200pt;}
._2_c00177{width:1.420800pt;}
._0_c00177{width:2.854400pt;}
._6_c00177{width:4.108800pt;}
._8_c00177{width:6.304000pt;}
._a_c00177{width:7.744000pt;}
._b_c00177{width:8.780800pt;}
._4_c00177{width:14.726400pt;}
._e_c00177{width:23.705600pt;}
._f_c00177{width:24.947200pt;}
.fs0_c00177{font-size:53.440000pt;}
.fs1_c00177{font-size:64.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y6_c00177{bottom:50.987067pt;}
.y5_c00177{bottom:69.387067pt;}
.y26_c00177{bottom:105.307067pt;}
.y25_c00177{bottom:132.907067pt;}
.y24_c00177{bottom:160.427067pt;}
.y23_c00177{bottom:190.907067pt;}
.y22_c00177{bottom:210.747067pt;}
.y21_c00177{bottom:233.307067pt;}
.y20_c00177{bottom:271.547067pt;}
.y1f_c00177{bottom:299.227067pt;}
.y1e_c00177{bottom:326.827067pt;}
.y1d_c00177{bottom:354.427067pt;}
.y1c_c00177{bottom:382.027067pt;}
.y1b_c00177{bottom:409.627067pt;}
.y1a_c00177{bottom:437.227067pt;}
.y19_c00177{bottom:464.827067pt;}
.y18_c00177{bottom:502.987067pt;}
.y17_c00177{bottom:530.667067pt;}
.y16_c00177{bottom:558.267067pt;}
.y15_c00177{bottom:585.867067pt;}
.y14_c00177{bottom:624.027067pt;}
.y13_c00177{bottom:651.707067pt;}
.y12_c00177{bottom:679.307067pt;}
.y11_c00177{bottom:706.907067pt;}
.y10_c00177{bottom:745.147067pt;}
.yf_c00177{bottom:772.827067pt;}
.ye_c00177{bottom:800.427067pt;}
.yd_c00177{bottom:827.947067pt;}
.yc_c00177{bottom:855.547067pt;}
.yb_c00177{bottom:893.787067pt;}
.ya_c00177{bottom:921.387067pt;}
.y9_c00177{bottom:949.067067pt;}
.y8_c00177{bottom:979.467067pt;}
.y7_c00177{bottom:999.307067pt;}
.y4_c00177{bottom:1017.227251pt;}
.y3_c00177{bottom:1032.587243pt;}
.y2_c00177{bottom:1047.867075pt;}
.y1_c00177{bottom:1063.227067pt;}
.h1_c00177{height:47.020937pt;}
.h2_c00177{height:56.156250pt;}
.h3_c00177{height:56.312500pt;}
.h0_c00177{height:1122.666667pt;}
.w1_c00177{width:793.333333pt;}
.w0_c00177{width:793.626667pt;}
.x0_c00177{left:0.000000pt;}
.x4_c00177{left:113.440000pt;}
.x1_c00177{left:577.440000pt;}
.x3_c00177{left:656.400000pt;}
.x2_c00177{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8eb3cbf76abcefc9516d1927.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.095703;font-style:normal;font-weight:normal;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_c29cfbbf6ec4489927aa5fab.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls19_c00178{letter-spacing:-1.080000px;}
.ls15_c00178{letter-spacing:-0.273600px;}
.ls10_c00178{letter-spacing:-0.102204px;}
.ls17_c00178{letter-spacing:-0.043200px;}
.ls16_c00178{letter-spacing:-0.028800px;}
.ls18_c00178{letter-spacing:-0.021600px;}
.ls14_c00178{letter-spacing:-0.014400px;}
.ls13_c00178{letter-spacing:-0.007200px;}
.ls11_c00178{letter-spacing:0.000000px;}
.ls1_c00178{letter-spacing:0.007200px;}
.ls6_c00178{letter-spacing:0.014400px;}
.ls4_c00178{letter-spacing:0.021600px;}
.ls8_c00178{letter-spacing:0.028800px;}
.ls0_c00178{letter-spacing:0.036000px;}
.ls5_c00178{letter-spacing:0.043200px;}
.ls2_c00178{letter-spacing:0.050400px;}
.lsa_c00178{letter-spacing:0.057600px;}
.ls3_c00178{letter-spacing:0.064800px;}
.ls7_c00178{letter-spacing:0.072000px;}
.lsb_c00178{letter-spacing:0.079200px;}
.lsd_c00178{letter-spacing:0.100800px;}
.lsf_c00178{letter-spacing:0.108000px;}
.ls9_c00178{letter-spacing:0.122400px;}
.lsc_c00178{letter-spacing:0.151200px;}
.lse_c00178{letter-spacing:0.158400px;}
.ls1b_c00178{letter-spacing:8.280000px;}
.ls12_c00178{letter-spacing:10.440000px;}
.ls1a_c00178{letter-spacing:10.728000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:-18.064800px;}
.ws2_c00178{word-spacing:0.000000px;}
.ws1_c00178{word-spacing:0.192384px;}
.ws5_c00178{word-spacing:3.729600px;}
.ws6_c00178{word-spacing:3.967200px;}
.ws4_c00178{word-spacing:3.974400px;}
.ws3_c00178{word-spacing:10.051200px;}
._3_c00178{margin-left:-10.785600px;}
._4_c00178{margin-left:-9.388800px;}
._f_c00178{margin-left:-7.567200px;}
._d_c00178{margin-left:-3.484800px;}
._8_c00178{margin-left:-2.289600px;}
._2_c00178{margin-left:-1.152000px;}
._0_c00178{width:1.034064px;}
._9_c00178{width:2.042352px;}
._c_c00178{width:3.055824px;}
._10_c00178{width:5.781600px;}
._6_c00178{width:6.818400px;}
._e_c00178{width:7.840800px;}
._5_c00178{width:8.920800px;}
._1_c00178{width:10.404000px;}
._7_c00178{width:12.225600px;}
._11_c00178{width:14.040000px;}
._a_c00178{width:20.167200px;}
._b_c00178{width:25.891200px;}
.fc1_c00178{color:rgb(0,0,0);}
.fc0_c00178{color:rgb(32,31,30);}
.fs0_c00178{font-size:60.120000px;}
.fs1_c00178{font-size:72.000000px;}
.y0_c00178{bottom:0.000000px;}
.y5_c00178{bottom:57.360450px;}
.y4_c00178{bottom:78.060450px;}
.y25_c00178{bottom:111.450450px;}
.y24_c00178{bottom:142.500450px;}
.y23_c00178{bottom:173.550450px;}
.y22_c00178{bottom:204.600450px;}
.y21_c00178{bottom:235.650450px;}
.y20_c00178{bottom:266.700450px;}
.y1f_c00178{bottom:297.750450px;}
.y1e_c00178{bottom:328.800450px;}
.y1d_c00178{bottom:359.850450px;}
.y1c_c00178{bottom:390.900450px;}
.y1b_c00178{bottom:429.330450px;}
.y1a_c00178{bottom:460.470450px;}
.y19_c00178{bottom:491.520450px;}
.y18_c00178{bottom:522.570450px;}
.y17_c00178{bottom:553.620450px;}
.y16_c00178{bottom:592.050450px;}
.y15_c00178{bottom:623.190450px;}
.y14_c00178{bottom:654.240450px;}
.y13_c00178{bottom:685.290450px;}
.y12_c00178{bottom:716.340450px;}
.y11_c00178{bottom:747.390450px;}
.y10_c00178{bottom:778.440450px;}
.yf_c00178{bottom:816.870450px;}
.ye_c00178{bottom:848.010450px;}
.yd_c00178{bottom:879.060450px;}
.yc_c00178{bottom:917.580450px;}
.yb_c00178{bottom:948.720450px;}
.ya_c00178{bottom:979.680450px;}
.y9_c00178{bottom:1010.730450px;}
.y8_c00178{bottom:1041.780450px;}
.y7_c00178{bottom:1080.300450px;}
.y6_c00178{bottom:1111.440450px;}
.y3_c00178{bottom:1132.140450px;}
.y2_c00178{bottom:1165.441023px;}
.y1_c00178{bottom:1196.040600px;}
.h1_c00178{height:52.898555px;}
.h2_c00178{height:63.175781px;}
.h3_c00178{height:63.351562px;}
.h0_c00178{height:1263.000000px;}
.w1_c00178{width:892.500000px;}
.w0_c00178{width:892.830000px;}
.x0_c00178{left:0.000000px;}
.x1_c00178{left:127.620000px;}
.x2_c00178{left:738.450000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls19_c00178{letter-spacing:-0.960000pt;}
.ls15_c00178{letter-spacing:-0.243200pt;}
.ls10_c00178{letter-spacing:-0.090848pt;}
.ls17_c00178{letter-spacing:-0.038400pt;}
.ls16_c00178{letter-spacing:-0.025600pt;}
.ls18_c00178{letter-spacing:-0.019200pt;}
.ls14_c00178{letter-spacing:-0.012800pt;}
.ls13_c00178{letter-spacing:-0.006400pt;}
.ls11_c00178{letter-spacing:0.000000pt;}
.ls1_c00178{letter-spacing:0.006400pt;}
.ls6_c00178{letter-spacing:0.012800pt;}
.ls4_c00178{letter-spacing:0.019200pt;}
.ls8_c00178{letter-spacing:0.025600pt;}
.ls0_c00178{letter-spacing:0.032000pt;}
.ls5_c00178{letter-spacing:0.038400pt;}
.ls2_c00178{letter-spacing:0.044800pt;}
.lsa_c00178{letter-spacing:0.051200pt;}
.ls3_c00178{letter-spacing:0.057600pt;}
.ls7_c00178{letter-spacing:0.064000pt;}
.lsb_c00178{letter-spacing:0.070400pt;}
.lsd_c00178{letter-spacing:0.089600pt;}
.lsf_c00178{letter-spacing:0.096000pt;}
.ls9_c00178{letter-spacing:0.108800pt;}
.lsc_c00178{letter-spacing:0.134400pt;}
.lse_c00178{letter-spacing:0.140800pt;}
.ls1b_c00178{letter-spacing:7.360000pt;}
.ls12_c00178{letter-spacing:9.280000pt;}
.ls1a_c00178{letter-spacing:9.536000pt;}
.ws0_c00178{word-spacing:-16.057600pt;}
.ws2_c00178{word-spacing:0.000000pt;}
.ws1_c00178{word-spacing:0.171008pt;}
.ws5_c00178{word-spacing:3.315200pt;}
.ws6_c00178{word-spacing:3.526400pt;}
.ws4_c00178{word-spacing:3.532800pt;}
.ws3_c00178{word-spacing:8.934400pt;}
._3_c00178{margin-left:-9.587200pt;}
._4_c00178{margin-left:-8.345600pt;}
._f_c00178{margin-left:-6.726400pt;}
._d_c00178{margin-left:-3.097600pt;}
._8_c00178{margin-left:-2.035200pt;}
._2_c00178{margin-left:-1.024000pt;}
._0_c00178{width:0.919168pt;}
._9_c00178{width:1.815424pt;}
._c_c00178{width:2.716288pt;}
._10_c00178{width:5.139200pt;}
._6_c00178{width:6.060800pt;}
._e_c00178{width:6.969600pt;}
._5_c00178{width:7.929600pt;}
._1_c00178{width:9.248000pt;}
._7_c00178{width:10.867200pt;}
._11_c00178{width:12.480000pt;}
._a_c00178{width:17.926400pt;}
._b_c00178{width:23.014400pt;}
.fs0_c00178{font-size:53.440000pt;}
.fs1_c00178{font-size:64.000000pt;}
.y0_c00178{bottom:0.000000pt;}
.y5_c00178{bottom:50.987067pt;}
.y4_c00178{bottom:69.387067pt;}
.y25_c00178{bottom:99.067067pt;}
.y24_c00178{bottom:126.667067pt;}
.y23_c00178{bottom:154.267067pt;}
.y22_c00178{bottom:181.867067pt;}
.y21_c00178{bottom:209.467067pt;}
.y20_c00178{bottom:237.067067pt;}
.y1f_c00178{bottom:264.667067pt;}
.y1e_c00178{bottom:292.267067pt;}
.y1d_c00178{bottom:319.867067pt;}
.y1c_c00178{bottom:347.467067pt;}
.y1b_c00178{bottom:381.627067pt;}
.y1a_c00178{bottom:409.307067pt;}
.y19_c00178{bottom:436.907067pt;}
.y18_c00178{bottom:464.507067pt;}
.y17_c00178{bottom:492.107067pt;}
.y16_c00178{bottom:526.267067pt;}
.y15_c00178{bottom:553.947067pt;}
.y14_c00178{bottom:581.547067pt;}
.y13_c00178{bottom:609.147067pt;}
.y12_c00178{bottom:636.747067pt;}
.y11_c00178{bottom:664.347067pt;}
.y10_c00178{bottom:691.947067pt;}
.yf_c00178{bottom:726.107067pt;}
.ye_c00178{bottom:753.787067pt;}
.yd_c00178{bottom:781.387067pt;}
.yc_c00178{bottom:815.627067pt;}
.yb_c00178{bottom:843.307067pt;}
.ya_c00178{bottom:870.827067pt;}
.y9_c00178{bottom:898.427067pt;}
.y8_c00178{bottom:926.027067pt;}
.y7_c00178{bottom:960.267067pt;}
.y6_c00178{bottom:987.947067pt;}
.y3_c00178{bottom:1006.347067pt;}
.y2_c00178{bottom:1035.947576pt;}
.y1_c00178{bottom:1063.147200pt;}
.h1_c00178{height:47.020937pt;}
.h2_c00178{height:56.156250pt;}
.h3_c00178{height:56.312500pt;}
.h0_c00178{height:1122.666667pt;}
.w1_c00178{width:793.333333pt;}
.w0_c00178{width:793.626667pt;}
.x0_c00178{left:0.000000pt;}
.x1_c00178{left:113.440000pt;}
.x2_c00178{left:656.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_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_fcaec00fbbfd609f8518c105.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.095703;font-style:normal;font-weight:normal;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_d78221b4555389c0c7113d95.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00179{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls11_c00179{letter-spacing:-0.086400px;}
.ls10_c00179{letter-spacing:-0.064800px;}
.lse_c00179{letter-spacing:-0.057600px;}
.lsf_c00179{letter-spacing:-0.050400px;}
.lsb_c00179{letter-spacing:-0.048096px;}
.ls14_c00179{letter-spacing:-0.036000px;}
.ls13_c00179{letter-spacing:-0.028800px;}
.ls12_c00179{letter-spacing:-0.021600px;}
.ls16_c00179{letter-spacing:-0.014400px;}
.lsd_c00179{letter-spacing:-0.007200px;}
.lsc_c00179{letter-spacing:0.000000px;}
.ls0_c00179{letter-spacing:0.007200px;}
.ls3_c00179{letter-spacing:0.014400px;}
.ls5_c00179{letter-spacing:0.021600px;}
.ls1_c00179{letter-spacing:0.028800px;}
.ls6_c00179{letter-spacing:0.036000px;}
.ls8_c00179{letter-spacing:0.043200px;}
.ls4_c00179{letter-spacing:0.057600px;}
.ls9_c00179{letter-spacing:0.064800px;}
.ls7_c00179{letter-spacing:0.072000px;}
.ls2_c00179{letter-spacing:0.079200px;}
.lsa_c00179{letter-spacing:0.086400px;}
.ls15_c00179{letter-spacing:2.520000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00179{word-spacing:-18.036000px;}
.ws2_c00179{word-spacing:0.000000px;}
.ws1_c00179{word-spacing:0.138276px;}
.ws3_c00179{word-spacing:0.208800px;}
.ws6_c00179{word-spacing:2.505600px;}
.ws4_c00179{word-spacing:4.312800px;}
.ws5_c00179{word-spacing:4.356000px;}
._6_c00179{margin-left:-4.377600px;}
._7_c00179{margin-left:-2.541600px;}
._2_c00179{margin-left:-1.008000px;}
._4_c00179{width:1.000800px;}
._3_c00179{width:2.080800px;}
._c_c00179{width:3.405600px;}
._b_c00179{width:5.104800px;}
._5_c00179{width:6.177600px;}
._9_c00179{width:7.704000px;}
._d_c00179{width:10.022400px;}
._8_c00179{width:11.880000px;}
._1_c00179{width:13.312800px;}
._0_c00179{width:14.392800px;}
._a_c00179{width:16.200000px;}
.fc0_c00179{color:rgb(0,0,0);}
.fs0_c00179{font-size:60.120000px;}
.fs1_c00179{font-size:72.000000px;}
.y0_c00179{bottom:0.000000px;}
.y6_c00179{bottom:57.360450px;}
.y5_c00179{bottom:78.060450px;}
.y25_c00179{bottom:157.440450px;}
.y24_c00179{bottom:188.580450px;}
.y23_c00179{bottom:219.630450px;}
.y22_c00179{bottom:250.680450px;}
.y21_c00179{bottom:281.730450px;}
.y20_c00179{bottom:303.960450px;}
.y1f_c00179{bottom:329.250450px;}
.y1e_c00179{bottom:354.630450px;}
.y1d_c00179{bottom:397.740450px;}
.y1c_c00179{bottom:428.880450px;}
.y1b_c00179{bottom:459.930450px;}
.y1a_c00179{bottom:490.980450px;}
.y19_c00179{bottom:533.910450px;}
.y18_c00179{bottom:565.050450px;}
.y17_c00179{bottom:596.100450px;}
.y16_c00179{bottom:627.150450px;}
.y15_c00179{bottom:658.200450px;}
.y14_c00179{bottom:689.250450px;}
.y13_c00179{bottom:732.180450px;}
.y12_c00179{bottom:763.320450px;}
.y11_c00179{bottom:794.370450px;}
.y10_c00179{bottom:825.420450px;}
.yf_c00179{bottom:856.470450px;}
.ye_c00179{bottom:887.520450px;}
.yd_c00179{bottom:930.450450px;}
.yc_c00179{bottom:961.590450px;}
.yb_c00179{bottom:992.640450px;}
.ya_c00179{bottom:1023.690450px;}
.y9_c00179{bottom:1054.740450px;}
.y8_c00179{bottom:1093.170450px;}
.y7_c00179{bottom:1124.310450px;}
.y4_c00179{bottom:1144.380657px;}
.y3_c00179{bottom:1161.660648px;}
.y2_c00179{bottom:1178.850459px;}
.y1_c00179{bottom:1196.130450px;}
.h1_c00179{height:52.898555px;}
.h2_c00179{height:63.175781px;}
.h3_c00179{height:63.351562px;}
.h0_c00179{height:1263.000000px;}
.w1_c00179{width:892.500000px;}
.w0_c00179{width:892.830000px;}
.x0_c00179{left:0.000000px;}
.x4_c00179{left:127.620000px;}
.x1_c00179{left:649.620000px;}
.x3_c00179{left:738.450000px;}
.x2_c00179{left:765.450198px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls11_c00179{letter-spacing:-0.076800pt;}
.ls10_c00179{letter-spacing:-0.057600pt;}
.lse_c00179{letter-spacing:-0.051200pt;}
.lsf_c00179{letter-spacing:-0.044800pt;}
.lsb_c00179{letter-spacing:-0.042752pt;}
.ls14_c00179{letter-spacing:-0.032000pt;}
.ls13_c00179{letter-spacing:-0.025600pt;}
.ls12_c00179{letter-spacing:-0.019200pt;}
.ls16_c00179{letter-spacing:-0.012800pt;}
.lsd_c00179{letter-spacing:-0.006400pt;}
.lsc_c00179{letter-spacing:0.000000pt;}
.ls0_c00179{letter-spacing:0.006400pt;}
.ls3_c00179{letter-spacing:0.012800pt;}
.ls5_c00179{letter-spacing:0.019200pt;}
.ls1_c00179{letter-spacing:0.025600pt;}
.ls6_c00179{letter-spacing:0.032000pt;}
.ls8_c00179{letter-spacing:0.038400pt;}
.ls4_c00179{letter-spacing:0.051200pt;}
.ls9_c00179{letter-spacing:0.057600pt;}
.ls7_c00179{letter-spacing:0.064000pt;}
.ls2_c00179{letter-spacing:0.070400pt;}
.lsa_c00179{letter-spacing:0.076800pt;}
.ls15_c00179{letter-spacing:2.240000pt;}
.ws0_c00179{word-spacing:-16.032000pt;}
.ws2_c00179{word-spacing:0.000000pt;}
.ws1_c00179{word-spacing:0.122912pt;}
.ws3_c00179{word-spacing:0.185600pt;}
.ws6_c00179{word-spacing:2.227200pt;}
.ws4_c00179{word-spacing:3.833600pt;}
.ws5_c00179{word-spacing:3.872000pt;}
._6_c00179{margin-left:-3.891200pt;}
._7_c00179{margin-left:-2.259200pt;}
._2_c00179{margin-left:-0.896000pt;}
._4_c00179{width:0.889600pt;}
._3_c00179{width:1.849600pt;}
._c_c00179{width:3.027200pt;}
._b_c00179{width:4.537600pt;}
._5_c00179{width:5.491200pt;}
._9_c00179{width:6.848000pt;}
._d_c00179{width:8.908800pt;}
._8_c00179{width:10.560000pt;}
._1_c00179{width:11.833600pt;}
._0_c00179{width:12.793600pt;}
._a_c00179{width:14.400000pt;}
.fs0_c00179{font-size:53.440000pt;}
.fs1_c00179{font-size:64.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y6_c00179{bottom:50.987067pt;}
.y5_c00179{bottom:69.387067pt;}
.y25_c00179{bottom:139.947067pt;}
.y24_c00179{bottom:167.627067pt;}
.y23_c00179{bottom:195.227067pt;}
.y22_c00179{bottom:222.827067pt;}
.y21_c00179{bottom:250.427067pt;}
.y20_c00179{bottom:270.187067pt;}
.y1f_c00179{bottom:292.667067pt;}
.y1e_c00179{bottom:315.227067pt;}
.y1d_c00179{bottom:353.547067pt;}
.y1c_c00179{bottom:381.227067pt;}
.y1b_c00179{bottom:408.827067pt;}
.y1a_c00179{bottom:436.427067pt;}
.y19_c00179{bottom:474.587067pt;}
.y18_c00179{bottom:502.267067pt;}
.y17_c00179{bottom:529.867067pt;}
.y16_c00179{bottom:557.467067pt;}
.y15_c00179{bottom:585.067067pt;}
.y14_c00179{bottom:612.667067pt;}
.y13_c00179{bottom:650.827067pt;}
.y12_c00179{bottom:678.507067pt;}
.y11_c00179{bottom:706.107067pt;}
.y10_c00179{bottom:733.707067pt;}
.yf_c00179{bottom:761.307067pt;}
.ye_c00179{bottom:788.907067pt;}
.yd_c00179{bottom:827.067067pt;}
.yc_c00179{bottom:854.747067pt;}
.yb_c00179{bottom:882.347067pt;}
.ya_c00179{bottom:909.947067pt;}
.y9_c00179{bottom:937.547067pt;}
.y8_c00179{bottom:971.707067pt;}
.y7_c00179{bottom:999.387067pt;}
.y4_c00179{bottom:1017.227251pt;}
.y3_c00179{bottom:1032.587243pt;}
.y2_c00179{bottom:1047.867075pt;}
.y1_c00179{bottom:1063.227067pt;}
.h1_c00179{height:47.020937pt;}
.h2_c00179{height:56.156250pt;}
.h3_c00179{height:56.312500pt;}
.h0_c00179{height:1122.666667pt;}
.w1_c00179{width:793.333333pt;}
.w0_c00179{width:793.626667pt;}
.x0_c00179{left:0.000000pt;}
.x4_c00179{left:113.440000pt;}
.x1_c00179{left:577.440000pt;}
.x3_c00179{left:656.400000pt;}
.x2_c00179{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77d916e00ca614d7a51acfe4.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.095703;font-style:normal;font-weight:normal;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_978e328e9696a8fb89625b3b.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00180{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls15_c00180{letter-spacing:-0.150300px;}
.lsd_c00180{letter-spacing:-0.102204px;}
.ls17_c00180{letter-spacing:-0.096192px;}
.ls16_c00180{letter-spacing:-0.084168px;}
.ls11_c00180{letter-spacing:-0.079200px;}
.ls12_c00180{letter-spacing:-0.028800px;}
.ls14_c00180{letter-spacing:-0.027000px;}
.ls18_c00180{letter-spacing:-0.021600px;}
.ls13_c00180{letter-spacing:-0.016200px;}
.ls10_c00180{letter-spacing:-0.014400px;}
.lse_c00180{letter-spacing:0.000000px;}
.lsa_c00180{letter-spacing:0.005400px;}
.ls5_c00180{letter-spacing:0.007200px;}
.ls8_c00180{letter-spacing:0.021600px;}
.ls0_c00180{letter-spacing:0.028800px;}
.ls6_c00180{letter-spacing:0.036000px;}
.ls2_c00180{letter-spacing:0.043200px;}
.lsb_c00180{letter-spacing:0.048600px;}
.lsc_c00180{letter-spacing:0.050400px;}
.ls4_c00180{letter-spacing:0.057600px;}
.ls1_c00180{letter-spacing:0.064800px;}
.ls7_c00180{letter-spacing:0.072000px;}
.ls9_c00180{letter-spacing:0.093600px;}
.ls3_c00180{letter-spacing:0.100800px;}
.lsf_c00180{letter-spacing:7.560000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00180{word-spacing:-18.000000px;}
.ws4_c00180{word-spacing:-17.971200px;}
.ws1_c00180{word-spacing:-14.945832px;}
.ws2_c00180{word-spacing:-14.933808px;}
.ws3_c00180{word-spacing:-14.879700px;}
.ws6_c00180{word-spacing:0.000000px;}
.wsa_c00180{word-spacing:0.129600px;}
.ws5_c00180{word-spacing:0.192384px;}
.ws9_c00180{word-spacing:0.534600px;}
.ws7_c00180{word-spacing:0.556200px;}
.ws8_c00180{word-spacing:0.567000px;}
.wsb_c00180{word-spacing:1.411200px;}
._3_c00180{margin-left:-7.732800px;}
._4_c00180{margin-left:-6.696000px;}
._9_c00180{margin-left:-3.636000px;}
._a_c00180{margin-left:-2.520000px;}
._2_c00180{margin-left:-1.281600px;}
._0_c00180{width:1.034064px;}
._5_c00180{width:2.174400px;}
._6_c00180{width:3.484800px;}
._8_c00180{width:4.740336px;}
._1_c00180{width:7.531200px;}
._7_c00180{width:19.908000px;}
.fc3_c00180{color:rgb(5,99,193);}
.fc2_c00180{color:rgb(68,84,106);}
.fc1_c00180{color:rgb(0,0,0);}
.fc0_c00180{color:rgb(32,31,30);}
.fs2_c00180{font-size:54.000000px;}
.fs0_c00180{font-size:60.120000px;}
.fs1_c00180{font-size:72.000000px;}
.y0_c00180{bottom:0.000000px;}
.y5_c00180{bottom:57.360450px;}
.y4_c00180{bottom:78.060450px;}
.y1c_c00180{bottom:111.000450px;}
.y1b_c00180{bottom:142.050450px;}
.y1a_c00180{bottom:184.980450px;}
.y19_c00180{bottom:216.120450px;}
.y18_c00180{bottom:247.170450px;}
.y17_c00180{bottom:290.010450px;}
.y16_c00180{bottom:310.260450px;}
.y15_c00180{bottom:327.450450px;}
.y14_c00180{bottom:363.630450px;}
.y13_c00180{bottom:703.650000px;}
.y12_c00180{bottom:719.130450px;}
.y11_c00180{bottom:757.830450px;}
.y10_c00180{bottom:788.970450px;}
.yf_c00180{bottom:820.020450px;}
.ye_c00180{bottom:851.070450px;}
.yd_c00180{bottom:882.120450px;}
.yc_c00180{bottom:913.170450px;}
.yb_c00180{bottom:944.220450px;}
.ya_c00180{bottom:987.150450px;}
.y9_c00180{bottom:1018.290450px;}
.y8_c00180{bottom:1049.340450px;}
.y7_c00180{bottom:1080.390450px;}
.y6_c00180{bottom:1111.440450px;}
.y3_c00180{bottom:1132.140450px;}
.y2_c00180{bottom:1165.441023px;}
.y1_c00180{bottom:1196.040600px;}
.h4_c00180{height:47.513672px;}
.h5_c00180{height:52.751777px;}
.h1_c00180{height:52.898555px;}
.h2_c00180{height:63.175781px;}
.h3_c00180{height:63.351562px;}
.h0_c00180{height:1263.000000px;}
.w1_c00180{width:892.500000px;}
.w0_c00180{width:892.830000px;}
.x0_c00180{left:0.000000px;}
.x1_c00180{left:127.620000px;}
.x2_c00180{left:738.450000px;}
.x3_c00180{left:755.280000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls15_c00180{letter-spacing:-0.133600pt;}
.lsd_c00180{letter-spacing:-0.090848pt;}
.ls17_c00180{letter-spacing:-0.085504pt;}
.ls16_c00180{letter-spacing:-0.074816pt;}
.ls11_c00180{letter-spacing:-0.070400pt;}
.ls12_c00180{letter-spacing:-0.025600pt;}
.ls14_c00180{letter-spacing:-0.024000pt;}
.ls18_c00180{letter-spacing:-0.019200pt;}
.ls13_c00180{letter-spacing:-0.014400pt;}
.ls10_c00180{letter-spacing:-0.012800pt;}
.lse_c00180{letter-spacing:0.000000pt;}
.lsa_c00180{letter-spacing:0.004800pt;}
.ls5_c00180{letter-spacing:0.006400pt;}
.ls8_c00180{letter-spacing:0.019200pt;}
.ls0_c00180{letter-spacing:0.025600pt;}
.ls6_c00180{letter-spacing:0.032000pt;}
.ls2_c00180{letter-spacing:0.038400pt;}
.lsb_c00180{letter-spacing:0.043200pt;}
.lsc_c00180{letter-spacing:0.044800pt;}
.ls4_c00180{letter-spacing:0.051200pt;}
.ls1_c00180{letter-spacing:0.057600pt;}
.ls7_c00180{letter-spacing:0.064000pt;}
.ls9_c00180{letter-spacing:0.083200pt;}
.ls3_c00180{letter-spacing:0.089600pt;}
.lsf_c00180{letter-spacing:6.720000pt;}
.ws0_c00180{word-spacing:-16.000000pt;}
.ws4_c00180{word-spacing:-15.974400pt;}
.ws1_c00180{word-spacing:-13.285184pt;}
.ws2_c00180{word-spacing:-13.274496pt;}
.ws3_c00180{word-spacing:-13.226400pt;}
.ws6_c00180{word-spacing:0.000000pt;}
.wsa_c00180{word-spacing:0.115200pt;}
.ws5_c00180{word-spacing:0.171008pt;}
.ws9_c00180{word-spacing:0.475200pt;}
.ws7_c00180{word-spacing:0.494400pt;}
.ws8_c00180{word-spacing:0.504000pt;}
.wsb_c00180{word-spacing:1.254400pt;}
._3_c00180{margin-left:-6.873600pt;}
._4_c00180{margin-left:-5.952000pt;}
._9_c00180{margin-left:-3.232000pt;}
._a_c00180{margin-left:-2.240000pt;}
._2_c00180{margin-left:-1.139200pt;}
._0_c00180{width:0.919168pt;}
._5_c00180{width:1.932800pt;}
._6_c00180{width:3.097600pt;}
._8_c00180{width:4.213632pt;}
._1_c00180{width:6.694400pt;}
._7_c00180{width:17.696000pt;}
.fs2_c00180{font-size:48.000000pt;}
.fs0_c00180{font-size:53.440000pt;}
.fs1_c00180{font-size:64.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y5_c00180{bottom:50.987067pt;}
.y4_c00180{bottom:69.387067pt;}
.y1c_c00180{bottom:98.667067pt;}
.y1b_c00180{bottom:126.267067pt;}
.y1a_c00180{bottom:164.427067pt;}
.y19_c00180{bottom:192.107067pt;}
.y18_c00180{bottom:219.707067pt;}
.y17_c00180{bottom:257.787067pt;}
.y16_c00180{bottom:275.787067pt;}
.y15_c00180{bottom:291.067067pt;}
.y14_c00180{bottom:323.227067pt;}
.y13_c00180{bottom:625.466667pt;}
.y12_c00180{bottom:639.227067pt;}
.y11_c00180{bottom:673.627067pt;}
.y10_c00180{bottom:701.307067pt;}
.yf_c00180{bottom:728.907067pt;}
.ye_c00180{bottom:756.507067pt;}
.yd_c00180{bottom:784.107067pt;}
.yc_c00180{bottom:811.707067pt;}
.yb_c00180{bottom:839.307067pt;}
.ya_c00180{bottom:877.467067pt;}
.y9_c00180{bottom:905.147067pt;}
.y8_c00180{bottom:932.747067pt;}
.y7_c00180{bottom:960.347067pt;}
.y6_c00180{bottom:987.947067pt;}
.y3_c00180{bottom:1006.347067pt;}
.y2_c00180{bottom:1035.947576pt;}
.y1_c00180{bottom:1063.147200pt;}
.h4_c00180{height:42.234375pt;}
.h5_c00180{height:46.890469pt;}
.h1_c00180{height:47.020937pt;}
.h2_c00180{height:56.156250pt;}
.h3_c00180{height:56.312500pt;}
.h0_c00180{height:1122.666667pt;}
.w1_c00180{width:793.333333pt;}
.w0_c00180{width:793.626667pt;}
.x0_c00180{left:0.000000pt;}
.x1_c00180{left:113.440000pt;}
.x2_c00180{left:656.400000pt;}
.x3_c00180{left:671.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_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_4c5c20e3db284c6b178e0509.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.095703;font-style:normal;font-weight:normal;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_c9d66cf935de79f79bb1a16b.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.093262;font-style: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;}
.ls10_c00181{letter-spacing:-0.064800px;}
.lse_c00181{letter-spacing:-0.048096px;}
.ls12_c00181{letter-spacing:-0.036000px;}
.ls11_c00181{letter-spacing:-0.021600px;}
.ls15_c00181{letter-spacing:-0.014400px;}
.ls14_c00181{letter-spacing:-0.007200px;}
.lsf_c00181{letter-spacing:0.000000px;}
.ls8_c00181{letter-spacing:0.007200px;}
.ls3_c00181{letter-spacing:0.014400px;}
.ls2_c00181{letter-spacing:0.021600px;}
.ls4_c00181{letter-spacing:0.028800px;}
.ls9_c00181{letter-spacing:0.036000px;}
.ls6_c00181{letter-spacing:0.043200px;}
.ls0_c00181{letter-spacing:0.050400px;}
.lsb_c00181{letter-spacing:0.057600px;}
.ls1_c00181{letter-spacing:0.064800px;}
.lsc_c00181{letter-spacing:0.072000px;}
.ls7_c00181{letter-spacing:0.086400px;}
.lsa_c00181{letter-spacing:0.100800px;}
.lsd_c00181{letter-spacing:0.136800px;}
.ls5_c00181{letter-spacing:0.360000px;}
.ls13_c00181{letter-spacing:14.760000px;}
.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;}
}
.ws2_c00181{word-spacing:-18.064800px;}
.ws0_c00181{word-spacing:-18.057600px;}
.ws1_c00181{word-spacing:-18.028800px;}
.ws4_c00181{word-spacing:0.000000px;}
.ws3_c00181{word-spacing:0.138276px;}
.ws5_c00181{word-spacing:1.411200px;}
.ws6_c00181{word-spacing:7.545600px;}
._7_c00181{margin-left:-14.896800px;}
._8_c00181{margin-left:-13.773600px;}
._f_c00181{margin-left:-4.399200px;}
._d_c00181{margin-left:-3.340800px;}
._b_c00181{margin-left:-2.203200px;}
._3_c00181{margin-left:-1.173600px;}
._5_c00181{width:1.418400px;}
._2_c00181{width:2.815200px;}
._4_c00181{width:4.428000px;}
._0_c00181{width:6.897600px;}
._1_c00181{width:8.272800px;}
._a_c00181{width:9.432000px;}
._9_c00181{width:10.440000px;}
._e_c00181{width:12.232800px;}
._6_c00181{width:14.745600px;}
._10_c00181{width:16.941600px;}
._c_c00181{width:22.644000px;}
.fc0_c00181{color:rgb(0,0,0);}
.fs0_c00181{font-size:60.120000px;}
.fs1_c00181{font-size:72.000000px;}
.y0_c00181{bottom:0.000000px;}
.y6_c00181{bottom:57.360450px;}
.y5_c00181{bottom:78.060450px;}
.y26_c00181{bottom:125.040450px;}
.y25_c00181{bottom:156.090450px;}
.y24_c00181{bottom:187.140450px;}
.y23_c00181{bottom:218.190450px;}
.y22_c00181{bottom:249.240450px;}
.y21_c00181{bottom:280.290450px;}
.y20_c00181{bottom:323.220450px;}
.y1f_c00181{bottom:354.360450px;}
.y1e_c00181{bottom:385.410450px;}
.y1d_c00181{bottom:416.460450px;}
.y1c_c00181{bottom:447.510450px;}
.y1b_c00181{bottom:478.560450px;}
.y1a_c00181{bottom:512.760450px;}
.y19_c00181{bottom:535.080450px;}
.y18_c00181{bottom:560.460450px;}
.y17_c00181{bottom:603.480450px;}
.y16_c00181{bottom:634.620450px;}
.y15_c00181{bottom:665.670450px;}
.y14_c00181{bottom:696.720450px;}
.y13_c00181{bottom:739.650450px;}
.y12_c00181{bottom:770.790450px;}
.y11_c00181{bottom:801.840450px;}
.y10_c00181{bottom:832.890450px;}
.yf_c00181{bottom:863.940450px;}
.ye_c00181{bottom:894.990450px;}
.yd_c00181{bottom:926.040450px;}
.yc_c00181{bottom:957.090450px;}
.yb_c00181{bottom:988.140450px;}
.ya_c00181{bottom:1031.070450px;}
.y9_c00181{bottom:1062.210450px;}
.y8_c00181{bottom:1093.260450px;}
.y7_c00181{bottom:1124.310450px;}
.y4_c00181{bottom:1144.380657px;}
.y3_c00181{bottom:1161.660648px;}
.y2_c00181{bottom:1178.850459px;}
.y1_c00181{bottom:1196.130450px;}
.h1_c00181{height:52.898555px;}
.h2_c00181{height:63.175781px;}
.h3_c00181{height:63.351562px;}
.h0_c00181{height:1263.000000px;}
.w1_c00181{width:892.500000px;}
.w0_c00181{width:892.830000px;}
.x0_c00181{left:0.000000px;}
.x4_c00181{left:127.620000px;}
.x1_c00181{left:649.620000px;}
.x3_c00181{left:738.450000px;}
.x2_c00181{left:765.450198px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls10_c00181{letter-spacing:-0.057600pt;}
.lse_c00181{letter-spacing:-0.042752pt;}
.ls12_c00181{letter-spacing:-0.032000pt;}
.ls11_c00181{letter-spacing:-0.019200pt;}
.ls15_c00181{letter-spacing:-0.012800pt;}
.ls14_c00181{letter-spacing:-0.006400pt;}
.lsf_c00181{letter-spacing:0.000000pt;}
.ls8_c00181{letter-spacing:0.006400pt;}
.ls3_c00181{letter-spacing:0.012800pt;}
.ls2_c00181{letter-spacing:0.019200pt;}
.ls4_c00181{letter-spacing:0.025600pt;}
.ls9_c00181{letter-spacing:0.032000pt;}
.ls6_c00181{letter-spacing:0.038400pt;}
.ls0_c00181{letter-spacing:0.044800pt;}
.lsb_c00181{letter-spacing:0.051200pt;}
.ls1_c00181{letter-spacing:0.057600pt;}
.lsc_c00181{letter-spacing:0.064000pt;}
.ls7_c00181{letter-spacing:0.076800pt;}
.lsa_c00181{letter-spacing:0.089600pt;}
.lsd_c00181{letter-spacing:0.121600pt;}
.ls5_c00181{letter-spacing:0.320000pt;}
.ls13_c00181{letter-spacing:13.120000pt;}
.ws2_c00181{word-spacing:-16.057600pt;}
.ws0_c00181{word-spacing:-16.051200pt;}
.ws1_c00181{word-spacing:-16.025600pt;}
.ws4_c00181{word-spacing:0.000000pt;}
.ws3_c00181{word-spacing:0.122912pt;}
.ws5_c00181{word-spacing:1.254400pt;}
.ws6_c00181{word-spacing:6.707200pt;}
._7_c00181{margin-left:-13.241600pt;}
._8_c00181{margin-left:-12.243200pt;}
._f_c00181{margin-left:-3.910400pt;}
._d_c00181{margin-left:-2.969600pt;}
._b_c00181{margin-left:-1.958400pt;}
._3_c00181{margin-left:-1.043200pt;}
._5_c00181{width:1.260800pt;}
._2_c00181{width:2.502400pt;}
._4_c00181{width:3.936000pt;}
._0_c00181{width:6.131200pt;}
._1_c00181{width:7.353600pt;}
._a_c00181{width:8.384000pt;}
._9_c00181{width:9.280000pt;}
._e_c00181{width:10.873600pt;}
._6_c00181{width:13.107200pt;}
._10_c00181{width:15.059200pt;}
._c_c00181{width:20.128000pt;}
.fs0_c00181{font-size:53.440000pt;}
.fs1_c00181{font-size:64.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y6_c00181{bottom:50.987067pt;}
.y5_c00181{bottom:69.387067pt;}
.y26_c00181{bottom:111.147067pt;}
.y25_c00181{bottom:138.747067pt;}
.y24_c00181{bottom:166.347067pt;}
.y23_c00181{bottom:193.947067pt;}
.y22_c00181{bottom:221.547067pt;}
.y21_c00181{bottom:249.147067pt;}
.y20_c00181{bottom:287.307067pt;}
.y1f_c00181{bottom:314.987067pt;}
.y1e_c00181{bottom:342.587067pt;}
.y1d_c00181{bottom:370.187067pt;}
.y1c_c00181{bottom:397.787067pt;}
.y1b_c00181{bottom:425.387067pt;}
.y1a_c00181{bottom:455.787067pt;}
.y19_c00181{bottom:475.627067pt;}
.y18_c00181{bottom:498.187067pt;}
.y17_c00181{bottom:536.427067pt;}
.y16_c00181{bottom:564.107067pt;}
.y15_c00181{bottom:591.707067pt;}
.y14_c00181{bottom:619.307067pt;}
.y13_c00181{bottom:657.467067pt;}
.y12_c00181{bottom:685.147067pt;}
.y11_c00181{bottom:712.747067pt;}
.y10_c00181{bottom:740.347067pt;}
.yf_c00181{bottom:767.947067pt;}
.ye_c00181{bottom:795.547067pt;}
.yd_c00181{bottom:823.147067pt;}
.yc_c00181{bottom:850.747067pt;}
.yb_c00181{bottom:878.347067pt;}
.ya_c00181{bottom:916.507067pt;}
.y9_c00181{bottom:944.187067pt;}
.y8_c00181{bottom:971.787067pt;}
.y7_c00181{bottom:999.387067pt;}
.y4_c00181{bottom:1017.227251pt;}
.y3_c00181{bottom:1032.587243pt;}
.y2_c00181{bottom:1047.867075pt;}
.y1_c00181{bottom:1063.227067pt;}
.h1_c00181{height:47.020937pt;}
.h2_c00181{height:56.156250pt;}
.h3_c00181{height:56.312500pt;}
.h0_c00181{height:1122.666667pt;}
.w1_c00181{width:793.333333pt;}
.w0_c00181{width:793.626667pt;}
.x0_c00181{left:0.000000pt;}
.x4_c00181{left:113.440000pt;}
.x1_c00181{left:577.440000pt;}
.x3_c00181{left:656.400000pt;}
.x2_c00181{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.095703;font-style:normal;font-weight:normal;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_ccb3c6a24f2f7d85ea46c5cc.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00182{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.lsf_c00182{letter-spacing:-0.102204px;}
.ls17_c00182{letter-spacing:-0.057600px;}
.ls14_c00182{letter-spacing:-0.050400px;}
.ls15_c00182{letter-spacing:-0.036000px;}
.ls13_c00182{letter-spacing:-0.028800px;}
.ls12_c00182{letter-spacing:-0.021600px;}
.ls16_c00182{letter-spacing:-0.014400px;}
.ls11_c00182{letter-spacing:-0.007200px;}
.ls10_c00182{letter-spacing:0.000000px;}
.lsa_c00182{letter-spacing:0.007200px;}
.ls3_c00182{letter-spacing:0.014400px;}
.ls2_c00182{letter-spacing:0.021600px;}
.ls4_c00182{letter-spacing:0.028800px;}
.ls0_c00182{letter-spacing:0.036000px;}
.lsb_c00182{letter-spacing:0.043200px;}
.ls1_c00182{letter-spacing:0.050400px;}
.lsc_c00182{letter-spacing:0.057600px;}
.ls5_c00182{letter-spacing:0.064800px;}
.ls7_c00182{letter-spacing:0.072000px;}
.ls6_c00182{letter-spacing:0.079200px;}
.lse_c00182{letter-spacing:0.086400px;}
.lsd_c00182{letter-spacing:0.093600px;}
.ls8_c00182{letter-spacing:0.100800px;}
.ls18_c00182{letter-spacing:0.108000px;}
.ls9_c00182{letter-spacing:0.151200px;}
.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;}
}
.ws1_c00182{word-spacing:0.000000px;}
.ws0_c00182{word-spacing:0.192384px;}
._b_c00182{margin-left:-4.060800px;}
._4_c00182{margin-left:-2.844000px;}
._1_c00182{margin-left:-1.512000px;}
._0_c00182{width:1.034064px;}
._6_c00182{width:2.527200px;}
._3_c00182{width:4.017600px;}
._2_c00182{width:5.025600px;}
._7_c00182{width:6.422400px;}
._5_c00182{width:10.051200px;}
._9_c00182{width:11.980800px;}
._a_c00182{width:13.305600px;}
._c_c00182{width:26.589600px;}
._8_c00182{width:28.022400px;}
.fc1_c00182{color:rgb(0,0,0);}
.fc0_c00182{color:rgb(32,31,30);}
.fs0_c00182{font-size:60.120000px;}
.fs1_c00182{font-size:72.000000px;}
.y0_c00182{bottom:0.000000px;}
.y5_c00182{bottom:57.360450px;}
.y4_c00182{bottom:78.060450px;}
.y23_c00182{bottom:138.990450px;}
.y22_c00182{bottom:170.130450px;}
.y21_c00182{bottom:201.090450px;}
.y20_c00182{bottom:232.140450px;}
.y1f_c00182{bottom:263.190450px;}
.y1e_c00182{bottom:294.240450px;}
.y1d_c00182{bottom:337.260450px;}
.y1c_c00182{bottom:368.400450px;}
.y1b_c00182{bottom:399.450450px;}
.y1a_c00182{bottom:430.500450px;}
.y19_c00182{bottom:461.550450px;}
.y18_c00182{bottom:504.480450px;}
.y17_c00182{bottom:535.620450px;}
.y16_c00182{bottom:566.670450px;}
.y15_c00182{bottom:597.720450px;}
.y14_c00182{bottom:628.770450px;}
.y13_c00182{bottom:671.700450px;}
.y12_c00182{bottom:702.840450px;}
.y11_c00182{bottom:733.890450px;}
.y10_c00182{bottom:764.940450px;}
.yf_c00182{bottom:795.990450px;}
.ye_c00182{bottom:838.920450px;}
.yd_c00182{bottom:870.060450px;}
.yc_c00182{bottom:901.110450px;}
.yb_c00182{bottom:932.160450px;}
.ya_c00182{bottom:975.090450px;}
.y9_c00182{bottom:1006.230450px;}
.y8_c00182{bottom:1037.280450px;}
.y7_c00182{bottom:1080.300450px;}
.y6_c00182{bottom:1111.440450px;}
.y3_c00182{bottom:1132.140450px;}
.y2_c00182{bottom:1165.441023px;}
.y1_c00182{bottom:1196.040600px;}
.h1_c00182{height:52.898555px;}
.h2_c00182{height:63.175781px;}
.h0_c00182{height:1263.000000px;}
.w1_c00182{width:892.500000px;}
.w0_c00182{width:892.830000px;}
.x0_c00182{left:0.000000px;}
.x1_c00182{left:127.620000px;}
.x2_c00182{left:738.450000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.lsf_c00182{letter-spacing:-0.090848pt;}
.ls17_c00182{letter-spacing:-0.051200pt;}
.ls14_c00182{letter-spacing:-0.044800pt;}
.ls15_c00182{letter-spacing:-0.032000pt;}
.ls13_c00182{letter-spacing:-0.025600pt;}
.ls12_c00182{letter-spacing:-0.019200pt;}
.ls16_c00182{letter-spacing:-0.012800pt;}
.ls11_c00182{letter-spacing:-0.006400pt;}
.ls10_c00182{letter-spacing:0.000000pt;}
.lsa_c00182{letter-spacing:0.006400pt;}
.ls3_c00182{letter-spacing:0.012800pt;}
.ls2_c00182{letter-spacing:0.019200pt;}
.ls4_c00182{letter-spacing:0.025600pt;}
.ls0_c00182{letter-spacing:0.032000pt;}
.lsb_c00182{letter-spacing:0.038400pt;}
.ls1_c00182{letter-spacing:0.044800pt;}
.lsc_c00182{letter-spacing:0.051200pt;}
.ls5_c00182{letter-spacing:0.057600pt;}
.ls7_c00182{letter-spacing:0.064000pt;}
.ls6_c00182{letter-spacing:0.070400pt;}
.lse_c00182{letter-spacing:0.076800pt;}
.lsd_c00182{letter-spacing:0.083200pt;}
.ls8_c00182{letter-spacing:0.089600pt;}
.ls18_c00182{letter-spacing:0.096000pt;}
.ls9_c00182{letter-spacing:0.134400pt;}
.ws1_c00182{word-spacing:0.000000pt;}
.ws0_c00182{word-spacing:0.171008pt;}
._b_c00182{margin-left:-3.609600pt;}
._4_c00182{margin-left:-2.528000pt;}
._1_c00182{margin-left:-1.344000pt;}
._0_c00182{width:0.919168pt;}
._6_c00182{width:2.246400pt;}
._3_c00182{width:3.571200pt;}
._2_c00182{width:4.467200pt;}
._7_c00182{width:5.708800pt;}
._5_c00182{width:8.934400pt;}
._9_c00182{width:10.649600pt;}
._a_c00182{width:11.827200pt;}
._c_c00182{width:23.635200pt;}
._8_c00182{width:24.908800pt;}
.fs0_c00182{font-size:53.440000pt;}
.fs1_c00182{font-size:64.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y5_c00182{bottom:50.987067pt;}
.y4_c00182{bottom:69.387067pt;}
.y23_c00182{bottom:123.547067pt;}
.y22_c00182{bottom:151.227067pt;}
.y21_c00182{bottom:178.747067pt;}
.y20_c00182{bottom:206.347067pt;}
.y1f_c00182{bottom:233.947067pt;}
.y1e_c00182{bottom:261.547067pt;}
.y1d_c00182{bottom:299.787067pt;}
.y1c_c00182{bottom:327.467067pt;}
.y1b_c00182{bottom:355.067067pt;}
.y1a_c00182{bottom:382.667067pt;}
.y19_c00182{bottom:410.267067pt;}
.y18_c00182{bottom:448.427067pt;}
.y17_c00182{bottom:476.107067pt;}
.y16_c00182{bottom:503.707067pt;}
.y15_c00182{bottom:531.307067pt;}
.y14_c00182{bottom:558.907067pt;}
.y13_c00182{bottom:597.067067pt;}
.y12_c00182{bottom:624.747067pt;}
.y11_c00182{bottom:652.347067pt;}
.y10_c00182{bottom:679.947067pt;}
.yf_c00182{bottom:707.547067pt;}
.ye_c00182{bottom:745.707067pt;}
.yd_c00182{bottom:773.387067pt;}
.yc_c00182{bottom:800.987067pt;}
.yb_c00182{bottom:828.587067pt;}
.ya_c00182{bottom:866.747067pt;}
.y9_c00182{bottom:894.427067pt;}
.y8_c00182{bottom:922.027067pt;}
.y7_c00182{bottom:960.267067pt;}
.y6_c00182{bottom:987.947067pt;}
.y3_c00182{bottom:1006.347067pt;}
.y2_c00182{bottom:1035.947576pt;}
.y1_c00182{bottom:1063.147200pt;}
.h1_c00182{height:47.020937pt;}
.h2_c00182{height:56.156250pt;}
.h0_c00182{height:1122.666667pt;}
.w1_c00182{width:793.333333pt;}
.w0_c00182{width:793.626667pt;}
.x0_c00182{left:0.000000pt;}
.x1_c00182{left:113.440000pt;}
.x2_c00182{left:656.400000pt;}
}





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

.ir_c00183:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00183;src:url('chunks/assets/font_791e8508d2ee240993ecdebc.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.095703;font-style:normal;font-weight:normal;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_f0e013b9f96e0690825dfe4c.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00183{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls12_c00183{letter-spacing:-0.280800px;}
.lsf_c00183{letter-spacing:-0.057600px;}
.lsd_c00183{letter-spacing:-0.048096px;}
.ls13_c00183{letter-spacing:-0.036000px;}
.ls14_c00183{letter-spacing:-0.028800px;}
.ls11_c00183{letter-spacing:-0.014400px;}
.ls10_c00183{letter-spacing:-0.007200px;}
.lse_c00183{letter-spacing:0.000000px;}
.ls7_c00183{letter-spacing:0.007200px;}
.ls0_c00183{letter-spacing:0.014400px;}
.ls5_c00183{letter-spacing:0.021600px;}
.ls1_c00183{letter-spacing:0.028800px;}
.ls3_c00183{letter-spacing:0.036000px;}
.ls6_c00183{letter-spacing:0.043200px;}
.ls2_c00183{letter-spacing:0.050400px;}
.ls8_c00183{letter-spacing:0.057600px;}
.ls9_c00183{letter-spacing:0.064800px;}
.lsc_c00183{letter-spacing:0.079200px;}
.ls4_c00183{letter-spacing:0.086400px;}
.lsa_c00183{letter-spacing:0.093600px;}
.lsb_c00183{letter-spacing:0.144000px;}
.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;}
}
.ws1_c00183{word-spacing:0.000000px;}
.ws0_c00183{word-spacing:0.138276px;}
.ws2_c00183{word-spacing:0.180000px;}
.ws6_c00183{word-spacing:2.376000px;}
.ws7_c00183{word-spacing:2.527200px;}
.ws3_c00183{word-spacing:21.520800px;}
.ws5_c00183{word-spacing:21.535200px;}
.ws4_c00183{word-spacing:21.592800px;}
._d_c00183{margin-left:-4.867200px;}
._1_c00183{margin-left:-3.729600px;}
._0_c00183{margin-left:-2.174400px;}
._c_c00183{margin-left:-1.051200px;}
._7_c00183{width:1.036800px;}
._b_c00183{width:2.232000px;}
._8_c00183{width:3.974400px;}
._6_c00183{width:5.112000px;}
._5_c00183{width:6.451200px;}
._2_c00183{width:7.531200px;}
._9_c00183{width:13.658400px;}
._3_c00183{width:19.764000px;}
._4_c00183{width:20.944800px;}
._a_c00183{width:22.168800px;}
.fc0_c00183{color:rgb(0,0,0);}
.fs0_c00183{font-size:60.120000px;}
.fs1_c00183{font-size:72.000000px;}
.y0_c00183{bottom:0.000000px;}
.y6_c00183{bottom:57.360450px;}
.y5_c00183{bottom:78.060450px;}
.y25_c00183{bottom:162.300450px;}
.y24_c00183{bottom:193.350450px;}
.y23_c00183{bottom:224.400450px;}
.y22_c00183{bottom:255.450450px;}
.y21_c00183{bottom:286.500450px;}
.y20_c00183{bottom:317.550450px;}
.y1f_c00183{bottom:360.570450px;}
.y1e_c00183{bottom:391.710450px;}
.y1d_c00183{bottom:422.760450px;}
.y1c_c00183{bottom:453.810450px;}
.y1b_c00183{bottom:484.860450px;}
.y1a_c00183{bottom:515.910450px;}
.y19_c00183{bottom:558.840450px;}
.y18_c00183{bottom:589.980450px;}
.y17_c00183{bottom:621.030450px;}
.y16_c00183{bottom:652.080450px;}
.y15_c00183{bottom:683.130450px;}
.y14_c00183{bottom:714.180450px;}
.y13_c00183{bottom:745.230450px;}
.y12_c00183{bottom:776.280450px;}
.y11_c00183{bottom:807.330450px;}
.y10_c00183{bottom:838.380450px;}
.yf_c00183{bottom:869.430450px;}
.ye_c00183{bottom:912.360450px;}
.yd_c00183{bottom:943.500450px;}
.yc_c00183{bottom:974.550450px;}
.yb_c00183{bottom:1005.600450px;}
.ya_c00183{bottom:1036.650450px;}
.y9_c00183{bottom:1067.700450px;}
.y8_c00183{bottom:1101.900450px;}
.y7_c00183{bottom:1124.130450px;}
.y4_c00183{bottom:1144.380657px;}
.y3_c00183{bottom:1161.660648px;}
.y2_c00183{bottom:1178.850459px;}
.y1_c00183{bottom:1196.130450px;}
.h1_c00183{height:52.898555px;}
.h2_c00183{height:63.175781px;}
.h3_c00183{height:63.351562px;}
.h0_c00183{height:1263.000000px;}
.w1_c00183{width:892.500000px;}
.w0_c00183{width:892.830000px;}
.x0_c00183{left:0.000000px;}
.x4_c00183{left:127.620000px;}
.x1_c00183{left:649.620000px;}
.x3_c00183{left:738.450000px;}
.x2_c00183{left:765.450198px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls12_c00183{letter-spacing:-0.249600pt;}
.lsf_c00183{letter-spacing:-0.051200pt;}
.lsd_c00183{letter-spacing:-0.042752pt;}
.ls13_c00183{letter-spacing:-0.032000pt;}
.ls14_c00183{letter-spacing:-0.025600pt;}
.ls11_c00183{letter-spacing:-0.012800pt;}
.ls10_c00183{letter-spacing:-0.006400pt;}
.lse_c00183{letter-spacing:0.000000pt;}
.ls7_c00183{letter-spacing:0.006400pt;}
.ls0_c00183{letter-spacing:0.012800pt;}
.ls5_c00183{letter-spacing:0.019200pt;}
.ls1_c00183{letter-spacing:0.025600pt;}
.ls3_c00183{letter-spacing:0.032000pt;}
.ls6_c00183{letter-spacing:0.038400pt;}
.ls2_c00183{letter-spacing:0.044800pt;}
.ls8_c00183{letter-spacing:0.051200pt;}
.ls9_c00183{letter-spacing:0.057600pt;}
.lsc_c00183{letter-spacing:0.070400pt;}
.ls4_c00183{letter-spacing:0.076800pt;}
.lsa_c00183{letter-spacing:0.083200pt;}
.lsb_c00183{letter-spacing:0.128000pt;}
.ws1_c00183{word-spacing:0.000000pt;}
.ws0_c00183{word-spacing:0.122912pt;}
.ws2_c00183{word-spacing:0.160000pt;}
.ws6_c00183{word-spacing:2.112000pt;}
.ws7_c00183{word-spacing:2.246400pt;}
.ws3_c00183{word-spacing:19.129600pt;}
.ws5_c00183{word-spacing:19.142400pt;}
.ws4_c00183{word-spacing:19.193600pt;}
._d_c00183{margin-left:-4.326400pt;}
._1_c00183{margin-left:-3.315200pt;}
._0_c00183{margin-left:-1.932800pt;}
._c_c00183{margin-left:-0.934400pt;}
._7_c00183{width:0.921600pt;}
._b_c00183{width:1.984000pt;}
._8_c00183{width:3.532800pt;}
._6_c00183{width:4.544000pt;}
._5_c00183{width:5.734400pt;}
._2_c00183{width:6.694400pt;}
._9_c00183{width:12.140800pt;}
._3_c00183{width:17.568000pt;}
._4_c00183{width:18.617600pt;}
._a_c00183{width:19.705600pt;}
.fs0_c00183{font-size:53.440000pt;}
.fs1_c00183{font-size:64.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y6_c00183{bottom:50.987067pt;}
.y5_c00183{bottom:69.387067pt;}
.y25_c00183{bottom:144.267067pt;}
.y24_c00183{bottom:171.867067pt;}
.y23_c00183{bottom:199.467067pt;}
.y22_c00183{bottom:227.067067pt;}
.y21_c00183{bottom:254.667067pt;}
.y20_c00183{bottom:282.267067pt;}
.y1f_c00183{bottom:320.507067pt;}
.y1e_c00183{bottom:348.187067pt;}
.y1d_c00183{bottom:375.787067pt;}
.y1c_c00183{bottom:403.387067pt;}
.y1b_c00183{bottom:430.987067pt;}
.y1a_c00183{bottom:458.587067pt;}
.y19_c00183{bottom:496.747067pt;}
.y18_c00183{bottom:524.427067pt;}
.y17_c00183{bottom:552.027067pt;}
.y16_c00183{bottom:579.627067pt;}
.y15_c00183{bottom:607.227067pt;}
.y14_c00183{bottom:634.827067pt;}
.y13_c00183{bottom:662.427067pt;}
.y12_c00183{bottom:690.027067pt;}
.y11_c00183{bottom:717.627067pt;}
.y10_c00183{bottom:745.227067pt;}
.yf_c00183{bottom:772.827067pt;}
.ye_c00183{bottom:810.987067pt;}
.yd_c00183{bottom:838.667067pt;}
.yc_c00183{bottom:866.267067pt;}
.yb_c00183{bottom:893.867067pt;}
.ya_c00183{bottom:921.467067pt;}
.y9_c00183{bottom:949.067067pt;}
.y8_c00183{bottom:979.467067pt;}
.y7_c00183{bottom:999.227067pt;}
.y4_c00183{bottom:1017.227251pt;}
.y3_c00183{bottom:1032.587243pt;}
.y2_c00183{bottom:1047.867075pt;}
.y1_c00183{bottom:1063.227067pt;}
.h1_c00183{height:47.020937pt;}
.h2_c00183{height:56.156250pt;}
.h3_c00183{height:56.312500pt;}
.h0_c00183{height:1122.666667pt;}
.w1_c00183{width:793.333333pt;}
.w0_c00183{width:793.626667pt;}
.x0_c00183{left:0.000000pt;}
.x4_c00183{left:113.440000pt;}
.x1_c00183{left:577.440000pt;}
.x3_c00183{left:656.400000pt;}
.x2_c00183{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.095703;font-style:normal;font-weight:normal;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_a9f538567ebd6c76f82fbe69.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00184{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls11_c00184{letter-spacing:-0.102204px;}
.ls14_c00184{letter-spacing:-0.036000px;}
.ls13_c00184{letter-spacing:-0.014400px;}
.ls15_c00184{letter-spacing:-0.007200px;}
.ls12_c00184{letter-spacing:0.000000px;}
.ls6_c00184{letter-spacing:0.007200px;}
.ls1_c00184{letter-spacing:0.014400px;}
.ls2_c00184{letter-spacing:0.021600px;}
.ls0_c00184{letter-spacing:0.028800px;}
.ls5_c00184{letter-spacing:0.036000px;}
.lsd_c00184{letter-spacing:0.043200px;}
.ls3_c00184{letter-spacing:0.050400px;}
.ls4_c00184{letter-spacing:0.057600px;}
.ls7_c00184{letter-spacing:0.064800px;}
.ls8_c00184{letter-spacing:0.072000px;}
.lsa_c00184{letter-spacing:0.079200px;}
.ls10_c00184{letter-spacing:0.093600px;}
.lsb_c00184{letter-spacing:0.100800px;}
.lsf_c00184{letter-spacing:0.108000px;}
.lsc_c00184{letter-spacing:0.122400px;}
.ls9_c00184{letter-spacing:0.136800px;}
.lse_c00184{letter-spacing:0.158400px;}
.ls16_c00184{letter-spacing:3.600000px;}
.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;}
}
.ws1_c00184{word-spacing:0.000000px;}
.ws0_c00184{word-spacing:0.192384px;}
._4_c00184{margin-left:-5.184000px;}
._3_c00184{margin-left:-4.010400px;}
._a_c00184{margin-left:-2.584800px;}
._2_c00184{margin-left:-1.461600px;}
._0_c00184{width:1.034064px;}
._6_c00184{width:2.404800px;}
._7_c00184{width:3.470400px;}
._b_c00184{width:4.521600px;}
._c_c00184{width:5.810400px;}
._1_c00184{width:6.811200px;}
._5_c00184{width:11.484000px;}
._8_c00184{width:15.062400px;}
._9_c00184{width:16.113600px;}
.fc1_c00184{color:rgb(0,0,0);}
.fc0_c00184{color:rgb(32,31,30);}
.fs0_c00184{font-size:60.120000px;}
.fs1_c00184{font-size:72.000000px;}
.y0_c00184{bottom:0.000000px;}
.y5_c00184{bottom:57.360450px;}
.y4_c00184{bottom:78.060450px;}
.y24_c00184{bottom:131.880450px;}
.y23_c00184{bottom:163.020450px;}
.y22_c00184{bottom:194.070450px;}
.y21_c00184{bottom:225.120450px;}
.y20_c00184{bottom:256.170450px;}
.y1f_c00184{bottom:287.220450px;}
.y1e_c00184{bottom:330.150450px;}
.y1d_c00184{bottom:361.290450px;}
.y1c_c00184{bottom:392.340450px;}
.y1b_c00184{bottom:423.390450px;}
.y1a_c00184{bottom:454.440450px;}
.y19_c00184{bottom:497.460450px;}
.y18_c00184{bottom:528.600450px;}
.y17_c00184{bottom:559.650450px;}
.y16_c00184{bottom:590.700450px;}
.y15_c00184{bottom:621.660450px;}
.y14_c00184{bottom:652.710450px;}
.y13_c00184{bottom:683.760450px;}
.y12_c00184{bottom:726.780450px;}
.y11_c00184{bottom:757.920450px;}
.y10_c00184{bottom:788.970450px;}
.yf_c00184{bottom:820.020450px;}
.ye_c00184{bottom:851.070450px;}
.yd_c00184{bottom:882.120450px;}
.yc_c00184{bottom:913.170450px;}
.yb_c00184{bottom:944.220450px;}
.ya_c00184{bottom:987.150450px;}
.y9_c00184{bottom:1018.290450px;}
.y8_c00184{bottom:1049.340450px;}
.y7_c00184{bottom:1080.390450px;}
.y6_c00184{bottom:1111.440450px;}
.y3_c00184{bottom:1132.140450px;}
.y2_c00184{bottom:1165.441023px;}
.y1_c00184{bottom:1196.040600px;}
.h1_c00184{height:52.898555px;}
.h2_c00184{height:63.175781px;}
.h0_c00184{height:1263.000000px;}
.w1_c00184{width:892.500000px;}
.w0_c00184{width:892.830000px;}
.x0_c00184{left:0.000000px;}
.x1_c00184{left:127.620000px;}
.x2_c00184{left:738.450000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls11_c00184{letter-spacing:-0.090848pt;}
.ls14_c00184{letter-spacing:-0.032000pt;}
.ls13_c00184{letter-spacing:-0.012800pt;}
.ls15_c00184{letter-spacing:-0.006400pt;}
.ls12_c00184{letter-spacing:0.000000pt;}
.ls6_c00184{letter-spacing:0.006400pt;}
.ls1_c00184{letter-spacing:0.012800pt;}
.ls2_c00184{letter-spacing:0.019200pt;}
.ls0_c00184{letter-spacing:0.025600pt;}
.ls5_c00184{letter-spacing:0.032000pt;}
.lsd_c00184{letter-spacing:0.038400pt;}
.ls3_c00184{letter-spacing:0.044800pt;}
.ls4_c00184{letter-spacing:0.051200pt;}
.ls7_c00184{letter-spacing:0.057600pt;}
.ls8_c00184{letter-spacing:0.064000pt;}
.lsa_c00184{letter-spacing:0.070400pt;}
.ls10_c00184{letter-spacing:0.083200pt;}
.lsb_c00184{letter-spacing:0.089600pt;}
.lsf_c00184{letter-spacing:0.096000pt;}
.lsc_c00184{letter-spacing:0.108800pt;}
.ls9_c00184{letter-spacing:0.121600pt;}
.lse_c00184{letter-spacing:0.140800pt;}
.ls16_c00184{letter-spacing:3.200000pt;}
.ws1_c00184{word-spacing:0.000000pt;}
.ws0_c00184{word-spacing:0.171008pt;}
._4_c00184{margin-left:-4.608000pt;}
._3_c00184{margin-left:-3.564800pt;}
._a_c00184{margin-left:-2.297600pt;}
._2_c00184{margin-left:-1.299200pt;}
._0_c00184{width:0.919168pt;}
._6_c00184{width:2.137600pt;}
._7_c00184{width:3.084800pt;}
._b_c00184{width:4.019200pt;}
._c_c00184{width:5.164800pt;}
._1_c00184{width:6.054400pt;}
._5_c00184{width:10.208000pt;}
._8_c00184{width:13.388800pt;}
._9_c00184{width:14.323200pt;}
.fs0_c00184{font-size:53.440000pt;}
.fs1_c00184{font-size:64.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y5_c00184{bottom:50.987067pt;}
.y4_c00184{bottom:69.387067pt;}
.y24_c00184{bottom:117.227067pt;}
.y23_c00184{bottom:144.907067pt;}
.y22_c00184{bottom:172.507067pt;}
.y21_c00184{bottom:200.107067pt;}
.y20_c00184{bottom:227.707067pt;}
.y1f_c00184{bottom:255.307067pt;}
.y1e_c00184{bottom:293.467067pt;}
.y1d_c00184{bottom:321.147067pt;}
.y1c_c00184{bottom:348.747067pt;}
.y1b_c00184{bottom:376.347067pt;}
.y1a_c00184{bottom:403.947067pt;}
.y19_c00184{bottom:442.187067pt;}
.y18_c00184{bottom:469.867067pt;}
.y17_c00184{bottom:497.467067pt;}
.y16_c00184{bottom:525.067067pt;}
.y15_c00184{bottom:552.587067pt;}
.y14_c00184{bottom:580.187067pt;}
.y13_c00184{bottom:607.787067pt;}
.y12_c00184{bottom:646.027067pt;}
.y11_c00184{bottom:673.707067pt;}
.y10_c00184{bottom:701.307067pt;}
.yf_c00184{bottom:728.907067pt;}
.ye_c00184{bottom:756.507067pt;}
.yd_c00184{bottom:784.107067pt;}
.yc_c00184{bottom:811.707067pt;}
.yb_c00184{bottom:839.307067pt;}
.ya_c00184{bottom:877.467067pt;}
.y9_c00184{bottom:905.147067pt;}
.y8_c00184{bottom:932.747067pt;}
.y7_c00184{bottom:960.347067pt;}
.y6_c00184{bottom:987.947067pt;}
.y3_c00184{bottom:1006.347067pt;}
.y2_c00184{bottom:1035.947576pt;}
.y1_c00184{bottom:1063.147200pt;}
.h1_c00184{height:47.020937pt;}
.h2_c00184{height:56.156250pt;}
.h0_c00184{height:1122.666667pt;}
.w1_c00184{width:793.333333pt;}
.w0_c00184{width:793.626667pt;}
.x0_c00184{left:0.000000pt;}
.x1_c00184{left:113.440000pt;}
.x2_c00184{left:656.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_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_d0eaa58dfe4f61ed2872b6a7.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.095703;font-style:normal;font-weight:normal;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_a72403e2f0500dc7bf0e8d91.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls15_c00185{letter-spacing:-0.093600px;}
.lsf_c00185{letter-spacing:-0.048096px;}
.ls11_c00185{letter-spacing:-0.043200px;}
.ls12_c00185{letter-spacing:-0.028800px;}
.ls14_c00185{letter-spacing:-0.021600px;}
.ls13_c00185{letter-spacing:-0.007200px;}
.ls10_c00185{letter-spacing:0.000000px;}
.ls5_c00185{letter-spacing:0.007200px;}
.ls3_c00185{letter-spacing:0.014400px;}
.ls6_c00185{letter-spacing:0.021600px;}
.ls4_c00185{letter-spacing:0.028800px;}
.ls1_c00185{letter-spacing:0.036000px;}
.ls0_c00185{letter-spacing:0.043200px;}
.lsc_c00185{letter-spacing:0.050400px;}
.lsd_c00185{letter-spacing:0.057600px;}
.ls9_c00185{letter-spacing:0.064800px;}
.ls8_c00185{letter-spacing:0.072000px;}
.lse_c00185{letter-spacing:0.079200px;}
.ls7_c00185{letter-spacing:0.086400px;}
.ls2_c00185{letter-spacing:0.093600px;}
.lsb_c00185{letter-spacing:0.100800px;}
.lsa_c00185{letter-spacing:0.108000px;}
.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:-2.973600px;}
.ws4_c00185{word-spacing:-2.894400px;}
.ws2_c00185{word-spacing:-0.763200px;}
.ws1_c00185{word-spacing:0.000000px;}
.ws0_c00185{word-spacing:0.138276px;}
.wsa_c00185{word-spacing:11.433600px;}
.ws8_c00185{word-spacing:21.218400px;}
.ws9_c00185{word-spacing:21.225600px;}
.ws7_c00185{word-spacing:30.873600px;}
.ws5_c00185{word-spacing:31.291200px;}
.ws6_c00185{word-spacing:31.341600px;}
._5_c00185{margin-left:-2.203200px;}
._1_c00185{margin-left:-1.137600px;}
._0_c00185{width:1.756800px;}
._8_c00185{width:2.858400px;}
._9_c00185{width:3.931200px;}
._6_c00185{width:5.032800px;}
._2_c00185{width:6.436800px;}
._7_c00185{width:7.905600px;}
._b_c00185{width:9.720000px;}
._3_c00185{width:10.742400px;}
._4_c00185{width:11.966400px;}
._a_c00185{width:16.624800px;}
._c_c00185{width:19.512000px;}
._d_c00185{width:20.750400px;}
.fc0_c00185{color:rgb(0,0,0);}
.fs0_c00185{font-size:60.120000px;}
.fs1_c00185{font-size:72.000000px;}
.y0_c00185{bottom:0.000000px;}
.y6_c00185{bottom:57.360450px;}
.y5_c00185{bottom:78.060450px;}
.y25_c00185{bottom:137.460450px;}
.y24_c00185{bottom:168.510450px;}
.y23_c00185{bottom:199.560450px;}
.y22_c00185{bottom:242.490450px;}
.y21_c00185{bottom:273.630450px;}
.y20_c00185{bottom:304.680450px;}
.y1f_c00185{bottom:335.730450px;}
.y1e_c00185{bottom:366.780450px;}
.y1d_c00185{bottom:397.830450px;}
.y1c_c00185{bottom:428.880450px;}
.y1b_c00185{bottom:459.930450px;}
.y1a_c00185{bottom:490.980450px;}
.y19_c00185{bottom:533.910450px;}
.y18_c00185{bottom:565.050450px;}
.y17_c00185{bottom:596.100450px;}
.y16_c00185{bottom:627.150450px;}
.y15_c00185{bottom:670.080450px;}
.y14_c00185{bottom:701.220450px;}
.y13_c00185{bottom:732.270450px;}
.y12_c00185{bottom:775.200450px;}
.y11_c00185{bottom:806.340450px;}
.y10_c00185{bottom:837.390450px;}
.yf_c00185{bottom:868.350450px;}
.ye_c00185{bottom:899.400450px;}
.yd_c00185{bottom:930.450450px;}
.yc_c00185{bottom:961.590450px;}
.yb_c00185{bottom:1000.110450px;}
.ya_c00185{bottom:1031.160450px;}
.y9_c00185{bottom:1062.210450px;}
.y8_c00185{bottom:1093.260450px;}
.y7_c00185{bottom:1124.310450px;}
.y4_c00185{bottom:1144.380657px;}
.y3_c00185{bottom:1161.660648px;}
.y2_c00185{bottom:1178.850459px;}
.y1_c00185{bottom:1196.130450px;}
.h1_c00185{height:52.898555px;}
.h2_c00185{height:63.175781px;}
.h3_c00185{height:63.351562px;}
.h0_c00185{height:1263.000000px;}
.w1_c00185{width:892.500000px;}
.w0_c00185{width:892.830000px;}
.x0_c00185{left:0.000000px;}
.x4_c00185{left:127.620000px;}
.x1_c00185{left:649.620000px;}
.x3_c00185{left:738.450000px;}
.x2_c00185{left:765.450198px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls15_c00185{letter-spacing:-0.083200pt;}
.lsf_c00185{letter-spacing:-0.042752pt;}
.ls11_c00185{letter-spacing:-0.038400pt;}
.ls12_c00185{letter-spacing:-0.025600pt;}
.ls14_c00185{letter-spacing:-0.019200pt;}
.ls13_c00185{letter-spacing:-0.006400pt;}
.ls10_c00185{letter-spacing:0.000000pt;}
.ls5_c00185{letter-spacing:0.006400pt;}
.ls3_c00185{letter-spacing:0.012800pt;}
.ls6_c00185{letter-spacing:0.019200pt;}
.ls4_c00185{letter-spacing:0.025600pt;}
.ls1_c00185{letter-spacing:0.032000pt;}
.ls0_c00185{letter-spacing:0.038400pt;}
.lsc_c00185{letter-spacing:0.044800pt;}
.lsd_c00185{letter-spacing:0.051200pt;}
.ls9_c00185{letter-spacing:0.057600pt;}
.ls8_c00185{letter-spacing:0.064000pt;}
.lse_c00185{letter-spacing:0.070400pt;}
.ls7_c00185{letter-spacing:0.076800pt;}
.ls2_c00185{letter-spacing:0.083200pt;}
.lsb_c00185{letter-spacing:0.089600pt;}
.lsa_c00185{letter-spacing:0.096000pt;}
.ws3_c00185{word-spacing:-2.643200pt;}
.ws4_c00185{word-spacing:-2.572800pt;}
.ws2_c00185{word-spacing:-0.678400pt;}
.ws1_c00185{word-spacing:0.000000pt;}
.ws0_c00185{word-spacing:0.122912pt;}
.wsa_c00185{word-spacing:10.163200pt;}
.ws8_c00185{word-spacing:18.860800pt;}
.ws9_c00185{word-spacing:18.867200pt;}
.ws7_c00185{word-spacing:27.443200pt;}
.ws5_c00185{word-spacing:27.814400pt;}
.ws6_c00185{word-spacing:27.859200pt;}
._5_c00185{margin-left:-1.958400pt;}
._1_c00185{margin-left:-1.011200pt;}
._0_c00185{width:1.561600pt;}
._8_c00185{width:2.540800pt;}
._9_c00185{width:3.494400pt;}
._6_c00185{width:4.473600pt;}
._2_c00185{width:5.721600pt;}
._7_c00185{width:7.027200pt;}
._b_c00185{width:8.640000pt;}
._3_c00185{width:9.548800pt;}
._4_c00185{width:10.636800pt;}
._a_c00185{width:14.777600pt;}
._c_c00185{width:17.344000pt;}
._d_c00185{width:18.444800pt;}
.fs0_c00185{font-size:53.440000pt;}
.fs1_c00185{font-size:64.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y6_c00185{bottom:50.987067pt;}
.y5_c00185{bottom:69.387067pt;}
.y25_c00185{bottom:122.187067pt;}
.y24_c00185{bottom:149.787067pt;}
.y23_c00185{bottom:177.387067pt;}
.y22_c00185{bottom:215.547067pt;}
.y21_c00185{bottom:243.227067pt;}
.y20_c00185{bottom:270.827067pt;}
.y1f_c00185{bottom:298.427067pt;}
.y1e_c00185{bottom:326.027067pt;}
.y1d_c00185{bottom:353.627067pt;}
.y1c_c00185{bottom:381.227067pt;}
.y1b_c00185{bottom:408.827067pt;}
.y1a_c00185{bottom:436.427067pt;}
.y19_c00185{bottom:474.587067pt;}
.y18_c00185{bottom:502.267067pt;}
.y17_c00185{bottom:529.867067pt;}
.y16_c00185{bottom:557.467067pt;}
.y15_c00185{bottom:595.627067pt;}
.y14_c00185{bottom:623.307067pt;}
.y13_c00185{bottom:650.907067pt;}
.y12_c00185{bottom:689.067067pt;}
.y11_c00185{bottom:716.747067pt;}
.y10_c00185{bottom:744.347067pt;}
.yf_c00185{bottom:771.867067pt;}
.ye_c00185{bottom:799.467067pt;}
.yd_c00185{bottom:827.067067pt;}
.yc_c00185{bottom:854.747067pt;}
.yb_c00185{bottom:888.987067pt;}
.ya_c00185{bottom:916.587067pt;}
.y9_c00185{bottom:944.187067pt;}
.y8_c00185{bottom:971.787067pt;}
.y7_c00185{bottom:999.387067pt;}
.y4_c00185{bottom:1017.227251pt;}
.y3_c00185{bottom:1032.587243pt;}
.y2_c00185{bottom:1047.867075pt;}
.y1_c00185{bottom:1063.227067pt;}
.h1_c00185{height:47.020937pt;}
.h2_c00185{height:56.156250pt;}
.h3_c00185{height:56.312500pt;}
.h0_c00185{height:1122.666667pt;}
.w1_c00185{width:793.333333pt;}
.w0_c00185{width:793.626667pt;}
.x0_c00185{left:0.000000pt;}
.x4_c00185{left:113.440000pt;}
.x1_c00185{left:577.440000pt;}
.x3_c00185{left:656.400000pt;}
.x2_c00185{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.095703;font-style:normal;font-weight:normal;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_11e5841d655f328494adb8bc.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls11_c00186{letter-spacing:-2.210400px;}
.ls14_c00186{letter-spacing:-2.160000px;}
.ls17_c00186{letter-spacing:-1.080000px;}
.lsd_c00186{letter-spacing:-0.102204px;}
.ls10_c00186{letter-spacing:-0.050400px;}
.ls16_c00186{letter-spacing:-0.028800px;}
.lsf_c00186{letter-spacing:-0.021600px;}
.ls12_c00186{letter-spacing:-0.014400px;}
.ls15_c00186{letter-spacing:-0.007200px;}
.lse_c00186{letter-spacing:0.000000px;}
.ls2_c00186{letter-spacing:0.007200px;}
.ls4_c00186{letter-spacing:0.014400px;}
.ls5_c00186{letter-spacing:0.021600px;}
.ls8_c00186{letter-spacing:0.028800px;}
.ls6_c00186{letter-spacing:0.036000px;}
.ls9_c00186{letter-spacing:0.043200px;}
.ls7_c00186{letter-spacing:0.050400px;}
.ls0_c00186{letter-spacing:0.057600px;}
.lsc_c00186{letter-spacing:0.064800px;}
.lsa_c00186{letter-spacing:0.072000px;}
.ls1_c00186{letter-spacing:0.079200px;}
.ls3_c00186{letter-spacing:0.086400px;}
.lsb_c00186{letter-spacing:0.093600px;}
.ls13_c00186{letter-spacing:40.860000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00186{word-spacing:0.000000px;}
.ws0_c00186{word-spacing:0.192384px;}
._9_c00186{margin-left:-41.090400px;}
._a_c00186{margin-left:-39.708000px;}
._b_c00186{margin-left:-3.988800px;}
._2_c00186{margin-left:-2.599200px;}
._1_c00186{margin-left:-1.166400px;}
._0_c00186{width:1.034064px;}
._5_c00186{width:2.268000px;}
._6_c00186{width:3.285936px;}
._c_c00186{width:5.018400px;}
._4_c00186{width:6.811200px;}
._3_c00186{width:7.912800px;}
._f_c00186{width:10.137600px;}
._e_c00186{width:11.145600px;}
._d_c00186{width:12.909600px;}
._7_c00186{width:14.032800px;}
._10_c00186{width:15.091200px;}
._8_c00186{width:41.018400px;}
.fc1_c00186{color:rgb(0,0,0);}
.fc0_c00186{color:rgb(32,31,30);}
.fs0_c00186{font-size:60.120000px;}
.fs1_c00186{font-size:72.000000px;}
.y0_c00186{bottom:0.000000px;}
.y5_c00186{bottom:57.360450px;}
.y4_c00186{bottom:78.060450px;}
.y25_c00186{bottom:112.890450px;}
.y24_c00186{bottom:144.030450px;}
.y23_c00186{bottom:175.080450px;}
.y22_c00186{bottom:206.130450px;}
.y21_c00186{bottom:249.060450px;}
.y20_c00186{bottom:280.200450px;}
.y1f_c00186{bottom:311.250450px;}
.y1e_c00186{bottom:342.300450px;}
.y1d_c00186{bottom:373.350450px;}
.y1c_c00186{bottom:404.400450px;}
.y1b_c00186{bottom:435.450450px;}
.y1a_c00186{bottom:466.500450px;}
.y19_c00186{bottom:497.550450px;}
.y18_c00186{bottom:528.600450px;}
.y17_c00186{bottom:559.650450px;}
.y16_c00186{bottom:590.700450px;}
.y15_c00186{bottom:633.630450px;}
.y14_c00186{bottom:664.770450px;}
.y13_c00186{bottom:695.820450px;}
.y12_c00186{bottom:726.870450px;}
.y11_c00186{bottom:757.920450px;}
.y10_c00186{bottom:788.970450px;}
.yf_c00186{bottom:820.020450px;}
.ye_c00186{bottom:851.070450px;}
.yd_c00186{bottom:882.120450px;}
.yc_c00186{bottom:913.170450px;}
.yb_c00186{bottom:944.220450px;}
.ya_c00186{bottom:987.150450px;}
.y9_c00186{bottom:1018.290450px;}
.y8_c00186{bottom:1049.340450px;}
.y7_c00186{bottom:1080.390450px;}
.y6_c00186{bottom:1111.440450px;}
.y3_c00186{bottom:1132.140450px;}
.y2_c00186{bottom:1165.441023px;}
.y1_c00186{bottom:1196.040600px;}
.h1_c00186{height:52.898555px;}
.h2_c00186{height:63.175781px;}
.h0_c00186{height:1263.000000px;}
.w1_c00186{width:892.500000px;}
.w0_c00186{width:892.830000px;}
.x0_c00186{left:0.000000px;}
.x1_c00186{left:127.620000px;}
.x2_c00186{left:738.450000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls11_c00186{letter-spacing:-1.964800pt;}
.ls14_c00186{letter-spacing:-1.920000pt;}
.ls17_c00186{letter-spacing:-0.960000pt;}
.lsd_c00186{letter-spacing:-0.090848pt;}
.ls10_c00186{letter-spacing:-0.044800pt;}
.ls16_c00186{letter-spacing:-0.025600pt;}
.lsf_c00186{letter-spacing:-0.019200pt;}
.ls12_c00186{letter-spacing:-0.012800pt;}
.ls15_c00186{letter-spacing:-0.006400pt;}
.lse_c00186{letter-spacing:0.000000pt;}
.ls2_c00186{letter-spacing:0.006400pt;}
.ls4_c00186{letter-spacing:0.012800pt;}
.ls5_c00186{letter-spacing:0.019200pt;}
.ls8_c00186{letter-spacing:0.025600pt;}
.ls6_c00186{letter-spacing:0.032000pt;}
.ls9_c00186{letter-spacing:0.038400pt;}
.ls7_c00186{letter-spacing:0.044800pt;}
.ls0_c00186{letter-spacing:0.051200pt;}
.lsc_c00186{letter-spacing:0.057600pt;}
.lsa_c00186{letter-spacing:0.064000pt;}
.ls1_c00186{letter-spacing:0.070400pt;}
.ls3_c00186{letter-spacing:0.076800pt;}
.lsb_c00186{letter-spacing:0.083200pt;}
.ls13_c00186{letter-spacing:36.320000pt;}
.ws1_c00186{word-spacing:0.000000pt;}
.ws0_c00186{word-spacing:0.171008pt;}
._9_c00186{margin-left:-36.524800pt;}
._a_c00186{margin-left:-35.296000pt;}
._b_c00186{margin-left:-3.545600pt;}
._2_c00186{margin-left:-2.310400pt;}
._1_c00186{margin-left:-1.036800pt;}
._0_c00186{width:0.919168pt;}
._5_c00186{width:2.016000pt;}
._6_c00186{width:2.920832pt;}
._c_c00186{width:4.460800pt;}
._4_c00186{width:6.054400pt;}
._3_c00186{width:7.033600pt;}
._f_c00186{width:9.011200pt;}
._e_c00186{width:9.907200pt;}
._d_c00186{width:11.475200pt;}
._7_c00186{width:12.473600pt;}
._10_c00186{width:13.414400pt;}
._8_c00186{width:36.460800pt;}
.fs0_c00186{font-size:53.440000pt;}
.fs1_c00186{font-size:64.000000pt;}
.y0_c00186{bottom:0.000000pt;}
.y5_c00186{bottom:50.987067pt;}
.y4_c00186{bottom:69.387067pt;}
.y25_c00186{bottom:100.347067pt;}
.y24_c00186{bottom:128.027067pt;}
.y23_c00186{bottom:155.627067pt;}
.y22_c00186{bottom:183.227067pt;}
.y21_c00186{bottom:221.387067pt;}
.y20_c00186{bottom:249.067067pt;}
.y1f_c00186{bottom:276.667067pt;}
.y1e_c00186{bottom:304.267067pt;}
.y1d_c00186{bottom:331.867067pt;}
.y1c_c00186{bottom:359.467067pt;}
.y1b_c00186{bottom:387.067067pt;}
.y1a_c00186{bottom:414.667067pt;}
.y19_c00186{bottom:442.267067pt;}
.y18_c00186{bottom:469.867067pt;}
.y17_c00186{bottom:497.467067pt;}
.y16_c00186{bottom:525.067067pt;}
.y15_c00186{bottom:563.227067pt;}
.y14_c00186{bottom:590.907067pt;}
.y13_c00186{bottom:618.507067pt;}
.y12_c00186{bottom:646.107067pt;}
.y11_c00186{bottom:673.707067pt;}
.y10_c00186{bottom:701.307067pt;}
.yf_c00186{bottom:728.907067pt;}
.ye_c00186{bottom:756.507067pt;}
.yd_c00186{bottom:784.107067pt;}
.yc_c00186{bottom:811.707067pt;}
.yb_c00186{bottom:839.307067pt;}
.ya_c00186{bottom:877.467067pt;}
.y9_c00186{bottom:905.147067pt;}
.y8_c00186{bottom:932.747067pt;}
.y7_c00186{bottom:960.347067pt;}
.y6_c00186{bottom:987.947067pt;}
.y3_c00186{bottom:1006.347067pt;}
.y2_c00186{bottom:1035.947576pt;}
.y1_c00186{bottom:1063.147200pt;}
.h1_c00186{height:47.020937pt;}
.h2_c00186{height:56.156250pt;}
.h0_c00186{height:1122.666667pt;}
.w1_c00186{width:793.333333pt;}
.w0_c00186{width:793.626667pt;}
.x0_c00186{left:0.000000pt;}
.x1_c00186{left:113.440000pt;}
.x2_c00186{left:656.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_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_ef2894cf13ba8c4450a64a88.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.095703;font-style:normal;font-weight:normal;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_2ee8765ff1671f0454ae24cf.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls11_c00187{letter-spacing:-0.057600px;}
.lse_c00187{letter-spacing:-0.048096px;}
.ls10_c00187{letter-spacing:-0.043200px;}
.ls13_c00187{letter-spacing:-0.028800px;}
.ls14_c00187{letter-spacing:-0.014400px;}
.ls12_c00187{letter-spacing:-0.007200px;}
.lsf_c00187{letter-spacing:0.000000px;}
.ls4_c00187{letter-spacing:0.007200px;}
.ls3_c00187{letter-spacing:0.014400px;}
.ls5_c00187{letter-spacing:0.021600px;}
.lsa_c00187{letter-spacing:0.028800px;}
.lsc_c00187{letter-spacing:0.036000px;}
.ls2_c00187{letter-spacing:0.043200px;}
.ls7_c00187{letter-spacing:0.050400px;}
.ls8_c00187{letter-spacing:0.057600px;}
.ls9_c00187{letter-spacing:0.072000px;}
.ls6_c00187{letter-spacing:0.079200px;}
.lsd_c00187{letter-spacing:0.086400px;}
.ls1_c00187{letter-spacing:0.100800px;}
.lsb_c00187{letter-spacing:0.122400px;}
.ls0_c00187{letter-spacing:0.136800px;}
.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;}
}
.ws1_c00187{word-spacing:0.000000px;}
.ws0_c00187{word-spacing:0.138276px;}
._2_c00187{margin-left:-4.968000px;}
._3_c00187{margin-left:-3.830400px;}
._7_c00187{margin-left:-2.750400px;}
._0_c00187{margin-left:-1.080000px;}
._1_c00187{width:1.353600px;}
._8_c00187{width:2.469600px;}
._c_c00187{width:3.607200px;}
._6_c00187{width:7.084800px;}
._5_c00187{width:8.841600px;}
._4_c00187{width:10.000800px;}
._b_c00187{width:11.304000px;}
._9_c00187{width:13.276800px;}
._d_c00187{width:14.515200px;}
._e_c00187{width:15.710400px;}
._a_c00187{width:24.782400px;}
.fc0_c00187{color:rgb(0,0,0);}
.fs0_c00187{font-size:60.120000px;}
.fs1_c00187{font-size:72.000000px;}
.y0_c00187{bottom:0.000000px;}
.y6_c00187{bottom:57.360450px;}
.y5_c00187{bottom:78.060450px;}
.y25_c00187{bottom:165.000450px;}
.y24_c00187{bottom:196.140450px;}
.y23_c00187{bottom:227.190450px;}
.y22_c00187{bottom:258.240450px;}
.y21_c00187{bottom:301.170450px;}
.y20_c00187{bottom:332.310450px;}
.y1f_c00187{bottom:363.360450px;}
.y1e_c00187{bottom:394.410450px;}
.y1d_c00187{bottom:425.460450px;}
.y1c_c00187{bottom:456.510450px;}
.y1b_c00187{bottom:494.940450px;}
.y1a_c00187{bottom:526.080450px;}
.y19_c00187{bottom:557.130450px;}
.y18_c00187{bottom:588.180450px;}
.y17_c00187{bottom:619.230450px;}
.y16_c00187{bottom:650.280450px;}
.y15_c00187{bottom:681.330450px;}
.y14_c00187{bottom:715.530450px;}
.y13_c00187{bottom:737.850450px;}
.y12_c00187{bottom:763.230450px;}
.y11_c00187{bottom:806.250450px;}
.y10_c00187{bottom:837.390450px;}
.yf_c00187{bottom:868.440450px;}
.ye_c00187{bottom:899.490450px;}
.yd_c00187{bottom:930.540450px;}
.yc_c00187{bottom:961.590450px;}
.yb_c00187{bottom:1000.110450px;}
.ya_c00187{bottom:1031.160450px;}
.y9_c00187{bottom:1062.210450px;}
.y8_c00187{bottom:1093.260450px;}
.y7_c00187{bottom:1124.310450px;}
.y4_c00187{bottom:1144.380657px;}
.y3_c00187{bottom:1161.660648px;}
.y2_c00187{bottom:1178.850459px;}
.y1_c00187{bottom:1196.130450px;}
.h1_c00187{height:52.898555px;}
.h2_c00187{height:63.175781px;}
.h3_c00187{height:63.351562px;}
.h0_c00187{height:1263.000000px;}
.w1_c00187{width:892.500000px;}
.w0_c00187{width:892.830000px;}
.x0_c00187{left:0.000000px;}
.x4_c00187{left:127.620000px;}
.x1_c00187{left:649.620000px;}
.x3_c00187{left:738.450000px;}
.x2_c00187{left:765.450198px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls11_c00187{letter-spacing:-0.051200pt;}
.lse_c00187{letter-spacing:-0.042752pt;}
.ls10_c00187{letter-spacing:-0.038400pt;}
.ls13_c00187{letter-spacing:-0.025600pt;}
.ls14_c00187{letter-spacing:-0.012800pt;}
.ls12_c00187{letter-spacing:-0.006400pt;}
.lsf_c00187{letter-spacing:0.000000pt;}
.ls4_c00187{letter-spacing:0.006400pt;}
.ls3_c00187{letter-spacing:0.012800pt;}
.ls5_c00187{letter-spacing:0.019200pt;}
.lsa_c00187{letter-spacing:0.025600pt;}
.lsc_c00187{letter-spacing:0.032000pt;}
.ls2_c00187{letter-spacing:0.038400pt;}
.ls7_c00187{letter-spacing:0.044800pt;}
.ls8_c00187{letter-spacing:0.051200pt;}
.ls9_c00187{letter-spacing:0.064000pt;}
.ls6_c00187{letter-spacing:0.070400pt;}
.lsd_c00187{letter-spacing:0.076800pt;}
.ls1_c00187{letter-spacing:0.089600pt;}
.lsb_c00187{letter-spacing:0.108800pt;}
.ls0_c00187{letter-spacing:0.121600pt;}
.ws1_c00187{word-spacing:0.000000pt;}
.ws0_c00187{word-spacing:0.122912pt;}
._2_c00187{margin-left:-4.416000pt;}
._3_c00187{margin-left:-3.404800pt;}
._7_c00187{margin-left:-2.444800pt;}
._0_c00187{margin-left:-0.960000pt;}
._1_c00187{width:1.203200pt;}
._8_c00187{width:2.195200pt;}
._c_c00187{width:3.206400pt;}
._6_c00187{width:6.297600pt;}
._5_c00187{width:7.859200pt;}
._4_c00187{width:8.889600pt;}
._b_c00187{width:10.048000pt;}
._9_c00187{width:11.801600pt;}
._d_c00187{width:12.902400pt;}
._e_c00187{width:13.964800pt;}
._a_c00187{width:22.028800pt;}
.fs0_c00187{font-size:53.440000pt;}
.fs1_c00187{font-size:64.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y6_c00187{bottom:50.987067pt;}
.y5_c00187{bottom:69.387067pt;}
.y25_c00187{bottom:146.667067pt;}
.y24_c00187{bottom:174.347067pt;}
.y23_c00187{bottom:201.947067pt;}
.y22_c00187{bottom:229.547067pt;}
.y21_c00187{bottom:267.707067pt;}
.y20_c00187{bottom:295.387067pt;}
.y1f_c00187{bottom:322.987067pt;}
.y1e_c00187{bottom:350.587067pt;}
.y1d_c00187{bottom:378.187067pt;}
.y1c_c00187{bottom:405.787067pt;}
.y1b_c00187{bottom:439.947067pt;}
.y1a_c00187{bottom:467.627067pt;}
.y19_c00187{bottom:495.227067pt;}
.y18_c00187{bottom:522.827067pt;}
.y17_c00187{bottom:550.427067pt;}
.y16_c00187{bottom:578.027067pt;}
.y15_c00187{bottom:605.627067pt;}
.y14_c00187{bottom:636.027067pt;}
.y13_c00187{bottom:655.867067pt;}
.y12_c00187{bottom:678.427067pt;}
.y11_c00187{bottom:716.667067pt;}
.y10_c00187{bottom:744.347067pt;}
.yf_c00187{bottom:771.947067pt;}
.ye_c00187{bottom:799.547067pt;}
.yd_c00187{bottom:827.147067pt;}
.yc_c00187{bottom:854.747067pt;}
.yb_c00187{bottom:888.987067pt;}
.ya_c00187{bottom:916.587067pt;}
.y9_c00187{bottom:944.187067pt;}
.y8_c00187{bottom:971.787067pt;}
.y7_c00187{bottom:999.387067pt;}
.y4_c00187{bottom:1017.227251pt;}
.y3_c00187{bottom:1032.587243pt;}
.y2_c00187{bottom:1047.867075pt;}
.y1_c00187{bottom:1063.227067pt;}
.h1_c00187{height:47.020937pt;}
.h2_c00187{height:56.156250pt;}
.h3_c00187{height:56.312500pt;}
.h0_c00187{height:1122.666667pt;}
.w1_c00187{width:793.333333pt;}
.w0_c00187{width:793.626667pt;}
.x0_c00187{left:0.000000pt;}
.x4_c00187{left:113.440000pt;}
.x1_c00187{left:577.440000pt;}
.x3_c00187{left:656.400000pt;}
.x2_c00187{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef6f99ae7a02b013f249565c.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.095703;font-style:normal;font-weight:normal;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_0fd21d8ce009e2f72df40cc9.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls16_c00188{letter-spacing:-0.237600px;}
.lsd_c00188{letter-spacing:-0.102204px;}
.ls14_c00188{letter-spacing:-0.036000px;}
.ls11_c00188{letter-spacing:-0.028800px;}
.lsf_c00188{letter-spacing:-0.021600px;}
.ls13_c00188{letter-spacing:-0.014400px;}
.ls12_c00188{letter-spacing:-0.007200px;}
.lse_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:0.007200px;}
.ls9_c00188{letter-spacing:0.014400px;}
.ls1_c00188{letter-spacing:0.021600px;}
.ls6_c00188{letter-spacing:0.028800px;}
.lsa_c00188{letter-spacing:0.036000px;}
.ls5_c00188{letter-spacing:0.043200px;}
.ls7_c00188{letter-spacing:0.050400px;}
.ls2_c00188{letter-spacing:0.057600px;}
.ls8_c00188{letter-spacing:0.064800px;}
.lsb_c00188{letter-spacing:0.072000px;}
.lsc_c00188{letter-spacing:0.079200px;}
.ls4_c00188{letter-spacing:0.086400px;}
.ls3_c00188{letter-spacing:0.144000px;}
.ls15_c00188{letter-spacing:3.240000px;}
.ls10_c00188{letter-spacing:7.200000px;}
.ls17_c00188{letter-spacing:9.000000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00188{word-spacing:-0.964800px;}
.ws3_c00188{word-spacing:-0.691200px;}
.ws1_c00188{word-spacing:0.000000px;}
.ws0_c00188{word-spacing:0.192384px;}
.ws4_c00188{word-spacing:4.665600px;}
._10_c00188{margin-left:-9.734400px;}
._11_c00188{margin-left:-8.575200px;}
._4_c00188{margin-left:-7.192800px;}
._5_c00188{margin-left:-6.048000px;}
._a_c00188{margin-left:-4.248000px;}
._8_c00188{margin-left:-3.146400px;}
._6_c00188{margin-left:-2.066400px;}
._2_c00188{margin-left:-1.058400px;}
._0_c00188{width:1.034064px;}
._c_c00188{width:2.132208px;}
._b_c00188{width:3.146400px;}
._7_c00188{width:4.550400px;}
._e_c00188{width:5.896800px;}
._3_c00188{width:6.962400px;}
._1_c00188{width:8.272800px;}
._f_c00188{width:9.626400px;}
._9_c00188{width:13.680000px;}
._d_c00188{width:16.567200px;}
.fc1_c00188{color:rgb(0,0,0);}
.fc0_c00188{color:rgb(32,31,30);}
.fs0_c00188{font-size:60.120000px;}
.fs1_c00188{font-size:72.000000px;}
.y0_c00188{bottom:0.000000px;}
.y5_c00188{bottom:57.360450px;}
.y4_c00188{bottom:78.060450px;}
.y23_c00188{bottom:144.930450px;}
.y22_c00188{bottom:176.070450px;}
.y21_c00188{bottom:214.500450px;}
.y20_c00188{bottom:253.110450px;}
.y1f_c00188{bottom:284.250450px;}
.y1e_c00188{bottom:315.300450px;}
.y1d_c00188{bottom:358.230450px;}
.y1c_c00188{bottom:389.370450px;}
.y1b_c00188{bottom:420.420450px;}
.y1a_c00188{bottom:451.470450px;}
.y19_c00188{bottom:482.520450px;}
.y18_c00188{bottom:520.950450px;}
.y17_c00188{bottom:552.090450px;}
.y16_c00188{bottom:583.140450px;}
.y15_c00188{bottom:614.190450px;}
.y14_c00188{bottom:645.240450px;}
.y13_c00188{bottom:688.170450px;}
.y12_c00188{bottom:719.310450px;}
.y11_c00188{bottom:750.360450px;}
.y10_c00188{bottom:781.410450px;}
.yf_c00188{bottom:824.430450px;}
.ye_c00188{bottom:855.570450px;}
.yd_c00188{bottom:886.620450px;}
.yc_c00188{bottom:917.670450px;}
.yb_c00188{bottom:948.720450px;}
.ya_c00188{bottom:979.680450px;}
.y9_c00188{bottom:1010.730450px;}
.y8_c00188{bottom:1049.250450px;}
.y7_c00188{bottom:1080.390450px;}
.y6_c00188{bottom:1111.440450px;}
.y3_c00188{bottom:1132.140450px;}
.y2_c00188{bottom:1165.441023px;}
.y1_c00188{bottom:1196.040600px;}
.h1_c00188{height:52.898555px;}
.h2_c00188{height:63.175781px;}
.h3_c00188{height:63.351562px;}
.h0_c00188{height:1263.000000px;}
.w1_c00188{width:892.500000px;}
.w0_c00188{width:892.830000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:127.620000px;}
.x2_c00188{left:738.450000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls16_c00188{letter-spacing:-0.211200pt;}
.lsd_c00188{letter-spacing:-0.090848pt;}
.ls14_c00188{letter-spacing:-0.032000pt;}
.ls11_c00188{letter-spacing:-0.025600pt;}
.lsf_c00188{letter-spacing:-0.019200pt;}
.ls13_c00188{letter-spacing:-0.012800pt;}
.ls12_c00188{letter-spacing:-0.006400pt;}
.lse_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:0.006400pt;}
.ls9_c00188{letter-spacing:0.012800pt;}
.ls1_c00188{letter-spacing:0.019200pt;}
.ls6_c00188{letter-spacing:0.025600pt;}
.lsa_c00188{letter-spacing:0.032000pt;}
.ls5_c00188{letter-spacing:0.038400pt;}
.ls7_c00188{letter-spacing:0.044800pt;}
.ls2_c00188{letter-spacing:0.051200pt;}
.ls8_c00188{letter-spacing:0.057600pt;}
.lsb_c00188{letter-spacing:0.064000pt;}
.lsc_c00188{letter-spacing:0.070400pt;}
.ls4_c00188{letter-spacing:0.076800pt;}
.ls3_c00188{letter-spacing:0.128000pt;}
.ls15_c00188{letter-spacing:2.880000pt;}
.ls10_c00188{letter-spacing:6.400000pt;}
.ls17_c00188{letter-spacing:8.000000pt;}
.ws2_c00188{word-spacing:-0.857600pt;}
.ws3_c00188{word-spacing:-0.614400pt;}
.ws1_c00188{word-spacing:0.000000pt;}
.ws0_c00188{word-spacing:0.171008pt;}
.ws4_c00188{word-spacing:4.147200pt;}
._10_c00188{margin-left:-8.652800pt;}
._11_c00188{margin-left:-7.622400pt;}
._4_c00188{margin-left:-6.393600pt;}
._5_c00188{margin-left:-5.376000pt;}
._a_c00188{margin-left:-3.776000pt;}
._8_c00188{margin-left:-2.796800pt;}
._6_c00188{margin-left:-1.836800pt;}
._2_c00188{margin-left:-0.940800pt;}
._0_c00188{width:0.919168pt;}
._c_c00188{width:1.895296pt;}
._b_c00188{width:2.796800pt;}
._7_c00188{width:4.044800pt;}
._e_c00188{width:5.241600pt;}
._3_c00188{width:6.188800pt;}
._1_c00188{width:7.353600pt;}
._f_c00188{width:8.556800pt;}
._9_c00188{width:12.160000pt;}
._d_c00188{width:14.726400pt;}
.fs0_c00188{font-size:53.440000pt;}
.fs1_c00188{font-size:64.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y5_c00188{bottom:50.987067pt;}
.y4_c00188{bottom:69.387067pt;}
.y23_c00188{bottom:128.827067pt;}
.y22_c00188{bottom:156.507067pt;}
.y21_c00188{bottom:190.667067pt;}
.y20_c00188{bottom:224.987067pt;}
.y1f_c00188{bottom:252.667067pt;}
.y1e_c00188{bottom:280.267067pt;}
.y1d_c00188{bottom:318.427067pt;}
.y1c_c00188{bottom:346.107067pt;}
.y1b_c00188{bottom:373.707067pt;}
.y1a_c00188{bottom:401.307067pt;}
.y19_c00188{bottom:428.907067pt;}
.y18_c00188{bottom:463.067067pt;}
.y17_c00188{bottom:490.747067pt;}
.y16_c00188{bottom:518.347067pt;}
.y15_c00188{bottom:545.947067pt;}
.y14_c00188{bottom:573.547067pt;}
.y13_c00188{bottom:611.707067pt;}
.y12_c00188{bottom:639.387067pt;}
.y11_c00188{bottom:666.987067pt;}
.y10_c00188{bottom:694.587067pt;}
.yf_c00188{bottom:732.827067pt;}
.ye_c00188{bottom:760.507067pt;}
.yd_c00188{bottom:788.107067pt;}
.yc_c00188{bottom:815.707067pt;}
.yb_c00188{bottom:843.307067pt;}
.ya_c00188{bottom:870.827067pt;}
.y9_c00188{bottom:898.427067pt;}
.y8_c00188{bottom:932.667067pt;}
.y7_c00188{bottom:960.347067pt;}
.y6_c00188{bottom:987.947067pt;}
.y3_c00188{bottom:1006.347067pt;}
.y2_c00188{bottom:1035.947576pt;}
.y1_c00188{bottom:1063.147200pt;}
.h1_c00188{height:47.020937pt;}
.h2_c00188{height:56.156250pt;}
.h3_c00188{height:56.312500pt;}
.h0_c00188{height:1122.666667pt;}
.w1_c00188{width:793.333333pt;}
.w0_c00188{width:793.626667pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:113.440000pt;}
.x2_c00188{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.095703;font-style:normal;font-weight:normal;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_7f24097f6ea997b5f0f780c3.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls13_c00189{letter-spacing:-0.360000px;}
.lse_c00189{letter-spacing:-0.048096px;}
.ls12_c00189{letter-spacing:-0.021600px;}
.ls10_c00189{letter-spacing:-0.007200px;}
.lsf_c00189{letter-spacing:0.000000px;}
.ls2_c00189{letter-spacing:0.007200px;}
.ls4_c00189{letter-spacing:0.014400px;}
.lsc_c00189{letter-spacing:0.021600px;}
.ls0_c00189{letter-spacing:0.028800px;}
.ls7_c00189{letter-spacing:0.036000px;}
.ls1_c00189{letter-spacing:0.043200px;}
.ls8_c00189{letter-spacing:0.050400px;}
.ls6_c00189{letter-spacing:0.057600px;}
.ls5_c00189{letter-spacing:0.064800px;}
.lsb_c00189{letter-spacing:0.072000px;}
.lsd_c00189{letter-spacing:0.086400px;}
.ls9_c00189{letter-spacing:0.093600px;}
.ls3_c00189{letter-spacing:0.108000px;}
.lsa_c00189{letter-spacing:0.136800px;}
.ls11_c00189{letter-spacing:13.680000px;}
.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;}
}
.ws1_c00189{word-spacing:0.000000px;}
.ws0_c00189{word-spacing:0.138276px;}
._5_c00189{margin-left:-14.299200px;}
._6_c00189{margin-left:-13.190400px;}
._b_c00189{margin-left:-4.665600px;}
._3_c00189{margin-left:-3.326400px;}
._2_c00189{margin-left:-2.203200px;}
._1_c00189{margin-left:-1.022400px;}
._0_c00189{width:1.771200px;}
._a_c00189{width:3.528000px;}
._d_c00189{width:4.716000px;}
._9_c00189{width:6.415200px;}
._c_c00189{width:7.524000px;}
._7_c00189{width:8.611200px;}
._8_c00189{width:11.656800px;}
._4_c00189{width:13.687200px;}
._f_c00189{width:15.840000px;}
._e_c00189{width:16.898400px;}
.fc0_c00189{color:rgb(0,0,0);}
.fs0_c00189{font-size:60.120000px;}
.fs1_c00189{font-size:72.000000px;}
.y0_c00189{bottom:0.000000px;}
.y6_c00189{bottom:57.360450px;}
.y5_c00189{bottom:78.060450px;}
.y23_c00189{bottom:172.470450px;}
.y22_c00189{bottom:203.610450px;}
.y21_c00189{bottom:234.570450px;}
.y20_c00189{bottom:265.620450px;}
.y1f_c00189{bottom:304.140450px;}
.y1e_c00189{bottom:335.280450px;}
.y1d_c00189{bottom:373.710450px;}
.y1c_c00189{bottom:404.850450px;}
.y1b_c00189{bottom:443.280450px;}
.y1a_c00189{bottom:474.420450px;}
.y19_c00189{bottom:512.940450px;}
.y18_c00189{bottom:551.460450px;}
.y17_c00189{bottom:582.600450px;}
.y16_c00189{bottom:613.650450px;}
.y15_c00189{bottom:652.080450px;}
.y14_c00189{bottom:683.220450px;}
.y13_c00189{bottom:714.270450px;}
.y12_c00189{bottom:752.700450px;}
.y11_c00189{bottom:791.310450px;}
.y10_c00189{bottom:822.450450px;}
.yf_c00189{bottom:860.880450px;}
.ye_c00189{bottom:892.020450px;}
.yd_c00189{bottom:930.450450px;}
.yc_c00189{bottom:969.060450px;}
.yb_c00189{bottom:1000.200450px;}
.ya_c00189{bottom:1031.160450px;}
.y9_c00189{bottom:1062.210450px;}
.y8_c00189{bottom:1093.260450px;}
.y7_c00189{bottom:1124.310450px;}
.y4_c00189{bottom:1144.380657px;}
.y3_c00189{bottom:1161.660648px;}
.y2_c00189{bottom:1178.850459px;}
.y1_c00189{bottom:1196.130450px;}
.h1_c00189{height:52.898555px;}
.h2_c00189{height:63.175781px;}
.h0_c00189{height:1263.000000px;}
.w1_c00189{width:892.500000px;}
.w0_c00189{width:892.830000px;}
.x0_c00189{left:0.000000px;}
.x4_c00189{left:127.620000px;}
.x1_c00189{left:649.620000px;}
.x3_c00189{left:738.450000px;}
.x2_c00189{left:765.450198px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls13_c00189{letter-spacing:-0.320000pt;}
.lse_c00189{letter-spacing:-0.042752pt;}
.ls12_c00189{letter-spacing:-0.019200pt;}
.ls10_c00189{letter-spacing:-0.006400pt;}
.lsf_c00189{letter-spacing:0.000000pt;}
.ls2_c00189{letter-spacing:0.006400pt;}
.ls4_c00189{letter-spacing:0.012800pt;}
.lsc_c00189{letter-spacing:0.019200pt;}
.ls0_c00189{letter-spacing:0.025600pt;}
.ls7_c00189{letter-spacing:0.032000pt;}
.ls1_c00189{letter-spacing:0.038400pt;}
.ls8_c00189{letter-spacing:0.044800pt;}
.ls6_c00189{letter-spacing:0.051200pt;}
.ls5_c00189{letter-spacing:0.057600pt;}
.lsb_c00189{letter-spacing:0.064000pt;}
.lsd_c00189{letter-spacing:0.076800pt;}
.ls9_c00189{letter-spacing:0.083200pt;}
.ls3_c00189{letter-spacing:0.096000pt;}
.lsa_c00189{letter-spacing:0.121600pt;}
.ls11_c00189{letter-spacing:12.160000pt;}
.ws1_c00189{word-spacing:0.000000pt;}
.ws0_c00189{word-spacing:0.122912pt;}
._5_c00189{margin-left:-12.710400pt;}
._6_c00189{margin-left:-11.724800pt;}
._b_c00189{margin-left:-4.147200pt;}
._3_c00189{margin-left:-2.956800pt;}
._2_c00189{margin-left:-1.958400pt;}
._1_c00189{margin-left:-0.908800pt;}
._0_c00189{width:1.574400pt;}
._a_c00189{width:3.136000pt;}
._d_c00189{width:4.192000pt;}
._9_c00189{width:5.702400pt;}
._c_c00189{width:6.688000pt;}
._7_c00189{width:7.654400pt;}
._8_c00189{width:10.361600pt;}
._4_c00189{width:12.166400pt;}
._f_c00189{width:14.080000pt;}
._e_c00189{width:15.020800pt;}
.fs0_c00189{font-size:53.440000pt;}
.fs1_c00189{font-size:64.000000pt;}
.y0_c00189{bottom:0.000000pt;}
.y6_c00189{bottom:50.987067pt;}
.y5_c00189{bottom:69.387067pt;}
.y23_c00189{bottom:153.307067pt;}
.y22_c00189{bottom:180.987067pt;}
.y21_c00189{bottom:208.507067pt;}
.y20_c00189{bottom:236.107067pt;}
.y1f_c00189{bottom:270.347067pt;}
.y1e_c00189{bottom:298.027067pt;}
.y1d_c00189{bottom:332.187067pt;}
.y1c_c00189{bottom:359.867067pt;}
.y1b_c00189{bottom:394.027067pt;}
.y1a_c00189{bottom:421.707067pt;}
.y19_c00189{bottom:455.947067pt;}
.y18_c00189{bottom:490.187067pt;}
.y17_c00189{bottom:517.867067pt;}
.y16_c00189{bottom:545.467067pt;}
.y15_c00189{bottom:579.627067pt;}
.y14_c00189{bottom:607.307067pt;}
.y13_c00189{bottom:634.907067pt;}
.y12_c00189{bottom:669.067067pt;}
.y11_c00189{bottom:703.387067pt;}
.y10_c00189{bottom:731.067067pt;}
.yf_c00189{bottom:765.227067pt;}
.ye_c00189{bottom:792.907067pt;}
.yd_c00189{bottom:827.067067pt;}
.yc_c00189{bottom:861.387067pt;}
.yb_c00189{bottom:889.067067pt;}
.ya_c00189{bottom:916.587067pt;}
.y9_c00189{bottom:944.187067pt;}
.y8_c00189{bottom:971.787067pt;}
.y7_c00189{bottom:999.387067pt;}
.y4_c00189{bottom:1017.227251pt;}
.y3_c00189{bottom:1032.587243pt;}
.y2_c00189{bottom:1047.867075pt;}
.y1_c00189{bottom:1063.227067pt;}
.h1_c00189{height:47.020937pt;}
.h2_c00189{height:56.156250pt;}
.h0_c00189{height:1122.666667pt;}
.w1_c00189{width:793.333333pt;}
.w0_c00189{width:793.626667pt;}
.x0_c00189{left:0.000000pt;}
.x4_c00189{left:113.440000pt;}
.x1_c00189{left:577.440000pt;}
.x3_c00189{left:656.400000pt;}
.x2_c00189{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a49085d8158619ad7fd1648b.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.095703;font-style:normal;font-weight:normal;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_4f9f02269ae3f5cc53e7c2a3.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00190{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.lsc_c00190{letter-spacing:-0.102204px;}
.ls11_c00190{letter-spacing:-0.057600px;}
.lse_c00190{letter-spacing:-0.036000px;}
.ls10_c00190{letter-spacing:-0.021600px;}
.lsf_c00190{letter-spacing:-0.014400px;}
.ls13_c00190{letter-spacing:-0.007200px;}
.lsd_c00190{letter-spacing:0.000000px;}
.ls8_c00190{letter-spacing:0.007200px;}
.ls5_c00190{letter-spacing:0.014400px;}
.ls9_c00190{letter-spacing:0.021600px;}
.ls0_c00190{letter-spacing:0.028800px;}
.ls1_c00190{letter-spacing:0.036000px;}
.ls6_c00190{letter-spacing:0.043200px;}
.ls3_c00190{letter-spacing:0.050400px;}
.lsa_c00190{letter-spacing:0.057600px;}
.ls4_c00190{letter-spacing:0.064800px;}
.ls2_c00190{letter-spacing:0.072000px;}
.lsb_c00190{letter-spacing:0.079200px;}
.ls7_c00190{letter-spacing:0.122400px;}
.ls12_c00190{letter-spacing:1.440000px;}
.ls14_c00190{letter-spacing:9.720000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00190{word-spacing:0.000000px;}
.ws2_c00190{word-spacing:0.014400px;}
.ws0_c00190{word-spacing:0.192384px;}
._a_c00190{margin-left:-9.777600px;}
._b_c00190{margin-left:-8.380800px;}
._5_c00190{margin-left:-2.592000px;}
._2_c00190{margin-left:-1.281600px;}
._0_c00190{width:1.034064px;}
._6_c00190{width:2.518272px;}
._7_c00190{width:3.904128px;}
._9_c00190{width:6.105600px;}
._4_c00190{width:7.437600px;}
._3_c00190{width:8.604000px;}
._1_c00190{width:10.008000px;}
._8_c00190{width:12.218400px;}
.fc1_c00190{color:rgb(0,0,0);}
.fc0_c00190{color:rgb(32,31,30);}
.fs0_c00190{font-size:60.120000px;}
.fs1_c00190{font-size:72.000000px;}
.y0_c00190{bottom:0.000000px;}
.y5_c00190{bottom:57.360450px;}
.y4_c00190{bottom:78.060450px;}
.y23_c00190{bottom:168.150450px;}
.y22_c00190{bottom:199.200450px;}
.y21_c00190{bottom:233.490450px;}
.y20_c00190{bottom:255.720450px;}
.y1f_c00190{bottom:281.100450px;}
.y1e_c00190{bottom:324.210450px;}
.y1d_c00190{bottom:355.350450px;}
.y1c_c00190{bottom:386.400450px;}
.y1b_c00190{bottom:417.450450px;}
.y1a_c00190{bottom:448.500450px;}
.y19_c00190{bottom:491.430450px;}
.y18_c00190{bottom:522.570450px;}
.y17_c00190{bottom:553.620450px;}
.y16_c00190{bottom:584.670450px;}
.y15_c00190{bottom:615.720450px;}
.y14_c00190{bottom:654.150450px;}
.y13_c00190{bottom:685.290450px;}
.y12_c00190{bottom:723.720450px;}
.y11_c00190{bottom:754.860450px;}
.y10_c00190{bottom:793.380450px;}
.yf_c00190{bottom:824.430450px;}
.ye_c00190{bottom:863.040450px;}
.yd_c00190{bottom:894.090450px;}
.yc_c00190{bottom:925.140450px;}
.yb_c00190{bottom:956.190450px;}
.ya_c00190{bottom:987.240450px;}
.y9_c00190{bottom:1018.290450px;}
.y8_c00190{bottom:1049.340450px;}
.y7_c00190{bottom:1080.390450px;}
.y6_c00190{bottom:1111.440450px;}
.y3_c00190{bottom:1132.140450px;}
.y2_c00190{bottom:1165.441023px;}
.y1_c00190{bottom:1196.040600px;}
.h1_c00190{height:52.898555px;}
.h2_c00190{height:63.175781px;}
.h3_c00190{height:63.351562px;}
.h0_c00190{height:1263.000000px;}
.w1_c00190{width:892.500000px;}
.w0_c00190{width:892.830000px;}
.x0_c00190{left:0.000000px;}
.x1_c00190{left:127.620000px;}
.x3_c00190{left:154.620000px;}
.x4_c00190{left:181.620000px;}
.x2_c00190{left:738.450000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.lsc_c00190{letter-spacing:-0.090848pt;}
.ls11_c00190{letter-spacing:-0.051200pt;}
.lse_c00190{letter-spacing:-0.032000pt;}
.ls10_c00190{letter-spacing:-0.019200pt;}
.lsf_c00190{letter-spacing:-0.012800pt;}
.ls13_c00190{letter-spacing:-0.006400pt;}
.lsd_c00190{letter-spacing:0.000000pt;}
.ls8_c00190{letter-spacing:0.006400pt;}
.ls5_c00190{letter-spacing:0.012800pt;}
.ls9_c00190{letter-spacing:0.019200pt;}
.ls0_c00190{letter-spacing:0.025600pt;}
.ls1_c00190{letter-spacing:0.032000pt;}
.ls6_c00190{letter-spacing:0.038400pt;}
.ls3_c00190{letter-spacing:0.044800pt;}
.lsa_c00190{letter-spacing:0.051200pt;}
.ls4_c00190{letter-spacing:0.057600pt;}
.ls2_c00190{letter-spacing:0.064000pt;}
.lsb_c00190{letter-spacing:0.070400pt;}
.ls7_c00190{letter-spacing:0.108800pt;}
.ls12_c00190{letter-spacing:1.280000pt;}
.ls14_c00190{letter-spacing:8.640000pt;}
.ws1_c00190{word-spacing:0.000000pt;}
.ws2_c00190{word-spacing:0.012800pt;}
.ws0_c00190{word-spacing:0.171008pt;}
._a_c00190{margin-left:-8.691200pt;}
._b_c00190{margin-left:-7.449600pt;}
._5_c00190{margin-left:-2.304000pt;}
._2_c00190{margin-left:-1.139200pt;}
._0_c00190{width:0.919168pt;}
._6_c00190{width:2.238464pt;}
._7_c00190{width:3.470336pt;}
._9_c00190{width:5.427200pt;}
._4_c00190{width:6.611200pt;}
._3_c00190{width:7.648000pt;}
._1_c00190{width:8.896000pt;}
._8_c00190{width:10.860800pt;}
.fs0_c00190{font-size:53.440000pt;}
.fs1_c00190{font-size:64.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.y5_c00190{bottom:50.987067pt;}
.y4_c00190{bottom:69.387067pt;}
.y23_c00190{bottom:149.467067pt;}
.y22_c00190{bottom:177.067067pt;}
.y21_c00190{bottom:207.547067pt;}
.y20_c00190{bottom:227.307067pt;}
.y1f_c00190{bottom:249.867067pt;}
.y1e_c00190{bottom:288.187067pt;}
.y1d_c00190{bottom:315.867067pt;}
.y1c_c00190{bottom:343.467067pt;}
.y1b_c00190{bottom:371.067067pt;}
.y1a_c00190{bottom:398.667067pt;}
.y19_c00190{bottom:436.827067pt;}
.y18_c00190{bottom:464.507067pt;}
.y17_c00190{bottom:492.107067pt;}
.y16_c00190{bottom:519.707067pt;}
.y15_c00190{bottom:547.307067pt;}
.y14_c00190{bottom:581.467067pt;}
.y13_c00190{bottom:609.147067pt;}
.y12_c00190{bottom:643.307067pt;}
.y11_c00190{bottom:670.987067pt;}
.y10_c00190{bottom:705.227067pt;}
.yf_c00190{bottom:732.827067pt;}
.ye_c00190{bottom:767.147067pt;}
.yd_c00190{bottom:794.747067pt;}
.yc_c00190{bottom:822.347067pt;}
.yb_c00190{bottom:849.947067pt;}
.ya_c00190{bottom:877.547067pt;}
.y9_c00190{bottom:905.147067pt;}
.y8_c00190{bottom:932.747067pt;}
.y7_c00190{bottom:960.347067pt;}
.y6_c00190{bottom:987.947067pt;}
.y3_c00190{bottom:1006.347067pt;}
.y2_c00190{bottom:1035.947576pt;}
.y1_c00190{bottom:1063.147200pt;}
.h1_c00190{height:47.020937pt;}
.h2_c00190{height:56.156250pt;}
.h3_c00190{height:56.312500pt;}
.h0_c00190{height:1122.666667pt;}
.w1_c00190{width:793.333333pt;}
.w0_c00190{width:793.626667pt;}
.x0_c00190{left:0.000000pt;}
.x1_c00190{left:113.440000pt;}
.x3_c00190{left:137.440000pt;}
.x4_c00190{left:161.440000pt;}
.x2_c00190{left:656.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_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_bb06c4bf33add131b5f5c772.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.095703;font-style:normal;font-weight:normal;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_955f9c2085fa427fa68e5068.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00191{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls11_c00191{letter-spacing:-0.064800px;}
.lsf_c00191{letter-spacing:-0.050400px;}
.lsc_c00191{letter-spacing:-0.048096px;}
.ls14_c00191{letter-spacing:-0.036000px;}
.ls12_c00191{letter-spacing:-0.028800px;}
.ls10_c00191{letter-spacing:-0.021600px;}
.lse_c00191{letter-spacing:-0.007200px;}
.lsd_c00191{letter-spacing:0.000000px;}
.ls4_c00191{letter-spacing:0.007200px;}
.ls6_c00191{letter-spacing:0.014400px;}
.ls7_c00191{letter-spacing:0.021600px;}
.ls0_c00191{letter-spacing:0.028800px;}
.ls5_c00191{letter-spacing:0.036000px;}
.ls3_c00191{letter-spacing:0.043200px;}
.lsb_c00191{letter-spacing:0.050400px;}
.ls8_c00191{letter-spacing:0.057600px;}
.ls9_c00191{letter-spacing:0.064800px;}
.ls2_c00191{letter-spacing:0.072000px;}
.ls1_c00191{letter-spacing:0.079200px;}
.lsa_c00191{letter-spacing:0.093600px;}
.ls13_c00191{letter-spacing:2.037600px;}
.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:-1.447200px;}
.ws6_c00191{word-spacing:-0.381600px;}
.ws1_c00191{word-spacing:0.000000px;}
.ws0_c00191{word-spacing:0.138276px;}
.ws3_c00191{word-spacing:6.753600px;}
.ws5_c00191{word-spacing:6.818400px;}
.ws4_c00191{word-spacing:6.825600px;}
._b_c00191{margin-left:-4.132800px;}
._a_c00191{margin-left:-2.973600px;}
._1_c00191{margin-left:-1.260000px;}
._3_c00191{width:1.353600px;}
._8_c00191{width:3.081600px;}
._5_c00191{width:5.011200px;}
._4_c00191{width:6.163200px;}
._0_c00191{width:7.531200px;}
._9_c00191{width:8.596800px;}
._2_c00191{width:9.648000px;}
._7_c00191{width:10.728000px;}
._6_c00191{width:11.937600px;}
.fc0_c00191{color:rgb(0,0,0);}
.fs0_c00191{font-size:60.120000px;}
.fs1_c00191{font-size:72.000000px;}
.y0_c00191{bottom:0.000000px;}
.y6_c00191{bottom:57.360450px;}
.y5_c00191{bottom:78.060450px;}
.y25_c00191{bottom:126.930450px;}
.y24_c00191{bottom:157.980450px;}
.y23_c00191{bottom:196.410450px;}
.y22_c00191{bottom:227.550450px;}
.y21_c00191{bottom:265.980450px;}
.y20_c00191{bottom:297.120450px;}
.y1f_c00191{bottom:328.170450px;}
.y1e_c00191{bottom:359.220450px;}
.y1d_c00191{bottom:390.270450px;}
.y1c_c00191{bottom:433.290450px;}
.y1b_c00191{bottom:464.430450px;}
.y1a_c00191{bottom:495.480450px;}
.y19_c00191{bottom:533.910450px;}
.y18_c00191{bottom:565.050450px;}
.y17_c00191{bottom:596.100450px;}
.y16_c00191{bottom:627.150450px;}
.y15_c00191{bottom:658.200450px;}
.y14_c00191{bottom:689.250450px;}
.y13_c00191{bottom:720.300450px;}
.y12_c00191{bottom:751.350450px;}
.y11_c00191{bottom:782.400450px;}
.y10_c00191{bottom:813.450450px;}
.yf_c00191{bottom:856.380450px;}
.ye_c00191{bottom:887.430450px;}
.yd_c00191{bottom:918.570450px;}
.yc_c00191{bottom:961.500450px;}
.yb_c00191{bottom:992.640450px;}
.ya_c00191{bottom:1023.690450px;}
.y9_c00191{bottom:1054.740450px;}
.y8_c00191{bottom:1093.170450px;}
.y7_c00191{bottom:1124.310450px;}
.y4_c00191{bottom:1144.380657px;}
.y3_c00191{bottom:1161.660648px;}
.y2_c00191{bottom:1178.850459px;}
.y1_c00191{bottom:1196.130450px;}
.h1_c00191{height:52.898555px;}
.h2_c00191{height:63.175781px;}
.h3_c00191{height:63.351562px;}
.h0_c00191{height:1263.000000px;}
.w1_c00191{width:892.500000px;}
.w0_c00191{width:892.830000px;}
.x0_c00191{left:0.000000px;}
.x4_c00191{left:127.620000px;}
.x1_c00191{left:649.620000px;}
.x3_c00191{left:738.450000px;}
.x2_c00191{left:765.450198px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls11_c00191{letter-spacing:-0.057600pt;}
.lsf_c00191{letter-spacing:-0.044800pt;}
.lsc_c00191{letter-spacing:-0.042752pt;}
.ls14_c00191{letter-spacing:-0.032000pt;}
.ls12_c00191{letter-spacing:-0.025600pt;}
.ls10_c00191{letter-spacing:-0.019200pt;}
.lse_c00191{letter-spacing:-0.006400pt;}
.lsd_c00191{letter-spacing:0.000000pt;}
.ls4_c00191{letter-spacing:0.006400pt;}
.ls6_c00191{letter-spacing:0.012800pt;}
.ls7_c00191{letter-spacing:0.019200pt;}
.ls0_c00191{letter-spacing:0.025600pt;}
.ls5_c00191{letter-spacing:0.032000pt;}
.ls3_c00191{letter-spacing:0.038400pt;}
.lsb_c00191{letter-spacing:0.044800pt;}
.ls8_c00191{letter-spacing:0.051200pt;}
.ls9_c00191{letter-spacing:0.057600pt;}
.ls2_c00191{letter-spacing:0.064000pt;}
.ls1_c00191{letter-spacing:0.070400pt;}
.lsa_c00191{letter-spacing:0.083200pt;}
.ls13_c00191{letter-spacing:1.811200pt;}
.ws2_c00191{word-spacing:-1.286400pt;}
.ws6_c00191{word-spacing:-0.339200pt;}
.ws1_c00191{word-spacing:0.000000pt;}
.ws0_c00191{word-spacing:0.122912pt;}
.ws3_c00191{word-spacing:6.003200pt;}
.ws5_c00191{word-spacing:6.060800pt;}
.ws4_c00191{word-spacing:6.067200pt;}
._b_c00191{margin-left:-3.673600pt;}
._a_c00191{margin-left:-2.643200pt;}
._1_c00191{margin-left:-1.120000pt;}
._3_c00191{width:1.203200pt;}
._8_c00191{width:2.739200pt;}
._5_c00191{width:4.454400pt;}
._4_c00191{width:5.478400pt;}
._0_c00191{width:6.694400pt;}
._9_c00191{width:7.641600pt;}
._2_c00191{width:8.576000pt;}
._7_c00191{width:9.536000pt;}
._6_c00191{width:10.611200pt;}
.fs0_c00191{font-size:53.440000pt;}
.fs1_c00191{font-size:64.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y6_c00191{bottom:50.987067pt;}
.y5_c00191{bottom:69.387067pt;}
.y25_c00191{bottom:112.827067pt;}
.y24_c00191{bottom:140.427067pt;}
.y23_c00191{bottom:174.587067pt;}
.y22_c00191{bottom:202.267067pt;}
.y21_c00191{bottom:236.427067pt;}
.y20_c00191{bottom:264.107067pt;}
.y1f_c00191{bottom:291.707067pt;}
.y1e_c00191{bottom:319.307067pt;}
.y1d_c00191{bottom:346.907067pt;}
.y1c_c00191{bottom:385.147067pt;}
.y1b_c00191{bottom:412.827067pt;}
.y1a_c00191{bottom:440.427067pt;}
.y19_c00191{bottom:474.587067pt;}
.y18_c00191{bottom:502.267067pt;}
.y17_c00191{bottom:529.867067pt;}
.y16_c00191{bottom:557.467067pt;}
.y15_c00191{bottom:585.067067pt;}
.y14_c00191{bottom:612.667067pt;}
.y13_c00191{bottom:640.267067pt;}
.y12_c00191{bottom:667.867067pt;}
.y11_c00191{bottom:695.467067pt;}
.y10_c00191{bottom:723.067067pt;}
.yf_c00191{bottom:761.227067pt;}
.ye_c00191{bottom:788.827067pt;}
.yd_c00191{bottom:816.507067pt;}
.yc_c00191{bottom:854.667067pt;}
.yb_c00191{bottom:882.347067pt;}
.ya_c00191{bottom:909.947067pt;}
.y9_c00191{bottom:937.547067pt;}
.y8_c00191{bottom:971.707067pt;}
.y7_c00191{bottom:999.387067pt;}
.y4_c00191{bottom:1017.227251pt;}
.y3_c00191{bottom:1032.587243pt;}
.y2_c00191{bottom:1047.867075pt;}
.y1_c00191{bottom:1063.227067pt;}
.h1_c00191{height:47.020937pt;}
.h2_c00191{height:56.156250pt;}
.h3_c00191{height:56.312500pt;}
.h0_c00191{height:1122.666667pt;}
.w1_c00191{width:793.333333pt;}
.w0_c00191{width:793.626667pt;}
.x0_c00191{left:0.000000pt;}
.x4_c00191{left:113.440000pt;}
.x1_c00191{left:577.440000pt;}
.x3_c00191{left:656.400000pt;}
.x2_c00191{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.095703;font-style:normal;font-weight:normal;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_76f2106e3b949161a936a4cc.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.lsc_c00192{letter-spacing:-0.102204px;}
.ls13_c00192{letter-spacing:-0.050400px;}
.lsf_c00192{letter-spacing:-0.043200px;}
.ls12_c00192{letter-spacing:-0.036000px;}
.ls11_c00192{letter-spacing:-0.028800px;}
.ls10_c00192{letter-spacing:-0.014400px;}
.lse_c00192{letter-spacing:-0.007200px;}
.lsd_c00192{letter-spacing:0.000000px;}
.ls9_c00192{letter-spacing:0.007200px;}
.ls2_c00192{letter-spacing:0.014400px;}
.ls1_c00192{letter-spacing:0.021600px;}
.ls6_c00192{letter-spacing:0.028800px;}
.ls4_c00192{letter-spacing:0.036000px;}
.ls5_c00192{letter-spacing:0.043200px;}
.ls0_c00192{letter-spacing:0.050400px;}
.lsa_c00192{letter-spacing:0.057600px;}
.ls7_c00192{letter-spacing:0.064800px;}
.ls3_c00192{letter-spacing:0.072000px;}
.ls8_c00192{letter-spacing:0.079200px;}
.lsb_c00192{letter-spacing:0.086400px;}
.ls14_c00192{letter-spacing:0.108000px;}
.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;}
}
.ws1_c00192{word-spacing:0.000000px;}
.ws0_c00192{word-spacing:0.192384px;}
._d_c00192{margin-left:-4.226400px;}
._6_c00192{margin-left:-3.225600px;}
._1_c00192{margin-left:-1.231200px;}
._0_c00192{width:1.034064px;}
._5_c00192{width:2.476800px;}
._c_c00192{width:4.226400px;}
._4_c00192{width:6.170400px;}
._3_c00192{width:7.243200px;}
._7_c00192{width:8.251200px;}
._8_c00192{width:11.433600px;}
._9_c00192{width:12.729600px;}
._2_c00192{width:16.372800px;}
._b_c00192{width:27.446400px;}
._a_c00192{width:28.764000px;}
.fc1_c00192{color:rgb(0,0,0);}
.fc0_c00192{color:rgb(32,31,30);}
.fs0_c00192{font-size:60.120000px;}
.fs1_c00192{font-size:72.000000px;}
.y0_c00192{bottom:0.000000px;}
.y5_c00192{bottom:57.360450px;}
.y4_c00192{bottom:78.060450px;}
.y24_c00192{bottom:131.970450px;}
.y23_c00192{bottom:163.020450px;}
.y22_c00192{bottom:194.070450px;}
.y21_c00192{bottom:237.000450px;}
.y20_c00192{bottom:268.140450px;}
.y1f_c00192{bottom:299.190450px;}
.y1e_c00192{bottom:330.240450px;}
.y1d_c00192{bottom:361.290450px;}
.y1c_c00192{bottom:392.340450px;}
.y1b_c00192{bottom:423.390450px;}
.y1a_c00192{bottom:454.440450px;}
.y19_c00192{bottom:485.490450px;}
.y18_c00192{bottom:516.540450px;}
.y17_c00192{bottom:559.560450px;}
.y16_c00192{bottom:590.700450px;}
.y15_c00192{bottom:621.660450px;}
.y14_c00192{bottom:652.710450px;}
.y13_c00192{bottom:683.760450px;}
.y12_c00192{bottom:726.780450px;}
.y11_c00192{bottom:757.920450px;}
.y10_c00192{bottom:788.970450px;}
.yf_c00192{bottom:820.020450px;}
.ye_c00192{bottom:851.070450px;}
.yd_c00192{bottom:882.120450px;}
.yc_c00192{bottom:913.170450px;}
.yb_c00192{bottom:944.220450px;}
.ya_c00192{bottom:975.180450px;}
.y9_c00192{bottom:1006.230450px;}
.y8_c00192{bottom:1037.280450px;}
.y7_c00192{bottom:1080.300450px;}
.y6_c00192{bottom:1111.440450px;}
.y3_c00192{bottom:1132.140450px;}
.y2_c00192{bottom:1165.441023px;}
.y1_c00192{bottom:1196.040600px;}
.h1_c00192{height:52.898555px;}
.h2_c00192{height:63.175781px;}
.h0_c00192{height:1263.000000px;}
.w1_c00192{width:892.500000px;}
.w0_c00192{width:892.830000px;}
.x0_c00192{left:0.000000px;}
.x1_c00192{left:127.620000px;}
.x2_c00192{left:738.450000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.lsc_c00192{letter-spacing:-0.090848pt;}
.ls13_c00192{letter-spacing:-0.044800pt;}
.lsf_c00192{letter-spacing:-0.038400pt;}
.ls12_c00192{letter-spacing:-0.032000pt;}
.ls11_c00192{letter-spacing:-0.025600pt;}
.ls10_c00192{letter-spacing:-0.012800pt;}
.lse_c00192{letter-spacing:-0.006400pt;}
.lsd_c00192{letter-spacing:0.000000pt;}
.ls9_c00192{letter-spacing:0.006400pt;}
.ls2_c00192{letter-spacing:0.012800pt;}
.ls1_c00192{letter-spacing:0.019200pt;}
.ls6_c00192{letter-spacing:0.025600pt;}
.ls4_c00192{letter-spacing:0.032000pt;}
.ls5_c00192{letter-spacing:0.038400pt;}
.ls0_c00192{letter-spacing:0.044800pt;}
.lsa_c00192{letter-spacing:0.051200pt;}
.ls7_c00192{letter-spacing:0.057600pt;}
.ls3_c00192{letter-spacing:0.064000pt;}
.ls8_c00192{letter-spacing:0.070400pt;}
.lsb_c00192{letter-spacing:0.076800pt;}
.ls14_c00192{letter-spacing:0.096000pt;}
.ws1_c00192{word-spacing:0.000000pt;}
.ws0_c00192{word-spacing:0.171008pt;}
._d_c00192{margin-left:-3.756800pt;}
._6_c00192{margin-left:-2.867200pt;}
._1_c00192{margin-left:-1.094400pt;}
._0_c00192{width:0.919168pt;}
._5_c00192{width:2.201600pt;}
._c_c00192{width:3.756800pt;}
._4_c00192{width:5.484800pt;}
._3_c00192{width:6.438400pt;}
._7_c00192{width:7.334400pt;}
._8_c00192{width:10.163200pt;}
._9_c00192{width:11.315200pt;}
._2_c00192{width:14.553600pt;}
._b_c00192{width:24.396800pt;}
._a_c00192{width:25.568000pt;}
.fs0_c00192{font-size:53.440000pt;}
.fs1_c00192{font-size:64.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y5_c00192{bottom:50.987067pt;}
.y4_c00192{bottom:69.387067pt;}
.y24_c00192{bottom:117.307067pt;}
.y23_c00192{bottom:144.907067pt;}
.y22_c00192{bottom:172.507067pt;}
.y21_c00192{bottom:210.667067pt;}
.y20_c00192{bottom:238.347067pt;}
.y1f_c00192{bottom:265.947067pt;}
.y1e_c00192{bottom:293.547067pt;}
.y1d_c00192{bottom:321.147067pt;}
.y1c_c00192{bottom:348.747067pt;}
.y1b_c00192{bottom:376.347067pt;}
.y1a_c00192{bottom:403.947067pt;}
.y19_c00192{bottom:431.547067pt;}
.y18_c00192{bottom:459.147067pt;}
.y17_c00192{bottom:497.387067pt;}
.y16_c00192{bottom:525.067067pt;}
.y15_c00192{bottom:552.587067pt;}
.y14_c00192{bottom:580.187067pt;}
.y13_c00192{bottom:607.787067pt;}
.y12_c00192{bottom:646.027067pt;}
.y11_c00192{bottom:673.707067pt;}
.y10_c00192{bottom:701.307067pt;}
.yf_c00192{bottom:728.907067pt;}
.ye_c00192{bottom:756.507067pt;}
.yd_c00192{bottom:784.107067pt;}
.yc_c00192{bottom:811.707067pt;}
.yb_c00192{bottom:839.307067pt;}
.ya_c00192{bottom:866.827067pt;}
.y9_c00192{bottom:894.427067pt;}
.y8_c00192{bottom:922.027067pt;}
.y7_c00192{bottom:960.267067pt;}
.y6_c00192{bottom:987.947067pt;}
.y3_c00192{bottom:1006.347067pt;}
.y2_c00192{bottom:1035.947576pt;}
.y1_c00192{bottom:1063.147200pt;}
.h1_c00192{height:47.020937pt;}
.h2_c00192{height:56.156250pt;}
.h0_c00192{height:1122.666667pt;}
.w1_c00192{width:793.333333pt;}
.w0_c00192{width:793.626667pt;}
.x0_c00192{left:0.000000pt;}
.x1_c00192{left:113.440000pt;}
.x2_c00192{left:656.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_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_76cc5918ac07f45902132c68.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.095703;font-style:normal;font-weight:normal;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_683a20de5a0c97252c632ca0.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.lsd_c00193{letter-spacing:-0.048096px;}
.ls11_c00193{letter-spacing:-0.021600px;}
.lsf_c00193{letter-spacing:-0.014400px;}
.ls10_c00193{letter-spacing:-0.007200px;}
.lse_c00193{letter-spacing:0.000000px;}
.ls1_c00193{letter-spacing:0.007200px;}
.ls8_c00193{letter-spacing:0.014400px;}
.ls4_c00193{letter-spacing:0.021600px;}
.ls5_c00193{letter-spacing:0.028800px;}
.ls9_c00193{letter-spacing:0.036000px;}
.ls7_c00193{letter-spacing:0.043200px;}
.ls2_c00193{letter-spacing:0.050400px;}
.lsa_c00193{letter-spacing:0.057600px;}
.ls3_c00193{letter-spacing:0.064800px;}
.ls0_c00193{letter-spacing:0.072000px;}
.lsc_c00193{letter-spacing:0.079200px;}
.lsb_c00193{letter-spacing:0.086400px;}
.ls6_c00193{letter-spacing:0.100800px;}
.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;}
}
.ws3_c00193{word-spacing:-0.064800px;}
.ws1_c00193{word-spacing:0.000000px;}
.ws2_c00193{word-spacing:0.064800px;}
.ws5_c00193{word-spacing:0.129600px;}
.ws0_c00193{word-spacing:0.138276px;}
.ws4_c00193{word-spacing:14.400000px;}
._f_c00193{margin-left:-2.210400px;}
._5_c00193{margin-left:-1.051200px;}
._8_c00193{width:1.080000px;}
._2_c00193{width:2.700000px;}
._3_c00193{width:3.895200px;}
._7_c00193{width:5.018400px;}
._9_c00193{width:6.098400px;}
._6_c00193{width:7.912800px;}
._e_c00193{width:9.972000px;}
._0_c00193{width:11.174400px;}
._1_c00193{width:12.441600px;}
._b_c00193{width:13.464000px;}
._4_c00193{width:14.688000px;}
._a_c00193{width:16.603200px;}
._d_c00193{width:24.177600px;}
._c_c00193{width:25.531200px;}
.fc0_c00193{color:rgb(0,0,0);}
.fs0_c00193{font-size:60.120000px;}
.fs1_c00193{font-size:72.000000px;}
.y0_c00193{bottom:0.000000px;}
.y6_c00193{bottom:57.360450px;}
.y5_c00193{bottom:78.060450px;}
.y26_c00193{bottom:133.140450px;}
.y25_c00193{bottom:164.190450px;}
.y24_c00193{bottom:207.120450px;}
.y23_c00193{bottom:238.260450px;}
.y22_c00193{bottom:269.310450px;}
.y21_c00193{bottom:300.360450px;}
.y20_c00193{bottom:331.410450px;}
.y1f_c00193{bottom:362.460450px;}
.y1e_c00193{bottom:393.510450px;}
.y1d_c00193{bottom:424.560450px;}
.y1c_c00193{bottom:455.610450px;}
.y1b_c00193{bottom:486.660450px;}
.y1a_c00193{bottom:520.950450px;}
.y19_c00193{bottom:543.180450px;}
.y18_c00193{bottom:568.560450px;}
.y17_c00193{bottom:611.670450px;}
.y16_c00193{bottom:642.810450px;}
.y15_c00193{bottom:673.770450px;}
.y14_c00193{bottom:704.820450px;}
.y13_c00193{bottom:743.340450px;}
.y12_c00193{bottom:774.480450px;}
.y11_c00193{bottom:805.530450px;}
.y10_c00193{bottom:836.580450px;}
.yf_c00193{bottom:875.010450px;}
.ye_c00193{bottom:906.150450px;}
.yd_c00193{bottom:937.200450px;}
.yc_c00193{bottom:968.250450px;}
.yb_c00193{bottom:1002.450450px;}
.ya_c00193{bottom:1024.770450px;}
.y9_c00193{bottom:1050.150450px;}
.y8_c00193{bottom:1093.170450px;}
.y7_c00193{bottom:1124.310450px;}
.y4_c00193{bottom:1144.380657px;}
.y3_c00193{bottom:1161.660648px;}
.y2_c00193{bottom:1178.850459px;}
.y1_c00193{bottom:1196.130450px;}
.h1_c00193{height:52.898555px;}
.h2_c00193{height:63.175781px;}
.h3_c00193{height:63.351562px;}
.h0_c00193{height:1263.000000px;}
.w1_c00193{width:892.500000px;}
.w0_c00193{width:892.830000px;}
.x0_c00193{left:0.000000px;}
.x4_c00193{left:127.620000px;}
.x1_c00193{left:649.620000px;}
.x3_c00193{left:738.450000px;}
.x2_c00193{left:765.450198px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.lsd_c00193{letter-spacing:-0.042752pt;}
.ls11_c00193{letter-spacing:-0.019200pt;}
.lsf_c00193{letter-spacing:-0.012800pt;}
.ls10_c00193{letter-spacing:-0.006400pt;}
.lse_c00193{letter-spacing:0.000000pt;}
.ls1_c00193{letter-spacing:0.006400pt;}
.ls8_c00193{letter-spacing:0.012800pt;}
.ls4_c00193{letter-spacing:0.019200pt;}
.ls5_c00193{letter-spacing:0.025600pt;}
.ls9_c00193{letter-spacing:0.032000pt;}
.ls7_c00193{letter-spacing:0.038400pt;}
.ls2_c00193{letter-spacing:0.044800pt;}
.lsa_c00193{letter-spacing:0.051200pt;}
.ls3_c00193{letter-spacing:0.057600pt;}
.ls0_c00193{letter-spacing:0.064000pt;}
.lsc_c00193{letter-spacing:0.070400pt;}
.lsb_c00193{letter-spacing:0.076800pt;}
.ls6_c00193{letter-spacing:0.089600pt;}
.ws3_c00193{word-spacing:-0.057600pt;}
.ws1_c00193{word-spacing:0.000000pt;}
.ws2_c00193{word-spacing:0.057600pt;}
.ws5_c00193{word-spacing:0.115200pt;}
.ws0_c00193{word-spacing:0.122912pt;}
.ws4_c00193{word-spacing:12.800000pt;}
._f_c00193{margin-left:-1.964800pt;}
._5_c00193{margin-left:-0.934400pt;}
._8_c00193{width:0.960000pt;}
._2_c00193{width:2.400000pt;}
._3_c00193{width:3.462400pt;}
._7_c00193{width:4.460800pt;}
._9_c00193{width:5.420800pt;}
._6_c00193{width:7.033600pt;}
._e_c00193{width:8.864000pt;}
._0_c00193{width:9.932800pt;}
._1_c00193{width:11.059200pt;}
._b_c00193{width:11.968000pt;}
._4_c00193{width:13.056000pt;}
._a_c00193{width:14.758400pt;}
._d_c00193{width:21.491200pt;}
._c_c00193{width:22.694400pt;}
.fs0_c00193{font-size:53.440000pt;}
.fs1_c00193{font-size:64.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y6_c00193{bottom:50.987067pt;}
.y5_c00193{bottom:69.387067pt;}
.y26_c00193{bottom:118.347067pt;}
.y25_c00193{bottom:145.947067pt;}
.y24_c00193{bottom:184.107067pt;}
.y23_c00193{bottom:211.787067pt;}
.y22_c00193{bottom:239.387067pt;}
.y21_c00193{bottom:266.987067pt;}
.y20_c00193{bottom:294.587067pt;}
.y1f_c00193{bottom:322.187067pt;}
.y1e_c00193{bottom:349.787067pt;}
.y1d_c00193{bottom:377.387067pt;}
.y1c_c00193{bottom:404.987067pt;}
.y1b_c00193{bottom:432.587067pt;}
.y1a_c00193{bottom:463.067067pt;}
.y19_c00193{bottom:482.827067pt;}
.y18_c00193{bottom:505.387067pt;}
.y17_c00193{bottom:543.707067pt;}
.y16_c00193{bottom:571.387067pt;}
.y15_c00193{bottom:598.907067pt;}
.y14_c00193{bottom:626.507067pt;}
.y13_c00193{bottom:660.747067pt;}
.y12_c00193{bottom:688.427067pt;}
.y11_c00193{bottom:716.027067pt;}
.y10_c00193{bottom:743.627067pt;}
.yf_c00193{bottom:777.787067pt;}
.ye_c00193{bottom:805.467067pt;}
.yd_c00193{bottom:833.067067pt;}
.yc_c00193{bottom:860.667067pt;}
.yb_c00193{bottom:891.067067pt;}
.ya_c00193{bottom:910.907067pt;}
.y9_c00193{bottom:933.467067pt;}
.y8_c00193{bottom:971.707067pt;}
.y7_c00193{bottom:999.387067pt;}
.y4_c00193{bottom:1017.227251pt;}
.y3_c00193{bottom:1032.587243pt;}
.y2_c00193{bottom:1047.867075pt;}
.y1_c00193{bottom:1063.227067pt;}
.h1_c00193{height:47.020937pt;}
.h2_c00193{height:56.156250pt;}
.h3_c00193{height:56.312500pt;}
.h0_c00193{height:1122.666667pt;}
.w1_c00193{width:793.333333pt;}
.w0_c00193{width:793.626667pt;}
.x0_c00193{left:0.000000pt;}
.x4_c00193{left:113.440000pt;}
.x1_c00193{left:577.440000pt;}
.x3_c00193{left:656.400000pt;}
.x2_c00193{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.095703;font-style:normal;font-weight:normal;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_1816c8f7ddd5db370f8532dd.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00194{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.lsa_c00194{letter-spacing:-0.102204px;}
.lsf_c00194{letter-spacing:-0.036000px;}
.lse_c00194{letter-spacing:-0.021600px;}
.lsc_c00194{letter-spacing:-0.014400px;}
.lsd_c00194{letter-spacing:-0.007200px;}
.lsb_c00194{letter-spacing:0.000000px;}
.ls0_c00194{letter-spacing:0.007200px;}
.ls3_c00194{letter-spacing:0.014400px;}
.ls4_c00194{letter-spacing:0.021600px;}
.ls1_c00194{letter-spacing:0.028800px;}
.ls5_c00194{letter-spacing:0.036000px;}
.ls2_c00194{letter-spacing:0.043200px;}
.ls7_c00194{letter-spacing:0.050400px;}
.ls9_c00194{letter-spacing:0.057600px;}
.ls6_c00194{letter-spacing:0.079200px;}
.ls8_c00194{letter-spacing:0.100800px;}
.ls11_c00194{letter-spacing:0.129600px;}
.ls13_c00194{letter-spacing:2.476800px;}
.ls10_c00194{letter-spacing:2.520000px;}
.ls12_c00194{letter-spacing:5.760000px;}
.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;}
}
.ws1_c00194{word-spacing:0.000000px;}
.ws0_c00194{word-spacing:0.192384px;}
._c_c00194{margin-left:-6.163200px;}
._d_c00194{margin-left:-5.054400px;}
._4_c00194{margin-left:-3.268800px;}
._6_c00194{margin-left:-2.246400px;}
._5_c00194{margin-left:-1.022400px;}
._0_c00194{width:1.034064px;}
._3_c00194{width:2.484000px;}
._2_c00194{width:4.838400px;}
._1_c00194{width:6.091200px;}
._7_c00194{width:7.156800px;}
._8_c00194{width:8.179200px;}
._9_c00194{width:9.619200px;}
._b_c00194{width:13.032000px;}
._a_c00194{width:14.378400px;}
.fc1_c00194{color:rgb(0,0,0);}
.fc0_c00194{color:rgb(32,31,30);}
.fs0_c00194{font-size:60.120000px;}
.fs1_c00194{font-size:72.000000px;}
.y0_c00194{bottom:0.000000px;}
.y5_c00194{bottom:57.360450px;}
.y4_c00194{bottom:78.060450px;}
.y23_c00194{bottom:144.930450px;}
.y22_c00194{bottom:183.540450px;}
.y21_c00194{bottom:222.060450px;}
.y20_c00194{bottom:260.580450px;}
.y1f_c00194{bottom:291.720450px;}
.y1e_c00194{bottom:322.770450px;}
.y1d_c00194{bottom:353.820450px;}
.y1c_c00194{bottom:392.250450px;}
.y1b_c00194{bottom:423.390450px;}
.y1a_c00194{bottom:454.440450px;}
.y19_c00194{bottom:485.490450px;}
.y18_c00194{bottom:516.540450px;}
.y17_c00194{bottom:547.590450px;}
.y16_c00194{bottom:578.640450px;}
.y15_c00194{bottom:621.570450px;}
.y14_c00194{bottom:652.710450px;}
.y13_c00194{bottom:683.760450px;}
.y12_c00194{bottom:714.810450px;}
.y11_c00194{bottom:745.860450px;}
.y10_c00194{bottom:788.880450px;}
.yf_c00194{bottom:820.020450px;}
.ye_c00194{bottom:851.070450px;}
.yd_c00194{bottom:882.120450px;}
.yc_c00194{bottom:913.170450px;}
.yb_c00194{bottom:944.220450px;}
.ya_c00194{bottom:987.150450px;}
.y9_c00194{bottom:1018.290450px;}
.y8_c00194{bottom:1049.340450px;}
.y7_c00194{bottom:1080.390450px;}
.y6_c00194{bottom:1111.440450px;}
.y3_c00194{bottom:1132.140450px;}
.y2_c00194{bottom:1165.441023px;}
.y1_c00194{bottom:1196.040600px;}
.h1_c00194{height:52.898555px;}
.h2_c00194{height:63.175781px;}
.h0_c00194{height:1263.000000px;}
.w1_c00194{width:892.500000px;}
.w0_c00194{width:892.830000px;}
.x0_c00194{left:0.000000px;}
.x1_c00194{left:127.620000px;}
.x2_c00194{left:738.450000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.lsa_c00194{letter-spacing:-0.090848pt;}
.lsf_c00194{letter-spacing:-0.032000pt;}
.lse_c00194{letter-spacing:-0.019200pt;}
.lsc_c00194{letter-spacing:-0.012800pt;}
.lsd_c00194{letter-spacing:-0.006400pt;}
.lsb_c00194{letter-spacing:0.000000pt;}
.ls0_c00194{letter-spacing:0.006400pt;}
.ls3_c00194{letter-spacing:0.012800pt;}
.ls4_c00194{letter-spacing:0.019200pt;}
.ls1_c00194{letter-spacing:0.025600pt;}
.ls5_c00194{letter-spacing:0.032000pt;}
.ls2_c00194{letter-spacing:0.038400pt;}
.ls7_c00194{letter-spacing:0.044800pt;}
.ls9_c00194{letter-spacing:0.051200pt;}
.ls6_c00194{letter-spacing:0.070400pt;}
.ls8_c00194{letter-spacing:0.089600pt;}
.ls11_c00194{letter-spacing:0.115200pt;}
.ls13_c00194{letter-spacing:2.201600pt;}
.ls10_c00194{letter-spacing:2.240000pt;}
.ls12_c00194{letter-spacing:5.120000pt;}
.ws1_c00194{word-spacing:0.000000pt;}
.ws0_c00194{word-spacing:0.171008pt;}
._c_c00194{margin-left:-5.478400pt;}
._d_c00194{margin-left:-4.492800pt;}
._4_c00194{margin-left:-2.905600pt;}
._6_c00194{margin-left:-1.996800pt;}
._5_c00194{margin-left:-0.908800pt;}
._0_c00194{width:0.919168pt;}
._3_c00194{width:2.208000pt;}
._2_c00194{width:4.300800pt;}
._1_c00194{width:5.414400pt;}
._7_c00194{width:6.361600pt;}
._8_c00194{width:7.270400pt;}
._9_c00194{width:8.550400pt;}
._b_c00194{width:11.584000pt;}
._a_c00194{width:12.780800pt;}
.fs0_c00194{font-size:53.440000pt;}
.fs1_c00194{font-size:64.000000pt;}
.y0_c00194{bottom:0.000000pt;}
.y5_c00194{bottom:50.987067pt;}
.y4_c00194{bottom:69.387067pt;}
.y23_c00194{bottom:128.827067pt;}
.y22_c00194{bottom:163.147067pt;}
.y21_c00194{bottom:197.387067pt;}
.y20_c00194{bottom:231.627067pt;}
.y1f_c00194{bottom:259.307067pt;}
.y1e_c00194{bottom:286.907067pt;}
.y1d_c00194{bottom:314.507067pt;}
.y1c_c00194{bottom:348.667067pt;}
.y1b_c00194{bottom:376.347067pt;}
.y1a_c00194{bottom:403.947067pt;}
.y19_c00194{bottom:431.547067pt;}
.y18_c00194{bottom:459.147067pt;}
.y17_c00194{bottom:486.747067pt;}
.y16_c00194{bottom:514.347067pt;}
.y15_c00194{bottom:552.507067pt;}
.y14_c00194{bottom:580.187067pt;}
.y13_c00194{bottom:607.787067pt;}
.y12_c00194{bottom:635.387067pt;}
.y11_c00194{bottom:662.987067pt;}
.y10_c00194{bottom:701.227067pt;}
.yf_c00194{bottom:728.907067pt;}
.ye_c00194{bottom:756.507067pt;}
.yd_c00194{bottom:784.107067pt;}
.yc_c00194{bottom:811.707067pt;}
.yb_c00194{bottom:839.307067pt;}
.ya_c00194{bottom:877.467067pt;}
.y9_c00194{bottom:905.147067pt;}
.y8_c00194{bottom:932.747067pt;}
.y7_c00194{bottom:960.347067pt;}
.y6_c00194{bottom:987.947067pt;}
.y3_c00194{bottom:1006.347067pt;}
.y2_c00194{bottom:1035.947576pt;}
.y1_c00194{bottom:1063.147200pt;}
.h1_c00194{height:47.020937pt;}
.h2_c00194{height:56.156250pt;}
.h0_c00194{height:1122.666667pt;}
.w1_c00194{width:793.333333pt;}
.w0_c00194{width:793.626667pt;}
.x0_c00194{left:0.000000pt;}
.x1_c00194{left:113.440000pt;}
.x2_c00194{left:656.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_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_fd73f15f9f901d73f7b27342.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.095703;font-style:normal;font-weight:normal;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_8e916a73c371af5c7423b8fb.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls12_c00195{letter-spacing:-0.064800px;}
.ls14_c00195{letter-spacing:-0.050400px;}
.lsc_c00195{letter-spacing:-0.048096px;}
.ls13_c00195{letter-spacing:-0.036000px;}
.ls10_c00195{letter-spacing:-0.021600px;}
.lse_c00195{letter-spacing:-0.014400px;}
.lsf_c00195{letter-spacing:-0.007200px;}
.lsd_c00195{letter-spacing:0.000000px;}
.ls0_c00195{letter-spacing:0.007200px;}
.ls8_c00195{letter-spacing:0.014400px;}
.ls7_c00195{letter-spacing:0.021600px;}
.ls1_c00195{letter-spacing:0.028800px;}
.ls4_c00195{letter-spacing:0.036000px;}
.ls6_c00195{letter-spacing:0.043200px;}
.ls3_c00195{letter-spacing:0.050400px;}
.ls2_c00195{letter-spacing:0.057600px;}
.ls9_c00195{letter-spacing:0.064800px;}
.ls5_c00195{letter-spacing:0.072000px;}
.lsa_c00195{letter-spacing:0.079200px;}
.lsb_c00195{letter-spacing:0.086400px;}
.ls11_c00195{letter-spacing:15.480000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00195{word-spacing:0.000000px;}
.ws2_c00195{word-spacing:0.014400px;}
.ws0_c00195{word-spacing:0.138276px;}
.ws3_c00195{word-spacing:5.760000px;}
.ws6_c00195{word-spacing:8.532000px;}
.ws5_c00195{word-spacing:8.618400px;}
.ws7_c00195{word-spacing:8.640000px;}
.ws8_c00195{word-spacing:9.352800px;}
.ws9_c00195{word-spacing:9.360000px;}
.ws4_c00195{word-spacing:21.528000px;}
._a_c00195{margin-left:-16.977600px;}
._9_c00195{margin-left:-15.393600px;}
._11_c00195{margin-left:-4.608000px;}
._e_c00195{margin-left:-3.506400px;}
._d_c00195{margin-left:-2.469600px;}
._3_c00195{margin-left:-1.000800px;}
._4_c00195{width:1.800000px;}
._5_c00195{width:2.808000px;}
._8_c00195{width:4.017600px;}
._6_c00195{width:5.731200px;}
._c_c00195{width:6.897600px;}
._1_c00195{width:9.367200px;}
._0_c00195{width:10.447200px;}
._10_c00195{width:12.225600px;}
._f_c00195{width:13.320000px;}
._7_c00195{width:15.127200px;}
._b_c00195{width:16.344000px;}
._2_c00195{width:20.872800px;}
.fc0_c00195{color:rgb(0,0,0);}
.fs0_c00195{font-size:60.120000px;}
.fs1_c00195{font-size:72.000000px;}
.y0_c00195{bottom:0.000000px;}
.y6_c00195{bottom:57.360450px;}
.y5_c00195{bottom:78.060450px;}
.y26_c00195{bottom:119.280450px;}
.y25_c00195{bottom:150.330450px;}
.y24_c00195{bottom:193.260450px;}
.y23_c00195{bottom:224.400450px;}
.y22_c00195{bottom:255.450450px;}
.y21_c00195{bottom:286.500450px;}
.y20_c00195{bottom:317.550450px;}
.y1f_c00195{bottom:348.600450px;}
.y1e_c00195{bottom:391.620450px;}
.y1d_c00195{bottom:422.760450px;}
.y1c_c00195{bottom:453.810450px;}
.y1b_c00195{bottom:496.740450px;}
.y1a_c00195{bottom:527.880450px;}
.y19_c00195{bottom:558.930450px;}
.y18_c00195{bottom:589.980450px;}
.y17_c00195{bottom:632.910450px;}
.y16_c00195{bottom:663.960450px;}
.y15_c00195{bottom:695.010450px;}
.y14_c00195{bottom:726.060450px;}
.y13_c00195{bottom:757.110450px;}
.y12_c00195{bottom:788.250450px;}
.y11_c00195{bottom:819.300450px;}
.y10_c00195{bottom:850.350450px;}
.yf_c00195{bottom:881.400450px;}
.ye_c00195{bottom:912.450450px;}
.yd_c00195{bottom:943.500450px;}
.yc_c00195{bottom:974.550450px;}
.yb_c00195{bottom:1005.600450px;}
.ya_c00195{bottom:1036.650450px;}
.y9_c00195{bottom:1067.700450px;}
.y8_c00195{bottom:1101.900450px;}
.y7_c00195{bottom:1124.130450px;}
.y4_c00195{bottom:1144.380657px;}
.y3_c00195{bottom:1161.660648px;}
.y2_c00195{bottom:1178.850459px;}
.y1_c00195{bottom:1196.130450px;}
.h1_c00195{height:52.898555px;}
.h2_c00195{height:63.175781px;}
.h3_c00195{height:63.351562px;}
.h0_c00195{height:1263.000000px;}
.w1_c00195{width:892.500000px;}
.w0_c00195{width:892.830000px;}
.x0_c00195{left:0.000000px;}
.x4_c00195{left:127.620000px;}
.x1_c00195{left:649.620000px;}
.x3_c00195{left:738.450000px;}
.x2_c00195{left:765.450198px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls12_c00195{letter-spacing:-0.057600pt;}
.ls14_c00195{letter-spacing:-0.044800pt;}
.lsc_c00195{letter-spacing:-0.042752pt;}
.ls13_c00195{letter-spacing:-0.032000pt;}
.ls10_c00195{letter-spacing:-0.019200pt;}
.lse_c00195{letter-spacing:-0.012800pt;}
.lsf_c00195{letter-spacing:-0.006400pt;}
.lsd_c00195{letter-spacing:0.000000pt;}
.ls0_c00195{letter-spacing:0.006400pt;}
.ls8_c00195{letter-spacing:0.012800pt;}
.ls7_c00195{letter-spacing:0.019200pt;}
.ls1_c00195{letter-spacing:0.025600pt;}
.ls4_c00195{letter-spacing:0.032000pt;}
.ls6_c00195{letter-spacing:0.038400pt;}
.ls3_c00195{letter-spacing:0.044800pt;}
.ls2_c00195{letter-spacing:0.051200pt;}
.ls9_c00195{letter-spacing:0.057600pt;}
.ls5_c00195{letter-spacing:0.064000pt;}
.lsa_c00195{letter-spacing:0.070400pt;}
.lsb_c00195{letter-spacing:0.076800pt;}
.ls11_c00195{letter-spacing:13.760000pt;}
.ws1_c00195{word-spacing:0.000000pt;}
.ws2_c00195{word-spacing:0.012800pt;}
.ws0_c00195{word-spacing:0.122912pt;}
.ws3_c00195{word-spacing:5.120000pt;}
.ws6_c00195{word-spacing:7.584000pt;}
.ws5_c00195{word-spacing:7.660800pt;}
.ws7_c00195{word-spacing:7.680000pt;}
.ws8_c00195{word-spacing:8.313600pt;}
.ws9_c00195{word-spacing:8.320000pt;}
.ws4_c00195{word-spacing:19.136000pt;}
._a_c00195{margin-left:-15.091200pt;}
._9_c00195{margin-left:-13.683200pt;}
._11_c00195{margin-left:-4.096000pt;}
._e_c00195{margin-left:-3.116800pt;}
._d_c00195{margin-left:-2.195200pt;}
._3_c00195{margin-left:-0.889600pt;}
._4_c00195{width:1.600000pt;}
._5_c00195{width:2.496000pt;}
._8_c00195{width:3.571200pt;}
._6_c00195{width:5.094400pt;}
._c_c00195{width:6.131200pt;}
._1_c00195{width:8.326400pt;}
._0_c00195{width:9.286400pt;}
._10_c00195{width:10.867200pt;}
._f_c00195{width:11.840000pt;}
._7_c00195{width:13.446400pt;}
._b_c00195{width:14.528000pt;}
._2_c00195{width:18.553600pt;}
.fs0_c00195{font-size:53.440000pt;}
.fs1_c00195{font-size:64.000000pt;}
.y0_c00195{bottom:0.000000pt;}
.y6_c00195{bottom:50.987067pt;}
.y5_c00195{bottom:69.387067pt;}
.y26_c00195{bottom:106.027067pt;}
.y25_c00195{bottom:133.627067pt;}
.y24_c00195{bottom:171.787067pt;}
.y23_c00195{bottom:199.467067pt;}
.y22_c00195{bottom:227.067067pt;}
.y21_c00195{bottom:254.667067pt;}
.y20_c00195{bottom:282.267067pt;}
.y1f_c00195{bottom:309.867067pt;}
.y1e_c00195{bottom:348.107067pt;}
.y1d_c00195{bottom:375.787067pt;}
.y1c_c00195{bottom:403.387067pt;}
.y1b_c00195{bottom:441.547067pt;}
.y1a_c00195{bottom:469.227067pt;}
.y19_c00195{bottom:496.827067pt;}
.y18_c00195{bottom:524.427067pt;}
.y17_c00195{bottom:562.587067pt;}
.y16_c00195{bottom:590.187067pt;}
.y15_c00195{bottom:617.787067pt;}
.y14_c00195{bottom:645.387067pt;}
.y13_c00195{bottom:672.987067pt;}
.y12_c00195{bottom:700.667067pt;}
.y11_c00195{bottom:728.267067pt;}
.y10_c00195{bottom:755.867067pt;}
.yf_c00195{bottom:783.467067pt;}
.ye_c00195{bottom:811.067067pt;}
.yd_c00195{bottom:838.667067pt;}
.yc_c00195{bottom:866.267067pt;}
.yb_c00195{bottom:893.867067pt;}
.ya_c00195{bottom:921.467067pt;}
.y9_c00195{bottom:949.067067pt;}
.y8_c00195{bottom:979.467067pt;}
.y7_c00195{bottom:999.227067pt;}
.y4_c00195{bottom:1017.227251pt;}
.y3_c00195{bottom:1032.587243pt;}
.y2_c00195{bottom:1047.867075pt;}
.y1_c00195{bottom:1063.227067pt;}
.h1_c00195{height:47.020937pt;}
.h2_c00195{height:56.156250pt;}
.h3_c00195{height:56.312500pt;}
.h0_c00195{height:1122.666667pt;}
.w1_c00195{width:793.333333pt;}
.w0_c00195{width:793.626667pt;}
.x0_c00195{left:0.000000pt;}
.x4_c00195{left:113.440000pt;}
.x1_c00195{left:577.440000pt;}
.x3_c00195{left:656.400000pt;}
.x2_c00195{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6dee7749258325e735ddf681.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.095703;font-style:normal;font-weight:normal;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_223edd13784d7ca523720415.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00196{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls15_c00196{letter-spacing:-3.600000px;}
.ls12_c00196{letter-spacing:-0.360000px;}
.ls11_c00196{letter-spacing:-0.273600px;}
.lsb_c00196{letter-spacing:-0.102204px;}
.ls13_c00196{letter-spacing:-0.057600px;}
.lsf_c00196{letter-spacing:-0.043200px;}
.ls10_c00196{letter-spacing:-0.036000px;}
.ls14_c00196{letter-spacing:-0.028800px;}
.lse_c00196{letter-spacing:-0.021600px;}
.lsd_c00196{letter-spacing:-0.007200px;}
.lsc_c00196{letter-spacing:0.000000px;}
.ls1_c00196{letter-spacing:0.007200px;}
.ls4_c00196{letter-spacing:0.014400px;}
.ls3_c00196{letter-spacing:0.021600px;}
.ls0_c00196{letter-spacing:0.028800px;}
.ls5_c00196{letter-spacing:0.036000px;}
.ls9_c00196{letter-spacing:0.043200px;}
.ls6_c00196{letter-spacing:0.050400px;}
.ls7_c00196{letter-spacing:0.057600px;}
.lsa_c00196{letter-spacing:0.064800px;}
.ls8_c00196{letter-spacing:0.079200px;}
.ls2_c00196{letter-spacing:0.086400px;}
.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;}
}
.ws1_c00196{word-spacing:0.000000px;}
.ws0_c00196{word-spacing:0.192384px;}
._7_c00196{margin-left:-4.852800px;}
._6_c00196{margin-left:-3.628800px;}
._c_c00196{margin-left:-2.520000px;}
._1_c00196{margin-left:-1.108800px;}
._0_c00196{width:1.034064px;}
._5_c00196{width:2.145600px;}
._2_c00196{width:3.571200px;}
._e_c00196{width:4.615200px;}
._3_c00196{width:5.623200px;}
._4_c00196{width:6.705936px;}
._8_c00196{width:8.236800px;}
._9_c00196{width:9.479664px;}
._a_c00196{width:10.490400px;}
._b_c00196{width:12.088800px;}
._d_c00196{width:13.298400px;}
.fc1_c00196{color:rgb(0,0,0);}
.fc0_c00196{color:rgb(32,31,30);}
.fs0_c00196{font-size:60.120000px;}
.fs1_c00196{font-size:72.000000px;}
.y0_c00196{bottom:0.000000px;}
.y5_c00196{bottom:57.360450px;}
.y4_c00196{bottom:78.060450px;}
.y1e_c00196{bottom:346.710450px;}
.y1d_c00196{bottom:377.850450px;}
.y1c_c00196{bottom:408.900450px;}
.y1b_c00196{bottom:439.950450px;}
.y1a_c00196{bottom:471.000450px;}
.y19_c00196{bottom:502.050450px;}
.y18_c00196{bottom:544.980450px;}
.y17_c00196{bottom:576.120450px;}
.y16_c00196{bottom:607.170450px;}
.y15_c00196{bottom:638.220450px;}
.y14_c00196{bottom:669.270450px;}
.y13_c00196{bottom:700.320450px;}
.y12_c00196{bottom:731.370450px;}
.y11_c00196{bottom:762.420450px;}
.y10_c00196{bottom:800.850450px;}
.yf_c00196{bottom:831.990450px;}
.ye_c00196{bottom:863.040450px;}
.yd_c00196{bottom:894.090450px;}
.yc_c00196{bottom:925.140450px;}
.yb_c00196{bottom:956.190450px;}
.ya_c00196{bottom:987.240450px;}
.y9_c00196{bottom:1018.290450px;}
.y8_c00196{bottom:1049.340450px;}
.y7_c00196{bottom:1080.390450px;}
.y6_c00196{bottom:1111.440450px;}
.y3_c00196{bottom:1132.140450px;}
.y2_c00196{bottom:1165.441023px;}
.y1_c00196{bottom:1196.040600px;}
.h1_c00196{height:52.898555px;}
.h2_c00196{height:63.175781px;}
.h3_c00196{height:63.351562px;}
.h0_c00196{height:1263.000000px;}
.w1_c00196{width:892.500000px;}
.w0_c00196{width:892.830000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:127.620000px;}
.x2_c00196{left:738.450000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls15_c00196{letter-spacing:-3.200000pt;}
.ls12_c00196{letter-spacing:-0.320000pt;}
.ls11_c00196{letter-spacing:-0.243200pt;}
.lsb_c00196{letter-spacing:-0.090848pt;}
.ls13_c00196{letter-spacing:-0.051200pt;}
.lsf_c00196{letter-spacing:-0.038400pt;}
.ls10_c00196{letter-spacing:-0.032000pt;}
.ls14_c00196{letter-spacing:-0.025600pt;}
.lse_c00196{letter-spacing:-0.019200pt;}
.lsd_c00196{letter-spacing:-0.006400pt;}
.lsc_c00196{letter-spacing:0.000000pt;}
.ls1_c00196{letter-spacing:0.006400pt;}
.ls4_c00196{letter-spacing:0.012800pt;}
.ls3_c00196{letter-spacing:0.019200pt;}
.ls0_c00196{letter-spacing:0.025600pt;}
.ls5_c00196{letter-spacing:0.032000pt;}
.ls9_c00196{letter-spacing:0.038400pt;}
.ls6_c00196{letter-spacing:0.044800pt;}
.ls7_c00196{letter-spacing:0.051200pt;}
.lsa_c00196{letter-spacing:0.057600pt;}
.ls8_c00196{letter-spacing:0.070400pt;}
.ls2_c00196{letter-spacing:0.076800pt;}
.ws1_c00196{word-spacing:0.000000pt;}
.ws0_c00196{word-spacing:0.171008pt;}
._7_c00196{margin-left:-4.313600pt;}
._6_c00196{margin-left:-3.225600pt;}
._c_c00196{margin-left:-2.240000pt;}
._1_c00196{margin-left:-0.985600pt;}
._0_c00196{width:0.919168pt;}
._5_c00196{width:1.907200pt;}
._2_c00196{width:3.174400pt;}
._e_c00196{width:4.102400pt;}
._3_c00196{width:4.998400pt;}
._4_c00196{width:5.960832pt;}
._8_c00196{width:7.321600pt;}
._9_c00196{width:8.426368pt;}
._a_c00196{width:9.324800pt;}
._b_c00196{width:10.745600pt;}
._d_c00196{width:11.820800pt;}
.fs0_c00196{font-size:53.440000pt;}
.fs1_c00196{font-size:64.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y5_c00196{bottom:50.987067pt;}
.y4_c00196{bottom:69.387067pt;}
.y1e_c00196{bottom:308.187067pt;}
.y1d_c00196{bottom:335.867067pt;}
.y1c_c00196{bottom:363.467067pt;}
.y1b_c00196{bottom:391.067067pt;}
.y1a_c00196{bottom:418.667067pt;}
.y19_c00196{bottom:446.267067pt;}
.y18_c00196{bottom:484.427067pt;}
.y17_c00196{bottom:512.107067pt;}
.y16_c00196{bottom:539.707067pt;}
.y15_c00196{bottom:567.307067pt;}
.y14_c00196{bottom:594.907067pt;}
.y13_c00196{bottom:622.507067pt;}
.y12_c00196{bottom:650.107067pt;}
.y11_c00196{bottom:677.707067pt;}
.y10_c00196{bottom:711.867067pt;}
.yf_c00196{bottom:739.547067pt;}
.ye_c00196{bottom:767.147067pt;}
.yd_c00196{bottom:794.747067pt;}
.yc_c00196{bottom:822.347067pt;}
.yb_c00196{bottom:849.947067pt;}
.ya_c00196{bottom:877.547067pt;}
.y9_c00196{bottom:905.147067pt;}
.y8_c00196{bottom:932.747067pt;}
.y7_c00196{bottom:960.347067pt;}
.y6_c00196{bottom:987.947067pt;}
.y3_c00196{bottom:1006.347067pt;}
.y2_c00196{bottom:1035.947576pt;}
.y1_c00196{bottom:1063.147200pt;}
.h1_c00196{height:47.020937pt;}
.h2_c00196{height:56.156250pt;}
.h3_c00196{height:56.312500pt;}
.h0_c00196{height:1122.666667pt;}
.w1_c00196{width:793.333333pt;}
.w0_c00196{width:793.626667pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:113.440000pt;}
.x2_c00196{left:656.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_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_7f6b5d1d96f3712d46e79933.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.095703;font-style:normal;font-weight:normal;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_2cd91f74a604eef8fcec61b9.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.093262;font-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_c00197{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0_c00197{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls14_c00197{letter-spacing:-0.042084px;}
.ls16_c00197{letter-spacing:-0.036000px;}
.ls18_c00197{letter-spacing:-0.021600px;}
.ls17_c00197{letter-spacing:-0.014400px;}
.ls19_c00197{letter-spacing:-0.005400px;}
.ls15_c00197{letter-spacing:0.000000px;}
.lsc_c00197{letter-spacing:0.007200px;}
.ls12_c00197{letter-spacing:0.010800px;}
.ls0_c00197{letter-spacing:0.014400px;}
.ls4_c00197{letter-spacing:0.021600px;}
.ls10_c00197{letter-spacing:0.027000px;}
.ls2_c00197{letter-spacing:0.028800px;}
.ls1_c00197{letter-spacing:0.036000px;}
.ls11_c00197{letter-spacing:0.037800px;}
.ls3_c00197{letter-spacing:0.043200px;}
.lsf_c00197{letter-spacing:0.048600px;}
.ls6_c00197{letter-spacing:0.050400px;}
.ls13_c00197{letter-spacing:0.054000px;}
.ls9_c00197{letter-spacing:0.057600px;}
.lsd_c00197{letter-spacing:0.064800px;}
.lsb_c00197{letter-spacing:0.072000px;}
.ls5_c00197{letter-spacing:0.079200px;}
.lsa_c00197{letter-spacing:0.086400px;}
.ls7_c00197{letter-spacing:0.093600px;}
.lse_c00197{letter-spacing:0.100800px;}
.ls8_c00197{letter-spacing:0.122400px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00197{word-spacing:-13.548600px;}
.ws8_c00197{word-spacing:-0.545400px;}
.ws6_c00197{word-spacing:-0.199800px;}
.ws2_c00197{word-spacing:0.000000px;}
.ws9_c00197{word-spacing:0.129600px;}
.ws1_c00197{word-spacing:0.138276px;}
.ws7_c00197{word-spacing:0.145800px;}
.ws5_c00197{word-spacing:6.642000px;}
.ws3_c00197{word-spacing:11.124000px;}
.ws4_c00197{word-spacing:35.845200px;}
._0_c00197{margin-left:-3.247200px;}
._1_c00197{margin-left:-1.432800px;}
._3_c00197{width:1.310400px;}
._4_c00197{width:2.383200px;}
._5_c00197{width:4.176000px;}
._b_c00197{width:7.156800px;}
._e_c00197{width:8.582400px;}
._c_c00197{width:10.670400px;}
._d_c00197{width:11.858400px;}
._f_c00197{width:14.860800px;}
._9_c00197{width:16.524000px;}
._6_c00197{width:19.404000px;}
._7_c00197{width:20.865600px;}
._8_c00197{width:21.873600px;}
._a_c00197{width:23.025600px;}
._2_c00197{width:24.458400px;}
.fc1_c00197{color:rgb(68,84,106);}
.fc0_c00197{color:rgb(0,0,0);}
.fs2_c00197{font-size:54.000000px;}
.fs0_c00197{font-size:60.120000px;}
.fs1_c00197{font-size:72.000000px;}
.y0_c00197{bottom:0.000000px;}
.y27_c00197{bottom:3.240450px;}
.y6_c00197{bottom:57.360450px;}
.y5_c00197{bottom:78.060450px;}
.y25_c00197{bottom:155.370450px;}
.y24_c00197{bottom:193.890450px;}
.y23_c00197{bottom:232.410450px;}
.y22_c00197{bottom:263.550450px;}
.y21_c00197{bottom:294.600450px;}
.y20_c00197{bottom:325.650450px;}
.y1f_c00197{bottom:356.700450px;}
.y1e_c00197{bottom:387.750450px;}
.y1d_c00197{bottom:418.800450px;}
.y1c_c00197{bottom:457.230450px;}
.y1b_c00197{bottom:488.370450px;}
.y1a_c00197{bottom:519.420450px;}
.y19_c00197{bottom:550.470450px;}
.y18_c00197{bottom:581.520450px;}
.y17_c00197{bottom:612.570450px;}
.y16_c00197{bottom:643.620450px;}
.y15_c00197{bottom:682.050450px;}
.y14_c00197{bottom:713.190450px;}
.y2e_c00197{bottom:716.430900px;}
.y2d_c00197{bottom:732.000450px;}
.y13_c00197{bottom:744.240450px;}
.y2c_c00197{bottom:747.480900px;}
.y2a_c00197{bottom:759.810000px;}
.y2b_c00197{bottom:763.050450px;}
.y12_c00197{bottom:775.290450px;}
.y11_c00197{bottom:806.340450px;}
.y10_c00197{bottom:837.390450px;}
.yf_c00197{bottom:875.910450px;}
.ye_c00197{bottom:907.050450px;}
.yd_c00197{bottom:938.100450px;}
.yc_c00197{bottom:969.150450px;}
.yb_c00197{bottom:1000.200450px;}
.ya_c00197{bottom:1031.160450px;}
.y9_c00197{bottom:1062.210450px;}
.y8_c00197{bottom:1093.260450px;}
.y29_c00197{bottom:1111.530000px;}
.y26_c00197{bottom:1123.770000px;}
.y7_c00197{bottom:1124.310450px;}
.y28_c00197{bottom:1127.010450px;}
.y4_c00197{bottom:1144.380657px;}
.y3_c00197{bottom:1161.660648px;}
.y2_c00197{bottom:1178.850459px;}
.y1_c00197{bottom:1196.130450px;}
.h4_c00197{height:15.300000px;}
.h5_c00197{height:47.513672px;}
.h1_c00197{height:52.898555px;}
.h2_c00197{height:63.175781px;}
.h3_c00197{height:63.351562px;}
.h6_c00197{height:63.353363px;}
.h0_c00197{height:1263.000000px;}
.w3_c00197{width:47.070000px;}
.w4_c00197{width:175.410000px;}
.w2_c00197{width:217.080000px;}
.w1_c00197{width:892.500000px;}
.w0_c00197{width:892.830000px;}
.x0_c00197{left:0.000000px;}
.x4_c00197{left:127.619324px;}
.x7_c00197{left:132.120000px;}
.x8_c00197{left:135.900000px;}
.x9_c00197{left:174.330000px;}
.xa_c00197{left:182.160000px;}
.x5_c00197{left:359.370054px;}
.x6_c00197{left:363.870016px;}
.x1_c00197{left:649.620000px;}
.x3_c00197{left:738.450000px;}
.x2_c00197{left:765.449030px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls14_c00197{letter-spacing:-0.037408pt;}
.ls16_c00197{letter-spacing:-0.032000pt;}
.ls18_c00197{letter-spacing:-0.019200pt;}
.ls17_c00197{letter-spacing:-0.012800pt;}
.ls19_c00197{letter-spacing:-0.004800pt;}
.ls15_c00197{letter-spacing:0.000000pt;}
.lsc_c00197{letter-spacing:0.006400pt;}
.ls12_c00197{letter-spacing:0.009600pt;}
.ls0_c00197{letter-spacing:0.012800pt;}
.ls4_c00197{letter-spacing:0.019200pt;}
.ls10_c00197{letter-spacing:0.024000pt;}
.ls2_c00197{letter-spacing:0.025600pt;}
.ls1_c00197{letter-spacing:0.032000pt;}
.ls11_c00197{letter-spacing:0.033600pt;}
.ls3_c00197{letter-spacing:0.038400pt;}
.lsf_c00197{letter-spacing:0.043200pt;}
.ls6_c00197{letter-spacing:0.044800pt;}
.ls13_c00197{letter-spacing:0.048000pt;}
.ls9_c00197{letter-spacing:0.051200pt;}
.lsd_c00197{letter-spacing:0.057600pt;}
.lsb_c00197{letter-spacing:0.064000pt;}
.ls5_c00197{letter-spacing:0.070400pt;}
.lsa_c00197{letter-spacing:0.076800pt;}
.ls7_c00197{letter-spacing:0.083200pt;}
.lse_c00197{letter-spacing:0.089600pt;}
.ls8_c00197{letter-spacing:0.108800pt;}
.ws0_c00197{word-spacing:-12.043200pt;}
.ws8_c00197{word-spacing:-0.484800pt;}
.ws6_c00197{word-spacing:-0.177600pt;}
.ws2_c00197{word-spacing:0.000000pt;}
.ws9_c00197{word-spacing:0.115200pt;}
.ws1_c00197{word-spacing:0.122912pt;}
.ws7_c00197{word-spacing:0.129600pt;}
.ws5_c00197{word-spacing:5.904000pt;}
.ws3_c00197{word-spacing:9.888000pt;}
.ws4_c00197{word-spacing:31.862400pt;}
._0_c00197{margin-left:-2.886400pt;}
._1_c00197{margin-left:-1.273600pt;}
._3_c00197{width:1.164800pt;}
._4_c00197{width:2.118400pt;}
._5_c00197{width:3.712000pt;}
._b_c00197{width:6.361600pt;}
._e_c00197{width:7.628800pt;}
._c_c00197{width:9.484800pt;}
._d_c00197{width:10.540800pt;}
._f_c00197{width:13.209600pt;}
._9_c00197{width:14.688000pt;}
._6_c00197{width:17.248000pt;}
._7_c00197{width:18.547200pt;}
._8_c00197{width:19.443200pt;}
._a_c00197{width:20.467200pt;}
._2_c00197{width:21.740800pt;}
.fs2_c00197{font-size:48.000000pt;}
.fs0_c00197{font-size:53.440000pt;}
.fs1_c00197{font-size:64.000000pt;}
.y0_c00197{bottom:0.000000pt;}
.y27_c00197{bottom:2.880400pt;}
.y6_c00197{bottom:50.987067pt;}
.y5_c00197{bottom:69.387067pt;}
.y25_c00197{bottom:138.107067pt;}
.y24_c00197{bottom:172.347067pt;}
.y23_c00197{bottom:206.587067pt;}
.y22_c00197{bottom:234.267067pt;}
.y21_c00197{bottom:261.867067pt;}
.y20_c00197{bottom:289.467067pt;}
.y1f_c00197{bottom:317.067067pt;}
.y1e_c00197{bottom:344.667067pt;}
.y1d_c00197{bottom:372.267067pt;}
.y1c_c00197{bottom:406.427067pt;}
.y1b_c00197{bottom:434.107067pt;}
.y1a_c00197{bottom:461.707067pt;}
.y19_c00197{bottom:489.307067pt;}
.y18_c00197{bottom:516.907067pt;}
.y17_c00197{bottom:544.507067pt;}
.y16_c00197{bottom:572.107067pt;}
.y15_c00197{bottom:606.267067pt;}
.y14_c00197{bottom:633.947067pt;}
.y2e_c00197{bottom:636.827467pt;}
.y2d_c00197{bottom:650.667067pt;}
.y13_c00197{bottom:661.547067pt;}
.y2c_c00197{bottom:664.427467pt;}
.y2a_c00197{bottom:675.386667pt;}
.y2b_c00197{bottom:678.267067pt;}
.y12_c00197{bottom:689.147067pt;}
.y11_c00197{bottom:716.747067pt;}
.y10_c00197{bottom:744.347067pt;}
.yf_c00197{bottom:778.587067pt;}
.ye_c00197{bottom:806.267067pt;}
.yd_c00197{bottom:833.867067pt;}
.yc_c00197{bottom:861.467067pt;}
.yb_c00197{bottom:889.067067pt;}
.ya_c00197{bottom:916.587067pt;}
.y9_c00197{bottom:944.187067pt;}
.y8_c00197{bottom:971.787067pt;}
.y29_c00197{bottom:988.026667pt;}
.y26_c00197{bottom:998.906667pt;}
.y7_c00197{bottom:999.387067pt;}
.y28_c00197{bottom:1001.787067pt;}
.y4_c00197{bottom:1017.227251pt;}
.y3_c00197{bottom:1032.587243pt;}
.y2_c00197{bottom:1047.867075pt;}
.y1_c00197{bottom:1063.227067pt;}
.h4_c00197{height:13.600000pt;}
.h5_c00197{height:42.234375pt;}
.h1_c00197{height:47.020937pt;}
.h2_c00197{height:56.156250pt;}
.h3_c00197{height:56.312500pt;}
.h6_c00197{height:56.314100pt;}
.h0_c00197{height:1122.666667pt;}
.w3_c00197{width:41.840000pt;}
.w4_c00197{width:155.920000pt;}
.w2_c00197{width:192.960000pt;}
.w1_c00197{width:793.333333pt;}
.w0_c00197{width:793.626667pt;}
.x0_c00197{left:0.000000pt;}
.x4_c00197{left:113.439399pt;}
.x7_c00197{left:117.440000pt;}
.x8_c00197{left:120.800000pt;}
.x9_c00197{left:154.960000pt;}
.xa_c00197{left:161.920000pt;}
.x5_c00197{left:319.440048pt;}
.x6_c00197{left:323.440014pt;}
.x1_c00197{left:577.440000pt;}
.x3_c00197{left:656.400000pt;}
.x2_c00197{left:680.399138pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5de9949a22d4accfbe50544e.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.095703;font-style:normal;font-weight:normal;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_02f0fcd63a2c39c2b17380b0.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00198{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.lsd_c00198{letter-spacing:-0.102204px;}
.ls10_c00198{letter-spacing:-0.057600px;}
.lsf_c00198{letter-spacing:-0.043200px;}
.ls13_c00198{letter-spacing:-0.014400px;}
.ls11_c00198{letter-spacing:-0.007200px;}
.lse_c00198{letter-spacing:0.000000px;}
.ls7_c00198{letter-spacing:0.007200px;}
.ls0_c00198{letter-spacing:0.014400px;}
.lsc_c00198{letter-spacing:0.021600px;}
.ls6_c00198{letter-spacing:0.028800px;}
.ls2_c00198{letter-spacing:0.036000px;}
.ls3_c00198{letter-spacing:0.043200px;}
.ls4_c00198{letter-spacing:0.050400px;}
.ls9_c00198{letter-spacing:0.057600px;}
.ls1_c00198{letter-spacing:0.064800px;}
.ls8_c00198{letter-spacing:0.072000px;}
.ls12_c00198{letter-spacing:0.079200px;}
.ls5_c00198{letter-spacing:0.086400px;}
.lsa_c00198{letter-spacing:0.100800px;}
.lsb_c00198{letter-spacing:3.240000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00198{word-spacing:-18.000000px;}
.wsa_c00198{word-spacing:-2.527200px;}
.wsb_c00198{word-spacing:-2.196000px;}
.ws5_c00198{word-spacing:-0.360000px;}
.ws9_c00198{word-spacing:-0.072000px;}
.ws2_c00198{word-spacing:0.000000px;}
.ws3_c00198{word-spacing:0.158400px;}
.ws1_c00198{word-spacing:0.192384px;}
.ws4_c00198{word-spacing:2.455200px;}
.ws6_c00198{word-spacing:7.495200px;}
.ws7_c00198{word-spacing:7.538400px;}
.ws8_c00198{word-spacing:25.120800px;}
._5_c00198{margin-left:-4.291200px;}
._6_c00198{margin-left:-3.182400px;}
._b_c00198{margin-left:-2.174400px;}
._2_c00198{margin-left:-1.015200px;}
._0_c00198{width:1.034064px;}
._1_c00198{width:2.476800px;}
._3_c00198{width:4.284000px;}
._a_c00198{width:5.342400px;}
._9_c00198{width:6.343200px;}
._c_c00198{width:7.524000px;}
._4_c00198{width:9.309600px;}
._7_c00198{width:41.889600px;}
._8_c00198{width:43.041600px;}
._d_c00198{width:44.798400px;}
.fc1_c00198{color:rgb(0,0,0);}
.fc0_c00198{color:rgb(32,31,30);}
.fs0_c00198{font-size:60.120000px;}
.fs1_c00198{font-size:72.000000px;}
.y0_c00198{bottom:0.000000px;}
.y5_c00198{bottom:57.360450px;}
.y4_c00198{bottom:78.060450px;}
.y25_c00198{bottom:115.410450px;}
.y24_c00198{bottom:146.370450px;}
.y23_c00198{bottom:177.420450px;}
.y22_c00198{bottom:208.470450px;}
.y21_c00198{bottom:251.490450px;}
.y20_c00198{bottom:282.630450px;}
.y1f_c00198{bottom:313.680450px;}
.y1e_c00198{bottom:356.610450px;}
.y1d_c00198{bottom:387.660450px;}
.y1c_c00198{bottom:418.800450px;}
.y1b_c00198{bottom:457.230450px;}
.y1a_c00198{bottom:488.370450px;}
.y19_c00198{bottom:519.420450px;}
.y18_c00198{bottom:550.470450px;}
.y17_c00198{bottom:581.520450px;}
.y16_c00198{bottom:612.570450px;}
.y15_c00198{bottom:643.620450px;}
.y14_c00198{bottom:674.670450px;}
.y13_c00198{bottom:705.720450px;}
.y12_c00198{bottom:736.770450px;}
.y11_c00198{bottom:767.820450px;}
.y10_c00198{bottom:798.870450px;}
.yf_c00198{bottom:829.920450px;}
.ye_c00198{bottom:860.970450px;}
.yd_c00198{bottom:899.400450px;}
.yc_c00198{bottom:930.540450px;}
.yb_c00198{bottom:961.590450px;}
.ya_c00198{bottom:992.640450px;}
.y9_c00198{bottom:1023.690450px;}
.y8_c00198{bottom:1054.740450px;}
.y7_c00198{bottom:1089.030450px;}
.y6_c00198{bottom:1111.260450px;}
.y3_c00198{bottom:1132.140450px;}
.y2_c00198{bottom:1165.441023px;}
.y1_c00198{bottom:1196.040600px;}
.h1_c00198{height:52.898555px;}
.h2_c00198{height:63.175781px;}
.h3_c00198{height:63.351562px;}
.h0_c00198{height:1263.000000px;}
.w1_c00198{width:892.500000px;}
.w0_c00198{width:892.830000px;}
.x0_c00198{left:0.000000px;}
.x1_c00198{left:127.620000px;}
.x2_c00198{left:738.450000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.lsd_c00198{letter-spacing:-0.090848pt;}
.ls10_c00198{letter-spacing:-0.051200pt;}
.lsf_c00198{letter-spacing:-0.038400pt;}
.ls13_c00198{letter-spacing:-0.012800pt;}
.ls11_c00198{letter-spacing:-0.006400pt;}
.lse_c00198{letter-spacing:0.000000pt;}
.ls7_c00198{letter-spacing:0.006400pt;}
.ls0_c00198{letter-spacing:0.012800pt;}
.lsc_c00198{letter-spacing:0.019200pt;}
.ls6_c00198{letter-spacing:0.025600pt;}
.ls2_c00198{letter-spacing:0.032000pt;}
.ls3_c00198{letter-spacing:0.038400pt;}
.ls4_c00198{letter-spacing:0.044800pt;}
.ls9_c00198{letter-spacing:0.051200pt;}
.ls1_c00198{letter-spacing:0.057600pt;}
.ls8_c00198{letter-spacing:0.064000pt;}
.ls12_c00198{letter-spacing:0.070400pt;}
.ls5_c00198{letter-spacing:0.076800pt;}
.lsa_c00198{letter-spacing:0.089600pt;}
.lsb_c00198{letter-spacing:2.880000pt;}
.ws0_c00198{word-spacing:-16.000000pt;}
.wsa_c00198{word-spacing:-2.246400pt;}
.wsb_c00198{word-spacing:-1.952000pt;}
.ws5_c00198{word-spacing:-0.320000pt;}
.ws9_c00198{word-spacing:-0.064000pt;}
.ws2_c00198{word-spacing:0.000000pt;}
.ws3_c00198{word-spacing:0.140800pt;}
.ws1_c00198{word-spacing:0.171008pt;}
.ws4_c00198{word-spacing:2.182400pt;}
.ws6_c00198{word-spacing:6.662400pt;}
.ws7_c00198{word-spacing:6.700800pt;}
.ws8_c00198{word-spacing:22.329600pt;}
._5_c00198{margin-left:-3.814400pt;}
._6_c00198{margin-left:-2.828800pt;}
._b_c00198{margin-left:-1.932800pt;}
._2_c00198{margin-left:-0.902400pt;}
._0_c00198{width:0.919168pt;}
._1_c00198{width:2.201600pt;}
._3_c00198{width:3.808000pt;}
._a_c00198{width:4.748800pt;}
._9_c00198{width:5.638400pt;}
._c_c00198{width:6.688000pt;}
._4_c00198{width:8.275200pt;}
._7_c00198{width:37.235200pt;}
._8_c00198{width:38.259200pt;}
._d_c00198{width:39.820800pt;}
.fs0_c00198{font-size:53.440000pt;}
.fs1_c00198{font-size:64.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y5_c00198{bottom:50.987067pt;}
.y4_c00198{bottom:69.387067pt;}
.y25_c00198{bottom:102.587067pt;}
.y24_c00198{bottom:130.107067pt;}
.y23_c00198{bottom:157.707067pt;}
.y22_c00198{bottom:185.307067pt;}
.y21_c00198{bottom:223.547067pt;}
.y20_c00198{bottom:251.227067pt;}
.y1f_c00198{bottom:278.827067pt;}
.y1e_c00198{bottom:316.987067pt;}
.y1d_c00198{bottom:344.587067pt;}
.y1c_c00198{bottom:372.267067pt;}
.y1b_c00198{bottom:406.427067pt;}
.y1a_c00198{bottom:434.107067pt;}
.y19_c00198{bottom:461.707067pt;}
.y18_c00198{bottom:489.307067pt;}
.y17_c00198{bottom:516.907067pt;}
.y16_c00198{bottom:544.507067pt;}
.y15_c00198{bottom:572.107067pt;}
.y14_c00198{bottom:599.707067pt;}
.y13_c00198{bottom:627.307067pt;}
.y12_c00198{bottom:654.907067pt;}
.y11_c00198{bottom:682.507067pt;}
.y10_c00198{bottom:710.107067pt;}
.yf_c00198{bottom:737.707067pt;}
.ye_c00198{bottom:765.307067pt;}
.yd_c00198{bottom:799.467067pt;}
.yc_c00198{bottom:827.147067pt;}
.yb_c00198{bottom:854.747067pt;}
.ya_c00198{bottom:882.347067pt;}
.y9_c00198{bottom:909.947067pt;}
.y8_c00198{bottom:937.547067pt;}
.y7_c00198{bottom:968.027067pt;}
.y6_c00198{bottom:987.787067pt;}
.y3_c00198{bottom:1006.347067pt;}
.y2_c00198{bottom:1035.947576pt;}
.y1_c00198{bottom:1063.147200pt;}
.h1_c00198{height:47.020937pt;}
.h2_c00198{height:56.156250pt;}
.h3_c00198{height:56.312500pt;}
.h0_c00198{height:1122.666667pt;}
.w1_c00198{width:793.333333pt;}
.w0_c00198{width:793.626667pt;}
.x0_c00198{left:0.000000pt;}
.x1_c00198{left:113.440000pt;}
.x2_c00198{left:656.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_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_d7f44cf2a9cca2b0ada2d8a8.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.095703;font-style:normal;font-weight:normal;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_313fd72eb85f34472728c4d2.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.093262;font-style: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;}
.ls18_c00199{letter-spacing:-0.180000px;}
.ls15_c00199{letter-spacing:-0.151200px;}
.ls19_c00199{letter-spacing:-0.136800px;}
.ls14_c00199{letter-spacing:-0.079200px;}
.ls17_c00199{letter-spacing:-0.064800px;}
.ls10_c00199{letter-spacing:-0.057600px;}
.lse_c00199{letter-spacing:-0.048096px;}
.ls12_c00199{letter-spacing:-0.036000px;}
.ls13_c00199{letter-spacing:-0.028800px;}
.ls16_c00199{letter-spacing:-0.014400px;}
.ls11_c00199{letter-spacing:-0.007200px;}
.lsf_c00199{letter-spacing:0.000000px;}
.ls8_c00199{letter-spacing:0.007200px;}
.ls1_c00199{letter-spacing:0.014400px;}
.ls0_c00199{letter-spacing:0.021600px;}
.ls9_c00199{letter-spacing:0.028800px;}
.ls5_c00199{letter-spacing:0.036000px;}
.ls4_c00199{letter-spacing:0.043200px;}
.ls7_c00199{letter-spacing:0.050400px;}
.ls2_c00199{letter-spacing:0.057600px;}
.lsc_c00199{letter-spacing:0.064800px;}
.ls6_c00199{letter-spacing:0.072000px;}
.ls3_c00199{letter-spacing:0.079200px;}
.lsa_c00199{letter-spacing:0.093600px;}
.lsb_c00199{letter-spacing:0.115200px;}
.lsd_c00199{letter-spacing:2.160000px;}
.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:-18.057600px;}
.ws1_c00199{word-spacing:-18.021600px;}
.ws3_c00199{word-spacing:-18.007200px;}
.ws4_c00199{word-spacing:-18.000000px;}
.ws2_c00199{word-spacing:-17.848800px;}
.wse_c00199{word-spacing:-0.014400px;}
.ws6_c00199{word-spacing:0.000000px;}
.ws5_c00199{word-spacing:0.138276px;}
.wsd_c00199{word-spacing:2.224800px;}
.wsb_c00199{word-spacing:3.844800px;}
.ws8_c00199{word-spacing:4.996800px;}
.wsc_c00199{word-spacing:5.760000px;}
.ws7_c00199{word-spacing:10.360800px;}
.wsa_c00199{word-spacing:15.472800px;}
.ws9_c00199{word-spacing:15.508800px;}
._c_c00199{margin-left:-3.664800px;}
._4_c00199{margin-left:-2.505600px;}
._3_c00199{margin-left:-1.454400px;}
._2_c00199{width:1.209600px;}
._6_c00199{width:2.649600px;}
._0_c00199{width:4.053600px;}
._1_c00199{width:5.083200px;}
._9_c00199{width:6.465600px;}
._7_c00199{width:8.589600px;}
._5_c00199{width:10.425600px;}
._8_c00199{width:15.458400px;}
._d_c00199{width:16.473600px;}
._b_c00199{width:22.356000px;}
._a_c00199{width:23.378400px;}
.fc0_c00199{color:rgb(0,0,0);}
.fs0_c00199{font-size:60.120000px;}
.fs1_c00199{font-size:72.000000px;}
.y0_c00199{bottom:0.000000px;}
.y6_c00199{bottom:57.360450px;}
.y5_c00199{bottom:78.060450px;}
.y25_c00199{bottom:170.310450px;}
.y24_c00199{bottom:201.450450px;}
.y23_c00199{bottom:232.500450px;}
.y22_c00199{bottom:263.550450px;}
.y21_c00199{bottom:294.600450px;}
.y20_c00199{bottom:325.650450px;}
.y1f_c00199{bottom:356.700450px;}
.y1e_c00199{bottom:387.750450px;}
.y1d_c00199{bottom:418.800450px;}
.y1c_c00199{bottom:457.230450px;}
.y1b_c00199{bottom:488.370450px;}
.y1a_c00199{bottom:519.420450px;}
.y19_c00199{bottom:550.470450px;}
.y18_c00199{bottom:581.520450px;}
.y17_c00199{bottom:612.570450px;}
.y16_c00199{bottom:643.620450px;}
.y15_c00199{bottom:674.670450px;}
.y14_c00199{bottom:705.720450px;}
.y13_c00199{bottom:736.770450px;}
.y12_c00199{bottom:767.820450px;}
.y11_c00199{bottom:806.250450px;}
.y10_c00199{bottom:837.390450px;}
.yf_c00199{bottom:868.440450px;}
.ye_c00199{bottom:899.490450px;}
.yd_c00199{bottom:930.540450px;}
.yc_c00199{bottom:961.590450px;}
.yb_c00199{bottom:1000.110450px;}
.ya_c00199{bottom:1031.160450px;}
.y9_c00199{bottom:1062.210450px;}
.y8_c00199{bottom:1093.260450px;}
.y7_c00199{bottom:1124.310450px;}
.y4_c00199{bottom:1144.380657px;}
.y3_c00199{bottom:1161.660648px;}
.y2_c00199{bottom:1178.850459px;}
.y1_c00199{bottom:1196.130450px;}
.h1_c00199{height:52.898555px;}
.h2_c00199{height:63.175781px;}
.h3_c00199{height:63.351562px;}
.h0_c00199{height:1263.000000px;}
.w1_c00199{width:892.500000px;}
.w0_c00199{width:892.830000px;}
.x0_c00199{left:0.000000px;}
.x4_c00199{left:127.620000px;}
.x1_c00199{left:649.620000px;}
.x3_c00199{left:738.450000px;}
.x2_c00199{left:765.450198px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls18_c00199{letter-spacing:-0.160000pt;}
.ls15_c00199{letter-spacing:-0.134400pt;}
.ls19_c00199{letter-spacing:-0.121600pt;}
.ls14_c00199{letter-spacing:-0.070400pt;}
.ls17_c00199{letter-spacing:-0.057600pt;}
.ls10_c00199{letter-spacing:-0.051200pt;}
.lse_c00199{letter-spacing:-0.042752pt;}
.ls12_c00199{letter-spacing:-0.032000pt;}
.ls13_c00199{letter-spacing:-0.025600pt;}
.ls16_c00199{letter-spacing:-0.012800pt;}
.ls11_c00199{letter-spacing:-0.006400pt;}
.lsf_c00199{letter-spacing:0.000000pt;}
.ls8_c00199{letter-spacing:0.006400pt;}
.ls1_c00199{letter-spacing:0.012800pt;}
.ls0_c00199{letter-spacing:0.019200pt;}
.ls9_c00199{letter-spacing:0.025600pt;}
.ls5_c00199{letter-spacing:0.032000pt;}
.ls4_c00199{letter-spacing:0.038400pt;}
.ls7_c00199{letter-spacing:0.044800pt;}
.ls2_c00199{letter-spacing:0.051200pt;}
.lsc_c00199{letter-spacing:0.057600pt;}
.ls6_c00199{letter-spacing:0.064000pt;}
.ls3_c00199{letter-spacing:0.070400pt;}
.lsa_c00199{letter-spacing:0.083200pt;}
.lsb_c00199{letter-spacing:0.102400pt;}
.lsd_c00199{letter-spacing:1.920000pt;}
.ws0_c00199{word-spacing:-16.051200pt;}
.ws1_c00199{word-spacing:-16.019200pt;}
.ws3_c00199{word-spacing:-16.006400pt;}
.ws4_c00199{word-spacing:-16.000000pt;}
.ws2_c00199{word-spacing:-15.865600pt;}
.wse_c00199{word-spacing:-0.012800pt;}
.ws6_c00199{word-spacing:0.000000pt;}
.ws5_c00199{word-spacing:0.122912pt;}
.wsd_c00199{word-spacing:1.977600pt;}
.wsb_c00199{word-spacing:3.417600pt;}
.ws8_c00199{word-spacing:4.441600pt;}
.wsc_c00199{word-spacing:5.120000pt;}
.ws7_c00199{word-spacing:9.209600pt;}
.wsa_c00199{word-spacing:13.753600pt;}
.ws9_c00199{word-spacing:13.785600pt;}
._c_c00199{margin-left:-3.257600pt;}
._4_c00199{margin-left:-2.227200pt;}
._3_c00199{margin-left:-1.292800pt;}
._2_c00199{width:1.075200pt;}
._6_c00199{width:2.355200pt;}
._0_c00199{width:3.603200pt;}
._1_c00199{width:4.518400pt;}
._9_c00199{width:5.747200pt;}
._7_c00199{width:7.635200pt;}
._5_c00199{width:9.267200pt;}
._8_c00199{width:13.740800pt;}
._d_c00199{width:14.643200pt;}
._b_c00199{width:19.872000pt;}
._a_c00199{width:20.780800pt;}
.fs0_c00199{font-size:53.440000pt;}
.fs1_c00199{font-size:64.000000pt;}
.y0_c00199{bottom:0.000000pt;}
.y6_c00199{bottom:50.987067pt;}
.y5_c00199{bottom:69.387067pt;}
.y25_c00199{bottom:151.387067pt;}
.y24_c00199{bottom:179.067067pt;}
.y23_c00199{bottom:206.667067pt;}
.y22_c00199{bottom:234.267067pt;}
.y21_c00199{bottom:261.867067pt;}
.y20_c00199{bottom:289.467067pt;}
.y1f_c00199{bottom:317.067067pt;}
.y1e_c00199{bottom:344.667067pt;}
.y1d_c00199{bottom:372.267067pt;}
.y1c_c00199{bottom:406.427067pt;}
.y1b_c00199{bottom:434.107067pt;}
.y1a_c00199{bottom:461.707067pt;}
.y19_c00199{bottom:489.307067pt;}
.y18_c00199{bottom:516.907067pt;}
.y17_c00199{bottom:544.507067pt;}
.y16_c00199{bottom:572.107067pt;}
.y15_c00199{bottom:599.707067pt;}
.y14_c00199{bottom:627.307067pt;}
.y13_c00199{bottom:654.907067pt;}
.y12_c00199{bottom:682.507067pt;}
.y11_c00199{bottom:716.667067pt;}
.y10_c00199{bottom:744.347067pt;}
.yf_c00199{bottom:771.947067pt;}
.ye_c00199{bottom:799.547067pt;}
.yd_c00199{bottom:827.147067pt;}
.yc_c00199{bottom:854.747067pt;}
.yb_c00199{bottom:888.987067pt;}
.ya_c00199{bottom:916.587067pt;}
.y9_c00199{bottom:944.187067pt;}
.y8_c00199{bottom:971.787067pt;}
.y7_c00199{bottom:999.387067pt;}
.y4_c00199{bottom:1017.227251pt;}
.y3_c00199{bottom:1032.587243pt;}
.y2_c00199{bottom:1047.867075pt;}
.y1_c00199{bottom:1063.227067pt;}
.h1_c00199{height:47.020937pt;}
.h2_c00199{height:56.156250pt;}
.h3_c00199{height:56.312500pt;}
.h0_c00199{height:1122.666667pt;}
.w1_c00199{width:793.333333pt;}
.w0_c00199{width:793.626667pt;}
.x0_c00199{left:0.000000pt;}
.x4_c00199{left:113.440000pt;}
.x1_c00199{left:577.440000pt;}
.x3_c00199{left:656.400000pt;}
.x2_c00199{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1dcdea5b9327bb32ce25d09.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.095703;font-style:normal;font-weight:normal;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_8b6331e51826a12e77dd3481.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.093262;font-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_c00200{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls10_c00200{letter-spacing:-0.090180px;}
.ls13_c00200{letter-spacing:-0.010800px;}
.ls12_c00200{letter-spacing:-0.007200px;}
.ls11_c00200{letter-spacing:0.000000px;}
.lsf_c00200{letter-spacing:0.005400px;}
.ls8_c00200{letter-spacing:0.007200px;}
.lse_c00200{letter-spacing:0.010800px;}
.ls0_c00200{letter-spacing:0.014400px;}
.ls5_c00200{letter-spacing:0.021600px;}
.ls6_c00200{letter-spacing:0.028800px;}
.ls4_c00200{letter-spacing:0.036000px;}
.ls2_c00200{letter-spacing:0.043200px;}
.ls9_c00200{letter-spacing:0.050400px;}
.lsc_c00200{letter-spacing:0.057600px;}
.ls7_c00200{letter-spacing:0.064800px;}
.ls3_c00200{letter-spacing:0.072000px;}
.ls1_c00200{letter-spacing:0.079200px;}
.lsb_c00200{letter-spacing:0.086400px;}
.lsd_c00200{letter-spacing:0.093600px;}
.lsa_c00200{letter-spacing:0.100800px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00200{word-spacing:-18.043200px;}
.ws1_c00200{word-spacing:-18.014400px;}
.ws2_c00200{word-spacing:-18.007200px;}
.ws3_c00200{word-spacing:-13.505400px;}
.ws5_c00200{word-spacing:0.000000px;}
.ws4_c00200{word-spacing:0.186372px;}
.ws6_c00200{word-spacing:5.745600px;}
.ws8_c00200{word-spacing:5.950800px;}
.ws7_c00200{word-spacing:6.291000px;}
._2_c00200{margin-left:-4.312800px;}
._1_c00200{margin-left:-3.312000px;}
._5_c00200{margin-left:-2.304000px;}
._4_c00200{margin-left:-1.087200px;}
._0_c00200{width:1.028052px;}
._13_c00200{width:2.543148px;}
._f_c00200{width:3.564000px;}
._10_c00200{width:4.701600px;}
._3_c00200{width:5.724000px;}
._6_c00200{width:7.034400px;}
._d_c00200{width:8.056800px;}
._e_c00200{width:9.194400px;}
._11_c00200{width:14.493600px;}
._12_c00200{width:15.904800px;}
._7_c00200{width:19.461600px;}
._14_c00200{width:23.342400px;}
._8_c00200{width:25.228800px;}
._a_c00200{width:27.691200px;}
._b_c00200{width:54.496800px;}
._c_c00200{width:55.778400px;}
._9_c00200{width:72.374400px;}
.fc2_c00200{color:rgb(68,84,106);}
.fc1_c00200{color:rgb(0,0,0);}
.fc0_c00200{color:rgb(32,31,30);}
.fs2_c00200{font-size:54.000000px;}
.fs0_c00200{font-size:60.120000px;}
.fs1_c00200{font-size:72.000000px;}
.y0_c00200{bottom:0.000000px;}
.y27_c00200{bottom:3.240450px;}
.y5_c00200{bottom:57.360450px;}
.y4_c00200{bottom:78.060450px;}
.y25_c00200{bottom:114.330450px;}
.y24_c00200{bottom:145.470450px;}
.y23_c00200{bottom:176.520450px;}
.y22_c00200{bottom:207.570450px;}
.y21_c00200{bottom:238.620450px;}
.y20_c00200{bottom:281.550450px;}
.y1f_c00200{bottom:312.690450px;}
.y1e_c00200{bottom:343.740450px;}
.y1d_c00200{bottom:374.790450px;}
.y1c_c00200{bottom:405.840450px;}
.y1b_c00200{bottom:444.360450px;}
.y1a_c00200{bottom:475.500450px;}
.y19_c00200{bottom:506.550450px;}
.y18_c00200{bottom:537.600450px;}
.y17_c00200{bottom:568.650450px;}
.y16_c00200{bottom:599.700450px;}
.y15_c00200{bottom:630.660450px;}
.y14_c00200{bottom:661.710450px;}
.y13_c00200{bottom:692.760450px;}
.y12_c00200{bottom:723.810450px;}
.y11_c00200{bottom:754.860450px;}
.y10_c00200{bottom:785.910450px;}
.yf_c00200{bottom:816.960450px;}
.ye_c00200{bottom:848.010450px;}
.y29_c00200{bottom:869.880000px;}
.y2a_c00200{bottom:873.120450px;}
.y26_c00200{bottom:885.450000px;}
.yd_c00200{bottom:886.530450px;}
.y28_c00200{bottom:888.690450px;}
.yc_c00200{bottom:925.050450px;}
.yb_c00200{bottom:956.190450px;}
.ya_c00200{bottom:987.240450px;}
.y9_c00200{bottom:1018.290450px;}
.y8_c00200{bottom:1049.340450px;}
.y7_c00200{bottom:1080.390450px;}
.y6_c00200{bottom:1111.440450px;}
.y3_c00200{bottom:1132.140450px;}
.y2_c00200{bottom:1165.441023px;}
.y1_c00200{bottom:1196.040600px;}
.h4_c00200{height:15.300000px;}
.h5_c00200{height:47.513672px;}
.h1_c00200{height:52.898555px;}
.h2_c00200{height:63.175781px;}
.h3_c00200{height:63.351562px;}
.h0_c00200{height:1263.000000px;}
.w3_c00200{width:43.020000px;}
.w2_c00200{width:385.830000px;}
.w1_c00200{width:892.500000px;}
.w0_c00200{width:892.830000px;}
.x0_c00200{left:0.000000px;}
.x1_c00200{left:127.620000px;}
.x4_c00200{left:131.850000px;}
.x6_c00200{left:134.820000px;}
.x5_c00200{left:382.050000px;}
.x3_c00200{left:527.852105px;}
.x2_c00200{left:738.450676px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls10_c00200{letter-spacing:-0.080160pt;}
.ls13_c00200{letter-spacing:-0.009600pt;}
.ls12_c00200{letter-spacing:-0.006400pt;}
.ls11_c00200{letter-spacing:0.000000pt;}
.lsf_c00200{letter-spacing:0.004800pt;}
.ls8_c00200{letter-spacing:0.006400pt;}
.lse_c00200{letter-spacing:0.009600pt;}
.ls0_c00200{letter-spacing:0.012800pt;}
.ls5_c00200{letter-spacing:0.019200pt;}
.ls6_c00200{letter-spacing:0.025600pt;}
.ls4_c00200{letter-spacing:0.032000pt;}
.ls2_c00200{letter-spacing:0.038400pt;}
.ls9_c00200{letter-spacing:0.044800pt;}
.lsc_c00200{letter-spacing:0.051200pt;}
.ls7_c00200{letter-spacing:0.057600pt;}
.ls3_c00200{letter-spacing:0.064000pt;}
.ls1_c00200{letter-spacing:0.070400pt;}
.lsb_c00200{letter-spacing:0.076800pt;}
.lsd_c00200{letter-spacing:0.083200pt;}
.lsa_c00200{letter-spacing:0.089600pt;}
.ws0_c00200{word-spacing:-16.038400pt;}
.ws1_c00200{word-spacing:-16.012800pt;}
.ws2_c00200{word-spacing:-16.006400pt;}
.ws3_c00200{word-spacing:-12.004800pt;}
.ws5_c00200{word-spacing:0.000000pt;}
.ws4_c00200{word-spacing:0.165664pt;}
.ws6_c00200{word-spacing:5.107200pt;}
.ws8_c00200{word-spacing:5.289600pt;}
.ws7_c00200{word-spacing:5.592000pt;}
._2_c00200{margin-left:-3.833600pt;}
._1_c00200{margin-left:-2.944000pt;}
._5_c00200{margin-left:-2.048000pt;}
._4_c00200{margin-left:-0.966400pt;}
._0_c00200{width:0.913824pt;}
._13_c00200{width:2.260576pt;}
._f_c00200{width:3.168000pt;}
._10_c00200{width:4.179200pt;}
._3_c00200{width:5.088000pt;}
._6_c00200{width:6.252800pt;}
._d_c00200{width:7.161600pt;}
._e_c00200{width:8.172800pt;}
._11_c00200{width:12.883200pt;}
._12_c00200{width:14.137600pt;}
._7_c00200{width:17.299200pt;}
._14_c00200{width:20.748800pt;}
._8_c00200{width:22.425600pt;}
._a_c00200{width:24.614400pt;}
._b_c00200{width:48.441600pt;}
._c_c00200{width:49.580800pt;}
._9_c00200{width:64.332800pt;}
.fs2_c00200{font-size:48.000000pt;}
.fs0_c00200{font-size:53.440000pt;}
.fs1_c00200{font-size:64.000000pt;}
.y0_c00200{bottom:0.000000pt;}
.y27_c00200{bottom:2.880400pt;}
.y5_c00200{bottom:50.987067pt;}
.y4_c00200{bottom:69.387067pt;}
.y25_c00200{bottom:101.627067pt;}
.y24_c00200{bottom:129.307067pt;}
.y23_c00200{bottom:156.907067pt;}
.y22_c00200{bottom:184.507067pt;}
.y21_c00200{bottom:212.107067pt;}
.y20_c00200{bottom:250.267067pt;}
.y1f_c00200{bottom:277.947067pt;}
.y1e_c00200{bottom:305.547067pt;}
.y1d_c00200{bottom:333.147067pt;}
.y1c_c00200{bottom:360.747067pt;}
.y1b_c00200{bottom:394.987067pt;}
.y1a_c00200{bottom:422.667067pt;}
.y19_c00200{bottom:450.267067pt;}
.y18_c00200{bottom:477.867067pt;}
.y17_c00200{bottom:505.467067pt;}
.y16_c00200{bottom:533.067067pt;}
.y15_c00200{bottom:560.587067pt;}
.y14_c00200{bottom:588.187067pt;}
.y13_c00200{bottom:615.787067pt;}
.y12_c00200{bottom:643.387067pt;}
.y11_c00200{bottom:670.987067pt;}
.y10_c00200{bottom:698.587067pt;}
.yf_c00200{bottom:726.187067pt;}
.ye_c00200{bottom:753.787067pt;}
.y29_c00200{bottom:773.226667pt;}
.y2a_c00200{bottom:776.107067pt;}
.y26_c00200{bottom:787.066667pt;}
.yd_c00200{bottom:788.027067pt;}
.y28_c00200{bottom:789.947067pt;}
.yc_c00200{bottom:822.267067pt;}
.yb_c00200{bottom:849.947067pt;}
.ya_c00200{bottom:877.547067pt;}
.y9_c00200{bottom:905.147067pt;}
.y8_c00200{bottom:932.747067pt;}
.y7_c00200{bottom:960.347067pt;}
.y6_c00200{bottom:987.947067pt;}
.y3_c00200{bottom:1006.347067pt;}
.y2_c00200{bottom:1035.947576pt;}
.y1_c00200{bottom:1063.147200pt;}
.h4_c00200{height:13.600000pt;}
.h5_c00200{height:42.234375pt;}
.h1_c00200{height:47.020937pt;}
.h2_c00200{height:56.156250pt;}
.h3_c00200{height:56.312500pt;}
.h0_c00200{height:1122.666667pt;}
.w3_c00200{width:38.240000pt;}
.w2_c00200{width:342.960000pt;}
.w1_c00200{width:793.333333pt;}
.w0_c00200{width:793.626667pt;}
.x0_c00200{left:0.000000pt;}
.x1_c00200{left:113.440000pt;}
.x4_c00200{left:117.200000pt;}
.x6_c00200{left:119.840000pt;}
.x5_c00200{left:339.600000pt;}
.x3_c00200{left:469.201871pt;}
.x2_c00200{left:656.400601pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5a78debc3ddfa47766a723f0.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.095703;font-style:normal;font-weight:normal;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_a95b5856e70517a57a610fa6.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00201{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00201{vertical-align:0.000000px;}
.ls13_c00201{letter-spacing:-4.320000px;}
.ls14_c00201{letter-spacing:-0.057600px;}
.ls16_c00201{letter-spacing:-0.050400px;}
.ls11_c00201{letter-spacing:-0.048096px;}
.ls18_c00201{letter-spacing:-0.028800px;}
.ls1a_c00201{letter-spacing:-0.021600px;}
.ls15_c00201{letter-spacing:-0.014400px;}
.ls19_c00201{letter-spacing:-0.007200px;}
.ls12_c00201{letter-spacing:0.000000px;}
.lsa_c00201{letter-spacing:0.007200px;}
.ls1_c00201{letter-spacing:0.014400px;}
.ls5_c00201{letter-spacing:0.021600px;}
.ls3_c00201{letter-spacing:0.028800px;}
.ls0_c00201{letter-spacing:0.036000px;}
.lse_c00201{letter-spacing:0.043200px;}
.ls6_c00201{letter-spacing:0.050400px;}
.lsb_c00201{letter-spacing:0.057600px;}
.ls2_c00201{letter-spacing:0.064800px;}
.ls8_c00201{letter-spacing:0.072000px;}
.ls10_c00201{letter-spacing:0.079200px;}
.ls4_c00201{letter-spacing:0.086400px;}
.ls9_c00201{letter-spacing:0.093600px;}
.ls7_c00201{letter-spacing:0.100800px;}
.lsd_c00201{letter-spacing:0.108000px;}
.lsf_c00201{letter-spacing:0.115200px;}
.lsc_c00201{letter-spacing:0.122400px;}
.ls17_c00201{letter-spacing:13.320000px;}
.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;}
}
.ws3_c00201{word-spacing:-18.100800px;}
.ws2_c00201{word-spacing:-18.093600px;}
.ws0_c00201{word-spacing:-18.050400px;}
.ws1_c00201{word-spacing:-17.942400px;}
.ws7_c00201{word-spacing:-2.908800px;}
.ws8_c00201{word-spacing:-1.555200px;}
.ws9_c00201{word-spacing:-1.476000px;}
.wse_c00201{word-spacing:-0.763200px;}
.wsa_c00201{word-spacing:-0.093600px;}
.wsb_c00201{word-spacing:-0.007200px;}
.ws5_c00201{word-spacing:0.000000px;}
.ws4_c00201{word-spacing:0.138276px;}
.wsd_c00201{word-spacing:0.612000px;}
.wsc_c00201{word-spacing:0.720000px;}
.ws6_c00201{word-spacing:13.320000px;}
._c_c00201{margin-left:-13.377600px;}
._d_c00201{margin-left:-12.240000px;}
._4_c00201{margin-left:-4.903200px;}
._1_c00201{margin-left:-3.276000px;}
._2_c00201{margin-left:-1.332000px;}
._b_c00201{width:1.188000px;}
._5_c00201{width:2.469600px;}
._0_c00201{width:4.284000px;}
._9_c00201{width:5.896800px;}
._7_c00201{width:7.545600px;}
._6_c00201{width:8.611200px;}
._3_c00201{width:10.058400px;}
._a_c00201{width:11.613600px;}
._8_c00201{width:13.284000px;}
.fc0_c00201{color:rgb(0,0,0);}
.fs0_c00201{font-size:60.120000px;}
.fs1_c00201{font-size:72.000000px;}
.y0_c00201{bottom:0.000000px;}
.y6_c00201{bottom:57.360450px;}
.y5_c00201{bottom:78.060450px;}
.y25_c00201{bottom:120.810450px;}
.y24_c00201{bottom:151.950450px;}
.y23_c00201{bottom:182.910450px;}
.y22_c00201{bottom:214.050450px;}
.y21_c00201{bottom:256.980450px;}
.y20_c00201{bottom:288.120450px;}
.y1f_c00201{bottom:319.170450px;}
.y1e_c00201{bottom:362.190450px;}
.y1d_c00201{bottom:393.330450px;}
.y1c_c00201{bottom:424.380450px;}
.y1b_c00201{bottom:455.430450px;}
.y1a_c00201{bottom:486.480450px;}
.y19_c00201{bottom:517.530450px;}
.y18_c00201{bottom:560.460450px;}
.y17_c00201{bottom:591.600450px;}
.y16_c00201{bottom:622.650450px;}
.y15_c00201{bottom:653.700450px;}
.y14_c00201{bottom:696.630450px;}
.y13_c00201{bottom:727.770450px;}
.y12_c00201{bottom:758.820450px;}
.y11_c00201{bottom:789.870450px;}
.y10_c00201{bottom:832.800450px;}
.yf_c00201{bottom:863.940450px;}
.ye_c00201{bottom:894.990450px;}
.yd_c00201{bottom:926.040450px;}
.yc_c00201{bottom:957.090450px;}
.yb_c00201{bottom:988.140450px;}
.ya_c00201{bottom:1019.190450px;}
.y9_c00201{bottom:1062.120450px;}
.y8_c00201{bottom:1093.260450px;}
.y7_c00201{bottom:1124.310450px;}
.y4_c00201{bottom:1144.380657px;}
.y3_c00201{bottom:1161.660648px;}
.y2_c00201{bottom:1178.850459px;}
.y1_c00201{bottom:1196.130450px;}
.h1_c00201{height:52.898555px;}
.h2_c00201{height:63.175781px;}
.h3_c00201{height:63.351562px;}
.h0_c00201{height:1263.000000px;}
.w1_c00201{width:892.500000px;}
.w0_c00201{width:892.830000px;}
.x0_c00201{left:0.000000px;}
.x4_c00201{left:127.620000px;}
.x1_c00201{left:649.620000px;}
.x3_c00201{left:738.450000px;}
.x2_c00201{left:765.450198px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls13_c00201{letter-spacing:-3.840000pt;}
.ls14_c00201{letter-spacing:-0.051200pt;}
.ls16_c00201{letter-spacing:-0.044800pt;}
.ls11_c00201{letter-spacing:-0.042752pt;}
.ls18_c00201{letter-spacing:-0.025600pt;}
.ls1a_c00201{letter-spacing:-0.019200pt;}
.ls15_c00201{letter-spacing:-0.012800pt;}
.ls19_c00201{letter-spacing:-0.006400pt;}
.ls12_c00201{letter-spacing:0.000000pt;}
.lsa_c00201{letter-spacing:0.006400pt;}
.ls1_c00201{letter-spacing:0.012800pt;}
.ls5_c00201{letter-spacing:0.019200pt;}
.ls3_c00201{letter-spacing:0.025600pt;}
.ls0_c00201{letter-spacing:0.032000pt;}
.lse_c00201{letter-spacing:0.038400pt;}
.ls6_c00201{letter-spacing:0.044800pt;}
.lsb_c00201{letter-spacing:0.051200pt;}
.ls2_c00201{letter-spacing:0.057600pt;}
.ls8_c00201{letter-spacing:0.064000pt;}
.ls10_c00201{letter-spacing:0.070400pt;}
.ls4_c00201{letter-spacing:0.076800pt;}
.ls9_c00201{letter-spacing:0.083200pt;}
.ls7_c00201{letter-spacing:0.089600pt;}
.lsd_c00201{letter-spacing:0.096000pt;}
.lsf_c00201{letter-spacing:0.102400pt;}
.lsc_c00201{letter-spacing:0.108800pt;}
.ls17_c00201{letter-spacing:11.840000pt;}
.ws3_c00201{word-spacing:-16.089600pt;}
.ws2_c00201{word-spacing:-16.083200pt;}
.ws0_c00201{word-spacing:-16.044800pt;}
.ws1_c00201{word-spacing:-15.948800pt;}
.ws7_c00201{word-spacing:-2.585600pt;}
.ws8_c00201{word-spacing:-1.382400pt;}
.ws9_c00201{word-spacing:-1.312000pt;}
.wse_c00201{word-spacing:-0.678400pt;}
.wsa_c00201{word-spacing:-0.083200pt;}
.wsb_c00201{word-spacing:-0.006400pt;}
.ws5_c00201{word-spacing:0.000000pt;}
.ws4_c00201{word-spacing:0.122912pt;}
.wsd_c00201{word-spacing:0.544000pt;}
.wsc_c00201{word-spacing:0.640000pt;}
.ws6_c00201{word-spacing:11.840000pt;}
._c_c00201{margin-left:-11.891200pt;}
._d_c00201{margin-left:-10.880000pt;}
._4_c00201{margin-left:-4.358400pt;}
._1_c00201{margin-left:-2.912000pt;}
._2_c00201{margin-left:-1.184000pt;}
._b_c00201{width:1.056000pt;}
._5_c00201{width:2.195200pt;}
._0_c00201{width:3.808000pt;}
._9_c00201{width:5.241600pt;}
._7_c00201{width:6.707200pt;}
._6_c00201{width:7.654400pt;}
._3_c00201{width:8.940800pt;}
._a_c00201{width:10.323200pt;}
._8_c00201{width:11.808000pt;}
.fs0_c00201{font-size:53.440000pt;}
.fs1_c00201{font-size:64.000000pt;}
.y0_c00201{bottom:0.000000pt;}
.y6_c00201{bottom:50.987067pt;}
.y5_c00201{bottom:69.387067pt;}
.y25_c00201{bottom:107.387067pt;}
.y24_c00201{bottom:135.067067pt;}
.y23_c00201{bottom:162.587067pt;}
.y22_c00201{bottom:190.267067pt;}
.y21_c00201{bottom:228.427067pt;}
.y20_c00201{bottom:256.107067pt;}
.y1f_c00201{bottom:283.707067pt;}
.y1e_c00201{bottom:321.947067pt;}
.y1d_c00201{bottom:349.627067pt;}
.y1c_c00201{bottom:377.227067pt;}
.y1b_c00201{bottom:404.827067pt;}
.y1a_c00201{bottom:432.427067pt;}
.y19_c00201{bottom:460.027067pt;}
.y18_c00201{bottom:498.187067pt;}
.y17_c00201{bottom:525.867067pt;}
.y16_c00201{bottom:553.467067pt;}
.y15_c00201{bottom:581.067067pt;}
.y14_c00201{bottom:619.227067pt;}
.y13_c00201{bottom:646.907067pt;}
.y12_c00201{bottom:674.507067pt;}
.y11_c00201{bottom:702.107067pt;}
.y10_c00201{bottom:740.267067pt;}
.yf_c00201{bottom:767.947067pt;}
.ye_c00201{bottom:795.547067pt;}
.yd_c00201{bottom:823.147067pt;}
.yc_c00201{bottom:850.747067pt;}
.yb_c00201{bottom:878.347067pt;}
.ya_c00201{bottom:905.947067pt;}
.y9_c00201{bottom:944.107067pt;}
.y8_c00201{bottom:971.787067pt;}
.y7_c00201{bottom:999.387067pt;}
.y4_c00201{bottom:1017.227251pt;}
.y3_c00201{bottom:1032.587243pt;}
.y2_c00201{bottom:1047.867075pt;}
.y1_c00201{bottom:1063.227067pt;}
.h1_c00201{height:47.020937pt;}
.h2_c00201{height:56.156250pt;}
.h3_c00201{height:56.312500pt;}
.h0_c00201{height:1122.666667pt;}
.w1_c00201{width:793.333333pt;}
.w0_c00201{width:793.626667pt;}
.x0_c00201{left:0.000000pt;}
.x4_c00201{left:113.440000pt;}
.x1_c00201{left:577.440000pt;}
.x3_c00201{left:656.400000pt;}
.x2_c00201{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44b70ae5e712816b938d5e69.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.095703;font-style:normal;font-weight:normal;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_9bea5e27b353512db378d590.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00202{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.lsf_c00202{letter-spacing:-2.880000px;}
.lsd_c00202{letter-spacing:-0.102204px;}
.ls11_c00202{letter-spacing:-0.064800px;}
.ls15_c00202{letter-spacing:-0.036000px;}
.ls14_c00202{letter-spacing:-0.021600px;}
.ls12_c00202{letter-spacing:-0.014400px;}
.ls10_c00202{letter-spacing:-0.007200px;}
.lse_c00202{letter-spacing:0.000000px;}
.ls7_c00202{letter-spacing:0.007200px;}
.ls4_c00202{letter-spacing:0.014400px;}
.ls6_c00202{letter-spacing:0.021600px;}
.ls0_c00202{letter-spacing:0.028800px;}
.ls5_c00202{letter-spacing:0.036000px;}
.ls8_c00202{letter-spacing:0.043200px;}
.lsa_c00202{letter-spacing:0.050400px;}
.ls2_c00202{letter-spacing:0.057600px;}
.lsc_c00202{letter-spacing:0.064800px;}
.ls3_c00202{letter-spacing:0.072000px;}
.ls1_c00202{letter-spacing:0.079200px;}
.lsb_c00202{letter-spacing:0.086400px;}
.ls9_c00202{letter-spacing:0.136800px;}
.ls13_c00202{letter-spacing:34.920000px;}
.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:0.000000px;}
.ws0_c00202{word-spacing:0.192384px;}
.ws3_c00202{word-spacing:2.851200px;}
.ws2_c00202{word-spacing:3.204000px;}
._7_c00202{margin-left:-34.920000px;}
._d_c00202{margin-left:-3.801600px;}
._3_c00202{margin-left:-2.534400px;}
._2_c00202{margin-left:-1.029600px;}
._0_c00202{width:1.034064px;}
._5_c00202{width:2.966400px;}
._9_c00202{width:4.276800px;}
._4_c00202{width:7.113600px;}
._1_c00202{width:8.611200px;}
._6_c00202{width:10.123200px;}
._c_c00202{width:13.032000px;}
._a_c00202{width:14.853600px;}
._b_c00202{width:16.401600px;}
._8_c00202{width:34.351200px;}
.fc1_c00202{color:rgb(0,0,0);}
.fc0_c00202{color:rgb(32,31,30);}
.fs0_c00202{font-size:60.120000px;}
.fs1_c00202{font-size:72.000000px;}
.y0_c00202{bottom:0.000000px;}
.y5_c00202{bottom:57.360450px;}
.y4_c00202{bottom:78.060450px;}
.y24_c00202{bottom:129.000450px;}
.y23_c00202{bottom:160.050450px;}
.y22_c00202{bottom:191.100450px;}
.y21_c00202{bottom:222.150450px;}
.y20_c00202{bottom:265.080450px;}
.y1f_c00202{bottom:296.220450px;}
.y1e_c00202{bottom:327.270450px;}
.y1d_c00202{bottom:358.320450px;}
.y1c_c00202{bottom:389.370450px;}
.y1b_c00202{bottom:420.420450px;}
.y1a_c00202{bottom:451.470450px;}
.y19_c00202{bottom:482.520450px;}
.y18_c00202{bottom:513.570450px;}
.y17_c00202{bottom:556.500450px;}
.y16_c00202{bottom:587.640450px;}
.y15_c00202{bottom:618.690450px;}
.y14_c00202{bottom:661.620450px;}
.y13_c00202{bottom:692.760450px;}
.y12_c00202{bottom:723.810450px;}
.y11_c00202{bottom:754.860450px;}
.y10_c00202{bottom:793.380450px;}
.yf_c00202{bottom:824.520450px;}
.ye_c00202{bottom:855.570450px;}
.yd_c00202{bottom:886.620450px;}
.yc_c00202{bottom:925.050450px;}
.yb_c00202{bottom:956.190450px;}
.ya_c00202{bottom:987.240450px;}
.y9_c00202{bottom:1018.290450px;}
.y8_c00202{bottom:1049.340450px;}
.y7_c00202{bottom:1080.390450px;}
.y6_c00202{bottom:1111.440450px;}
.y3_c00202{bottom:1132.140450px;}
.y2_c00202{bottom:1165.441023px;}
.y1_c00202{bottom:1196.040600px;}
.h1_c00202{height:52.898555px;}
.h2_c00202{height:63.175781px;}
.h3_c00202{height:63.351562px;}
.h0_c00202{height:1263.000000px;}
.w1_c00202{width:892.500000px;}
.w0_c00202{width:892.830000px;}
.x0_c00202{left:0.000000px;}
.x1_c00202{left:127.620000px;}
.x2_c00202{left:738.450000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.lsf_c00202{letter-spacing:-2.560000pt;}
.lsd_c00202{letter-spacing:-0.090848pt;}
.ls11_c00202{letter-spacing:-0.057600pt;}
.ls15_c00202{letter-spacing:-0.032000pt;}
.ls14_c00202{letter-spacing:-0.019200pt;}
.ls12_c00202{letter-spacing:-0.012800pt;}
.ls10_c00202{letter-spacing:-0.006400pt;}
.lse_c00202{letter-spacing:0.000000pt;}
.ls7_c00202{letter-spacing:0.006400pt;}
.ls4_c00202{letter-spacing:0.012800pt;}
.ls6_c00202{letter-spacing:0.019200pt;}
.ls0_c00202{letter-spacing:0.025600pt;}
.ls5_c00202{letter-spacing:0.032000pt;}
.ls8_c00202{letter-spacing:0.038400pt;}
.lsa_c00202{letter-spacing:0.044800pt;}
.ls2_c00202{letter-spacing:0.051200pt;}
.lsc_c00202{letter-spacing:0.057600pt;}
.ls3_c00202{letter-spacing:0.064000pt;}
.ls1_c00202{letter-spacing:0.070400pt;}
.lsb_c00202{letter-spacing:0.076800pt;}
.ls9_c00202{letter-spacing:0.121600pt;}
.ls13_c00202{letter-spacing:31.040000pt;}
.ws1_c00202{word-spacing:0.000000pt;}
.ws0_c00202{word-spacing:0.171008pt;}
.ws3_c00202{word-spacing:2.534400pt;}
.ws2_c00202{word-spacing:2.848000pt;}
._7_c00202{margin-left:-31.040000pt;}
._d_c00202{margin-left:-3.379200pt;}
._3_c00202{margin-left:-2.252800pt;}
._2_c00202{margin-left:-0.915200pt;}
._0_c00202{width:0.919168pt;}
._5_c00202{width:2.636800pt;}
._9_c00202{width:3.801600pt;}
._4_c00202{width:6.323200pt;}
._1_c00202{width:7.654400pt;}
._6_c00202{width:8.998400pt;}
._c_c00202{width:11.584000pt;}
._a_c00202{width:13.203200pt;}
._b_c00202{width:14.579200pt;}
._8_c00202{width:30.534400pt;}
.fs0_c00202{font-size:53.440000pt;}
.fs1_c00202{font-size:64.000000pt;}
.y0_c00202{bottom:0.000000pt;}
.y5_c00202{bottom:50.987067pt;}
.y4_c00202{bottom:69.387067pt;}
.y24_c00202{bottom:114.667067pt;}
.y23_c00202{bottom:142.267067pt;}
.y22_c00202{bottom:169.867067pt;}
.y21_c00202{bottom:197.467067pt;}
.y20_c00202{bottom:235.627067pt;}
.y1f_c00202{bottom:263.307067pt;}
.y1e_c00202{bottom:290.907067pt;}
.y1d_c00202{bottom:318.507067pt;}
.y1c_c00202{bottom:346.107067pt;}
.y1b_c00202{bottom:373.707067pt;}
.y1a_c00202{bottom:401.307067pt;}
.y19_c00202{bottom:428.907067pt;}
.y18_c00202{bottom:456.507067pt;}
.y17_c00202{bottom:494.667067pt;}
.y16_c00202{bottom:522.347067pt;}
.y15_c00202{bottom:549.947067pt;}
.y14_c00202{bottom:588.107067pt;}
.y13_c00202{bottom:615.787067pt;}
.y12_c00202{bottom:643.387067pt;}
.y11_c00202{bottom:670.987067pt;}
.y10_c00202{bottom:705.227067pt;}
.yf_c00202{bottom:732.907067pt;}
.ye_c00202{bottom:760.507067pt;}
.yd_c00202{bottom:788.107067pt;}
.yc_c00202{bottom:822.267067pt;}
.yb_c00202{bottom:849.947067pt;}
.ya_c00202{bottom:877.547067pt;}
.y9_c00202{bottom:905.147067pt;}
.y8_c00202{bottom:932.747067pt;}
.y7_c00202{bottom:960.347067pt;}
.y6_c00202{bottom:987.947067pt;}
.y3_c00202{bottom:1006.347067pt;}
.y2_c00202{bottom:1035.947576pt;}
.y1_c00202{bottom:1063.147200pt;}
.h1_c00202{height:47.020937pt;}
.h2_c00202{height:56.156250pt;}
.h3_c00202{height:56.312500pt;}
.h0_c00202{height:1122.666667pt;}
.w1_c00202{width:793.333333pt;}
.w0_c00202{width:793.626667pt;}
.x0_c00202{left:0.000000pt;}
.x1_c00202{left:113.440000pt;}
.x2_c00202{left:656.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_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_f7d3dcb78fa1fcedd26c11af.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_03328bb8217808efd50f8df8.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.093262;font-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_c00203{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2_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;}
.ls17_c00203{letter-spacing:-0.064800px;}
.ls18_c00203{letter-spacing:-0.050400px;}
.ls15_c00203{letter-spacing:-0.042084px;}
.ls19_c00203{letter-spacing:-0.014400px;}
.ls16_c00203{letter-spacing:0.000000px;}
.ls1_c00203{letter-spacing:0.007200px;}
.ls14_c00203{letter-spacing:0.010800px;}
.ls0_c00203{letter-spacing:0.014400px;}
.ls2_c00203{letter-spacing:0.021600px;}
.ls6_c00203{letter-spacing:0.028800px;}
.ls13_c00203{letter-spacing:0.032400px;}
.ls5_c00203{letter-spacing:0.036000px;}
.ls7_c00203{letter-spacing:0.043200px;}
.ls4_c00203{letter-spacing:0.050400px;}
.lse_c00203{letter-spacing:0.057600px;}
.ls10_c00203{letter-spacing:0.064800px;}
.ls3_c00203{letter-spacing:0.072000px;}
.lsd_c00203{letter-spacing:0.079200px;}
.ls11_c00203{letter-spacing:0.093600px;}
.lsa_c00203{letter-spacing:0.115200px;}
.lsf_c00203{letter-spacing:0.129600px;}
.lsc_c00203{letter-spacing:0.144000px;}
.ls12_c00203{letter-spacing:0.165600px;}
.ls9_c00203{letter-spacing:0.244800px;}
.ls8_c00203{letter-spacing:0.302400px;}
.lsb_c00203{letter-spacing:2.620800px;}
.ls1a_c00203{letter-spacing:90.043200px;}
.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;}
}
.ws5_c00203{word-spacing:-3.736800px;}
.ws4_c00203{word-spacing:-2.700000px;}
.ws3_c00203{word-spacing:-2.534400px;}
.ws2_c00203{word-spacing:-2.520000px;}
.ws7_c00203{word-spacing:-0.144000px;}
.wse_c00203{word-spacing:-0.100800px;}
.ws6_c00203{word-spacing:-0.028800px;}
.ws13_c00203{word-spacing:-0.021600px;}
.wsd_c00203{word-spacing:-0.007200px;}
.ws1_c00203{word-spacing:0.000000px;}
.ws0_c00203{word-spacing:0.138276px;}
.ws14_c00203{word-spacing:0.145800px;}
.ws15_c00203{word-spacing:0.167400px;}
.wsf_c00203{word-spacing:8.258400px;}
.ws10_c00203{word-spacing:8.287200px;}
.wsc_c00203{word-spacing:8.625600px;}
.wsa_c00203{word-spacing:8.949600px;}
.ws9_c00203{word-spacing:8.964000px;}
.wsb_c00203{word-spacing:9.014400px;}
.ws8_c00203{word-spacing:12.204000px;}
.ws11_c00203{word-spacing:25.898400px;}
.ws12_c00203{word-spacing:25.977600px;}
._b_c00203{margin-left:-90.950400px;}
._a_c00203{margin-left:-89.949600px;}
._7_c00203{margin-left:-4.212000px;}
._6_c00203{margin-left:-2.757600px;}
._0_c00203{margin-left:-1.252800px;}
._2_c00203{width:1.360800px;}
._1_c00203{width:2.476800px;}
._4_c00203{width:3.729600px;}
._5_c00203{width:5.508000px;}
._11_c00203{width:7.855200px;}
._3_c00203{width:12.571200px;}
._12_c00203{width:13.651200px;}
._8_c00203{width:20.188800px;}
._d_c00203{width:21.837600px;}
._10_c00203{width:32.047200px;}
._9_c00203{width:33.847200px;}
._c_c00203{width:56.160000px;}
._e_c00203{width:60.674400px;}
._f_c00203{width:123.861600px;}
.fc1_c00203{color:rgb(68,84,106);}
.fc0_c00203{color:rgb(0,0,0);}
.fs2_c00203{font-size:54.000000px;}
.fs0_c00203{font-size:60.120000px;}
.fs1_c00203{font-size:72.000000px;}
.y0_c00203{bottom:0.000000px;}
.y27_c00203{bottom:3.240450px;}
.y6_c00203{bottom:57.360450px;}
.y5_c00203{bottom:78.060450px;}
.y25_c00203{bottom:132.960450px;}
.y24_c00203{bottom:164.010450px;}
.y23_c00203{bottom:206.940450px;}
.y22_c00203{bottom:237.990450px;}
.y21_c00203{bottom:269.130450px;}
.y20_c00203{bottom:300.180450px;}
.y1f_c00203{bottom:331.230450px;}
.y1e_c00203{bottom:362.280450px;}
.y1d_c00203{bottom:393.330450px;}
.y1c_c00203{bottom:424.380450px;}
.y1b_c00203{bottom:455.430450px;}
.y1a_c00203{bottom:486.480450px;}
.y19_c00203{bottom:517.530450px;}
.y18_c00203{bottom:548.580450px;}
.y26_c00203{bottom:571.710000px;}
.y28_c00203{bottom:574.950450px;}
.y17_c00203{bottom:591.510450px;}
.y16_c00203{bottom:634.530450px;}
.y15_c00203{bottom:665.670450px;}
.y14_c00203{bottom:696.720450px;}
.y13_c00203{bottom:727.770450px;}
.y12_c00203{bottom:758.820450px;}
.y11_c00203{bottom:789.870450px;}
.y10_c00203{bottom:820.920450px;}
.yf_c00203{bottom:863.850450px;}
.ye_c00203{bottom:894.900450px;}
.yd_c00203{bottom:925.950450px;}
.yc_c00203{bottom:957.090450px;}
.yb_c00203{bottom:988.140450px;}
.ya_c00203{bottom:1019.190450px;}
.y9_c00203{bottom:1062.120450px;}
.y8_c00203{bottom:1093.170450px;}
.y7_c00203{bottom:1124.220450px;}
.y4_c00203{bottom:1144.380657px;}
.y3_c00203{bottom:1161.660648px;}
.y2_c00203{bottom:1178.850459px;}
.y1_c00203{bottom:1196.130450px;}
.h4_c00203{height:15.300000px;}
.h5_c00203{height:47.513672px;}
.h1_c00203{height:52.898555px;}
.h2_c00203{height:63.175781px;}
.h3_c00203{height:63.351562px;}
.h0_c00203{height:1263.000000px;}
.w2_c00203{width:413.100000px;}
.w1_c00203{width:892.500000px;}
.w0_c00203{width:892.830000px;}
.x0_c00203{left:0.000000px;}
.x4_c00203{left:127.619324px;}
.x6_c00203{left:131.850000px;}
.x7_c00203{left:406.080000px;}
.x5_c00203{left:559.350038px;}
.x1_c00203{left:649.620000px;}
.x3_c00203{left:738.450000px;}
.x2_c00203{left:765.449030px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls17_c00203{letter-spacing:-0.057600pt;}
.ls18_c00203{letter-spacing:-0.044800pt;}
.ls15_c00203{letter-spacing:-0.037408pt;}
.ls19_c00203{letter-spacing:-0.012800pt;}
.ls16_c00203{letter-spacing:0.000000pt;}
.ls1_c00203{letter-spacing:0.006400pt;}
.ls14_c00203{letter-spacing:0.009600pt;}
.ls0_c00203{letter-spacing:0.012800pt;}
.ls2_c00203{letter-spacing:0.019200pt;}
.ls6_c00203{letter-spacing:0.025600pt;}
.ls13_c00203{letter-spacing:0.028800pt;}
.ls5_c00203{letter-spacing:0.032000pt;}
.ls7_c00203{letter-spacing:0.038400pt;}
.ls4_c00203{letter-spacing:0.044800pt;}
.lse_c00203{letter-spacing:0.051200pt;}
.ls10_c00203{letter-spacing:0.057600pt;}
.ls3_c00203{letter-spacing:0.064000pt;}
.lsd_c00203{letter-spacing:0.070400pt;}
.ls11_c00203{letter-spacing:0.083200pt;}
.lsa_c00203{letter-spacing:0.102400pt;}
.lsf_c00203{letter-spacing:0.115200pt;}
.lsc_c00203{letter-spacing:0.128000pt;}
.ls12_c00203{letter-spacing:0.147200pt;}
.ls9_c00203{letter-spacing:0.217600pt;}
.ls8_c00203{letter-spacing:0.268800pt;}
.lsb_c00203{letter-spacing:2.329600pt;}
.ls1a_c00203{letter-spacing:80.038400pt;}
.ws5_c00203{word-spacing:-3.321600pt;}
.ws4_c00203{word-spacing:-2.400000pt;}
.ws3_c00203{word-spacing:-2.252800pt;}
.ws2_c00203{word-spacing:-2.240000pt;}
.ws7_c00203{word-spacing:-0.128000pt;}
.wse_c00203{word-spacing:-0.089600pt;}
.ws6_c00203{word-spacing:-0.025600pt;}
.ws13_c00203{word-spacing:-0.019200pt;}
.wsd_c00203{word-spacing:-0.006400pt;}
.ws1_c00203{word-spacing:0.000000pt;}
.ws0_c00203{word-spacing:0.122912pt;}
.ws14_c00203{word-spacing:0.129600pt;}
.ws15_c00203{word-spacing:0.148800pt;}
.wsf_c00203{word-spacing:7.340800pt;}
.ws10_c00203{word-spacing:7.366400pt;}
.wsc_c00203{word-spacing:7.667200pt;}
.wsa_c00203{word-spacing:7.955200pt;}
.ws9_c00203{word-spacing:7.968000pt;}
.wsb_c00203{word-spacing:8.012800pt;}
.ws8_c00203{word-spacing:10.848000pt;}
.ws11_c00203{word-spacing:23.020800pt;}
.ws12_c00203{word-spacing:23.091200pt;}
._b_c00203{margin-left:-80.844800pt;}
._a_c00203{margin-left:-79.955200pt;}
._7_c00203{margin-left:-3.744000pt;}
._6_c00203{margin-left:-2.451200pt;}
._0_c00203{margin-left:-1.113600pt;}
._2_c00203{width:1.209600pt;}
._1_c00203{width:2.201600pt;}
._4_c00203{width:3.315200pt;}
._5_c00203{width:4.896000pt;}
._11_c00203{width:6.982400pt;}
._3_c00203{width:11.174400pt;}
._12_c00203{width:12.134400pt;}
._8_c00203{width:17.945600pt;}
._d_c00203{width:19.411200pt;}
._10_c00203{width:28.486400pt;}
._9_c00203{width:30.086400pt;}
._c_c00203{width:49.920000pt;}
._e_c00203{width:53.932800pt;}
._f_c00203{width:110.099200pt;}
.fs2_c00203{font-size:48.000000pt;}
.fs0_c00203{font-size:53.440000pt;}
.fs1_c00203{font-size:64.000000pt;}
.y0_c00203{bottom:0.000000pt;}
.y27_c00203{bottom:2.880400pt;}
.y6_c00203{bottom:50.987067pt;}
.y5_c00203{bottom:69.387067pt;}
.y25_c00203{bottom:118.187067pt;}
.y24_c00203{bottom:145.787067pt;}
.y23_c00203{bottom:183.947067pt;}
.y22_c00203{bottom:211.547067pt;}
.y21_c00203{bottom:239.227067pt;}
.y20_c00203{bottom:266.827067pt;}
.y1f_c00203{bottom:294.427067pt;}
.y1e_c00203{bottom:322.027067pt;}
.y1d_c00203{bottom:349.627067pt;}
.y1c_c00203{bottom:377.227067pt;}
.y1b_c00203{bottom:404.827067pt;}
.y1a_c00203{bottom:432.427067pt;}
.y19_c00203{bottom:460.027067pt;}
.y18_c00203{bottom:487.627067pt;}
.y26_c00203{bottom:508.186667pt;}
.y28_c00203{bottom:511.067067pt;}
.y17_c00203{bottom:525.787067pt;}
.y16_c00203{bottom:564.027067pt;}
.y15_c00203{bottom:591.707067pt;}
.y14_c00203{bottom:619.307067pt;}
.y13_c00203{bottom:646.907067pt;}
.y12_c00203{bottom:674.507067pt;}
.y11_c00203{bottom:702.107067pt;}
.y10_c00203{bottom:729.707067pt;}
.yf_c00203{bottom:767.867067pt;}
.ye_c00203{bottom:795.467067pt;}
.yd_c00203{bottom:823.067067pt;}
.yc_c00203{bottom:850.747067pt;}
.yb_c00203{bottom:878.347067pt;}
.ya_c00203{bottom:905.947067pt;}
.y9_c00203{bottom:944.107067pt;}
.y8_c00203{bottom:971.707067pt;}
.y7_c00203{bottom:999.307067pt;}
.y4_c00203{bottom:1017.227251pt;}
.y3_c00203{bottom:1032.587243pt;}
.y2_c00203{bottom:1047.867075pt;}
.y1_c00203{bottom:1063.227067pt;}
.h4_c00203{height:13.600000pt;}
.h5_c00203{height:42.234375pt;}
.h1_c00203{height:47.020937pt;}
.h2_c00203{height:56.156250pt;}
.h3_c00203{height:56.312500pt;}
.h0_c00203{height:1122.666667pt;}
.w2_c00203{width:367.200000pt;}
.w1_c00203{width:793.333333pt;}
.w0_c00203{width:793.626667pt;}
.x0_c00203{left:0.000000pt;}
.x4_c00203{left:113.439399pt;}
.x6_c00203{left:117.200000pt;}
.x7_c00203{left:360.960000pt;}
.x5_c00203{left:497.200034pt;}
.x1_c00203{left:577.440000pt;}
.x3_c00203{left:656.400000pt;}
.x2_c00203{left:680.399138pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1159d21ddfc2723b23e56af.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00204;src:url('chunks/assets/font_25f1c54eb619b67a7a6cb38b.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00204;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:1.104004;font-style: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;}
.lse_c00204{letter-spacing:-0.102204px;}
.ls16_c00204{letter-spacing:-0.036000px;}
.ls15_c00204{letter-spacing:-0.028800px;}
.ls10_c00204{letter-spacing:-0.021600px;}
.ls12_c00204{letter-spacing:-0.014400px;}
.ls14_c00204{letter-spacing:-0.007200px;}
.lsf_c00204{letter-spacing:0.000000px;}
.lsb_c00204{letter-spacing:0.007200px;}
.ls3_c00204{letter-spacing:0.014400px;}
.ls8_c00204{letter-spacing:0.021600px;}
.lsa_c00204{letter-spacing:0.028800px;}
.ls5_c00204{letter-spacing:0.036000px;}
.ls0_c00204{letter-spacing:0.043200px;}
.ls7_c00204{letter-spacing:0.050400px;}
.ls2_c00204{letter-spacing:0.057600px;}
.ls6_c00204{letter-spacing:0.064800px;}
.ls1_c00204{letter-spacing:0.072000px;}
.ls9_c00204{letter-spacing:0.079200px;}
.lsd_c00204{letter-spacing:0.100800px;}
.lsc_c00204{letter-spacing:0.115200px;}
.ls11_c00204{letter-spacing:6.480000px;}
.ls13_c00204{letter-spacing:12.960000px;}
.ls4_c00204{letter-spacing:21.329028px;}
.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;}
}
.ws1_c00204{word-spacing:0.000000px;}
.ws4_c00204{word-spacing:0.007200px;}
.ws3_c00204{word-spacing:0.115200px;}
.ws0_c00204{word-spacing:0.192384px;}
.ws2_c00204{word-spacing:0.259200px;}
.ws7_c00204{word-spacing:2.325600px;}
.ws8_c00204{word-spacing:2.469600px;}
.ws6_c00204{word-spacing:4.500000px;}
.ws5_c00204{word-spacing:4.572000px;}
._9_c00204{margin-left:-13.288464px;}
._a_c00204{margin-left:-11.914272px;}
._6_c00204{margin-left:-7.416000px;}
._5_c00204{margin-left:-6.393600px;}
._d_c00204{margin-left:-5.385600px;}
._c_c00204{margin-left:-4.377600px;}
._3_c00204{margin-left:-2.656800px;}
._1_c00204{margin-left:-1.051200px;}
._0_c00204{width:1.034064px;}
._10_c00204{width:2.109600px;}
._f_c00204{width:3.160800px;}
._4_c00204{width:5.025600px;}
._7_c00204{width:6.739200px;}
._8_c00204{width:12.312000px;}
._e_c00204{width:13.334400px;}
._2_c00204{width:14.342400px;}
._11_c00204{width:15.645600px;}
._b_c00204{width:26.251200px;}
.fc1_c00204{color:rgb(0,0,0);}
.fc0_c00204{color:rgb(32,31,30);}
.fs0_c00204{font-size:60.120000px;}
.fs1_c00204{font-size:72.000000px;}
.fs2_c00204{font-size:96.120000px;}
.y0_c00204{bottom:0.000000px;}
.y5_c00204{bottom:57.360450px;}
.y4_c00204{bottom:78.060450px;}
.y24_c00204{bottom:134.850450px;}
.y23_c00204{bottom:165.900450px;}
.y22_c00204{bottom:196.860450px;}
.y21_c00204{bottom:227.910450px;}
.y20_c00204{bottom:258.960450px;}
.y1f_c00204{bottom:290.010450px;}
.y1e_c00204{bottom:333.030450px;}
.y1d_c00204{bottom:364.170450px;}
.y1c_c00204{bottom:395.220450px;}
.y1b_c00204{bottom:426.270450px;}
.y1a_c00204{bottom:469.200450px;}
.y19_c00204{bottom:500.340450px;}
.y18_c00204{bottom:531.390450px;}
.y17_c00204{bottom:565.590450px;}
.y16_c00204{bottom:587.910450px;}
.y15_c00204{bottom:613.290450px;}
.y14_c00204{bottom:656.310450px;}
.y13_c00204{bottom:687.450450px;}
.y12_c00204{bottom:718.500450px;}
.y11_c00204{bottom:749.550450px;}
.y10_c00204{bottom:792.570450px;}
.yf_c00204{bottom:823.710450px;}
.ye_c00204{bottom:854.760450px;}
.yd_c00204{bottom:885.810450px;}
.yc_c00204{bottom:916.770450px;}
.yb_c00204{bottom:951.060450px;}
.ya_c00204{bottom:973.380450px;}
.y9_c00204{bottom:1000.469550px;}
.y8_c00204{bottom:1049.250450px;}
.y7_c00204{bottom:1080.390450px;}
.y6_c00204{bottom:1111.440450px;}
.y3_c00204{bottom:1132.140450px;}
.y2_c00204{bottom:1165.441023px;}
.y1_c00204{bottom:1196.040600px;}
.h1_c00204{height:52.898555px;}
.h2_c00204{height:63.175781px;}
.h4_c00204{height:63.351562px;}
.h3_c00204{height:85.372207px;}
.h0_c00204{height:1263.000000px;}
.w1_c00204{width:892.500000px;}
.w0_c00204{width:892.830000px;}
.x0_c00204{left:0.000000px;}
.x1_c00204{left:127.620000px;}
.x2_c00204{left:738.450000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.lse_c00204{letter-spacing:-0.090848pt;}
.ls16_c00204{letter-spacing:-0.032000pt;}
.ls15_c00204{letter-spacing:-0.025600pt;}
.ls10_c00204{letter-spacing:-0.019200pt;}
.ls12_c00204{letter-spacing:-0.012800pt;}
.ls14_c00204{letter-spacing:-0.006400pt;}
.lsf_c00204{letter-spacing:0.000000pt;}
.lsb_c00204{letter-spacing:0.006400pt;}
.ls3_c00204{letter-spacing:0.012800pt;}
.ls8_c00204{letter-spacing:0.019200pt;}
.lsa_c00204{letter-spacing:0.025600pt;}
.ls5_c00204{letter-spacing:0.032000pt;}
.ls0_c00204{letter-spacing:0.038400pt;}
.ls7_c00204{letter-spacing:0.044800pt;}
.ls2_c00204{letter-spacing:0.051200pt;}
.ls6_c00204{letter-spacing:0.057600pt;}
.ls1_c00204{letter-spacing:0.064000pt;}
.ls9_c00204{letter-spacing:0.070400pt;}
.lsd_c00204{letter-spacing:0.089600pt;}
.lsc_c00204{letter-spacing:0.102400pt;}
.ls11_c00204{letter-spacing:5.760000pt;}
.ls13_c00204{letter-spacing:11.520000pt;}
.ls4_c00204{letter-spacing:18.959136pt;}
.ws1_c00204{word-spacing:0.000000pt;}
.ws4_c00204{word-spacing:0.006400pt;}
.ws3_c00204{word-spacing:0.102400pt;}
.ws0_c00204{word-spacing:0.171008pt;}
.ws2_c00204{word-spacing:0.230400pt;}
.ws7_c00204{word-spacing:2.067200pt;}
.ws8_c00204{word-spacing:2.195200pt;}
.ws6_c00204{word-spacing:4.000000pt;}
.ws5_c00204{word-spacing:4.064000pt;}
._9_c00204{margin-left:-11.811968pt;}
._a_c00204{margin-left:-10.590464pt;}
._6_c00204{margin-left:-6.592000pt;}
._5_c00204{margin-left:-5.683200pt;}
._d_c00204{margin-left:-4.787200pt;}
._c_c00204{margin-left:-3.891200pt;}
._3_c00204{margin-left:-2.361600pt;}
._1_c00204{margin-left:-0.934400pt;}
._0_c00204{width:0.919168pt;}
._10_c00204{width:1.875200pt;}
._f_c00204{width:2.809600pt;}
._4_c00204{width:4.467200pt;}
._7_c00204{width:5.990400pt;}
._8_c00204{width:10.944000pt;}
._e_c00204{width:11.852800pt;}
._2_c00204{width:12.748800pt;}
._11_c00204{width:13.907200pt;}
._b_c00204{width:23.334400pt;}
.fs0_c00204{font-size:53.440000pt;}
.fs1_c00204{font-size:64.000000pt;}
.fs2_c00204{font-size:85.440000pt;}
.y0_c00204{bottom:0.000000pt;}
.y5_c00204{bottom:50.987067pt;}
.y4_c00204{bottom:69.387067pt;}
.y24_c00204{bottom:119.867067pt;}
.y23_c00204{bottom:147.467067pt;}
.y22_c00204{bottom:174.987067pt;}
.y21_c00204{bottom:202.587067pt;}
.y20_c00204{bottom:230.187067pt;}
.y1f_c00204{bottom:257.787067pt;}
.y1e_c00204{bottom:296.027067pt;}
.y1d_c00204{bottom:323.707067pt;}
.y1c_c00204{bottom:351.307067pt;}
.y1b_c00204{bottom:378.907067pt;}
.y1a_c00204{bottom:417.067067pt;}
.y19_c00204{bottom:444.747067pt;}
.y18_c00204{bottom:472.347067pt;}
.y17_c00204{bottom:502.747067pt;}
.y16_c00204{bottom:522.587067pt;}
.y15_c00204{bottom:545.147067pt;}
.y14_c00204{bottom:583.387067pt;}
.y13_c00204{bottom:611.067067pt;}
.y12_c00204{bottom:638.667067pt;}
.y11_c00204{bottom:666.267067pt;}
.y10_c00204{bottom:704.507067pt;}
.yf_c00204{bottom:732.187067pt;}
.ye_c00204{bottom:759.787067pt;}
.yd_c00204{bottom:787.387067pt;}
.yc_c00204{bottom:814.907067pt;}
.yb_c00204{bottom:845.387067pt;}
.ya_c00204{bottom:865.227067pt;}
.y9_c00204{bottom:889.306267pt;}
.y8_c00204{bottom:932.667067pt;}
.y7_c00204{bottom:960.347067pt;}
.y6_c00204{bottom:987.947067pt;}
.y3_c00204{bottom:1006.347067pt;}
.y2_c00204{bottom:1035.947576pt;}
.y1_c00204{bottom:1063.147200pt;}
.h1_c00204{height:47.020937pt;}
.h2_c00204{height:56.156250pt;}
.h4_c00204{height:56.312500pt;}
.h3_c00204{height:75.886406pt;}
.h0_c00204{height:1122.666667pt;}
.w1_c00204{width:793.333333pt;}
.w0_c00204{width:793.626667pt;}
.x0_c00204{left:0.000000pt;}
.x1_c00204{left:113.440000pt;}
.x2_c00204{left:656.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_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_c1024089753fa890073031ad.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00205;src:url('chunks/assets/font_e9e72eecb3aa8ca7afcd8d7f.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.093262;font-style: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;}
.ls18_c00205{letter-spacing:-0.165600px;}
.ls13_c00205{letter-spacing:-0.064800px;}
.ls19_c00205{letter-spacing:-0.050400px;}
.ls10_c00205{letter-spacing:-0.048096px;}
.ls17_c00205{letter-spacing:-0.036000px;}
.ls14_c00205{letter-spacing:-0.028800px;}
.ls15_c00205{letter-spacing:-0.021600px;}
.ls12_c00205{letter-spacing:-0.007200px;}
.ls11_c00205{letter-spacing:0.000000px;}
.ls1_c00205{letter-spacing:0.007200px;}
.ls0_c00205{letter-spacing:0.014400px;}
.ls9_c00205{letter-spacing:0.021600px;}
.ls6_c00205{letter-spacing:0.028800px;}
.lsa_c00205{letter-spacing:0.036000px;}
.lsc_c00205{letter-spacing:0.043200px;}
.ls8_c00205{letter-spacing:0.050400px;}
.ls3_c00205{letter-spacing:0.057600px;}
.ls2_c00205{letter-spacing:0.064800px;}
.lsb_c00205{letter-spacing:0.072000px;}
.lsf_c00205{letter-spacing:0.079200px;}
.ls4_c00205{letter-spacing:0.093600px;}
.lsd_c00205{letter-spacing:0.115200px;}
.ls5_c00205{letter-spacing:0.122400px;}
.lse_c00205{letter-spacing:0.172800px;}
.ls7_c00205{letter-spacing:0.252000px;}
.ls16_c00205{letter-spacing:3.600000px;}
.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;}
}
.ws5_c00205{word-spacing:-2.210400px;}
.ws1_c00205{word-spacing:0.000000px;}
.ws0_c00205{word-spacing:0.138276px;}
.ws4_c00205{word-spacing:1.418400px;}
.ws7_c00205{word-spacing:1.965600px;}
.ws6_c00205{word-spacing:3.636000px;}
.ws2_c00205{word-spacing:7.567200px;}
.ws3_c00205{word-spacing:9.648000px;}
._6_c00205{margin-left:-4.312800px;}
._7_c00205{margin-left:-3.038400px;}
._d_c00205{margin-left:-2.030400px;}
._1_c00205{margin-left:-1.022400px;}
._2_c00205{width:1.015200px;}
._e_c00205{width:2.073600px;}
._a_c00205{width:3.225600px;}
._9_c00205{width:4.629600px;}
._8_c00205{width:6.105600px;}
._3_c00205{width:7.171200px;}
._4_c00205{width:8.395200px;}
._b_c00205{width:9.540000px;}
._c_c00205{width:10.584000px;}
._0_c00205{width:16.848000px;}
._5_c00205{width:23.328000px;}
.fc0_c00205{color:rgb(0,0,0);}
.fs0_c00205{font-size:60.120000px;}
.fs1_c00205{font-size:72.000000px;}
.y0_c00205{bottom:0.000000px;}
.y6_c00205{bottom:57.360450px;}
.y5_c00205{bottom:78.060450px;}
.y25_c00205{bottom:120.900450px;}
.y24_c00205{bottom:151.950450px;}
.y23_c00205{bottom:183.000450px;}
.y22_c00205{bottom:226.020450px;}
.y21_c00205{bottom:257.070450px;}
.y20_c00205{bottom:288.120450px;}
.y1f_c00205{bottom:331.140450px;}
.y1e_c00205{bottom:362.280450px;}
.y1d_c00205{bottom:393.330450px;}
.y1c_c00205{bottom:424.380450px;}
.y1b_c00205{bottom:455.430450px;}
.y1a_c00205{bottom:486.480450px;}
.y19_c00205{bottom:517.530450px;}
.y18_c00205{bottom:560.460450px;}
.y17_c00205{bottom:591.600450px;}
.y16_c00205{bottom:622.650450px;}
.y15_c00205{bottom:653.700450px;}
.y14_c00205{bottom:696.630450px;}
.y13_c00205{bottom:727.770450px;}
.y12_c00205{bottom:758.820450px;}
.y11_c00205{bottom:789.870450px;}
.y10_c00205{bottom:832.800450px;}
.yf_c00205{bottom:863.940450px;}
.ye_c00205{bottom:894.990450px;}
.yd_c00205{bottom:926.040450px;}
.yc_c00205{bottom:957.090450px;}
.yb_c00205{bottom:988.140450px;}
.ya_c00205{bottom:1019.190450px;}
.y9_c00205{bottom:1062.120450px;}
.y8_c00205{bottom:1093.260450px;}
.y7_c00205{bottom:1124.310450px;}
.y4_c00205{bottom:1144.380657px;}
.y3_c00205{bottom:1161.660648px;}
.y2_c00205{bottom:1178.850459px;}
.y1_c00205{bottom:1196.130450px;}
.h1_c00205{height:52.898555px;}
.h2_c00205{height:63.175781px;}
.h3_c00205{height:63.351562px;}
.h0_c00205{height:1263.000000px;}
.w1_c00205{width:892.500000px;}
.w0_c00205{width:892.830000px;}
.x0_c00205{left:0.000000px;}
.x4_c00205{left:127.620000px;}
.x1_c00205{left:649.620000px;}
.x3_c00205{left:738.450000px;}
.x2_c00205{left:765.450198px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls18_c00205{letter-spacing:-0.147200pt;}
.ls13_c00205{letter-spacing:-0.057600pt;}
.ls19_c00205{letter-spacing:-0.044800pt;}
.ls10_c00205{letter-spacing:-0.042752pt;}
.ls17_c00205{letter-spacing:-0.032000pt;}
.ls14_c00205{letter-spacing:-0.025600pt;}
.ls15_c00205{letter-spacing:-0.019200pt;}
.ls12_c00205{letter-spacing:-0.006400pt;}
.ls11_c00205{letter-spacing:0.000000pt;}
.ls1_c00205{letter-spacing:0.006400pt;}
.ls0_c00205{letter-spacing:0.012800pt;}
.ls9_c00205{letter-spacing:0.019200pt;}
.ls6_c00205{letter-spacing:0.025600pt;}
.lsa_c00205{letter-spacing:0.032000pt;}
.lsc_c00205{letter-spacing:0.038400pt;}
.ls8_c00205{letter-spacing:0.044800pt;}
.ls3_c00205{letter-spacing:0.051200pt;}
.ls2_c00205{letter-spacing:0.057600pt;}
.lsb_c00205{letter-spacing:0.064000pt;}
.lsf_c00205{letter-spacing:0.070400pt;}
.ls4_c00205{letter-spacing:0.083200pt;}
.lsd_c00205{letter-spacing:0.102400pt;}
.ls5_c00205{letter-spacing:0.108800pt;}
.lse_c00205{letter-spacing:0.153600pt;}
.ls7_c00205{letter-spacing:0.224000pt;}
.ls16_c00205{letter-spacing:3.200000pt;}
.ws5_c00205{word-spacing:-1.964800pt;}
.ws1_c00205{word-spacing:0.000000pt;}
.ws0_c00205{word-spacing:0.122912pt;}
.ws4_c00205{word-spacing:1.260800pt;}
.ws7_c00205{word-spacing:1.747200pt;}
.ws6_c00205{word-spacing:3.232000pt;}
.ws2_c00205{word-spacing:6.726400pt;}
.ws3_c00205{word-spacing:8.576000pt;}
._6_c00205{margin-left:-3.833600pt;}
._7_c00205{margin-left:-2.700800pt;}
._d_c00205{margin-left:-1.804800pt;}
._1_c00205{margin-left:-0.908800pt;}
._2_c00205{width:0.902400pt;}
._e_c00205{width:1.843200pt;}
._a_c00205{width:2.867200pt;}
._9_c00205{width:4.115200pt;}
._8_c00205{width:5.427200pt;}
._3_c00205{width:6.374400pt;}
._4_c00205{width:7.462400pt;}
._b_c00205{width:8.480000pt;}
._c_c00205{width:9.408000pt;}
._0_c00205{width:14.976000pt;}
._5_c00205{width:20.736000pt;}
.fs0_c00205{font-size:53.440000pt;}
.fs1_c00205{font-size:64.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y6_c00205{bottom:50.987067pt;}
.y5_c00205{bottom:69.387067pt;}
.y25_c00205{bottom:107.467067pt;}
.y24_c00205{bottom:135.067067pt;}
.y23_c00205{bottom:162.667067pt;}
.y22_c00205{bottom:200.907067pt;}
.y21_c00205{bottom:228.507067pt;}
.y20_c00205{bottom:256.107067pt;}
.y1f_c00205{bottom:294.347067pt;}
.y1e_c00205{bottom:322.027067pt;}
.y1d_c00205{bottom:349.627067pt;}
.y1c_c00205{bottom:377.227067pt;}
.y1b_c00205{bottom:404.827067pt;}
.y1a_c00205{bottom:432.427067pt;}
.y19_c00205{bottom:460.027067pt;}
.y18_c00205{bottom:498.187067pt;}
.y17_c00205{bottom:525.867067pt;}
.y16_c00205{bottom:553.467067pt;}
.y15_c00205{bottom:581.067067pt;}
.y14_c00205{bottom:619.227067pt;}
.y13_c00205{bottom:646.907067pt;}
.y12_c00205{bottom:674.507067pt;}
.y11_c00205{bottom:702.107067pt;}
.y10_c00205{bottom:740.267067pt;}
.yf_c00205{bottom:767.947067pt;}
.ye_c00205{bottom:795.547067pt;}
.yd_c00205{bottom:823.147067pt;}
.yc_c00205{bottom:850.747067pt;}
.yb_c00205{bottom:878.347067pt;}
.ya_c00205{bottom:905.947067pt;}
.y9_c00205{bottom:944.107067pt;}
.y8_c00205{bottom:971.787067pt;}
.y7_c00205{bottom:999.387067pt;}
.y4_c00205{bottom:1017.227251pt;}
.y3_c00205{bottom:1032.587243pt;}
.y2_c00205{bottom:1047.867075pt;}
.y1_c00205{bottom:1063.227067pt;}
.h1_c00205{height:47.020937pt;}
.h2_c00205{height:56.156250pt;}
.h3_c00205{height:56.312500pt;}
.h0_c00205{height:1122.666667pt;}
.w1_c00205{width:793.333333pt;}
.w0_c00205{width:793.626667pt;}
.x0_c00205{left:0.000000pt;}
.x4_c00205{left:113.440000pt;}
.x1_c00205{left:577.440000pt;}
.x3_c00205{left:656.400000pt;}
.x2_c00205{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa96e3057f59c0be15d53db5.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_a7a0f92a4ada9e0ecc295809.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.093262;font-style: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;}
.lsc_c00206{letter-spacing:-0.102204px;}
.ls13_c00206{letter-spacing:-0.086400px;}
.ls12_c00206{letter-spacing:-0.064800px;}
.ls19_c00206{letter-spacing:-0.048600px;}
.ls1b_c00206{letter-spacing:-0.043200px;}
.ls16_c00206{letter-spacing:-0.036000px;}
.ls18_c00206{letter-spacing:-0.032400px;}
.ls1a_c00206{letter-spacing:-0.028800px;}
.lse_c00206{letter-spacing:-0.021600px;}
.ls14_c00206{letter-spacing:-0.014400px;}
.ls17_c00206{letter-spacing:-0.010800px;}
.ls10_c00206{letter-spacing:-0.007200px;}
.lsd_c00206{letter-spacing:0.000000px;}
.ls0_c00206{letter-spacing:0.007200px;}
.lsa_c00206{letter-spacing:0.010800px;}
.ls1_c00206{letter-spacing:0.014400px;}
.lsb_c00206{letter-spacing:0.016200px;}
.ls2_c00206{letter-spacing:0.021600px;}
.ls9_c00206{letter-spacing:0.028800px;}
.ls6_c00206{letter-spacing:0.036000px;}
.ls7_c00206{letter-spacing:0.043200px;}
.ls3_c00206{letter-spacing:0.050400px;}
.ls8_c00206{letter-spacing:0.057600px;}
.ls4_c00206{letter-spacing:0.064800px;}
.ls5_c00206{letter-spacing:0.100800px;}
.ls15_c00206{letter-spacing:0.720000px;}
.lsf_c00206{letter-spacing:8.280000px;}
.ls11_c00206{letter-spacing:12.960000px;}
.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;}
}
.ws4_c00206{word-spacing:-0.550800px;}
.ws5_c00206{word-spacing:-0.529200px;}
.ws1_c00206{word-spacing:0.000000px;}
.ws0_c00206{word-spacing:0.192384px;}
.ws9_c00206{word-spacing:0.199800px;}
.ws3_c00206{word-spacing:0.734400px;}
.ws7_c00206{word-spacing:2.359800px;}
.ws6_c00206{word-spacing:2.370600px;}
.ws8_c00206{word-spacing:2.386800px;}
.wsa_c00206{word-spacing:4.665600px;}
.ws2_c00206{word-spacing:8.301600px;}
._b_c00206{margin-left:-14.184000px;}
._a_c00206{margin-left:-12.801600px;}
._5_c00206{margin-left:-8.200800px;}
._d_c00206{margin-left:-5.428800px;}
._c_c00206{margin-left:-4.334400px;}
._e_c00206{margin-left:-2.923200px;}
._3_c00206{margin-left:-1.310400px;}
._0_c00206{width:1.034064px;}
._6_c00206{width:2.721600px;}
._7_c00206{width:3.772800px;}
._f_c00206{width:5.572800px;}
._1_c00206{width:7.552800px;}
._4_c00206{width:9.158400px;}
._2_c00206{width:10.749600px;}
._8_c00206{width:12.420000px;}
._9_c00206{width:13.528800px;}
._10_c00206{width:14.731200px;}
.fc2_c00206{color:rgb(68,84,106);}
.fc1_c00206{color:rgb(0,0,0);}
.fc0_c00206{color:rgb(32,31,30);}
.fs2_c00206{font-size:54.000000px;}
.fs0_c00206{font-size:60.120000px;}
.fs1_c00206{font-size:72.000000px;}
.y0_c00206{bottom:0.000000px;}
.y5_c00206{bottom:57.360450px;}
.y4_c00206{bottom:78.060450px;}
.y1d_c00206{bottom:148.710450px;}
.y1c_c00206{bottom:191.820450px;}
.y1b_c00206{bottom:222.960450px;}
.y1a_c00206{bottom:254.010450px;}
.y19_c00206{bottom:285.060450px;}
.y18_c00206{bottom:323.940450px;}
.y17_c00206{bottom:582.960450px;}
.y16_c00206{bottom:598.530000px;}
.y15_c00206{bottom:614.010450px;}
.y14_c00206{bottom:652.620450px;}
.y13_c00206{bottom:695.730450px;}
.y12_c00206{bottom:726.870450px;}
.y11_c00206{bottom:757.920450px;}
.y10_c00206{bottom:788.970450px;}
.yf_c00206{bottom:820.020450px;}
.ye_c00206{bottom:851.070450px;}
.yd_c00206{bottom:882.120450px;}
.yc_c00206{bottom:913.170450px;}
.yb_c00206{bottom:944.220450px;}
.ya_c00206{bottom:975.180450px;}
.y9_c00206{bottom:1006.230450px;}
.y8_c00206{bottom:1049.250450px;}
.y7_c00206{bottom:1080.390450px;}
.y6_c00206{bottom:1111.440450px;}
.y3_c00206{bottom:1132.140450px;}
.y2_c00206{bottom:1165.441023px;}
.y1_c00206{bottom:1196.040600px;}
.h4_c00206{height:47.513672px;}
.h1_c00206{height:52.898555px;}
.h2_c00206{height:63.175781px;}
.h3_c00206{height:63.351562px;}
.h0_c00206{height:1263.000000px;}
.w1_c00206{width:892.500000px;}
.w0_c00206{width:892.830000px;}
.x0_c00206{left:0.000000px;}
.x1_c00206{left:127.620000px;}
.x3_c00206{left:701.280000px;}
.x2_c00206{left:738.450000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.lsc_c00206{letter-spacing:-0.090848pt;}
.ls13_c00206{letter-spacing:-0.076800pt;}
.ls12_c00206{letter-spacing:-0.057600pt;}
.ls19_c00206{letter-spacing:-0.043200pt;}
.ls1b_c00206{letter-spacing:-0.038400pt;}
.ls16_c00206{letter-spacing:-0.032000pt;}
.ls18_c00206{letter-spacing:-0.028800pt;}
.ls1a_c00206{letter-spacing:-0.025600pt;}
.lse_c00206{letter-spacing:-0.019200pt;}
.ls14_c00206{letter-spacing:-0.012800pt;}
.ls17_c00206{letter-spacing:-0.009600pt;}
.ls10_c00206{letter-spacing:-0.006400pt;}
.lsd_c00206{letter-spacing:0.000000pt;}
.ls0_c00206{letter-spacing:0.006400pt;}
.lsa_c00206{letter-spacing:0.009600pt;}
.ls1_c00206{letter-spacing:0.012800pt;}
.lsb_c00206{letter-spacing:0.014400pt;}
.ls2_c00206{letter-spacing:0.019200pt;}
.ls9_c00206{letter-spacing:0.025600pt;}
.ls6_c00206{letter-spacing:0.032000pt;}
.ls7_c00206{letter-spacing:0.038400pt;}
.ls3_c00206{letter-spacing:0.044800pt;}
.ls8_c00206{letter-spacing:0.051200pt;}
.ls4_c00206{letter-spacing:0.057600pt;}
.ls5_c00206{letter-spacing:0.089600pt;}
.ls15_c00206{letter-spacing:0.640000pt;}
.lsf_c00206{letter-spacing:7.360000pt;}
.ls11_c00206{letter-spacing:11.520000pt;}
.ws4_c00206{word-spacing:-0.489600pt;}
.ws5_c00206{word-spacing:-0.470400pt;}
.ws1_c00206{word-spacing:0.000000pt;}
.ws0_c00206{word-spacing:0.171008pt;}
.ws9_c00206{word-spacing:0.177600pt;}
.ws3_c00206{word-spacing:0.652800pt;}
.ws7_c00206{word-spacing:2.097600pt;}
.ws6_c00206{word-spacing:2.107200pt;}
.ws8_c00206{word-spacing:2.121600pt;}
.wsa_c00206{word-spacing:4.147200pt;}
.ws2_c00206{word-spacing:7.379200pt;}
._b_c00206{margin-left:-12.608000pt;}
._a_c00206{margin-left:-11.379200pt;}
._5_c00206{margin-left:-7.289600pt;}
._d_c00206{margin-left:-4.825600pt;}
._c_c00206{margin-left:-3.852800pt;}
._e_c00206{margin-left:-2.598400pt;}
._3_c00206{margin-left:-1.164800pt;}
._0_c00206{width:0.919168pt;}
._6_c00206{width:2.419200pt;}
._7_c00206{width:3.353600pt;}
._f_c00206{width:4.953600pt;}
._1_c00206{width:6.713600pt;}
._4_c00206{width:8.140800pt;}
._2_c00206{width:9.555200pt;}
._8_c00206{width:11.040000pt;}
._9_c00206{width:12.025600pt;}
._10_c00206{width:13.094400pt;}
.fs2_c00206{font-size:48.000000pt;}
.fs0_c00206{font-size:53.440000pt;}
.fs1_c00206{font-size:64.000000pt;}
.y0_c00206{bottom:0.000000pt;}
.y5_c00206{bottom:50.987067pt;}
.y4_c00206{bottom:69.387067pt;}
.y1d_c00206{bottom:132.187067pt;}
.y1c_c00206{bottom:170.507067pt;}
.y1b_c00206{bottom:198.187067pt;}
.y1a_c00206{bottom:225.787067pt;}
.y19_c00206{bottom:253.387067pt;}
.y18_c00206{bottom:287.947067pt;}
.y17_c00206{bottom:518.187067pt;}
.y16_c00206{bottom:532.026667pt;}
.y15_c00206{bottom:545.787067pt;}
.y14_c00206{bottom:580.107067pt;}
.y13_c00206{bottom:618.427067pt;}
.y12_c00206{bottom:646.107067pt;}
.y11_c00206{bottom:673.707067pt;}
.y10_c00206{bottom:701.307067pt;}
.yf_c00206{bottom:728.907067pt;}
.ye_c00206{bottom:756.507067pt;}
.yd_c00206{bottom:784.107067pt;}
.yc_c00206{bottom:811.707067pt;}
.yb_c00206{bottom:839.307067pt;}
.ya_c00206{bottom:866.827067pt;}
.y9_c00206{bottom:894.427067pt;}
.y8_c00206{bottom:932.667067pt;}
.y7_c00206{bottom:960.347067pt;}
.y6_c00206{bottom:987.947067pt;}
.y3_c00206{bottom:1006.347067pt;}
.y2_c00206{bottom:1035.947576pt;}
.y1_c00206{bottom:1063.147200pt;}
.h4_c00206{height:42.234375pt;}
.h1_c00206{height:47.020937pt;}
.h2_c00206{height:56.156250pt;}
.h3_c00206{height:56.312500pt;}
.h0_c00206{height:1122.666667pt;}
.w1_c00206{width:793.333333pt;}
.w0_c00206{width:793.626667pt;}
.x0_c00206{left:0.000000pt;}
.x1_c00206{left:113.440000pt;}
.x3_c00206{left:623.360000pt;}
.x2_c00206{left:656.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_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_96ec86300c8b78fb15bb14ef.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.095703;font-style:normal;font-weight:normal;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_bc9f7ceed918361b765e662b.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00207{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls1a_c00207{letter-spacing:-4.320000px;}
.ls18_c00207{letter-spacing:-0.360000px;}
.lsf_c00207{letter-spacing:-0.048096px;}
.ls17_c00207{letter-spacing:-0.043200px;}
.ls19_c00207{letter-spacing:-0.036000px;}
.ls16_c00207{letter-spacing:-0.028800px;}
.ls13_c00207{letter-spacing:-0.021600px;}
.ls11_c00207{letter-spacing:-0.014400px;}
.ls14_c00207{letter-spacing:-0.007200px;}
.ls10_c00207{letter-spacing:0.000000px;}
.ls0_c00207{letter-spacing:0.007200px;}
.ls2_c00207{letter-spacing:0.014400px;}
.ls7_c00207{letter-spacing:0.021600px;}
.lsa_c00207{letter-spacing:0.028800px;}
.ls6_c00207{letter-spacing:0.036000px;}
.ls5_c00207{letter-spacing:0.043200px;}
.ls8_c00207{letter-spacing:0.050400px;}
.ls3_c00207{letter-spacing:0.057600px;}
.ls1_c00207{letter-spacing:0.064800px;}
.lsc_c00207{letter-spacing:0.072000px;}
.ls4_c00207{letter-spacing:0.079200px;}
.ls9_c00207{letter-spacing:0.086400px;}
.lsb_c00207{letter-spacing:0.108000px;}
.ls1b_c00207{letter-spacing:0.115200px;}
.lse_c00207{letter-spacing:2.160000px;}
.lsd_c00207{letter-spacing:5.760000px;}
.ls15_c00207{letter-spacing:8.640000px;}
.ls12_c00207{letter-spacing:12.916800px;}
.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:-0.756000px;}
.ws1_c00207{word-spacing:0.000000px;}
.ws2_c00207{word-spacing:0.072000px;}
.ws0_c00207{word-spacing:0.138276px;}
.ws9_c00207{word-spacing:2.124000px;}
.ws8_c00207{word-spacing:5.061600px;}
.ws6_c00207{word-spacing:5.565600px;}
.ws5_c00207{word-spacing:5.680800px;}
.ws7_c00207{word-spacing:5.796000px;}
.ws4_c00207{word-spacing:7.531200px;}
._1_c00207{margin-left:-12.916800px;}
._2_c00207{margin-left:-11.894400px;}
._6_c00207{margin-left:-8.676000px;}
._13_c00207{margin-left:-5.716800px;}
._12_c00207{margin-left:-4.125600px;}
._b_c00207{margin-left:-2.808000px;}
._0_c00207{margin-left:-1.447200px;}
._c_c00207{width:1.029600px;}
._8_c00207{width:2.908800px;}
._7_c00207{width:3.924000px;}
._11_c00207{width:4.939200px;}
._d_c00207{width:6.228000px;}
._10_c00207{width:7.516800px;}
._5_c00207{width:8.625600px;}
._4_c00207{width:10.425600px;}
._3_c00207{width:12.772800px;}
._a_c00207{width:15.588000px;}
._9_c00207{width:16.912800px;}
._e_c00207{width:20.743200px;}
._f_c00207{width:21.859200px;}
.fc0_c00207{color:rgb(0,0,0);}
.fs0_c00207{font-size:60.120000px;}
.fs1_c00207{font-size:72.000000px;}
.y0_c00207{bottom:0.000000px;}
.y6_c00207{bottom:57.360450px;}
.y5_c00207{bottom:78.060450px;}
.y25_c00207{bottom:150.240450px;}
.y24_c00207{bottom:181.380450px;}
.y23_c00207{bottom:212.430450px;}
.y22_c00207{bottom:243.480450px;}
.y21_c00207{bottom:274.530450px;}
.y20_c00207{bottom:305.580450px;}
.y1f_c00207{bottom:336.630450px;}
.y1e_c00207{bottom:367.680450px;}
.y1d_c00207{bottom:410.610450px;}
.y1c_c00207{bottom:441.750450px;}
.y1b_c00207{bottom:472.800450px;}
.y1a_c00207{bottom:503.850450px;}
.y19_c00207{bottom:534.900450px;}
.y18_c00207{bottom:577.830450px;}
.y17_c00207{bottom:608.970450px;}
.y16_c00207{bottom:640.020450px;}
.y15_c00207{bottom:671.070450px;}
.y14_c00207{bottom:702.120450px;}
.y13_c00207{bottom:733.170450px;}
.y12_c00207{bottom:764.220450px;}
.y11_c00207{bottom:807.240450px;}
.y10_c00207{bottom:838.380450px;}
.yf_c00207{bottom:869.430450px;}
.ye_c00207{bottom:900.480450px;}
.yd_c00207{bottom:943.410450px;}
.yc_c00207{bottom:974.550450px;}
.yb_c00207{bottom:1005.600450px;}
.ya_c00207{bottom:1036.650450px;}
.y9_c00207{bottom:1067.700450px;}
.y8_c00207{bottom:1101.900450px;}
.y7_c00207{bottom:1124.130450px;}
.y4_c00207{bottom:1144.380657px;}
.y3_c00207{bottom:1161.660648px;}
.y2_c00207{bottom:1178.850459px;}
.y1_c00207{bottom:1196.130450px;}
.h1_c00207{height:52.898555px;}
.h2_c00207{height:63.175781px;}
.h3_c00207{height:63.351562px;}
.h0_c00207{height:1263.000000px;}
.w1_c00207{width:892.500000px;}
.w0_c00207{width:892.830000px;}
.x0_c00207{left:0.000000px;}
.x4_c00207{left:127.620000px;}
.x1_c00207{left:649.620000px;}
.x3_c00207{left:738.450000px;}
.x2_c00207{left:765.450198px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls1a_c00207{letter-spacing:-3.840000pt;}
.ls18_c00207{letter-spacing:-0.320000pt;}
.lsf_c00207{letter-spacing:-0.042752pt;}
.ls17_c00207{letter-spacing:-0.038400pt;}
.ls19_c00207{letter-spacing:-0.032000pt;}
.ls16_c00207{letter-spacing:-0.025600pt;}
.ls13_c00207{letter-spacing:-0.019200pt;}
.ls11_c00207{letter-spacing:-0.012800pt;}
.ls14_c00207{letter-spacing:-0.006400pt;}
.ls10_c00207{letter-spacing:0.000000pt;}
.ls0_c00207{letter-spacing:0.006400pt;}
.ls2_c00207{letter-spacing:0.012800pt;}
.ls7_c00207{letter-spacing:0.019200pt;}
.lsa_c00207{letter-spacing:0.025600pt;}
.ls6_c00207{letter-spacing:0.032000pt;}
.ls5_c00207{letter-spacing:0.038400pt;}
.ls8_c00207{letter-spacing:0.044800pt;}
.ls3_c00207{letter-spacing:0.051200pt;}
.ls1_c00207{letter-spacing:0.057600pt;}
.lsc_c00207{letter-spacing:0.064000pt;}
.ls4_c00207{letter-spacing:0.070400pt;}
.ls9_c00207{letter-spacing:0.076800pt;}
.lsb_c00207{letter-spacing:0.096000pt;}
.ls1b_c00207{letter-spacing:0.102400pt;}
.lse_c00207{letter-spacing:1.920000pt;}
.lsd_c00207{letter-spacing:5.120000pt;}
.ls15_c00207{letter-spacing:7.680000pt;}
.ls12_c00207{letter-spacing:11.481600pt;}
.ws3_c00207{word-spacing:-0.672000pt;}
.ws1_c00207{word-spacing:0.000000pt;}
.ws2_c00207{word-spacing:0.064000pt;}
.ws0_c00207{word-spacing:0.122912pt;}
.ws9_c00207{word-spacing:1.888000pt;}
.ws8_c00207{word-spacing:4.499200pt;}
.ws6_c00207{word-spacing:4.947200pt;}
.ws5_c00207{word-spacing:5.049600pt;}
.ws7_c00207{word-spacing:5.152000pt;}
.ws4_c00207{word-spacing:6.694400pt;}
._1_c00207{margin-left:-11.481600pt;}
._2_c00207{margin-left:-10.572800pt;}
._6_c00207{margin-left:-7.712000pt;}
._13_c00207{margin-left:-5.081600pt;}
._12_c00207{margin-left:-3.667200pt;}
._b_c00207{margin-left:-2.496000pt;}
._0_c00207{margin-left:-1.286400pt;}
._c_c00207{width:0.915200pt;}
._8_c00207{width:2.585600pt;}
._7_c00207{width:3.488000pt;}
._11_c00207{width:4.390400pt;}
._d_c00207{width:5.536000pt;}
._10_c00207{width:6.681600pt;}
._5_c00207{width:7.667200pt;}
._4_c00207{width:9.267200pt;}
._3_c00207{width:11.353600pt;}
._a_c00207{width:13.856000pt;}
._9_c00207{width:15.033600pt;}
._e_c00207{width:18.438400pt;}
._f_c00207{width:19.430400pt;}
.fs0_c00207{font-size:53.440000pt;}
.fs1_c00207{font-size:64.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y6_c00207{bottom:50.987067pt;}
.y5_c00207{bottom:69.387067pt;}
.y25_c00207{bottom:133.547067pt;}
.y24_c00207{bottom:161.227067pt;}
.y23_c00207{bottom:188.827067pt;}
.y22_c00207{bottom:216.427067pt;}
.y21_c00207{bottom:244.027067pt;}
.y20_c00207{bottom:271.627067pt;}
.y1f_c00207{bottom:299.227067pt;}
.y1e_c00207{bottom:326.827067pt;}
.y1d_c00207{bottom:364.987067pt;}
.y1c_c00207{bottom:392.667067pt;}
.y1b_c00207{bottom:420.267067pt;}
.y1a_c00207{bottom:447.867067pt;}
.y19_c00207{bottom:475.467067pt;}
.y18_c00207{bottom:513.627067pt;}
.y17_c00207{bottom:541.307067pt;}
.y16_c00207{bottom:568.907067pt;}
.y15_c00207{bottom:596.507067pt;}
.y14_c00207{bottom:624.107067pt;}
.y13_c00207{bottom:651.707067pt;}
.y12_c00207{bottom:679.307067pt;}
.y11_c00207{bottom:717.547067pt;}
.y10_c00207{bottom:745.227067pt;}
.yf_c00207{bottom:772.827067pt;}
.ye_c00207{bottom:800.427067pt;}
.yd_c00207{bottom:838.587067pt;}
.yc_c00207{bottom:866.267067pt;}
.yb_c00207{bottom:893.867067pt;}
.ya_c00207{bottom:921.467067pt;}
.y9_c00207{bottom:949.067067pt;}
.y8_c00207{bottom:979.467067pt;}
.y7_c00207{bottom:999.227067pt;}
.y4_c00207{bottom:1017.227251pt;}
.y3_c00207{bottom:1032.587243pt;}
.y2_c00207{bottom:1047.867075pt;}
.y1_c00207{bottom:1063.227067pt;}
.h1_c00207{height:47.020937pt;}
.h2_c00207{height:56.156250pt;}
.h3_c00207{height:56.312500pt;}
.h0_c00207{height:1122.666667pt;}
.w1_c00207{width:793.333333pt;}
.w0_c00207{width:793.626667pt;}
.x0_c00207{left:0.000000pt;}
.x4_c00207{left:113.440000pt;}
.x1_c00207{left:577.440000pt;}
.x3_c00207{left:656.400000pt;}
.x2_c00207{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_24cb9cc1321f1f5544a31367.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.095703;font-style:normal;font-weight:normal;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_28b1fd89afa13218c63d2804.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.093262;font-style: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;}
.lsb_c00208{letter-spacing:-0.102204px;}
.ls10_c00208{letter-spacing:-0.086400px;}
.ls13_c00208{letter-spacing:-0.064800px;}
.lsf_c00208{letter-spacing:-0.057600px;}
.lse_c00208{letter-spacing:-0.050400px;}
.ls11_c00208{letter-spacing:-0.036000px;}
.ls12_c00208{letter-spacing:-0.014400px;}
.ls14_c00208{letter-spacing:-0.010800px;}
.lsd_c00208{letter-spacing:-0.007200px;}
.lsc_c00208{letter-spacing:0.000000px;}
.ls6_c00208{letter-spacing:0.007200px;}
.ls9_c00208{letter-spacing:0.014400px;}
.ls1_c00208{letter-spacing:0.021600px;}
.ls7_c00208{letter-spacing:0.028800px;}
.ls2_c00208{letter-spacing:0.036000px;}
.ls0_c00208{letter-spacing:0.043200px;}
.ls5_c00208{letter-spacing:0.050400px;}
.ls4_c00208{letter-spacing:0.057600px;}
.lsa_c00208{letter-spacing:0.072000px;}
.ls8_c00208{letter-spacing:0.079200px;}
.ls3_c00208{letter-spacing:0.122400px;}
.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;}
}
.ws1_c00208{word-spacing:-18.072000px;}
.ws0_c00208{word-spacing:-17.992800px;}
.ws4_c00208{word-spacing:-1.461600px;}
.ws3_c00208{word-spacing:0.000000px;}
.ws6_c00208{word-spacing:0.189000px;}
.ws2_c00208{word-spacing:0.192384px;}
.ws5_c00208{word-spacing:11.196000px;}
._4_c00208{margin-left:-4.305600px;}
._2_c00208{margin-left:-3.261600px;}
._1_c00208{margin-left:-1.483200px;}
._0_c00208{width:1.034064px;}
._5_c00208{width:2.858400px;}
._6_c00208{width:5.544000px;}
._7_c00208{width:6.674400px;}
._8_c00208{width:11.124000px;}
._9_c00208{width:12.938400px;}
._a_c00208{width:14.018400px;}
._3_c00208{width:16.862400px;}
.fc2_c00208{color:rgb(68,84,106);}
.fc1_c00208{color:rgb(0,0,0);}
.fc0_c00208{color:rgb(32,31,30);}
.fs2_c00208{font-size:54.000000px;}
.fs0_c00208{font-size:60.120000px;}
.fs1_c00208{font-size:72.000000px;}
.y0_c00208{bottom:0.000000px;}
.y5_c00208{bottom:57.360450px;}
.y4_c00208{bottom:78.060450px;}
.y1c_c00208{bottom:130.440450px;}
.y1b_c00208{bottom:427.710600px;}
.y1a_c00208{bottom:466.410450px;}
.y19_c00208{bottom:497.550450px;}
.y18_c00208{bottom:528.600450px;}
.y17_c00208{bottom:559.650450px;}
.y16_c00208{bottom:602.580450px;}
.y15_c00208{bottom:633.720450px;}
.y14_c00208{bottom:664.770450px;}
.y13_c00208{bottom:695.820450px;}
.y12_c00208{bottom:726.870450px;}
.y11_c00208{bottom:757.920450px;}
.y10_c00208{bottom:788.970450px;}
.yf_c00208{bottom:831.900450px;}
.ye_c00208{bottom:863.040450px;}
.yd_c00208{bottom:894.090450px;}
.yc_c00208{bottom:925.140450px;}
.yb_c00208{bottom:956.190450px;}
.ya_c00208{bottom:987.240450px;}
.y9_c00208{bottom:1018.290450px;}
.y8_c00208{bottom:1049.340450px;}
.y7_c00208{bottom:1080.390450px;}
.y6_c00208{bottom:1111.440450px;}
.y3_c00208{bottom:1132.140450px;}
.y2_c00208{bottom:1165.441023px;}
.y1_c00208{bottom:1196.040600px;}
.h4_c00208{height:47.513672px;}
.h1_c00208{height:52.898555px;}
.h2_c00208{height:63.175781px;}
.h3_c00208{height:63.351562px;}
.h0_c00208{height:1263.000000px;}
.w1_c00208{width:892.500000px;}
.w0_c00208{width:892.830000px;}
.x0_c00208{left:0.000000px;}
.x1_c00208{left:127.620000px;}
.x2_c00208{left:738.450000px;}
.x3_c00208{left:752.490000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.lsb_c00208{letter-spacing:-0.090848pt;}
.ls10_c00208{letter-spacing:-0.076800pt;}
.ls13_c00208{letter-spacing:-0.057600pt;}
.lsf_c00208{letter-spacing:-0.051200pt;}
.lse_c00208{letter-spacing:-0.044800pt;}
.ls11_c00208{letter-spacing:-0.032000pt;}
.ls12_c00208{letter-spacing:-0.012800pt;}
.ls14_c00208{letter-spacing:-0.009600pt;}
.lsd_c00208{letter-spacing:-0.006400pt;}
.lsc_c00208{letter-spacing:0.000000pt;}
.ls6_c00208{letter-spacing:0.006400pt;}
.ls9_c00208{letter-spacing:0.012800pt;}
.ls1_c00208{letter-spacing:0.019200pt;}
.ls7_c00208{letter-spacing:0.025600pt;}
.ls2_c00208{letter-spacing:0.032000pt;}
.ls0_c00208{letter-spacing:0.038400pt;}
.ls5_c00208{letter-spacing:0.044800pt;}
.ls4_c00208{letter-spacing:0.051200pt;}
.lsa_c00208{letter-spacing:0.064000pt;}
.ls8_c00208{letter-spacing:0.070400pt;}
.ls3_c00208{letter-spacing:0.108800pt;}
.ws1_c00208{word-spacing:-16.064000pt;}
.ws0_c00208{word-spacing:-15.993600pt;}
.ws4_c00208{word-spacing:-1.299200pt;}
.ws3_c00208{word-spacing:0.000000pt;}
.ws6_c00208{word-spacing:0.168000pt;}
.ws2_c00208{word-spacing:0.171008pt;}
.ws5_c00208{word-spacing:9.952000pt;}
._4_c00208{margin-left:-3.827200pt;}
._2_c00208{margin-left:-2.899200pt;}
._1_c00208{margin-left:-1.318400pt;}
._0_c00208{width:0.919168pt;}
._5_c00208{width:2.540800pt;}
._6_c00208{width:4.928000pt;}
._7_c00208{width:5.932800pt;}
._8_c00208{width:9.888000pt;}
._9_c00208{width:11.500800pt;}
._a_c00208{width:12.460800pt;}
._3_c00208{width:14.988800pt;}
.fs2_c00208{font-size:48.000000pt;}
.fs0_c00208{font-size:53.440000pt;}
.fs1_c00208{font-size:64.000000pt;}
.y0_c00208{bottom:0.000000pt;}
.y5_c00208{bottom:50.987067pt;}
.y4_c00208{bottom:69.387067pt;}
.y1c_c00208{bottom:115.947067pt;}
.y1b_c00208{bottom:380.187200pt;}
.y1a_c00208{bottom:414.587067pt;}
.y19_c00208{bottom:442.267067pt;}
.y18_c00208{bottom:469.867067pt;}
.y17_c00208{bottom:497.467067pt;}
.y16_c00208{bottom:535.627067pt;}
.y15_c00208{bottom:563.307067pt;}
.y14_c00208{bottom:590.907067pt;}
.y13_c00208{bottom:618.507067pt;}
.y12_c00208{bottom:646.107067pt;}
.y11_c00208{bottom:673.707067pt;}
.y10_c00208{bottom:701.307067pt;}
.yf_c00208{bottom:739.467067pt;}
.ye_c00208{bottom:767.147067pt;}
.yd_c00208{bottom:794.747067pt;}
.yc_c00208{bottom:822.347067pt;}
.yb_c00208{bottom:849.947067pt;}
.ya_c00208{bottom:877.547067pt;}
.y9_c00208{bottom:905.147067pt;}
.y8_c00208{bottom:932.747067pt;}
.y7_c00208{bottom:960.347067pt;}
.y6_c00208{bottom:987.947067pt;}
.y3_c00208{bottom:1006.347067pt;}
.y2_c00208{bottom:1035.947576pt;}
.y1_c00208{bottom:1063.147200pt;}
.h4_c00208{height:42.234375pt;}
.h1_c00208{height:47.020937pt;}
.h2_c00208{height:56.156250pt;}
.h3_c00208{height:56.312500pt;}
.h0_c00208{height:1122.666667pt;}
.w1_c00208{width:793.333333pt;}
.w0_c00208{width:793.626667pt;}
.x0_c00208{left:0.000000pt;}
.x1_c00208{left:113.440000pt;}
.x2_c00208{left:656.400000pt;}
.x3_c00208{left:668.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_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_7e9fd70cecec9f7cf4027951.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.095703;font-style:normal;font-weight:normal;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_7a9c60863ba49d11535be0ea.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.lse_c00209{letter-spacing:-0.048096px;}
.ls13_c00209{letter-spacing:-0.036000px;}
.ls14_c00209{letter-spacing:-0.028800px;}
.ls12_c00209{letter-spacing:-0.021600px;}
.ls11_c00209{letter-spacing:-0.007200px;}
.lsf_c00209{letter-spacing:0.000000px;}
.lsd_c00209{letter-spacing:0.007200px;}
.ls3_c00209{letter-spacing:0.014400px;}
.ls5_c00209{letter-spacing:0.021600px;}
.ls2_c00209{letter-spacing:0.028800px;}
.ls1_c00209{letter-spacing:0.036000px;}
.ls8_c00209{letter-spacing:0.043200px;}
.ls7_c00209{letter-spacing:0.050400px;}
.ls6_c00209{letter-spacing:0.057600px;}
.ls0_c00209{letter-spacing:0.064800px;}
.ls9_c00209{letter-spacing:0.072000px;}
.lsc_c00209{letter-spacing:0.079200px;}
.lsa_c00209{letter-spacing:0.086400px;}
.ls4_c00209{letter-spacing:0.093600px;}
.lsb_c00209{letter-spacing:0.108000px;}
.ls17_c00209{letter-spacing:2.520000px;}
.ls15_c00209{letter-spacing:3.960000px;}
.ls10_c00209{letter-spacing:6.480000px;}
.ls16_c00209{letter-spacing:6.840000px;}
.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;}
}
.ws9_c00209{word-spacing:-3.650400px;}
.ws7_c00209{word-spacing:-1.548000px;}
.ws5_c00209{word-spacing:-0.108000px;}
.ws4_c00209{word-spacing:-0.093600px;}
.ws3_c00209{word-spacing:-0.028800px;}
.ws6_c00209{word-spacing:-0.021600px;}
.ws1_c00209{word-spacing:0.000000px;}
.ws0_c00209{word-spacing:0.138276px;}
.ws8_c00209{word-spacing:0.273600px;}
.ws2_c00209{word-spacing:6.386400px;}
.wsa_c00209{word-spacing:11.880000px;}
._f_c00209{margin-left:-8.013600px;}
._4_c00209{margin-left:-6.681600px;}
._b_c00209{margin-left:-4.356000px;}
._7_c00209{margin-left:-3.276000px;}
._5_c00209{margin-left:-2.217600px;}
._1_c00209{margin-left:-1.051200px;}
._8_c00209{width:1.281600px;}
._6_c00209{width:3.182400px;}
._3_c00209{width:5.155200px;}
._2_c00209{width:6.451200px;}
._9_c00209{width:7.891200px;}
._a_c00209{width:9.216000px;}
._0_c00209{width:11.095200px;}
._c_c00209{width:12.312000px;}
._e_c00209{width:19.116000px;}
._d_c00209{width:20.124000px;}
.fc0_c00209{color:rgb(0,0,0);}
.fs0_c00209{font-size:60.120000px;}
.fs1_c00209{font-size:72.000000px;}
.y0_c00209{bottom:0.000000px;}
.y6_c00209{bottom:57.360450px;}
.y5_c00209{bottom:78.060450px;}
.y26_c00209{bottom:125.850450px;}
.y25_c00209{bottom:156.900450px;}
.y24_c00209{bottom:187.950450px;}
.y23_c00209{bottom:219.000450px;}
.y22_c00209{bottom:250.050450px;}
.y21_c00209{bottom:292.980450px;}
.y20_c00209{bottom:324.120450px;}
.y1f_c00209{bottom:355.170450px;}
.y1e_c00209{bottom:386.220450px;}
.y1d_c00209{bottom:417.270450px;}
.y1c_c00209{bottom:448.320450px;}
.y1b_c00209{bottom:479.370450px;}
.y1a_c00209{bottom:510.420450px;}
.y19_c00209{bottom:541.470450px;}
.y18_c00209{bottom:572.520450px;}
.y17_c00209{bottom:603.570450px;}
.y16_c00209{bottom:634.620450px;}
.y15_c00209{bottom:665.670450px;}
.y14_c00209{bottom:708.600450px;}
.y13_c00209{bottom:739.740450px;}
.y12_c00209{bottom:770.790450px;}
.y11_c00209{bottom:801.840450px;}
.y10_c00209{bottom:832.890450px;}
.yf_c00209{bottom:863.940450px;}
.ye_c00209{bottom:894.990450px;}
.yd_c00209{bottom:926.040450px;}
.yc_c00209{bottom:957.090450px;}
.yb_c00209{bottom:988.140450px;}
.ya_c00209{bottom:1031.070450px;}
.y9_c00209{bottom:1062.120450px;}
.y8_c00209{bottom:1093.260450px;}
.y7_c00209{bottom:1124.310450px;}
.y4_c00209{bottom:1144.380657px;}
.y3_c00209{bottom:1161.660648px;}
.y2_c00209{bottom:1178.850459px;}
.y1_c00209{bottom:1196.130450px;}
.h1_c00209{height:52.898555px;}
.h2_c00209{height:63.175781px;}
.h3_c00209{height:63.351562px;}
.h0_c00209{height:1263.000000px;}
.w1_c00209{width:892.500000px;}
.w0_c00209{width:892.830000px;}
.x0_c00209{left:0.000000px;}
.x4_c00209{left:127.620000px;}
.x1_c00209{left:649.620000px;}
.x3_c00209{left:738.450000px;}
.x2_c00209{left:765.450198px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.lse_c00209{letter-spacing:-0.042752pt;}
.ls13_c00209{letter-spacing:-0.032000pt;}
.ls14_c00209{letter-spacing:-0.025600pt;}
.ls12_c00209{letter-spacing:-0.019200pt;}
.ls11_c00209{letter-spacing:-0.006400pt;}
.lsf_c00209{letter-spacing:0.000000pt;}
.lsd_c00209{letter-spacing:0.006400pt;}
.ls3_c00209{letter-spacing:0.012800pt;}
.ls5_c00209{letter-spacing:0.019200pt;}
.ls2_c00209{letter-spacing:0.025600pt;}
.ls1_c00209{letter-spacing:0.032000pt;}
.ls8_c00209{letter-spacing:0.038400pt;}
.ls7_c00209{letter-spacing:0.044800pt;}
.ls6_c00209{letter-spacing:0.051200pt;}
.ls0_c00209{letter-spacing:0.057600pt;}
.ls9_c00209{letter-spacing:0.064000pt;}
.lsc_c00209{letter-spacing:0.070400pt;}
.lsa_c00209{letter-spacing:0.076800pt;}
.ls4_c00209{letter-spacing:0.083200pt;}
.lsb_c00209{letter-spacing:0.096000pt;}
.ls17_c00209{letter-spacing:2.240000pt;}
.ls15_c00209{letter-spacing:3.520000pt;}
.ls10_c00209{letter-spacing:5.760000pt;}
.ls16_c00209{letter-spacing:6.080000pt;}
.ws9_c00209{word-spacing:-3.244800pt;}
.ws7_c00209{word-spacing:-1.376000pt;}
.ws5_c00209{word-spacing:-0.096000pt;}
.ws4_c00209{word-spacing:-0.083200pt;}
.ws3_c00209{word-spacing:-0.025600pt;}
.ws6_c00209{word-spacing:-0.019200pt;}
.ws1_c00209{word-spacing:0.000000pt;}
.ws0_c00209{word-spacing:0.122912pt;}
.ws8_c00209{word-spacing:0.243200pt;}
.ws2_c00209{word-spacing:5.676800pt;}
.wsa_c00209{word-spacing:10.560000pt;}
._f_c00209{margin-left:-7.123200pt;}
._4_c00209{margin-left:-5.939200pt;}
._b_c00209{margin-left:-3.872000pt;}
._7_c00209{margin-left:-2.912000pt;}
._5_c00209{margin-left:-1.971200pt;}
._1_c00209{margin-left:-0.934400pt;}
._8_c00209{width:1.139200pt;}
._6_c00209{width:2.828800pt;}
._3_c00209{width:4.582400pt;}
._2_c00209{width:5.734400pt;}
._9_c00209{width:7.014400pt;}
._a_c00209{width:8.192000pt;}
._0_c00209{width:9.862400pt;}
._c_c00209{width:10.944000pt;}
._e_c00209{width:16.992000pt;}
._d_c00209{width:17.888000pt;}
.fs0_c00209{font-size:53.440000pt;}
.fs1_c00209{font-size:64.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y6_c00209{bottom:50.987067pt;}
.y5_c00209{bottom:69.387067pt;}
.y26_c00209{bottom:111.867067pt;}
.y25_c00209{bottom:139.467067pt;}
.y24_c00209{bottom:167.067067pt;}
.y23_c00209{bottom:194.667067pt;}
.y22_c00209{bottom:222.267067pt;}
.y21_c00209{bottom:260.427067pt;}
.y20_c00209{bottom:288.107067pt;}
.y1f_c00209{bottom:315.707067pt;}
.y1e_c00209{bottom:343.307067pt;}
.y1d_c00209{bottom:370.907067pt;}
.y1c_c00209{bottom:398.507067pt;}
.y1b_c00209{bottom:426.107067pt;}
.y1a_c00209{bottom:453.707067pt;}
.y19_c00209{bottom:481.307067pt;}
.y18_c00209{bottom:508.907067pt;}
.y17_c00209{bottom:536.507067pt;}
.y16_c00209{bottom:564.107067pt;}
.y15_c00209{bottom:591.707067pt;}
.y14_c00209{bottom:629.867067pt;}
.y13_c00209{bottom:657.547067pt;}
.y12_c00209{bottom:685.147067pt;}
.y11_c00209{bottom:712.747067pt;}
.y10_c00209{bottom:740.347067pt;}
.yf_c00209{bottom:767.947067pt;}
.ye_c00209{bottom:795.547067pt;}
.yd_c00209{bottom:823.147067pt;}
.yc_c00209{bottom:850.747067pt;}
.yb_c00209{bottom:878.347067pt;}
.ya_c00209{bottom:916.507067pt;}
.y9_c00209{bottom:944.107067pt;}
.y8_c00209{bottom:971.787067pt;}
.y7_c00209{bottom:999.387067pt;}
.y4_c00209{bottom:1017.227251pt;}
.y3_c00209{bottom:1032.587243pt;}
.y2_c00209{bottom:1047.867075pt;}
.y1_c00209{bottom:1063.227067pt;}
.h1_c00209{height:47.020937pt;}
.h2_c00209{height:56.156250pt;}
.h3_c00209{height:56.312500pt;}
.h0_c00209{height:1122.666667pt;}
.w1_c00209{width:793.333333pt;}
.w0_c00209{width:793.626667pt;}
.x0_c00209{left:0.000000pt;}
.x4_c00209{left:113.440000pt;}
.x1_c00209{left:577.440000pt;}
.x3_c00209{left:656.400000pt;}
.x2_c00209{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b800ea5edd11f511e7afe508.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.095703;font-style:normal;font-weight:normal;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_cd6774ab38b8726746ae4391.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.093262;font-style: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;}
.lsf_c00210{letter-spacing:-0.102204px;}
.ls12_c00210{letter-spacing:-0.057600px;}
.ls17_c00210{letter-spacing:-0.050400px;}
.ls15_c00210{letter-spacing:-0.043200px;}
.ls14_c00210{letter-spacing:-0.036000px;}
.ls13_c00210{letter-spacing:-0.028800px;}
.ls16_c00210{letter-spacing:-0.021600px;}
.ls18_c00210{letter-spacing:-0.014400px;}
.ls11_c00210{letter-spacing:-0.007200px;}
.ls10_c00210{letter-spacing:0.000000px;}
.ls8_c00210{letter-spacing:0.007200px;}
.ls0_c00210{letter-spacing:0.014400px;}
.ls1_c00210{letter-spacing:0.021600px;}
.ls6_c00210{letter-spacing:0.028800px;}
.ls4_c00210{letter-spacing:0.036000px;}
.ls3_c00210{letter-spacing:0.043200px;}
.lsb_c00210{letter-spacing:0.050400px;}
.ls9_c00210{letter-spacing:0.057600px;}
.ls5_c00210{letter-spacing:0.064800px;}
.ls2_c00210{letter-spacing:0.072000px;}
.lsa_c00210{letter-spacing:0.086400px;}
.lsd_c00210{letter-spacing:0.093600px;}
.lsc_c00210{letter-spacing:0.100800px;}
.ls7_c00210{letter-spacing:0.108000px;}
.lse_c00210{letter-spacing:0.144000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00210{word-spacing:-18.028800px;}
.ws1_c00210{word-spacing:-17.949600px;}
.ws4_c00210{word-spacing:-2.613600px;}
.ws3_c00210{word-spacing:0.000000px;}
.ws2_c00210{word-spacing:0.192384px;}
.ws5_c00210{word-spacing:11.095200px;}
._5_c00210{margin-left:-3.484800px;}
._6_c00210{margin-left:-2.332800px;}
._2_c00210{margin-left:-1.123200px;}
._0_c00210{width:1.034064px;}
._7_c00210{width:2.178144px;}
._8_c00210{width:3.628512px;}
._d_c00210{width:4.939200px;}
._1_c00210{width:6.487200px;}
._a_c00210{width:7.826400px;}
._c_c00210{width:9.604800px;}
._b_c00210{width:10.771200px;}
._3_c00210{width:12.578400px;}
._4_c00210{width:13.845600px;}
._9_c00210{width:16.783200px;}
._e_c00210{width:19.238400px;}
._f_c00210{width:21.261600px;}
.fc1_c00210{color:rgb(0,0,0);}
.fc0_c00210{color:rgb(32,31,30);}
.fs0_c00210{font-size:60.120000px;}
.fs1_c00210{font-size:72.000000px;}
.y0_c00210{bottom:0.000000px;}
.y5_c00210{bottom:57.360450px;}
.y4_c00210{bottom:78.060450px;}
.y24_c00210{bottom:131.970450px;}
.y23_c00210{bottom:163.020450px;}
.y22_c00210{bottom:194.070450px;}
.y21_c00210{bottom:225.120450px;}
.y20_c00210{bottom:256.170450px;}
.y1f_c00210{bottom:287.220450px;}
.y1e_c00210{bottom:318.270450px;}
.y1d_c00210{bottom:349.320450px;}
.y1c_c00210{bottom:392.250450px;}
.y1b_c00210{bottom:423.390450px;}
.y1a_c00210{bottom:454.440450px;}
.y19_c00210{bottom:485.490450px;}
.y18_c00210{bottom:516.540450px;}
.y17_c00210{bottom:547.590450px;}
.y16_c00210{bottom:590.610450px;}
.y15_c00210{bottom:621.660450px;}
.y14_c00210{bottom:652.710450px;}
.y13_c00210{bottom:683.760450px;}
.y12_c00210{bottom:714.810450px;}
.y11_c00210{bottom:745.860450px;}
.y10_c00210{bottom:776.910450px;}
.yf_c00210{bottom:819.930450px;}
.ye_c00210{bottom:851.070450px;}
.yd_c00210{bottom:882.120450px;}
.yc_c00210{bottom:913.170450px;}
.yb_c00210{bottom:944.220450px;}
.ya_c00210{bottom:975.180450px;}
.y9_c00210{bottom:1006.230450px;}
.y8_c00210{bottom:1049.250450px;}
.y7_c00210{bottom:1080.390450px;}
.y6_c00210{bottom:1111.440450px;}
.y3_c00210{bottom:1132.140450px;}
.y2_c00210{bottom:1165.441023px;}
.y1_c00210{bottom:1196.040600px;}
.h1_c00210{height:52.898555px;}
.h2_c00210{height:63.175781px;}
.h3_c00210{height:63.351562px;}
.h0_c00210{height:1263.000000px;}
.w1_c00210{width:892.500000px;}
.w0_c00210{width:892.830000px;}
.x0_c00210{left:0.000000px;}
.x1_c00210{left:127.620000px;}
.x2_c00210{left:738.450000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.lsf_c00210{letter-spacing:-0.090848pt;}
.ls12_c00210{letter-spacing:-0.051200pt;}
.ls17_c00210{letter-spacing:-0.044800pt;}
.ls15_c00210{letter-spacing:-0.038400pt;}
.ls14_c00210{letter-spacing:-0.032000pt;}
.ls13_c00210{letter-spacing:-0.025600pt;}
.ls16_c00210{letter-spacing:-0.019200pt;}
.ls18_c00210{letter-spacing:-0.012800pt;}
.ls11_c00210{letter-spacing:-0.006400pt;}
.ls10_c00210{letter-spacing:0.000000pt;}
.ls8_c00210{letter-spacing:0.006400pt;}
.ls0_c00210{letter-spacing:0.012800pt;}
.ls1_c00210{letter-spacing:0.019200pt;}
.ls6_c00210{letter-spacing:0.025600pt;}
.ls4_c00210{letter-spacing:0.032000pt;}
.ls3_c00210{letter-spacing:0.038400pt;}
.lsb_c00210{letter-spacing:0.044800pt;}
.ls9_c00210{letter-spacing:0.051200pt;}
.ls5_c00210{letter-spacing:0.057600pt;}
.ls2_c00210{letter-spacing:0.064000pt;}
.lsa_c00210{letter-spacing:0.076800pt;}
.lsd_c00210{letter-spacing:0.083200pt;}
.lsc_c00210{letter-spacing:0.089600pt;}
.ls7_c00210{letter-spacing:0.096000pt;}
.lse_c00210{letter-spacing:0.128000pt;}
.ws0_c00210{word-spacing:-16.025600pt;}
.ws1_c00210{word-spacing:-15.955200pt;}
.ws4_c00210{word-spacing:-2.323200pt;}
.ws3_c00210{word-spacing:0.000000pt;}
.ws2_c00210{word-spacing:0.171008pt;}
.ws5_c00210{word-spacing:9.862400pt;}
._5_c00210{margin-left:-3.097600pt;}
._6_c00210{margin-left:-2.073600pt;}
._2_c00210{margin-left:-0.998400pt;}
._0_c00210{width:0.919168pt;}
._7_c00210{width:1.936128pt;}
._8_c00210{width:3.225344pt;}
._d_c00210{width:4.390400pt;}
._1_c00210{width:5.766400pt;}
._a_c00210{width:6.956800pt;}
._c_c00210{width:8.537600pt;}
._b_c00210{width:9.574400pt;}
._3_c00210{width:11.180800pt;}
._4_c00210{width:12.307200pt;}
._9_c00210{width:14.918400pt;}
._e_c00210{width:17.100800pt;}
._f_c00210{width:18.899200pt;}
.fs0_c00210{font-size:53.440000pt;}
.fs1_c00210{font-size:64.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y5_c00210{bottom:50.987067pt;}
.y4_c00210{bottom:69.387067pt;}
.y24_c00210{bottom:117.307067pt;}
.y23_c00210{bottom:144.907067pt;}
.y22_c00210{bottom:172.507067pt;}
.y21_c00210{bottom:200.107067pt;}
.y20_c00210{bottom:227.707067pt;}
.y1f_c00210{bottom:255.307067pt;}
.y1e_c00210{bottom:282.907067pt;}
.y1d_c00210{bottom:310.507067pt;}
.y1c_c00210{bottom:348.667067pt;}
.y1b_c00210{bottom:376.347067pt;}
.y1a_c00210{bottom:403.947067pt;}
.y19_c00210{bottom:431.547067pt;}
.y18_c00210{bottom:459.147067pt;}
.y17_c00210{bottom:486.747067pt;}
.y16_c00210{bottom:524.987067pt;}
.y15_c00210{bottom:552.587067pt;}
.y14_c00210{bottom:580.187067pt;}
.y13_c00210{bottom:607.787067pt;}
.y12_c00210{bottom:635.387067pt;}
.y11_c00210{bottom:662.987067pt;}
.y10_c00210{bottom:690.587067pt;}
.yf_c00210{bottom:728.827067pt;}
.ye_c00210{bottom:756.507067pt;}
.yd_c00210{bottom:784.107067pt;}
.yc_c00210{bottom:811.707067pt;}
.yb_c00210{bottom:839.307067pt;}
.ya_c00210{bottom:866.827067pt;}
.y9_c00210{bottom:894.427067pt;}
.y8_c00210{bottom:932.667067pt;}
.y7_c00210{bottom:960.347067pt;}
.y6_c00210{bottom:987.947067pt;}
.y3_c00210{bottom:1006.347067pt;}
.y2_c00210{bottom:1035.947576pt;}
.y1_c00210{bottom:1063.147200pt;}
.h1_c00210{height:47.020937pt;}
.h2_c00210{height:56.156250pt;}
.h3_c00210{height:56.312500pt;}
.h0_c00210{height:1122.666667pt;}
.w1_c00210{width:793.333333pt;}
.w0_c00210{width:793.626667pt;}
.x0_c00210{left:0.000000pt;}
.x1_c00210{left:113.440000pt;}
.x2_c00210{left:656.400000pt;}
}





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

.ir_c00211:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00211;src:url('chunks/assets/font_ea454e8605269f26d3eb21fd.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_9cef0df8ab1587df80856426.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00211{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls13_c00211{letter-spacing:-0.072000px;}
.lsd_c00211{letter-spacing:-0.048096px;}
.ls11_c00211{letter-spacing:-0.043200px;}
.ls12_c00211{letter-spacing:-0.028800px;}
.ls14_c00211{letter-spacing:-0.021600px;}
.ls10_c00211{letter-spacing:-0.014400px;}
.lsf_c00211{letter-spacing:-0.007200px;}
.lse_c00211{letter-spacing:0.000000px;}
.ls2_c00211{letter-spacing:0.007200px;}
.ls5_c00211{letter-spacing:0.014400px;}
.ls3_c00211{letter-spacing:0.021600px;}
.lsc_c00211{letter-spacing:0.028800px;}
.ls1_c00211{letter-spacing:0.036000px;}
.ls0_c00211{letter-spacing:0.043200px;}
.ls4_c00211{letter-spacing:0.050400px;}
.lsa_c00211{letter-spacing:0.057600px;}
.lsb_c00211{letter-spacing:0.064800px;}
.ls7_c00211{letter-spacing:0.079200px;}
.ls6_c00211{letter-spacing:0.086400px;}
.ls9_c00211{letter-spacing:0.093600px;}
.ls8_c00211{letter-spacing:0.108000px;}
.ls15_c00211{letter-spacing:1.080000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00211{word-spacing:0.000000px;}
.ws0_c00211{word-spacing:0.138276px;}
.ws3_c00211{word-spacing:1.065600px;}
.ws2_c00211{word-spacing:16.135200px;}
._d_c00211{margin-left:-4.305600px;}
._1_c00211{margin-left:-1.418400px;}
._6_c00211{width:1.000800px;}
._5_c00211{width:2.858400px;}
._a_c00211{width:4.449600px;}
._2_c00211{width:5.450400px;}
._3_c00211{width:6.465600px;}
._7_c00211{width:8.964000px;}
._8_c00211{width:10.209600px;}
._4_c00211{width:12.254400px;}
._0_c00211{width:13.687200px;}
._9_c00211{width:16.228800px;}
._c_c00211{width:20.138400px;}
._b_c00211{width:21.182400px;}
.fc1_c00211{color:rgb(255,0,0);}
.fc0_c00211{color:rgb(0,0,0);}
.fs0_c00211{font-size:60.120000px;}
.fs1_c00211{font-size:72.000000px;}
.y0_c00211{bottom:0.000000px;}
.y6_c00211{bottom:57.360450px;}
.y5_c00211{bottom:78.060450px;}
.y23_c00211{bottom:182.910450px;}
.y22_c00211{bottom:214.050450px;}
.y21_c00211{bottom:245.100450px;}
.y20_c00211{bottom:276.150450px;}
.y1f_c00211{bottom:307.200450px;}
.y1e_c00211{bottom:350.130450px;}
.y1d_c00211{bottom:381.270450px;}
.y1c_c00211{bottom:412.320450px;}
.y1b_c00211{bottom:443.370450px;}
.y1a_c00211{bottom:474.420450px;}
.y19_c00211{bottom:517.440450px;}
.y18_c00211{bottom:548.580450px;}
.y17_c00211{bottom:579.630450px;}
.y16_c00211{bottom:610.680450px;}
.y15_c00211{bottom:641.640450px;}
.y14_c00211{bottom:672.690450px;}
.y13_c00211{bottom:703.740450px;}
.y12_c00211{bottom:734.790450px;}
.y11_c00211{bottom:777.810450px;}
.y10_c00211{bottom:808.950450px;}
.yf_c00211{bottom:840.000450px;}
.ye_c00211{bottom:871.050450px;}
.yd_c00211{bottom:902.100450px;}
.yc_c00211{bottom:945.030450px;}
.yb_c00211{bottom:976.170450px;}
.ya_c00211{bottom:1007.220450px;}
.y9_c00211{bottom:1050.150450px;}
.y8_c00211{bottom:1093.170450px;}
.y7_c00211{bottom:1124.310450px;}
.y4_c00211{bottom:1144.380657px;}
.y3_c00211{bottom:1161.660648px;}
.y2_c00211{bottom:1178.850459px;}
.y1_c00211{bottom:1196.130450px;}
.h1_c00211{height:52.898555px;}
.h2_c00211{height:63.175781px;}
.h3_c00211{height:63.351562px;}
.h0_c00211{height:1263.000000px;}
.w1_c00211{width:892.500000px;}
.w0_c00211{width:892.830000px;}
.x0_c00211{left:0.000000px;}
.x4_c00211{left:127.620000px;}
.x1_c00211{left:649.620000px;}
.x3_c00211{left:738.450000px;}
.x2_c00211{left:765.450198px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls13_c00211{letter-spacing:-0.064000pt;}
.lsd_c00211{letter-spacing:-0.042752pt;}
.ls11_c00211{letter-spacing:-0.038400pt;}
.ls12_c00211{letter-spacing:-0.025600pt;}
.ls14_c00211{letter-spacing:-0.019200pt;}
.ls10_c00211{letter-spacing:-0.012800pt;}
.lsf_c00211{letter-spacing:-0.006400pt;}
.lse_c00211{letter-spacing:0.000000pt;}
.ls2_c00211{letter-spacing:0.006400pt;}
.ls5_c00211{letter-spacing:0.012800pt;}
.ls3_c00211{letter-spacing:0.019200pt;}
.lsc_c00211{letter-spacing:0.025600pt;}
.ls1_c00211{letter-spacing:0.032000pt;}
.ls0_c00211{letter-spacing:0.038400pt;}
.ls4_c00211{letter-spacing:0.044800pt;}
.lsa_c00211{letter-spacing:0.051200pt;}
.lsb_c00211{letter-spacing:0.057600pt;}
.ls7_c00211{letter-spacing:0.070400pt;}
.ls6_c00211{letter-spacing:0.076800pt;}
.ls9_c00211{letter-spacing:0.083200pt;}
.ls8_c00211{letter-spacing:0.096000pt;}
.ls15_c00211{letter-spacing:0.960000pt;}
.ws1_c00211{word-spacing:0.000000pt;}
.ws0_c00211{word-spacing:0.122912pt;}
.ws3_c00211{word-spacing:0.947200pt;}
.ws2_c00211{word-spacing:14.342400pt;}
._d_c00211{margin-left:-3.827200pt;}
._1_c00211{margin-left:-1.260800pt;}
._6_c00211{width:0.889600pt;}
._5_c00211{width:2.540800pt;}
._a_c00211{width:3.955200pt;}
._2_c00211{width:4.844800pt;}
._3_c00211{width:5.747200pt;}
._7_c00211{width:7.968000pt;}
._8_c00211{width:9.075200pt;}
._4_c00211{width:10.892800pt;}
._0_c00211{width:12.166400pt;}
._9_c00211{width:14.425600pt;}
._c_c00211{width:17.900800pt;}
._b_c00211{width:18.828800pt;}
.fs0_c00211{font-size:53.440000pt;}
.fs1_c00211{font-size:64.000000pt;}
.y0_c00211{bottom:0.000000pt;}
.y6_c00211{bottom:50.987067pt;}
.y5_c00211{bottom:69.387067pt;}
.y23_c00211{bottom:162.587067pt;}
.y22_c00211{bottom:190.267067pt;}
.y21_c00211{bottom:217.867067pt;}
.y20_c00211{bottom:245.467067pt;}
.y1f_c00211{bottom:273.067067pt;}
.y1e_c00211{bottom:311.227067pt;}
.y1d_c00211{bottom:338.907067pt;}
.y1c_c00211{bottom:366.507067pt;}
.y1b_c00211{bottom:394.107067pt;}
.y1a_c00211{bottom:421.707067pt;}
.y19_c00211{bottom:459.947067pt;}
.y18_c00211{bottom:487.627067pt;}
.y17_c00211{bottom:515.227067pt;}
.y16_c00211{bottom:542.827067pt;}
.y15_c00211{bottom:570.347067pt;}
.y14_c00211{bottom:597.947067pt;}
.y13_c00211{bottom:625.547067pt;}
.y12_c00211{bottom:653.147067pt;}
.y11_c00211{bottom:691.387067pt;}
.y10_c00211{bottom:719.067067pt;}
.yf_c00211{bottom:746.667067pt;}
.ye_c00211{bottom:774.267067pt;}
.yd_c00211{bottom:801.867067pt;}
.yc_c00211{bottom:840.027067pt;}
.yb_c00211{bottom:867.707067pt;}
.ya_c00211{bottom:895.307067pt;}
.y9_c00211{bottom:933.467067pt;}
.y8_c00211{bottom:971.707067pt;}
.y7_c00211{bottom:999.387067pt;}
.y4_c00211{bottom:1017.227251pt;}
.y3_c00211{bottom:1032.587243pt;}
.y2_c00211{bottom:1047.867075pt;}
.y1_c00211{bottom:1063.227067pt;}
.h1_c00211{height:47.020937pt;}
.h2_c00211{height:56.156250pt;}
.h3_c00211{height:56.312500pt;}
.h0_c00211{height:1122.666667pt;}
.w1_c00211{width:793.333333pt;}
.w0_c00211{width:793.626667pt;}
.x0_c00211{left:0.000000pt;}
.x4_c00211{left:113.440000pt;}
.x1_c00211{left:577.440000pt;}
.x3_c00211{left:656.400000pt;}
.x2_c00211{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b12837f29bfb2154a3ae4edf.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.095703;font-style:normal;font-weight:normal;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_66fcb4d15b1464bc02b5bd09.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.093262;font-style: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);}
.v2_c00212{vertical-align:-20.880000px;}
.v0_c00212{vertical-align:0.000000px;}
.v1_c00212{vertical-align:27.000000px;}
.ls18_c00212{letter-spacing:-2.520000px;}
.ls16_c00212{letter-spacing:-0.360000px;}
.lsd_c00212{letter-spacing:-0.102204px;}
.ls12_c00212{letter-spacing:-0.064800px;}
.ls13_c00212{letter-spacing:-0.057600px;}
.ls10_c00212{letter-spacing:-0.036000px;}
.ls15_c00212{letter-spacing:-0.021600px;}
.ls17_c00212{letter-spacing:-0.014400px;}
.ls11_c00212{letter-spacing:-0.007200px;}
.lse_c00212{letter-spacing:0.000000px;}
.ls8_c00212{letter-spacing:0.007200px;}
.ls7_c00212{letter-spacing:0.014400px;}
.ls4_c00212{letter-spacing:0.021600px;}
.ls6_c00212{letter-spacing:0.028800px;}
.lsa_c00212{letter-spacing:0.036000px;}
.ls5_c00212{letter-spacing:0.043200px;}
.ls3_c00212{letter-spacing:0.050400px;}
.ls1_c00212{letter-spacing:0.057600px;}
.ls9_c00212{letter-spacing:0.064800px;}
.ls0_c00212{letter-spacing:0.072000px;}
.lsb_c00212{letter-spacing:0.079200px;}
.ls1a_c00212{letter-spacing:0.102204px;}
.ls2_c00212{letter-spacing:0.122400px;}
.ls19_c00212{letter-spacing:0.181944px;}
.lsc_c00212{letter-spacing:0.431400px;}
.lsf_c00212{letter-spacing:0.720000px;}
.ls14_c00212{letter-spacing:22.320000px;}
.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;}
}
.ws1_c00212{word-spacing:-18.050400px;}
.ws0_c00212{word-spacing:-17.978400px;}
.ws2_c00212{word-spacing:-12.151944px;}
.ws3_c00212{word-spacing:-9.720000px;}
.ws6_c00212{word-spacing:-2.872800px;}
.ws5_c00212{word-spacing:0.000000px;}
.ws4_c00212{word-spacing:0.192384px;}
._10_c00212{margin-left:-22.701600px;}
._11_c00212{margin-left:-21.384000px;}
._a_c00212{margin-left:-5.284800px;}
._9_c00212{margin-left:-4.017600px;}
._4_c00212{margin-left:-2.584800px;}
._1_c00212{margin-left:-1.368000px;}
._0_c00212{width:1.034064px;}
._12_c00212{width:2.102400px;}
._8_c00212{width:3.196800px;}
._b_c00212{width:5.140800px;}
._c_c00212{width:6.249600px;}
._6_c00212{width:7.401600px;}
._5_c00212{width:8.596800px;}
._d_c00212{width:9.712800px;}
._3_c00212{width:11.822400px;}
._7_c00212{width:12.960000px;}
._2_c00212{width:16.156800px;}
._f_c00212{width:21.110400px;}
._e_c00212{width:22.255200px;}
.fc1_c00212{color:rgb(0,0,0);}
.fc0_c00212{color:rgb(32,31,30);}
.fs3_c00212{font-size:38.880000px;}
.fs2_c00212{font-size:47.880000px;}
.fs0_c00212{font-size:60.120000px;}
.fs1_c00212{font-size:72.000000px;}
.y0_c00212{bottom:0.000000px;}
.y5_c00212{bottom:57.360450px;}
.y4_c00212{bottom:78.060450px;}
.y25_c00212{bottom:115.140450px;}
.y24_c00212{bottom:127.830450px;}
.y23_c00212{bottom:175.080450px;}
.y22_c00212{bottom:206.130450px;}
.y21_c00212{bottom:237.090450px;}
.y20_c00212{bottom:280.110450px;}
.y1f_c00212{bottom:311.250450px;}
.y1e_c00212{bottom:342.300450px;}
.y1d_c00212{bottom:373.350450px;}
.y1c_c00212{bottom:404.400450px;}
.y1b_c00212{bottom:435.450450px;}
.y1a_c00212{bottom:466.500450px;}
.y19_c00212{bottom:497.550450px;}
.y18_c00212{bottom:528.600450px;}
.y17_c00212{bottom:559.650450px;}
.y16_c00212{bottom:590.700450px;}
.y15_c00212{bottom:621.660450px;}
.y14_c00212{bottom:652.710450px;}
.y13_c00212{bottom:695.730450px;}
.y12_c00212{bottom:726.870450px;}
.y11_c00212{bottom:757.920450px;}
.y10_c00212{bottom:788.970450px;}
.yf_c00212{bottom:820.020450px;}
.ye_c00212{bottom:851.070450px;}
.yd_c00212{bottom:882.120450px;}
.yc_c00212{bottom:913.170450px;}
.yb_c00212{bottom:956.100450px;}
.ya_c00212{bottom:987.240450px;}
.y9_c00212{bottom:1018.290450px;}
.y8_c00212{bottom:1049.340450px;}
.y7_c00212{bottom:1080.390450px;}
.y6_c00212{bottom:1111.440450px;}
.y3_c00212{bottom:1132.140450px;}
.y2_c00212{bottom:1165.441023px;}
.y1_c00212{bottom:1196.040600px;}
.h5_c00212{height:34.114922px;}
.h1_c00212{height:52.898555px;}
.h2_c00212{height:63.175781px;}
.h3_c00212{height:63.351562px;}
.h4_c00212{height:69.011895px;}
.h0_c00212{height:1263.000000px;}
.w1_c00212{width:892.500000px;}
.w0_c00212{width:892.830000px;}
.x0_c00212{left:0.000000px;}
.x1_c00212{left:127.620000px;}
.x2_c00212{left:738.450000px;}
@media print{
.v2_c00212{vertical-align:-18.560000pt;}
.v0_c00212{vertical-align:0.000000pt;}
.v1_c00212{vertical-align:24.000000pt;}
.ls18_c00212{letter-spacing:-2.240000pt;}
.ls16_c00212{letter-spacing:-0.320000pt;}
.lsd_c00212{letter-spacing:-0.090848pt;}
.ls12_c00212{letter-spacing:-0.057600pt;}
.ls13_c00212{letter-spacing:-0.051200pt;}
.ls10_c00212{letter-spacing:-0.032000pt;}
.ls15_c00212{letter-spacing:-0.019200pt;}
.ls17_c00212{letter-spacing:-0.012800pt;}
.ls11_c00212{letter-spacing:-0.006400pt;}
.lse_c00212{letter-spacing:0.000000pt;}
.ls8_c00212{letter-spacing:0.006400pt;}
.ls7_c00212{letter-spacing:0.012800pt;}
.ls4_c00212{letter-spacing:0.019200pt;}
.ls6_c00212{letter-spacing:0.025600pt;}
.lsa_c00212{letter-spacing:0.032000pt;}
.ls5_c00212{letter-spacing:0.038400pt;}
.ls3_c00212{letter-spacing:0.044800pt;}
.ls1_c00212{letter-spacing:0.051200pt;}
.ls9_c00212{letter-spacing:0.057600pt;}
.ls0_c00212{letter-spacing:0.064000pt;}
.lsb_c00212{letter-spacing:0.070400pt;}
.ls1a_c00212{letter-spacing:0.090848pt;}
.ls2_c00212{letter-spacing:0.108800pt;}
.ls19_c00212{letter-spacing:0.161728pt;}
.lsc_c00212{letter-spacing:0.383467pt;}
.lsf_c00212{letter-spacing:0.640000pt;}
.ls14_c00212{letter-spacing:19.840000pt;}
.ws1_c00212{word-spacing:-16.044800pt;}
.ws0_c00212{word-spacing:-15.980800pt;}
.ws2_c00212{word-spacing:-10.801728pt;}
.ws3_c00212{word-spacing:-8.640000pt;}
.ws6_c00212{word-spacing:-2.553600pt;}
.ws5_c00212{word-spacing:0.000000pt;}
.ws4_c00212{word-spacing:0.171008pt;}
._10_c00212{margin-left:-20.179200pt;}
._11_c00212{margin-left:-19.008000pt;}
._a_c00212{margin-left:-4.697600pt;}
._9_c00212{margin-left:-3.571200pt;}
._4_c00212{margin-left:-2.297600pt;}
._1_c00212{margin-left:-1.216000pt;}
._0_c00212{width:0.919168pt;}
._12_c00212{width:1.868800pt;}
._8_c00212{width:2.841600pt;}
._b_c00212{width:4.569600pt;}
._c_c00212{width:5.555200pt;}
._6_c00212{width:6.579200pt;}
._5_c00212{width:7.641600pt;}
._d_c00212{width:8.633600pt;}
._3_c00212{width:10.508800pt;}
._7_c00212{width:11.520000pt;}
._2_c00212{width:14.361600pt;}
._f_c00212{width:18.764800pt;}
._e_c00212{width:19.782400pt;}
.fs3_c00212{font-size:34.560000pt;}
.fs2_c00212{font-size:42.560000pt;}
.fs0_c00212{font-size:53.440000pt;}
.fs1_c00212{font-size:64.000000pt;}
.y0_c00212{bottom:0.000000pt;}
.y5_c00212{bottom:50.987067pt;}
.y4_c00212{bottom:69.387067pt;}
.y25_c00212{bottom:102.347067pt;}
.y24_c00212{bottom:113.627067pt;}
.y23_c00212{bottom:155.627067pt;}
.y22_c00212{bottom:183.227067pt;}
.y21_c00212{bottom:210.747067pt;}
.y20_c00212{bottom:248.987067pt;}
.y1f_c00212{bottom:276.667067pt;}
.y1e_c00212{bottom:304.267067pt;}
.y1d_c00212{bottom:331.867067pt;}
.y1c_c00212{bottom:359.467067pt;}
.y1b_c00212{bottom:387.067067pt;}
.y1a_c00212{bottom:414.667067pt;}
.y19_c00212{bottom:442.267067pt;}
.y18_c00212{bottom:469.867067pt;}
.y17_c00212{bottom:497.467067pt;}
.y16_c00212{bottom:525.067067pt;}
.y15_c00212{bottom:552.587067pt;}
.y14_c00212{bottom:580.187067pt;}
.y13_c00212{bottom:618.427067pt;}
.y12_c00212{bottom:646.107067pt;}
.y11_c00212{bottom:673.707067pt;}
.y10_c00212{bottom:701.307067pt;}
.yf_c00212{bottom:728.907067pt;}
.ye_c00212{bottom:756.507067pt;}
.yd_c00212{bottom:784.107067pt;}
.yc_c00212{bottom:811.707067pt;}
.yb_c00212{bottom:849.867067pt;}
.ya_c00212{bottom:877.547067pt;}
.y9_c00212{bottom:905.147067pt;}
.y8_c00212{bottom:932.747067pt;}
.y7_c00212{bottom:960.347067pt;}
.y6_c00212{bottom:987.947067pt;}
.y3_c00212{bottom:1006.347067pt;}
.y2_c00212{bottom:1035.947576pt;}
.y1_c00212{bottom:1063.147200pt;}
.h5_c00212{height:30.324375pt;}
.h1_c00212{height:47.020937pt;}
.h2_c00212{height:56.156250pt;}
.h3_c00212{height:56.312500pt;}
.h4_c00212{height:61.343906pt;}
.h0_c00212{height:1122.666667pt;}
.w1_c00212{width:793.333333pt;}
.w0_c00212{width:793.626667pt;}
.x0_c00212{left:0.000000pt;}
.x1_c00212{left:113.440000pt;}
.x2_c00212{left:656.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_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_e134b81a9d74d7095097facd.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.095703;font-style:normal;font-weight:normal;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_63050f218d7638b89ac97b35.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.093262;font-style: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;}
.ls16_c00213{letter-spacing:-2.160000px;}
.ls15_c00213{letter-spacing:-0.223200px;}
.lse_c00213{letter-spacing:-0.048096px;}
.ls17_c00213{letter-spacing:-0.043200px;}
.ls10_c00213{letter-spacing:-0.028800px;}
.ls14_c00213{letter-spacing:-0.021600px;}
.ls11_c00213{letter-spacing:-0.010800px;}
.ls13_c00213{letter-spacing:-0.007200px;}
.lsf_c00213{letter-spacing:0.000000px;}
.ls3_c00213{letter-spacing:0.007200px;}
.ls4_c00213{letter-spacing:0.014400px;}
.ls5_c00213{letter-spacing:0.016200px;}
.ls0_c00213{letter-spacing:0.021600px;}
.lsa_c00213{letter-spacing:0.028800px;}
.ls7_c00213{letter-spacing:0.036000px;}
.ls8_c00213{letter-spacing:0.043200px;}
.ls1_c00213{letter-spacing:0.050400px;}
.ls9_c00213{letter-spacing:0.057600px;}
.ls2_c00213{letter-spacing:0.064800px;}
.lsd_c00213{letter-spacing:0.072000px;}
.lsc_c00213{letter-spacing:0.079200px;}
.ls6_c00213{letter-spacing:0.086400px;}
.lsb_c00213{letter-spacing:0.100800px;}
.ls12_c00213{letter-spacing:0.720000px;}
.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;}
}
.ws0_c00213{word-spacing:-18.079200px;}
.ws7_c00213{word-spacing:-3.283200px;}
.ws8_c00213{word-spacing:-2.203200px;}
.ws5_c00213{word-spacing:-0.194400px;}
.ws4_c00213{word-spacing:-0.021600px;}
.ws2_c00213{word-spacing:0.000000px;}
.ws1_c00213{word-spacing:0.138276px;}
.ws6_c00213{word-spacing:0.189000px;}
.ws3_c00213{word-spacing:19.756800px;}
._4_c00213{margin-left:-3.232800px;}
._1_c00213{margin-left:-1.396800px;}
._3_c00213{width:1.180800px;}
._6_c00213{width:2.217600px;}
._0_c00213{width:3.578400px;}
._8_c00213{width:6.120000px;}
._7_c00213{width:7.185600px;}
._9_c00213{width:9.324000px;}
._a_c00213{width:12.945600px;}
._2_c00213{width:19.749600px;}
._5_c00213{width:24.451200px;}
.fc1_c00213{color:rgb(68,84,106);}
.fc0_c00213{color:rgb(0,0,0);}
.fs2_c00213{font-size:54.000000px;}
.fs0_c00213{font-size:60.120000px;}
.fs1_c00213{font-size:72.000000px;}
.y0_c00213{bottom:0.000000px;}
.y6_c00213{bottom:57.360450px;}
.y5_c00213{bottom:78.060450px;}
.y1f_c00213{bottom:121.350450px;}
.y1e_c00213{bottom:152.400450px;}
.y1d_c00213{bottom:183.450450px;}
.y1c_c00213{bottom:226.380450px;}
.y1b_c00213{bottom:257.520450px;}
.y1a_c00213{bottom:288.570450px;}
.y19_c00213{bottom:319.620450px;}
.y18_c00213{bottom:362.640450px;}
.y17_c00213{bottom:393.780450px;}
.y16_c00213{bottom:424.740450px;}
.y15_c00213{bottom:455.790450px;}
.y14_c00213{bottom:498.810450px;}
.y13_c00213{bottom:529.950450px;}
.y12_c00213{bottom:561.000450px;}
.y11_c00213{bottom:592.050450px;}
.y10_c00213{bottom:623.100450px;}
.yf_c00213{bottom:654.150450px;}
.ye_c00213{bottom:685.200450px;}
.yd_c00213{bottom:716.250450px;}
.yc_c00213{bottom:755.130450px;}
.yb_c00213{bottom:992.460450px;}
.ya_c00213{bottom:1031.070450px;}
.y9_c00213{bottom:1062.210450px;}
.y8_c00213{bottom:1093.260450px;}
.y7_c00213{bottom:1124.310450px;}
.y4_c00213{bottom:1144.380657px;}
.y3_c00213{bottom:1161.660648px;}
.y2_c00213{bottom:1178.850459px;}
.y1_c00213{bottom:1196.130450px;}
.h1_c00213{height:52.898555px;}
.h2_c00213{height:63.175781px;}
.h3_c00213{height:63.351562px;}
.h0_c00213{height:1263.000000px;}
.w1_c00213{width:892.500000px;}
.w0_c00213{width:892.830000px;}
.x0_c00213{left:0.000000px;}
.x4_c00213{left:127.620000px;}
.x1_c00213{left:649.620000px;}
.x3_c00213{left:738.450000px;}
.x5_c00213{left:750.240000px;}
.x2_c00213{left:765.450198px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls16_c00213{letter-spacing:-1.920000pt;}
.ls15_c00213{letter-spacing:-0.198400pt;}
.lse_c00213{letter-spacing:-0.042752pt;}
.ls17_c00213{letter-spacing:-0.038400pt;}
.ls10_c00213{letter-spacing:-0.025600pt;}
.ls14_c00213{letter-spacing:-0.019200pt;}
.ls11_c00213{letter-spacing:-0.009600pt;}
.ls13_c00213{letter-spacing:-0.006400pt;}
.lsf_c00213{letter-spacing:0.000000pt;}
.ls3_c00213{letter-spacing:0.006400pt;}
.ls4_c00213{letter-spacing:0.012800pt;}
.ls5_c00213{letter-spacing:0.014400pt;}
.ls0_c00213{letter-spacing:0.019200pt;}
.lsa_c00213{letter-spacing:0.025600pt;}
.ls7_c00213{letter-spacing:0.032000pt;}
.ls8_c00213{letter-spacing:0.038400pt;}
.ls1_c00213{letter-spacing:0.044800pt;}
.ls9_c00213{letter-spacing:0.051200pt;}
.ls2_c00213{letter-spacing:0.057600pt;}
.lsd_c00213{letter-spacing:0.064000pt;}
.lsc_c00213{letter-spacing:0.070400pt;}
.ls6_c00213{letter-spacing:0.076800pt;}
.lsb_c00213{letter-spacing:0.089600pt;}
.ls12_c00213{letter-spacing:0.640000pt;}
.ws0_c00213{word-spacing:-16.070400pt;}
.ws7_c00213{word-spacing:-2.918400pt;}
.ws8_c00213{word-spacing:-1.958400pt;}
.ws5_c00213{word-spacing:-0.172800pt;}
.ws4_c00213{word-spacing:-0.019200pt;}
.ws2_c00213{word-spacing:0.000000pt;}
.ws1_c00213{word-spacing:0.122912pt;}
.ws6_c00213{word-spacing:0.168000pt;}
.ws3_c00213{word-spacing:17.561600pt;}
._4_c00213{margin-left:-2.873600pt;}
._1_c00213{margin-left:-1.241600pt;}
._3_c00213{width:1.049600pt;}
._6_c00213{width:1.971200pt;}
._0_c00213{width:3.180800pt;}
._8_c00213{width:5.440000pt;}
._7_c00213{width:6.387200pt;}
._9_c00213{width:8.288000pt;}
._a_c00213{width:11.507200pt;}
._2_c00213{width:17.555200pt;}
._5_c00213{width:21.734400pt;}
.fs2_c00213{font-size:48.000000pt;}
.fs0_c00213{font-size:53.440000pt;}
.fs1_c00213{font-size:64.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y6_c00213{bottom:50.987067pt;}
.y5_c00213{bottom:69.387067pt;}
.y1f_c00213{bottom:107.867067pt;}
.y1e_c00213{bottom:135.467067pt;}
.y1d_c00213{bottom:163.067067pt;}
.y1c_c00213{bottom:201.227067pt;}
.y1b_c00213{bottom:228.907067pt;}
.y1a_c00213{bottom:256.507067pt;}
.y19_c00213{bottom:284.107067pt;}
.y18_c00213{bottom:322.347067pt;}
.y17_c00213{bottom:350.027067pt;}
.y16_c00213{bottom:377.547067pt;}
.y15_c00213{bottom:405.147067pt;}
.y14_c00213{bottom:443.387067pt;}
.y13_c00213{bottom:471.067067pt;}
.y12_c00213{bottom:498.667067pt;}
.y11_c00213{bottom:526.267067pt;}
.y10_c00213{bottom:553.867067pt;}
.yf_c00213{bottom:581.467067pt;}
.ye_c00213{bottom:609.067067pt;}
.yd_c00213{bottom:636.667067pt;}
.yc_c00213{bottom:671.227067pt;}
.yb_c00213{bottom:882.187067pt;}
.ya_c00213{bottom:916.507067pt;}
.y9_c00213{bottom:944.187067pt;}
.y8_c00213{bottom:971.787067pt;}
.y7_c00213{bottom:999.387067pt;}
.y4_c00213{bottom:1017.227251pt;}
.y3_c00213{bottom:1032.587243pt;}
.y2_c00213{bottom:1047.867075pt;}
.y1_c00213{bottom:1063.227067pt;}
.h1_c00213{height:47.020937pt;}
.h2_c00213{height:56.156250pt;}
.h3_c00213{height:56.312500pt;}
.h0_c00213{height:1122.666667pt;}
.w1_c00213{width:793.333333pt;}
.w0_c00213{width:793.626667pt;}
.x0_c00213{left:0.000000pt;}
.x4_c00213{left:113.440000pt;}
.x1_c00213{left:577.440000pt;}
.x3_c00213{left:656.400000pt;}
.x5_c00213{left:666.880000pt;}
.x2_c00213{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a66888d2e86bb7ed5718d3e5.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.095703;font-style:normal;font-weight:normal;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_6bed2885af626656d8afb390.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.093262;font-style: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;}
.ls14_c00214{letter-spacing:-0.273600px;}
.ls15_c00214{letter-spacing:-0.108000px;}
.lsd_c00214{letter-spacing:-0.102204px;}
.ls16_c00214{letter-spacing:-0.086400px;}
.lsf_c00214{letter-spacing:-0.036000px;}
.ls17_c00214{letter-spacing:-0.028800px;}
.ls13_c00214{letter-spacing:-0.021600px;}
.ls11_c00214{letter-spacing:-0.014400px;}
.ls10_c00214{letter-spacing:-0.007200px;}
.lse_c00214{letter-spacing:0.000000px;}
.ls4_c00214{letter-spacing:0.007200px;}
.ls2_c00214{letter-spacing:0.014400px;}
.ls0_c00214{letter-spacing:0.021600px;}
.ls5_c00214{letter-spacing:0.028800px;}
.ls3_c00214{letter-spacing:0.036000px;}
.ls6_c00214{letter-spacing:0.043200px;}
.ls7_c00214{letter-spacing:0.050400px;}
.lsa_c00214{letter-spacing:0.057600px;}
.ls1_c00214{letter-spacing:0.064800px;}
.ls8_c00214{letter-spacing:0.072000px;}
.lsb_c00214{letter-spacing:0.079200px;}
.ls9_c00214{letter-spacing:0.093600px;}
.ls12_c00214{letter-spacing:0.100800px;}
.lsc_c00214{letter-spacing:0.108000px;}
.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;}
}
.ws2_c00214{word-spacing:-0.050400px;}
.ws1_c00214{word-spacing:0.000000px;}
.ws3_c00214{word-spacing:0.007200px;}
.ws0_c00214{word-spacing:0.192384px;}
.ws5_c00214{word-spacing:10.468800px;}
.ws4_c00214{word-spacing:14.356800px;}
._a_c00214{margin-left:-4.658400px;}
._3_c00214{margin-left:-2.988000px;}
._2_c00214{margin-left:-1.000800px;}
._0_c00214{width:1.034064px;}
._b_c00214{width:2.145600px;}
._5_c00214{width:3.470400px;}
._4_c00214{width:4.644000px;}
._7_c00214{width:6.436800px;}
._8_c00214{width:7.524000px;}
._1_c00214{width:9.338400px;}
._11_c00214{width:10.346400px;}
._f_c00214{width:11.390400px;}
._c_c00214{width:12.564000px;}
._10_c00214{width:14.356800px;}
._6_c00214{width:16.660800px;}
._9_c00214{width:20.498400px;}
._d_c00214{width:28.756800px;}
._e_c00214{width:29.822400px;}
.fc1_c00214{color:rgb(0,0,0);}
.fc0_c00214{color:rgb(32,31,30);}
.fs0_c00214{font-size:60.120000px;}
.fs1_c00214{font-size:72.000000px;}
.y0_c00214{bottom:0.000000px;}
.y5_c00214{bottom:57.360450px;}
.y4_c00214{bottom:78.060450px;}
.y25_c00214{bottom:112.080450px;}
.y24_c00214{bottom:143.130450px;}
.y23_c00214{bottom:174.180450px;}
.y22_c00214{bottom:205.230450px;}
.y21_c00214{bottom:236.280450px;}
.y20_c00214{bottom:279.210450px;}
.y1f_c00214{bottom:310.350450px;}
.y1e_c00214{bottom:341.400450px;}
.y1d_c00214{bottom:372.450450px;}
.y1c_c00214{bottom:403.500450px;}
.y1b_c00214{bottom:434.550450px;}
.y1a_c00214{bottom:477.480450px;}
.y19_c00214{bottom:508.620450px;}
.y18_c00214{bottom:539.670450px;}
.y17_c00214{bottom:570.720450px;}
.y16_c00214{bottom:601.770450px;}
.y15_c00214{bottom:636.060450px;}
.y14_c00214{bottom:658.290450px;}
.y13_c00214{bottom:683.670450px;}
.y12_c00214{bottom:726.780450px;}
.y11_c00214{bottom:757.920450px;}
.y10_c00214{bottom:788.970450px;}
.yf_c00214{bottom:820.020450px;}
.ye_c00214{bottom:862.950450px;}
.yd_c00214{bottom:894.090450px;}
.yc_c00214{bottom:925.140450px;}
.yb_c00214{bottom:956.190450px;}
.ya_c00214{bottom:987.240450px;}
.y9_c00214{bottom:1018.290450px;}
.y8_c00214{bottom:1049.340450px;}
.y7_c00214{bottom:1080.390450px;}
.y6_c00214{bottom:1111.440450px;}
.y3_c00214{bottom:1132.140450px;}
.y2_c00214{bottom:1165.441023px;}
.y1_c00214{bottom:1196.040600px;}
.h1_c00214{height:52.898555px;}
.h2_c00214{height:63.175781px;}
.h3_c00214{height:63.351562px;}
.h0_c00214{height:1263.000000px;}
.w1_c00214{width:892.500000px;}
.w0_c00214{width:892.830000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:127.620000px;}
.x2_c00214{left:738.450000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls14_c00214{letter-spacing:-0.243200pt;}
.ls15_c00214{letter-spacing:-0.096000pt;}
.lsd_c00214{letter-spacing:-0.090848pt;}
.ls16_c00214{letter-spacing:-0.076800pt;}
.lsf_c00214{letter-spacing:-0.032000pt;}
.ls17_c00214{letter-spacing:-0.025600pt;}
.ls13_c00214{letter-spacing:-0.019200pt;}
.ls11_c00214{letter-spacing:-0.012800pt;}
.ls10_c00214{letter-spacing:-0.006400pt;}
.lse_c00214{letter-spacing:0.000000pt;}
.ls4_c00214{letter-spacing:0.006400pt;}
.ls2_c00214{letter-spacing:0.012800pt;}
.ls0_c00214{letter-spacing:0.019200pt;}
.ls5_c00214{letter-spacing:0.025600pt;}
.ls3_c00214{letter-spacing:0.032000pt;}
.ls6_c00214{letter-spacing:0.038400pt;}
.ls7_c00214{letter-spacing:0.044800pt;}
.lsa_c00214{letter-spacing:0.051200pt;}
.ls1_c00214{letter-spacing:0.057600pt;}
.ls8_c00214{letter-spacing:0.064000pt;}
.lsb_c00214{letter-spacing:0.070400pt;}
.ls9_c00214{letter-spacing:0.083200pt;}
.ls12_c00214{letter-spacing:0.089600pt;}
.lsc_c00214{letter-spacing:0.096000pt;}
.ws2_c00214{word-spacing:-0.044800pt;}
.ws1_c00214{word-spacing:0.000000pt;}
.ws3_c00214{word-spacing:0.006400pt;}
.ws0_c00214{word-spacing:0.171008pt;}
.ws5_c00214{word-spacing:9.305600pt;}
.ws4_c00214{word-spacing:12.761600pt;}
._a_c00214{margin-left:-4.140800pt;}
._3_c00214{margin-left:-2.656000pt;}
._2_c00214{margin-left:-0.889600pt;}
._0_c00214{width:0.919168pt;}
._b_c00214{width:1.907200pt;}
._5_c00214{width:3.084800pt;}
._4_c00214{width:4.128000pt;}
._7_c00214{width:5.721600pt;}
._8_c00214{width:6.688000pt;}
._1_c00214{width:8.300800pt;}
._11_c00214{width:9.196800pt;}
._f_c00214{width:10.124800pt;}
._c_c00214{width:11.168000pt;}
._10_c00214{width:12.761600pt;}
._6_c00214{width:14.809600pt;}
._9_c00214{width:18.220800pt;}
._d_c00214{width:25.561600pt;}
._e_c00214{width:26.508800pt;}
.fs0_c00214{font-size:53.440000pt;}
.fs1_c00214{font-size:64.000000pt;}
.y0_c00214{bottom:0.000000pt;}
.y5_c00214{bottom:50.987067pt;}
.y4_c00214{bottom:69.387067pt;}
.y25_c00214{bottom:99.627067pt;}
.y24_c00214{bottom:127.227067pt;}
.y23_c00214{bottom:154.827067pt;}
.y22_c00214{bottom:182.427067pt;}
.y21_c00214{bottom:210.027067pt;}
.y20_c00214{bottom:248.187067pt;}
.y1f_c00214{bottom:275.867067pt;}
.y1e_c00214{bottom:303.467067pt;}
.y1d_c00214{bottom:331.067067pt;}
.y1c_c00214{bottom:358.667067pt;}
.y1b_c00214{bottom:386.267067pt;}
.y1a_c00214{bottom:424.427067pt;}
.y19_c00214{bottom:452.107067pt;}
.y18_c00214{bottom:479.707067pt;}
.y17_c00214{bottom:507.307067pt;}
.y16_c00214{bottom:534.907067pt;}
.y15_c00214{bottom:565.387067pt;}
.y14_c00214{bottom:585.147067pt;}
.y13_c00214{bottom:607.707067pt;}
.y12_c00214{bottom:646.027067pt;}
.y11_c00214{bottom:673.707067pt;}
.y10_c00214{bottom:701.307067pt;}
.yf_c00214{bottom:728.907067pt;}
.ye_c00214{bottom:767.067067pt;}
.yd_c00214{bottom:794.747067pt;}
.yc_c00214{bottom:822.347067pt;}
.yb_c00214{bottom:849.947067pt;}
.ya_c00214{bottom:877.547067pt;}
.y9_c00214{bottom:905.147067pt;}
.y8_c00214{bottom:932.747067pt;}
.y7_c00214{bottom:960.347067pt;}
.y6_c00214{bottom:987.947067pt;}
.y3_c00214{bottom:1006.347067pt;}
.y2_c00214{bottom:1035.947576pt;}
.y1_c00214{bottom:1063.147200pt;}
.h1_c00214{height:47.020937pt;}
.h2_c00214{height:56.156250pt;}
.h3_c00214{height:56.312500pt;}
.h0_c00214{height:1122.666667pt;}
.w1_c00214{width:793.333333pt;}
.w0_c00214{width:793.626667pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:113.440000pt;}
.x2_c00214{left:656.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_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_d199182c01a652dcf93af8a0.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.095703;font-style:normal;font-weight:normal;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_10baab8e596771b804722ca1.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls17_c00215{letter-spacing:-0.165600px;}
.ls12_c00215{letter-spacing:-0.048096px;}
.ls15_c00215{letter-spacing:-0.043200px;}
.ls16_c00215{letter-spacing:-0.027000px;}
.ls14_c00215{letter-spacing:-0.021600px;}
.ls18_c00215{letter-spacing:-0.014400px;}
.ls13_c00215{letter-spacing:0.000000px;}
.ls7_c00215{letter-spacing:0.005400px;}
.ls10_c00215{letter-spacing:0.007200px;}
.lsc_c00215{letter-spacing:0.014400px;}
.ls1_c00215{letter-spacing:0.021600px;}
.lsb_c00215{letter-spacing:0.028800px;}
.ls6_c00215{letter-spacing:0.032400px;}
.lsd_c00215{letter-spacing:0.036000px;}
.ls8_c00215{letter-spacing:0.043200px;}
.lsa_c00215{letter-spacing:0.050400px;}
.ls4_c00215{letter-spacing:0.057600px;}
.ls5_c00215{letter-spacing:0.064800px;}
.lsf_c00215{letter-spacing:0.072000px;}
.ls3_c00215{letter-spacing:0.079200px;}
.ls2_c00215{letter-spacing:0.086400px;}
.ls9_c00215{letter-spacing:0.093600px;}
.ls0_c00215{letter-spacing:0.100800px;}
.ls11_c00215{letter-spacing:0.144000px;}
.lse_c00215{letter-spacing:24.120000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00215{word-spacing:-18.079200px;}
.ws0_c00215{word-spacing:-18.021600px;}
.wsc_c00215{word-spacing:-2.664000px;}
.wsb_c00215{word-spacing:-2.527200px;}
.ws3_c00215{word-spacing:0.000000px;}
.ws2_c00215{word-spacing:0.138276px;}
.ws4_c00215{word-spacing:0.145800px;}
.ws5_c00215{word-spacing:0.156600px;}
.ws6_c00215{word-spacing:0.172800px;}
.ws7_c00215{word-spacing:2.800800px;}
.ws8_c00215{word-spacing:2.851200px;}
.ws9_c00215{word-spacing:4.910400px;}
.wsa_c00215{word-spacing:5.032800px;}
._c_c00215{margin-left:-4.500000px;}
._b_c00215{margin-left:-3.448800px;}
._3_c00215{margin-left:-2.383200px;}
._1_c00215{margin-left:-1.180800px;}
._2_c00215{width:1.648800px;}
._8_c00215{width:3.067200px;}
._4_c00215{width:6.098400px;}
._d_c00215{width:7.171200px;}
._7_c00215{width:8.352000px;}
._9_c00215{width:9.684000px;}
._0_c00215{width:11.059200px;}
._5_c00215{width:15.033600px;}
._6_c00215{width:16.243200px;}
._a_c00215{width:24.084000px;}
.fc1_c00215{color:rgb(68,84,106);}
.fc0_c00215{color:rgb(0,0,0);}
.fs3_c00215{font-size:47.880000px;}
.fs2_c00215{font-size:54.000000px;}
.fs0_c00215{font-size:60.120000px;}
.fs1_c00215{font-size:72.000000px;}
.y0_c00215{bottom:0.000000px;}
.y6_c00215{bottom:57.360450px;}
.y5_c00215{bottom:78.060450px;}
.y1e_c00215{bottom:149.520450px;}
.y1d_c00215{bottom:180.570450px;}
.y1c_c00215{bottom:211.530450px;}
.y1b_c00215{bottom:242.580450px;}
.y1a_c00215{bottom:285.600450px;}
.y19_c00215{bottom:316.740450px;}
.y18_c00215{bottom:347.790450px;}
.y17_c00215{bottom:378.840450px;}
.y16_c00215{bottom:409.890450px;}
.y15_c00215{bottom:452.820450px;}
.y14_c00215{bottom:483.870450px;}
.y13_c00215{bottom:514.920450px;}
.y12_c00215{bottom:546.060450px;}
.y11_c00215{bottom:577.110450px;}
.y10_c00215{bottom:608.160450px;}
.yf_c00215{bottom:639.210450px;}
.ye_c00215{bottom:670.260450px;}
.yd_c00215{bottom:709.140450px;}
.yc_c00215{bottom:969.150000px;}
.yb_c00215{bottom:992.460450px;}
.ya_c00215{bottom:1031.070450px;}
.y9_c00215{bottom:1062.210450px;}
.y8_c00215{bottom:1093.260450px;}
.y7_c00215{bottom:1124.310450px;}
.y4_c00215{bottom:1144.380657px;}
.y3_c00215{bottom:1161.660648px;}
.y2_c00215{bottom:1178.850459px;}
.y1_c00215{bottom:1196.130450px;}
.h4_c00215{height:47.513672px;}
.h5_c00215{height:47.515472px;}
.h1_c00215{height:52.898555px;}
.h2_c00215{height:63.175781px;}
.h3_c00215{height:63.351562px;}
.h6_c00215{height:63.949219px;}
.h0_c00215{height:1263.000000px;}
.w1_c00215{width:892.500000px;}
.w0_c00215{width:892.830000px;}
.x0_c00215{left:0.000000px;}
.x4_c00215{left:127.620000px;}
.x1_c00215{left:649.620000px;}
.x3_c00215{left:738.450000px;}
.x5_c00215{left:745.200000px;}
.x2_c00215{left:765.450198px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls17_c00215{letter-spacing:-0.147200pt;}
.ls12_c00215{letter-spacing:-0.042752pt;}
.ls15_c00215{letter-spacing:-0.038400pt;}
.ls16_c00215{letter-spacing:-0.024000pt;}
.ls14_c00215{letter-spacing:-0.019200pt;}
.ls18_c00215{letter-spacing:-0.012800pt;}
.ls13_c00215{letter-spacing:0.000000pt;}
.ls7_c00215{letter-spacing:0.004800pt;}
.ls10_c00215{letter-spacing:0.006400pt;}
.lsc_c00215{letter-spacing:0.012800pt;}
.ls1_c00215{letter-spacing:0.019200pt;}
.lsb_c00215{letter-spacing:0.025600pt;}
.ls6_c00215{letter-spacing:0.028800pt;}
.lsd_c00215{letter-spacing:0.032000pt;}
.ls8_c00215{letter-spacing:0.038400pt;}
.lsa_c00215{letter-spacing:0.044800pt;}
.ls4_c00215{letter-spacing:0.051200pt;}
.ls5_c00215{letter-spacing:0.057600pt;}
.lsf_c00215{letter-spacing:0.064000pt;}
.ls3_c00215{letter-spacing:0.070400pt;}
.ls2_c00215{letter-spacing:0.076800pt;}
.ls9_c00215{letter-spacing:0.083200pt;}
.ls0_c00215{letter-spacing:0.089600pt;}
.ls11_c00215{letter-spacing:0.128000pt;}
.lse_c00215{letter-spacing:21.440000pt;}
.ws1_c00215{word-spacing:-16.070400pt;}
.ws0_c00215{word-spacing:-16.019200pt;}
.wsc_c00215{word-spacing:-2.368000pt;}
.wsb_c00215{word-spacing:-2.246400pt;}
.ws3_c00215{word-spacing:0.000000pt;}
.ws2_c00215{word-spacing:0.122912pt;}
.ws4_c00215{word-spacing:0.129600pt;}
.ws5_c00215{word-spacing:0.139200pt;}
.ws6_c00215{word-spacing:0.153600pt;}
.ws7_c00215{word-spacing:2.489600pt;}
.ws8_c00215{word-spacing:2.534400pt;}
.ws9_c00215{word-spacing:4.364800pt;}
.wsa_c00215{word-spacing:4.473600pt;}
._c_c00215{margin-left:-4.000000pt;}
._b_c00215{margin-left:-3.065600pt;}
._3_c00215{margin-left:-2.118400pt;}
._1_c00215{margin-left:-1.049600pt;}
._2_c00215{width:1.465600pt;}
._8_c00215{width:2.726400pt;}
._4_c00215{width:5.420800pt;}
._d_c00215{width:6.374400pt;}
._7_c00215{width:7.424000pt;}
._9_c00215{width:8.608000pt;}
._0_c00215{width:9.830400pt;}
._5_c00215{width:13.363200pt;}
._6_c00215{width:14.438400pt;}
._a_c00215{width:21.408000pt;}
.fs3_c00215{font-size:42.560000pt;}
.fs2_c00215{font-size:48.000000pt;}
.fs0_c00215{font-size:53.440000pt;}
.fs1_c00215{font-size:64.000000pt;}
.y0_c00215{bottom:0.000000pt;}
.y6_c00215{bottom:50.987067pt;}
.y5_c00215{bottom:69.387067pt;}
.y1e_c00215{bottom:132.907067pt;}
.y1d_c00215{bottom:160.507067pt;}
.y1c_c00215{bottom:188.027067pt;}
.y1b_c00215{bottom:215.627067pt;}
.y1a_c00215{bottom:253.867067pt;}
.y19_c00215{bottom:281.547067pt;}
.y18_c00215{bottom:309.147067pt;}
.y17_c00215{bottom:336.747067pt;}
.y16_c00215{bottom:364.347067pt;}
.y15_c00215{bottom:402.507067pt;}
.y14_c00215{bottom:430.107067pt;}
.y13_c00215{bottom:457.707067pt;}
.y12_c00215{bottom:485.387067pt;}
.y11_c00215{bottom:512.987067pt;}
.y10_c00215{bottom:540.587067pt;}
.yf_c00215{bottom:568.187067pt;}
.ye_c00215{bottom:595.787067pt;}
.yd_c00215{bottom:630.347067pt;}
.yc_c00215{bottom:861.466667pt;}
.yb_c00215{bottom:882.187067pt;}
.ya_c00215{bottom:916.507067pt;}
.y9_c00215{bottom:944.187067pt;}
.y8_c00215{bottom:971.787067pt;}
.y7_c00215{bottom:999.387067pt;}
.y4_c00215{bottom:1017.227251pt;}
.y3_c00215{bottom:1032.587243pt;}
.y2_c00215{bottom:1047.867075pt;}
.y1_c00215{bottom:1063.227067pt;}
.h4_c00215{height:42.234375pt;}
.h5_c00215{height:42.235975pt;}
.h1_c00215{height:47.020937pt;}
.h2_c00215{height:56.156250pt;}
.h3_c00215{height:56.312500pt;}
.h6_c00215{height:56.843750pt;}
.h0_c00215{height:1122.666667pt;}
.w1_c00215{width:793.333333pt;}
.w0_c00215{width:793.626667pt;}
.x0_c00215{left:0.000000pt;}
.x4_c00215{left:113.440000pt;}
.x1_c00215{left:577.440000pt;}
.x3_c00215{left:656.400000pt;}
.x5_c00215{left:662.400000pt;}
.x2_c00215{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ceb7c56d80c3e2f032ac9c1f.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.095703;font-style:normal;font-weight:normal;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_3be0d690419a42b4e8335207.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:1.104004;font-style: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;}
.lsb_c00216{letter-spacing:-0.102204px;}
.ls10_c00216{letter-spacing:-0.086400px;}
.lse_c00216{letter-spacing:-0.043200px;}
.ls11_c00216{letter-spacing:-0.036000px;}
.lsd_c00216{letter-spacing:-0.021600px;}
.ls12_c00216{letter-spacing:-0.007200px;}
.lsc_c00216{letter-spacing:0.000000px;}
.ls1_c00216{letter-spacing:0.007200px;}
.lsa_c00216{letter-spacing:0.014400px;}
.ls7_c00216{letter-spacing:0.021600px;}
.ls3_c00216{letter-spacing:0.028800px;}
.ls6_c00216{letter-spacing:0.036000px;}
.ls4_c00216{letter-spacing:0.043200px;}
.ls2_c00216{letter-spacing:0.050400px;}
.ls5_c00216{letter-spacing:0.057600px;}
.ls0_c00216{letter-spacing:0.072000px;}
.ls8_c00216{letter-spacing:0.108000px;}
.ls9_c00216{letter-spacing:0.136800px;}
.lsf_c00216{letter-spacing:11.520000px;}
.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;}
}
.ws1_c00216{word-spacing:-18.072000px;}
.ws0_c00216{word-spacing:-18.007200px;}
.ws3_c00216{word-spacing:0.000000px;}
.ws2_c00216{word-spacing:0.192384px;}
.ws5_c00216{word-spacing:1.044000px;}
.ws4_c00216{word-spacing:1.072800px;}
.ws8_c00216{word-spacing:2.692800px;}
.ws7_c00216{word-spacing:2.880000px;}
.wsa_c00216{word-spacing:5.709600px;}
.ws6_c00216{word-spacing:7.560000px;}
.ws9_c00216{word-spacing:9.316800px;}
.wsc_c00216{word-spacing:18.712800px;}
.wsb_c00216{word-spacing:28.756800px;}
._7_c00216{margin-left:-12.009600px;}
._8_c00216{margin-left:-10.483200px;}
._e_c00216{margin-left:-4.932000px;}
._c_c00216{margin-left:-3.643200px;}
._b_c00216{margin-left:-2.563200px;}
._1_c00216{margin-left:-1.346400px;}
._0_c00216{width:1.034064px;}
._2_c00216{width:2.462400px;}
._4_c00216{width:4.298400px;}
._3_c00216{width:5.364000px;}
._11_c00216{width:6.508800px;}
._5_c00216{width:7.538400px;}
._10_c00216{width:8.589600px;}
._d_c00216{width:9.705600px;}
._6_c00216{width:11.232000px;}
._f_c00216{width:12.290400px;}
._a_c00216{width:22.672800px;}
._9_c00216{width:24.112800px;}
.fc1_c00216{color:rgb(0,0,0);}
.fc0_c00216{color:rgb(32,31,30);}
.fs0_c00216{font-size:60.120000px;}
.fs1_c00216{font-size:72.000000px;}
.y0_c00216{bottom:0.000000px;}
.y5_c00216{bottom:57.360450px;}
.y4_c00216{bottom:78.060450px;}
.y22_c00216{bottom:170.040450px;}
.y21_c00216{bottom:213.060450px;}
.y20_c00216{bottom:256.080450px;}
.y1f_c00216{bottom:287.130450px;}
.y1e_c00216{bottom:318.180450px;}
.y1d_c00216{bottom:349.320450px;}
.y1c_c00216{bottom:380.370450px;}
.y1b_c00216{bottom:423.300450px;}
.y1a_c00216{bottom:454.440450px;}
.y19_c00216{bottom:485.490450px;}
.y18_c00216{bottom:516.540450px;}
.y17_c00216{bottom:547.590450px;}
.y16_c00216{bottom:590.520450px;}
.y15_c00216{bottom:621.660450px;}
.y14_c00216{bottom:652.710450px;}
.y13_c00216{bottom:683.760450px;}
.y12_c00216{bottom:714.810450px;}
.y11_c00216{bottom:745.860450px;}
.y10_c00216{bottom:776.910450px;}
.yf_c00216{bottom:807.960450px;}
.ye_c00216{bottom:839.010450px;}
.yd_c00216{bottom:870.060450px;}
.yc_c00216{bottom:913.080450px;}
.yb_c00216{bottom:944.220450px;}
.ya_c00216{bottom:975.180450px;}
.y9_c00216{bottom:1006.230450px;}
.y8_c00216{bottom:1037.280450px;}
.y7_c00216{bottom:1080.300450px;}
.y6_c00216{bottom:1111.440450px;}
.y3_c00216{bottom:1132.140450px;}
.y2_c00216{bottom:1165.441023px;}
.y1_c00216{bottom:1196.040600px;}
.h1_c00216{height:52.898555px;}
.h2_c00216{height:63.175781px;}
.h4_c00216{height:63.351562px;}
.h3_c00216{height:63.949219px;}
.h0_c00216{height:1263.000000px;}
.w1_c00216{width:892.500000px;}
.w0_c00216{width:892.830000px;}
.x0_c00216{left:0.000000px;}
.x1_c00216{left:127.620000px;}
.x2_c00216{left:738.450000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.lsb_c00216{letter-spacing:-0.090848pt;}
.ls10_c00216{letter-spacing:-0.076800pt;}
.lse_c00216{letter-spacing:-0.038400pt;}
.ls11_c00216{letter-spacing:-0.032000pt;}
.lsd_c00216{letter-spacing:-0.019200pt;}
.ls12_c00216{letter-spacing:-0.006400pt;}
.lsc_c00216{letter-spacing:0.000000pt;}
.ls1_c00216{letter-spacing:0.006400pt;}
.lsa_c00216{letter-spacing:0.012800pt;}
.ls7_c00216{letter-spacing:0.019200pt;}
.ls3_c00216{letter-spacing:0.025600pt;}
.ls6_c00216{letter-spacing:0.032000pt;}
.ls4_c00216{letter-spacing:0.038400pt;}
.ls2_c00216{letter-spacing:0.044800pt;}
.ls5_c00216{letter-spacing:0.051200pt;}
.ls0_c00216{letter-spacing:0.064000pt;}
.ls8_c00216{letter-spacing:0.096000pt;}
.ls9_c00216{letter-spacing:0.121600pt;}
.lsf_c00216{letter-spacing:10.240000pt;}
.ws1_c00216{word-spacing:-16.064000pt;}
.ws0_c00216{word-spacing:-16.006400pt;}
.ws3_c00216{word-spacing:0.000000pt;}
.ws2_c00216{word-spacing:0.171008pt;}
.ws5_c00216{word-spacing:0.928000pt;}
.ws4_c00216{word-spacing:0.953600pt;}
.ws8_c00216{word-spacing:2.393600pt;}
.ws7_c00216{word-spacing:2.560000pt;}
.wsa_c00216{word-spacing:5.075200pt;}
.ws6_c00216{word-spacing:6.720000pt;}
.ws9_c00216{word-spacing:8.281600pt;}
.wsc_c00216{word-spacing:16.633600pt;}
.wsb_c00216{word-spacing:25.561600pt;}
._7_c00216{margin-left:-10.675200pt;}
._8_c00216{margin-left:-9.318400pt;}
._e_c00216{margin-left:-4.384000pt;}
._c_c00216{margin-left:-3.238400pt;}
._b_c00216{margin-left:-2.278400pt;}
._1_c00216{margin-left:-1.196800pt;}
._0_c00216{width:0.919168pt;}
._2_c00216{width:2.188800pt;}
._4_c00216{width:3.820800pt;}
._3_c00216{width:4.768000pt;}
._11_c00216{width:5.785600pt;}
._5_c00216{width:6.700800pt;}
._10_c00216{width:7.635200pt;}
._d_c00216{width:8.627200pt;}
._6_c00216{width:9.984000pt;}
._f_c00216{width:10.924800pt;}
._a_c00216{width:20.153600pt;}
._9_c00216{width:21.433600pt;}
.fs0_c00216{font-size:53.440000pt;}
.fs1_c00216{font-size:64.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y5_c00216{bottom:50.987067pt;}
.y4_c00216{bottom:69.387067pt;}
.y22_c00216{bottom:151.147067pt;}
.y21_c00216{bottom:189.387067pt;}
.y20_c00216{bottom:227.627067pt;}
.y1f_c00216{bottom:255.227067pt;}
.y1e_c00216{bottom:282.827067pt;}
.y1d_c00216{bottom:310.507067pt;}
.y1c_c00216{bottom:338.107067pt;}
.y1b_c00216{bottom:376.267067pt;}
.y1a_c00216{bottom:403.947067pt;}
.y19_c00216{bottom:431.547067pt;}
.y18_c00216{bottom:459.147067pt;}
.y17_c00216{bottom:486.747067pt;}
.y16_c00216{bottom:524.907067pt;}
.y15_c00216{bottom:552.587067pt;}
.y14_c00216{bottom:580.187067pt;}
.y13_c00216{bottom:607.787067pt;}
.y12_c00216{bottom:635.387067pt;}
.y11_c00216{bottom:662.987067pt;}
.y10_c00216{bottom:690.587067pt;}
.yf_c00216{bottom:718.187067pt;}
.ye_c00216{bottom:745.787067pt;}
.yd_c00216{bottom:773.387067pt;}
.yc_c00216{bottom:811.627067pt;}
.yb_c00216{bottom:839.307067pt;}
.ya_c00216{bottom:866.827067pt;}
.y9_c00216{bottom:894.427067pt;}
.y8_c00216{bottom:922.027067pt;}
.y7_c00216{bottom:960.267067pt;}
.y6_c00216{bottom:987.947067pt;}
.y3_c00216{bottom:1006.347067pt;}
.y2_c00216{bottom:1035.947576pt;}
.y1_c00216{bottom:1063.147200pt;}
.h1_c00216{height:47.020937pt;}
.h2_c00216{height:56.156250pt;}
.h4_c00216{height:56.312500pt;}
.h3_c00216{height:56.843750pt;}
.h0_c00216{height:1122.666667pt;}
.w1_c00216{width:793.333333pt;}
.w0_c00216{width:793.626667pt;}
.x0_c00216{left:0.000000pt;}
.x1_c00216{left:113.440000pt;}
.x2_c00216{left:656.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_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_47e83e8c79d8955ac04f127f.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.095703;font-style:normal;font-weight:normal;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_a842583a358ed372271c1e68.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.093262;font-style: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;}
.lse_c00217{letter-spacing:-2.880000px;}
.lsb_c00217{letter-spacing:-0.048096px;}
.ls10_c00217{letter-spacing:-0.036000px;}
.lsd_c00217{letter-spacing:-0.021600px;}
.lsf_c00217{letter-spacing:-0.007200px;}
.lsc_c00217{letter-spacing:0.000000px;}
.ls3_c00217{letter-spacing:0.014400px;}
.ls1_c00217{letter-spacing:0.021600px;}
.ls9_c00217{letter-spacing:0.028800px;}
.ls4_c00217{letter-spacing:0.036000px;}
.ls2_c00217{letter-spacing:0.043200px;}
.ls7_c00217{letter-spacing:0.050400px;}
.ls6_c00217{letter-spacing:0.057600px;}
.lsa_c00217{letter-spacing:0.064800px;}
.ls0_c00217{letter-spacing:0.072000px;}
.ls8_c00217{letter-spacing:0.079200px;}
.ls5_c00217{letter-spacing:0.115200px;}
.ls13_c00217{letter-spacing:1.800000px;}
.ls12_c00217{letter-spacing:6.753600px;}
.ls11_c00217{letter-spacing:7.920000px;}
.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;}
}
.ws3_c00217{word-spacing:-2.872800px;}
.ws1_c00217{word-spacing:0.000000px;}
.ws2_c00217{word-spacing:0.021600px;}
.ws0_c00217{word-spacing:0.138276px;}
._a_c00217{margin-left:-8.294400px;}
._b_c00217{margin-left:-6.876000px;}
._f_c00217{margin-left:-5.673600px;}
._6_c00217{margin-left:-3.700800px;}
._7_c00217{margin-left:-2.260800px;}
._1_c00217{margin-left:-1.238400px;}
._3_c00217{width:1.814400px;}
._2_c00217{width:2.836800px;}
._0_c00217{width:4.608000px;}
._5_c00217{width:6.465600px;}
._8_c00217{width:7.869600px;}
._9_c00217{width:9.014400px;}
._4_c00217{width:10.461600px;}
._d_c00217{width:12.945600px;}
._e_c00217{width:14.025600px;}
._c_c00217{width:16.531200px;}
.fc0_c00217{color:rgb(0,0,0);}
.fs0_c00217{font-size:60.120000px;}
.fs1_c00217{font-size:72.000000px;}
.y0_c00217{bottom:0.000000px;}
.y6_c00217{bottom:57.360450px;}
.y5_c00217{bottom:78.060450px;}
.y20_c00217{bottom:317.460450px;}
.y1f_c00217{bottom:348.600450px;}
.y1e_c00217{bottom:379.650450px;}
.y1d_c00217{bottom:410.700450px;}
.y1c_c00217{bottom:441.750450px;}
.y1b_c00217{bottom:472.800450px;}
.y1a_c00217{bottom:503.850450px;}
.y19_c00217{bottom:534.900450px;}
.y18_c00217{bottom:565.950450px;}
.y17_c00217{bottom:597.000450px;}
.y16_c00217{bottom:628.050450px;}
.y15_c00217{bottom:659.100450px;}
.y14_c00217{bottom:702.030450px;}
.y13_c00217{bottom:733.170450px;}
.y12_c00217{bottom:764.220450px;}
.y11_c00217{bottom:795.270450px;}
.y10_c00217{bottom:838.290450px;}
.yf_c00217{bottom:869.430450px;}
.ye_c00217{bottom:900.480450px;}
.yd_c00217{bottom:931.440450px;}
.yc_c00217{bottom:974.460450px;}
.yb_c00217{bottom:1005.600450px;}
.ya_c00217{bottom:1036.650450px;}
.y9_c00217{bottom:1067.700450px;}
.y8_c00217{bottom:1101.900450px;}
.y7_c00217{bottom:1124.130450px;}
.y4_c00217{bottom:1144.380657px;}
.y3_c00217{bottom:1161.660648px;}
.y2_c00217{bottom:1178.850459px;}
.y1_c00217{bottom:1196.130450px;}
.h1_c00217{height:52.898555px;}
.h2_c00217{height:63.175781px;}
.h3_c00217{height:63.351562px;}
.h0_c00217{height:1263.000000px;}
.w1_c00217{width:892.500000px;}
.w0_c00217{width:892.830000px;}
.x0_c00217{left:0.000000px;}
.x4_c00217{left:127.620000px;}
.x1_c00217{left:649.620000px;}
.x3_c00217{left:738.450000px;}
.x2_c00217{left:765.450198px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.lse_c00217{letter-spacing:-2.560000pt;}
.lsb_c00217{letter-spacing:-0.042752pt;}
.ls10_c00217{letter-spacing:-0.032000pt;}
.lsd_c00217{letter-spacing:-0.019200pt;}
.lsf_c00217{letter-spacing:-0.006400pt;}
.lsc_c00217{letter-spacing:0.000000pt;}
.ls3_c00217{letter-spacing:0.012800pt;}
.ls1_c00217{letter-spacing:0.019200pt;}
.ls9_c00217{letter-spacing:0.025600pt;}
.ls4_c00217{letter-spacing:0.032000pt;}
.ls2_c00217{letter-spacing:0.038400pt;}
.ls7_c00217{letter-spacing:0.044800pt;}
.ls6_c00217{letter-spacing:0.051200pt;}
.lsa_c00217{letter-spacing:0.057600pt;}
.ls0_c00217{letter-spacing:0.064000pt;}
.ls8_c00217{letter-spacing:0.070400pt;}
.ls5_c00217{letter-spacing:0.102400pt;}
.ls13_c00217{letter-spacing:1.600000pt;}
.ls12_c00217{letter-spacing:6.003200pt;}
.ls11_c00217{letter-spacing:7.040000pt;}
.ws3_c00217{word-spacing:-2.553600pt;}
.ws1_c00217{word-spacing:0.000000pt;}
.ws2_c00217{word-spacing:0.019200pt;}
.ws0_c00217{word-spacing:0.122912pt;}
._a_c00217{margin-left:-7.372800pt;}
._b_c00217{margin-left:-6.112000pt;}
._f_c00217{margin-left:-5.043200pt;}
._6_c00217{margin-left:-3.289600pt;}
._7_c00217{margin-left:-2.009600pt;}
._1_c00217{margin-left:-1.100800pt;}
._3_c00217{width:1.612800pt;}
._2_c00217{width:2.521600pt;}
._0_c00217{width:4.096000pt;}
._5_c00217{width:5.747200pt;}
._8_c00217{width:6.995200pt;}
._9_c00217{width:8.012800pt;}
._4_c00217{width:9.299200pt;}
._d_c00217{width:11.507200pt;}
._e_c00217{width:12.467200pt;}
._c_c00217{width:14.694400pt;}
.fs0_c00217{font-size:53.440000pt;}
.fs1_c00217{font-size:64.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y6_c00217{bottom:50.987067pt;}
.y5_c00217{bottom:69.387067pt;}
.y20_c00217{bottom:282.187067pt;}
.y1f_c00217{bottom:309.867067pt;}
.y1e_c00217{bottom:337.467067pt;}
.y1d_c00217{bottom:365.067067pt;}
.y1c_c00217{bottom:392.667067pt;}
.y1b_c00217{bottom:420.267067pt;}
.y1a_c00217{bottom:447.867067pt;}
.y19_c00217{bottom:475.467067pt;}
.y18_c00217{bottom:503.067067pt;}
.y17_c00217{bottom:530.667067pt;}
.y16_c00217{bottom:558.267067pt;}
.y15_c00217{bottom:585.867067pt;}
.y14_c00217{bottom:624.027067pt;}
.y13_c00217{bottom:651.707067pt;}
.y12_c00217{bottom:679.307067pt;}
.y11_c00217{bottom:706.907067pt;}
.y10_c00217{bottom:745.147067pt;}
.yf_c00217{bottom:772.827067pt;}
.ye_c00217{bottom:800.427067pt;}
.yd_c00217{bottom:827.947067pt;}
.yc_c00217{bottom:866.187067pt;}
.yb_c00217{bottom:893.867067pt;}
.ya_c00217{bottom:921.467067pt;}
.y9_c00217{bottom:949.067067pt;}
.y8_c00217{bottom:979.467067pt;}
.y7_c00217{bottom:999.227067pt;}
.y4_c00217{bottom:1017.227251pt;}
.y3_c00217{bottom:1032.587243pt;}
.y2_c00217{bottom:1047.867075pt;}
.y1_c00217{bottom:1063.227067pt;}
.h1_c00217{height:47.020937pt;}
.h2_c00217{height:56.156250pt;}
.h3_c00217{height:56.312500pt;}
.h0_c00217{height:1122.666667pt;}
.w1_c00217{width:793.333333pt;}
.w0_c00217{width:793.626667pt;}
.x0_c00217{left:0.000000pt;}
.x4_c00217{left:113.440000pt;}
.x1_c00217{left:577.440000pt;}
.x3_c00217{left:656.400000pt;}
.x2_c00217{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7fd5b2d513c6a28767db6c18.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.095703;font-style:normal;font-weight:normal;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_84596b63b6d58615ca502a19.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_13e4c6e9a2b74dbc3af2e38a.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:0.896973;font-style: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;}
.lsf_c00218{letter-spacing:-1.080000px;}
.lsb_c00218{letter-spacing:-0.102204px;}
.ls10_c00218{letter-spacing:-0.028800px;}
.ls11_c00218{letter-spacing:-0.027000px;}
.lse_c00218{letter-spacing:-0.014400px;}
.ls12_c00218{letter-spacing:-0.010800px;}
.lsd_c00218{letter-spacing:-0.007200px;}
.lsc_c00218{letter-spacing:0.000000px;}
.ls9_c00218{letter-spacing:0.005400px;}
.ls2_c00218{letter-spacing:0.007200px;}
.ls0_c00218{letter-spacing:0.014400px;}
.ls3_c00218{letter-spacing:0.021600px;}
.ls5_c00218{letter-spacing:0.028800px;}
.ls6_c00218{letter-spacing:0.036000px;}
.ls1_c00218{letter-spacing:0.043200px;}
.ls7_c00218{letter-spacing:0.050400px;}
.ls4_c00218{letter-spacing:0.057600px;}
.ls8_c00218{letter-spacing:0.064800px;}
.lsa_c00218{letter-spacing:0.075600px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00218{word-spacing:-13.575600px;}
.ws7_c00218{word-spacing:-2.721600px;}
.ws8_c00218{word-spacing:-2.705400px;}
.ws4_c00218{word-spacing:-1.490400px;}
.ws5_c00218{word-spacing:-1.476000px;}
.ws6_c00218{word-spacing:-1.324800px;}
.wsa_c00218{word-spacing:-0.167400px;}
.ws9_c00218{word-spacing:-0.151200px;}
.ws3_c00218{word-spacing:-0.014400px;}
.ws2_c00218{word-spacing:0.000000px;}
.ws1_c00218{word-spacing:0.192384px;}
._4_c00218{margin-left:-3.542400px;}
._3_c00218{margin-left:-2.534400px;}
._5_c00218{margin-left:-1.418400px;}
._0_c00218{width:1.034064px;}
._8_c00218{width:2.491200px;}
._6_c00218{width:5.724000px;}
._1_c00218{width:7.207200px;}
._7_c00218{width:8.251200px;}
._2_c00218{width:15.436800px;}
.fc2_c00218{color:rgb(68,84,106);}
.fc1_c00218{color:rgb(0,0,0);}
.fc0_c00218{color:rgb(32,31,30);}
.fs2_c00218{font-size:54.000000px;}
.fs0_c00218{font-size:60.120000px;}
.fs1_c00218{font-size:72.000000px;}
.y0_c00218{bottom:0.000000px;}
.y1b_c00218{bottom:3.240450px;}
.y5_c00218{bottom:57.360450px;}
.y4_c00218{bottom:78.060450px;}
.y19_c00218{bottom:140.340450px;}
.y18_c00218{bottom:183.450450px;}
.y17_c00218{bottom:226.470450px;}
.y16_c00218{bottom:269.490450px;}
.y15_c00218{bottom:300.630450px;}
.y14_c00218{bottom:331.680450px;}
.y13_c00218{bottom:374.610450px;}
.y12_c00218{bottom:405.750450px;}
.y11_c00218{bottom:436.800450px;}
.y10_c00218{bottom:467.850450px;}
.yf_c00218{bottom:510.870450px;}
.ye_c00218{bottom:542.010450px;}
.yd_c00218{bottom:573.060450px;}
.yc_c00218{bottom:607.260450px;}
.yb_c00218{bottom:629.490450px;}
.ya_c00218{bottom:675.570450px;}
.y1e_c00218{bottom:944.760450px;}
.y1d_c00218{bottom:960.330000px;}
.y1a_c00218{bottom:972.570000px;}
.y1c_c00218{bottom:975.810450px;}
.y9_c00218{bottom:1018.200450px;}
.y8_c00218{bottom:1049.340450px;}
.y7_c00218{bottom:1080.390450px;}
.y6_c00218{bottom:1111.440450px;}
.y3_c00218{bottom:1132.140450px;}
.y2_c00218{bottom:1165.441023px;}
.y1_c00218{bottom:1196.040600px;}
.h5_c00218{height:15.300000px;}
.h6_c00218{height:47.513672px;}
.h3_c00218{height:49.042969px;}
.h1_c00218{height:52.898555px;}
.h2_c00218{height:63.175781px;}
.h4_c00218{height:63.351562px;}
.h0_c00218{height:1263.000000px;}
.w2_c00218{width:407.250000px;}
.w1_c00218{width:892.500000px;}
.w0_c00218{width:892.830000px;}
.x0_c00218{left:0.000000px;}
.x1_c00218{left:127.620000px;}
.x3_c00218{left:147.420000px;}
.x4_c00218{left:151.920000px;}
.x2_c00218{left:738.450000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.lsf_c00218{letter-spacing:-0.960000pt;}
.lsb_c00218{letter-spacing:-0.090848pt;}
.ls10_c00218{letter-spacing:-0.025600pt;}
.ls11_c00218{letter-spacing:-0.024000pt;}
.lse_c00218{letter-spacing:-0.012800pt;}
.ls12_c00218{letter-spacing:-0.009600pt;}
.lsd_c00218{letter-spacing:-0.006400pt;}
.lsc_c00218{letter-spacing:0.000000pt;}
.ls9_c00218{letter-spacing:0.004800pt;}
.ls2_c00218{letter-spacing:0.006400pt;}
.ls0_c00218{letter-spacing:0.012800pt;}
.ls3_c00218{letter-spacing:0.019200pt;}
.ls5_c00218{letter-spacing:0.025600pt;}
.ls6_c00218{letter-spacing:0.032000pt;}
.ls1_c00218{letter-spacing:0.038400pt;}
.ls7_c00218{letter-spacing:0.044800pt;}
.ls4_c00218{letter-spacing:0.051200pt;}
.ls8_c00218{letter-spacing:0.057600pt;}
.lsa_c00218{letter-spacing:0.067200pt;}
.ws0_c00218{word-spacing:-12.067200pt;}
.ws7_c00218{word-spacing:-2.419200pt;}
.ws8_c00218{word-spacing:-2.404800pt;}
.ws4_c00218{word-spacing:-1.324800pt;}
.ws5_c00218{word-spacing:-1.312000pt;}
.ws6_c00218{word-spacing:-1.177600pt;}
.wsa_c00218{word-spacing:-0.148800pt;}
.ws9_c00218{word-spacing:-0.134400pt;}
.ws3_c00218{word-spacing:-0.012800pt;}
.ws2_c00218{word-spacing:0.000000pt;}
.ws1_c00218{word-spacing:0.171008pt;}
._4_c00218{margin-left:-3.148800pt;}
._3_c00218{margin-left:-2.252800pt;}
._5_c00218{margin-left:-1.260800pt;}
._0_c00218{width:0.919168pt;}
._8_c00218{width:2.214400pt;}
._6_c00218{width:5.088000pt;}
._1_c00218{width:6.406400pt;}
._7_c00218{width:7.334400pt;}
._2_c00218{width:13.721600pt;}
.fs2_c00218{font-size:48.000000pt;}
.fs0_c00218{font-size:53.440000pt;}
.fs1_c00218{font-size:64.000000pt;}
.y0_c00218{bottom:0.000000pt;}
.y1b_c00218{bottom:2.880400pt;}
.y5_c00218{bottom:50.987067pt;}
.y4_c00218{bottom:69.387067pt;}
.y19_c00218{bottom:124.747067pt;}
.y18_c00218{bottom:163.067067pt;}
.y17_c00218{bottom:201.307067pt;}
.y16_c00218{bottom:239.547067pt;}
.y15_c00218{bottom:267.227067pt;}
.y14_c00218{bottom:294.827067pt;}
.y13_c00218{bottom:332.987067pt;}
.y12_c00218{bottom:360.667067pt;}
.y11_c00218{bottom:388.267067pt;}
.y10_c00218{bottom:415.867067pt;}
.yf_c00218{bottom:454.107067pt;}
.ye_c00218{bottom:481.787067pt;}
.yd_c00218{bottom:509.387067pt;}
.yc_c00218{bottom:539.787067pt;}
.yb_c00218{bottom:559.547067pt;}
.ya_c00218{bottom:600.507067pt;}
.y1e_c00218{bottom:839.787067pt;}
.y1d_c00218{bottom:853.626667pt;}
.y1a_c00218{bottom:864.506667pt;}
.y1c_c00218{bottom:867.387067pt;}
.y9_c00218{bottom:905.067067pt;}
.y8_c00218{bottom:932.747067pt;}
.y7_c00218{bottom:960.347067pt;}
.y6_c00218{bottom:987.947067pt;}
.y3_c00218{bottom:1006.347067pt;}
.y2_c00218{bottom:1035.947576pt;}
.y1_c00218{bottom:1063.147200pt;}
.h5_c00218{height:13.600000pt;}
.h6_c00218{height:42.234375pt;}
.h3_c00218{height:43.593750pt;}
.h1_c00218{height:47.020937pt;}
.h2_c00218{height:56.156250pt;}
.h4_c00218{height:56.312500pt;}
.h0_c00218{height:1122.666667pt;}
.w2_c00218{width:362.000000pt;}
.w1_c00218{width:793.333333pt;}
.w0_c00218{width:793.626667pt;}
.x0_c00218{left:0.000000pt;}
.x1_c00218{left:113.440000pt;}
.x3_c00218{left:131.040000pt;}
.x4_c00218{left:135.040000pt;}
.x2_c00218{left:656.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_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_79b6dd2291b7b9dfb088c1d1.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.095703;font-style:normal;font-weight:normal;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_616aa67ec3f5226ea17aace0.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.093262;font-style: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;}
.ls10_c00219{letter-spacing:-0.057600px;}
.ls13_c00219{letter-spacing:-0.050400px;}
.lsb_c00219{letter-spacing:-0.048096px;}
.lsd_c00219{letter-spacing:-0.043200px;}
.lse_c00219{letter-spacing:-0.036000px;}
.lsf_c00219{letter-spacing:-0.028800px;}
.ls11_c00219{letter-spacing:-0.021600px;}
.ls12_c00219{letter-spacing:-0.007200px;}
.lsc_c00219{letter-spacing:0.000000px;}
.ls4_c00219{letter-spacing:0.005400px;}
.ls9_c00219{letter-spacing:0.007200px;}
.ls2_c00219{letter-spacing:0.010800px;}
.ls3_c00219{letter-spacing:0.016200px;}
.ls7_c00219{letter-spacing:0.021600px;}
.ls0_c00219{letter-spacing:0.028800px;}
.ls8_c00219{letter-spacing:0.036000px;}
.ls1_c00219{letter-spacing:0.043200px;}
.lsa_c00219{letter-spacing:0.050400px;}
.ls6_c00219{letter-spacing:0.057600px;}
.ls5_c00219{letter-spacing:0.072000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00219{word-spacing:-17.942400px;}
.ws2_c00219{word-spacing:0.000000px;}
.ws1_c00219{word-spacing:0.138276px;}
.ws4_c00219{word-spacing:0.162000px;}
.ws3_c00219{word-spacing:0.167400px;}
.ws5_c00219{word-spacing:1.101600px;}
.ws6_c00219{word-spacing:3.139200px;}
.ws7_c00219{word-spacing:3.153600px;}
._6_c00219{margin-left:-4.968000px;}
._4_c00219{margin-left:-3.412800px;}
._5_c00219{margin-left:-2.232000px;}
._1_c00219{margin-left:-1.137600px;}
._7_c00219{width:1.101600px;}
._8_c00219{width:2.116800px;}
._b_c00219{width:3.722400px;}
._a_c00219{width:5.392800px;}
._9_c00219{width:6.494400px;}
._0_c00219{width:7.531200px;}
._2_c00219{width:9.691200px;}
._3_c00219{width:10.742400px;}
.fc1_c00219{color:rgb(68,84,106);}
.fc0_c00219{color:rgb(0,0,0);}
.fs2_c00219{font-size:54.000000px;}
.fs0_c00219{font-size:60.120000px;}
.fs1_c00219{font-size:72.000000px;}
.y0_c00219{bottom:0.000000px;}
.y6_c00219{bottom:57.360450px;}
.y5_c00219{bottom:78.060450px;}
.y21_c00219{bottom:131.610450px;}
.y20_c00219{bottom:162.660450px;}
.y1f_c00219{bottom:193.710450px;}
.y1e_c00219{bottom:224.760450px;}
.y1d_c00219{bottom:255.810450px;}
.y1c_c00219{bottom:286.860450px;}
.y1b_c00219{bottom:329.790450px;}
.y1a_c00219{bottom:360.930450px;}
.y19_c00219{bottom:391.980450px;}
.y18_c00219{bottom:423.030450px;}
.y17_c00219{bottom:454.080450px;}
.y16_c00219{bottom:485.130450px;}
.y15_c00219{bottom:516.180450px;}
.y14_c00219{bottom:547.230450px;}
.y13_c00219{bottom:581.520450px;}
.y12_c00219{bottom:603.750450px;}
.y11_c00219{bottom:638.130450px;}
.y10_c00219{bottom:668.460450px;}
.yf_c00219{bottom:889.230900px;}
.ye_c00219{bottom:904.800450px;}
.yd_c00219{bottom:943.410450px;}
.yc_c00219{bottom:974.550450px;}
.yb_c00219{bottom:1005.600450px;}
.ya_c00219{bottom:1036.650450px;}
.y9_c00219{bottom:1067.700450px;}
.y8_c00219{bottom:1101.900450px;}
.y7_c00219{bottom:1124.130450px;}
.y4_c00219{bottom:1144.380657px;}
.y3_c00219{bottom:1161.660648px;}
.y2_c00219{bottom:1178.850459px;}
.y1_c00219{bottom:1196.130450px;}
.h4_c00219{height:47.513672px;}
.h1_c00219{height:52.898555px;}
.h2_c00219{height:63.175781px;}
.h3_c00219{height:63.351562px;}
.h0_c00219{height:1263.000000px;}
.w1_c00219{width:892.500000px;}
.w0_c00219{width:892.830000px;}
.x0_c00219{left:0.000000px;}
.x4_c00219{left:127.620000px;}
.x1_c00219{left:649.620000px;}
.x3_c00219{left:738.450000px;}
.x5_c00219{left:757.350000px;}
.x2_c00219{left:765.450198px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls10_c00219{letter-spacing:-0.051200pt;}
.ls13_c00219{letter-spacing:-0.044800pt;}
.lsb_c00219{letter-spacing:-0.042752pt;}
.lsd_c00219{letter-spacing:-0.038400pt;}
.lse_c00219{letter-spacing:-0.032000pt;}
.lsf_c00219{letter-spacing:-0.025600pt;}
.ls11_c00219{letter-spacing:-0.019200pt;}
.ls12_c00219{letter-spacing:-0.006400pt;}
.lsc_c00219{letter-spacing:0.000000pt;}
.ls4_c00219{letter-spacing:0.004800pt;}
.ls9_c00219{letter-spacing:0.006400pt;}
.ls2_c00219{letter-spacing:0.009600pt;}
.ls3_c00219{letter-spacing:0.014400pt;}
.ls7_c00219{letter-spacing:0.019200pt;}
.ls0_c00219{letter-spacing:0.025600pt;}
.ls8_c00219{letter-spacing:0.032000pt;}
.ls1_c00219{letter-spacing:0.038400pt;}
.lsa_c00219{letter-spacing:0.044800pt;}
.ls6_c00219{letter-spacing:0.051200pt;}
.ls5_c00219{letter-spacing:0.064000pt;}
.ws0_c00219{word-spacing:-15.948800pt;}
.ws2_c00219{word-spacing:0.000000pt;}
.ws1_c00219{word-spacing:0.122912pt;}
.ws4_c00219{word-spacing:0.144000pt;}
.ws3_c00219{word-spacing:0.148800pt;}
.ws5_c00219{word-spacing:0.979200pt;}
.ws6_c00219{word-spacing:2.790400pt;}
.ws7_c00219{word-spacing:2.803200pt;}
._6_c00219{margin-left:-4.416000pt;}
._4_c00219{margin-left:-3.033600pt;}
._5_c00219{margin-left:-1.984000pt;}
._1_c00219{margin-left:-1.011200pt;}
._7_c00219{width:0.979200pt;}
._8_c00219{width:1.881600pt;}
._b_c00219{width:3.308800pt;}
._a_c00219{width:4.793600pt;}
._9_c00219{width:5.772800pt;}
._0_c00219{width:6.694400pt;}
._2_c00219{width:8.614400pt;}
._3_c00219{width:9.548800pt;}
.fs2_c00219{font-size:48.000000pt;}
.fs0_c00219{font-size:53.440000pt;}
.fs1_c00219{font-size:64.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y6_c00219{bottom:50.987067pt;}
.y5_c00219{bottom:69.387067pt;}
.y21_c00219{bottom:116.987067pt;}
.y20_c00219{bottom:144.587067pt;}
.y1f_c00219{bottom:172.187067pt;}
.y1e_c00219{bottom:199.787067pt;}
.y1d_c00219{bottom:227.387067pt;}
.y1c_c00219{bottom:254.987067pt;}
.y1b_c00219{bottom:293.147067pt;}
.y1a_c00219{bottom:320.827067pt;}
.y19_c00219{bottom:348.427067pt;}
.y18_c00219{bottom:376.027067pt;}
.y17_c00219{bottom:403.627067pt;}
.y16_c00219{bottom:431.227067pt;}
.y15_c00219{bottom:458.827067pt;}
.y14_c00219{bottom:486.427067pt;}
.y13_c00219{bottom:516.907067pt;}
.y12_c00219{bottom:536.667067pt;}
.y11_c00219{bottom:567.227067pt;}
.y10_c00219{bottom:594.187067pt;}
.yf_c00219{bottom:790.427467pt;}
.ye_c00219{bottom:804.267067pt;}
.yd_c00219{bottom:838.587067pt;}
.yc_c00219{bottom:866.267067pt;}
.yb_c00219{bottom:893.867067pt;}
.ya_c00219{bottom:921.467067pt;}
.y9_c00219{bottom:949.067067pt;}
.y8_c00219{bottom:979.467067pt;}
.y7_c00219{bottom:999.227067pt;}
.y4_c00219{bottom:1017.227251pt;}
.y3_c00219{bottom:1032.587243pt;}
.y2_c00219{bottom:1047.867075pt;}
.y1_c00219{bottom:1063.227067pt;}
.h4_c00219{height:42.234375pt;}
.h1_c00219{height:47.020937pt;}
.h2_c00219{height:56.156250pt;}
.h3_c00219{height:56.312500pt;}
.h0_c00219{height:1122.666667pt;}
.w1_c00219{width:793.333333pt;}
.w0_c00219{width:793.626667pt;}
.x0_c00219{left:0.000000pt;}
.x4_c00219{left:113.440000pt;}
.x1_c00219{left:577.440000pt;}
.x3_c00219{left:656.400000pt;}
.x5_c00219{left:673.200000pt;}
.x2_c00219{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f7a290925916c81594641f2.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.095703;font-style:normal;font-weight:normal;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_2aec223cc5533d2dea487a4f.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.093262;font-style: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;}
.ls13_c00220{letter-spacing:-0.360000px;}
.ls1b_c00220{letter-spacing:-0.115200px;}
.lsf_c00220{letter-spacing:-0.102204px;}
.ls1a_c00220{letter-spacing:-0.072000px;}
.ls12_c00220{letter-spacing:-0.057600px;}
.ls16_c00220{letter-spacing:-0.043200px;}
.ls19_c00220{letter-spacing:-0.036000px;}
.ls17_c00220{letter-spacing:-0.028800px;}
.ls11_c00220{letter-spacing:-0.021600px;}
.ls14_c00220{letter-spacing:-0.014400px;}
.ls18_c00220{letter-spacing:-0.007200px;}
.ls10_c00220{letter-spacing:0.000000px;}
.ls1_c00220{letter-spacing:0.007200px;}
.ls3_c00220{letter-spacing:0.014400px;}
.ls0_c00220{letter-spacing:0.021600px;}
.lsb_c00220{letter-spacing:0.028800px;}
.ls8_c00220{letter-spacing:0.036000px;}
.lsd_c00220{letter-spacing:0.043200px;}
.ls2_c00220{letter-spacing:0.050400px;}
.ls5_c00220{letter-spacing:0.057600px;}
.ls4_c00220{letter-spacing:0.064800px;}
.ls9_c00220{letter-spacing:0.072000px;}
.ls7_c00220{letter-spacing:0.079200px;}
.lse_c00220{letter-spacing:0.086400px;}
.ls6_c00220{letter-spacing:0.093600px;}
.lsa_c00220{letter-spacing:0.100800px;}
.lsc_c00220{letter-spacing:0.108000px;}
.ls15_c00220{letter-spacing:5.760000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00220{word-spacing:-18.079200px;}
.ws0_c00220{word-spacing:-18.064800px;}
.ws2_c00220{word-spacing:-17.964000px;}
.ws8_c00220{word-spacing:-2.196000px;}
.ws4_c00220{word-spacing:0.000000px;}
.ws9_c00220{word-spacing:0.028800px;}
.wsa_c00220{word-spacing:0.129600px;}
.ws3_c00220{word-spacing:0.192384px;}
.ws7_c00220{word-spacing:4.348800px;}
.ws6_c00220{word-spacing:5.335200px;}
.ws5_c00220{word-spacing:5.774400px;}
._9_c00220{margin-left:-6.667200px;}
._8_c00220{margin-left:-4.968000px;}
._4_c00220{margin-left:-2.404800px;}
._3_c00220{margin-left:-1.080000px;}
._0_c00220{width:1.034064px;}
._d_c00220{width:3.218400px;}
._c_c00220{width:4.284000px;}
._6_c00220{width:5.385600px;}
._7_c00220{width:6.933600px;}
._10_c00220{width:8.618400px;}
._2_c00220{width:9.669600px;}
._e_c00220{width:13.456800px;}
._f_c00220{width:14.532336px;}
._5_c00220{width:19.022400px;}
._a_c00220{width:20.786400px;}
._b_c00220{width:21.787200px;}
._1_c00220{width:26.618400px;}
.fc1_c00220{color:rgb(0,0,0);}
.fc0_c00220{color:rgb(32,31,30);}
.fs0_c00220{font-size:60.120000px;}
.fs1_c00220{font-size:72.000000px;}
.y0_c00220{bottom:0.000000px;}
.y5_c00220{bottom:57.360450px;}
.y4_c00220{bottom:78.060450px;}
.y22_c00220{bottom:139.440450px;}
.y21_c00220{bottom:182.460450px;}
.y20_c00220{bottom:225.480450px;}
.y1f_c00220{bottom:256.620450px;}
.y1e_c00220{bottom:287.670450px;}
.y1d_c00220{bottom:330.690450px;}
.y1c_c00220{bottom:361.830450px;}
.y1b_c00220{bottom:392.880450px;}
.y1a_c00220{bottom:423.930450px;}
.y19_c00220{bottom:458.130450px;}
.y18_c00220{bottom:480.360450px;}
.y17_c00220{bottom:523.560450px;}
.y16_c00220{bottom:566.580450px;}
.y15_c00220{bottom:597.720450px;}
.y14_c00220{bottom:628.770450px;}
.y13_c00220{bottom:659.820450px;}
.y12_c00220{bottom:702.750450px;}
.y11_c00220{bottom:733.890450px;}
.y10_c00220{bottom:764.940450px;}
.yf_c00220{bottom:807.870450px;}
.ye_c00220{bottom:839.010450px;}
.yd_c00220{bottom:870.060450px;}
.yc_c00220{bottom:901.110450px;}
.yb_c00220{bottom:932.160450px;}
.ya_c00220{bottom:975.090450px;}
.y9_c00220{bottom:1006.230450px;}
.y8_c00220{bottom:1037.280450px;}
.y7_c00220{bottom:1080.300450px;}
.y6_c00220{bottom:1111.440450px;}
.y3_c00220{bottom:1132.140450px;}
.y2_c00220{bottom:1165.441023px;}
.y1_c00220{bottom:1196.040600px;}
.h1_c00220{height:52.898555px;}
.h2_c00220{height:63.175781px;}
.h3_c00220{height:63.351562px;}
.h0_c00220{height:1263.000000px;}
.w1_c00220{width:892.500000px;}
.w0_c00220{width:892.830000px;}
.x0_c00220{left:0.000000px;}
.x1_c00220{left:127.620000px;}
.x2_c00220{left:738.450000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls13_c00220{letter-spacing:-0.320000pt;}
.ls1b_c00220{letter-spacing:-0.102400pt;}
.lsf_c00220{letter-spacing:-0.090848pt;}
.ls1a_c00220{letter-spacing:-0.064000pt;}
.ls12_c00220{letter-spacing:-0.051200pt;}
.ls16_c00220{letter-spacing:-0.038400pt;}
.ls19_c00220{letter-spacing:-0.032000pt;}
.ls17_c00220{letter-spacing:-0.025600pt;}
.ls11_c00220{letter-spacing:-0.019200pt;}
.ls14_c00220{letter-spacing:-0.012800pt;}
.ls18_c00220{letter-spacing:-0.006400pt;}
.ls10_c00220{letter-spacing:0.000000pt;}
.ls1_c00220{letter-spacing:0.006400pt;}
.ls3_c00220{letter-spacing:0.012800pt;}
.ls0_c00220{letter-spacing:0.019200pt;}
.lsb_c00220{letter-spacing:0.025600pt;}
.ls8_c00220{letter-spacing:0.032000pt;}
.lsd_c00220{letter-spacing:0.038400pt;}
.ls2_c00220{letter-spacing:0.044800pt;}
.ls5_c00220{letter-spacing:0.051200pt;}
.ls4_c00220{letter-spacing:0.057600pt;}
.ls9_c00220{letter-spacing:0.064000pt;}
.ls7_c00220{letter-spacing:0.070400pt;}
.lse_c00220{letter-spacing:0.076800pt;}
.ls6_c00220{letter-spacing:0.083200pt;}
.lsa_c00220{letter-spacing:0.089600pt;}
.lsc_c00220{letter-spacing:0.096000pt;}
.ls15_c00220{letter-spacing:5.120000pt;}
.ws1_c00220{word-spacing:-16.070400pt;}
.ws0_c00220{word-spacing:-16.057600pt;}
.ws2_c00220{word-spacing:-15.968000pt;}
.ws8_c00220{word-spacing:-1.952000pt;}
.ws4_c00220{word-spacing:0.000000pt;}
.ws9_c00220{word-spacing:0.025600pt;}
.wsa_c00220{word-spacing:0.115200pt;}
.ws3_c00220{word-spacing:0.171008pt;}
.ws7_c00220{word-spacing:3.865600pt;}
.ws6_c00220{word-spacing:4.742400pt;}
.ws5_c00220{word-spacing:5.132800pt;}
._9_c00220{margin-left:-5.926400pt;}
._8_c00220{margin-left:-4.416000pt;}
._4_c00220{margin-left:-2.137600pt;}
._3_c00220{margin-left:-0.960000pt;}
._0_c00220{width:0.919168pt;}
._d_c00220{width:2.860800pt;}
._c_c00220{width:3.808000pt;}
._6_c00220{width:4.787200pt;}
._7_c00220{width:6.163200pt;}
._10_c00220{width:7.660800pt;}
._2_c00220{width:8.595200pt;}
._e_c00220{width:11.961600pt;}
._f_c00220{width:12.917632pt;}
._5_c00220{width:16.908800pt;}
._a_c00220{width:18.476800pt;}
._b_c00220{width:19.366400pt;}
._1_c00220{width:23.660800pt;}
.fs0_c00220{font-size:53.440000pt;}
.fs1_c00220{font-size:64.000000pt;}
.y0_c00220{bottom:0.000000pt;}
.y5_c00220{bottom:50.987067pt;}
.y4_c00220{bottom:69.387067pt;}
.y22_c00220{bottom:123.947067pt;}
.y21_c00220{bottom:162.187067pt;}
.y20_c00220{bottom:200.427067pt;}
.y1f_c00220{bottom:228.107067pt;}
.y1e_c00220{bottom:255.707067pt;}
.y1d_c00220{bottom:293.947067pt;}
.y1c_c00220{bottom:321.627067pt;}
.y1b_c00220{bottom:349.227067pt;}
.y1a_c00220{bottom:376.827067pt;}
.y19_c00220{bottom:407.227067pt;}
.y18_c00220{bottom:426.987067pt;}
.y17_c00220{bottom:465.387067pt;}
.y16_c00220{bottom:503.627067pt;}
.y15_c00220{bottom:531.307067pt;}
.y14_c00220{bottom:558.907067pt;}
.y13_c00220{bottom:586.507067pt;}
.y12_c00220{bottom:624.667067pt;}
.y11_c00220{bottom:652.347067pt;}
.y10_c00220{bottom:679.947067pt;}
.yf_c00220{bottom:718.107067pt;}
.ye_c00220{bottom:745.787067pt;}
.yd_c00220{bottom:773.387067pt;}
.yc_c00220{bottom:800.987067pt;}
.yb_c00220{bottom:828.587067pt;}
.ya_c00220{bottom:866.747067pt;}
.y9_c00220{bottom:894.427067pt;}
.y8_c00220{bottom:922.027067pt;}
.y7_c00220{bottom:960.267067pt;}
.y6_c00220{bottom:987.947067pt;}
.y3_c00220{bottom:1006.347067pt;}
.y2_c00220{bottom:1035.947576pt;}
.y1_c00220{bottom:1063.147200pt;}
.h1_c00220{height:47.020937pt;}
.h2_c00220{height:56.156250pt;}
.h3_c00220{height:56.312500pt;}
.h0_c00220{height:1122.666667pt;}
.w1_c00220{width:793.333333pt;}
.w0_c00220{width:793.626667pt;}
.x0_c00220{left:0.000000pt;}
.x1_c00220{left:113.440000pt;}
.x2_c00220{left:656.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_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_66212b5d78ea9bbf3c185da4.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.095703;font-style:normal;font-weight:normal;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_5c8c9c2aa1bd6e9a3539f5f5.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00221{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls10_c00221{letter-spacing:-0.720000px;}
.ls15_c00221{letter-spacing:-0.597600px;}
.lsd_c00221{letter-spacing:-0.048096px;}
.ls16_c00221{letter-spacing:-0.036000px;}
.ls13_c00221{letter-spacing:-0.028800px;}
.ls11_c00221{letter-spacing:-0.021600px;}
.lsf_c00221{letter-spacing:-0.014400px;}
.ls14_c00221{letter-spacing:-0.007200px;}
.lse_c00221{letter-spacing:0.000000px;}
.ls9_c00221{letter-spacing:0.005400px;}
.ls0_c00221{letter-spacing:0.007200px;}
.ls8_c00221{letter-spacing:0.010800px;}
.ls2_c00221{letter-spacing:0.014400px;}
.lsb_c00221{letter-spacing:0.021600px;}
.ls4_c00221{letter-spacing:0.028800px;}
.ls6_c00221{letter-spacing:0.036000px;}
.ls7_c00221{letter-spacing:0.043200px;}
.ls3_c00221{letter-spacing:0.050400px;}
.lsa_c00221{letter-spacing:0.057600px;}
.ls1_c00221{letter-spacing:0.064800px;}
.ls12_c00221{letter-spacing:0.072000px;}
.lsc_c00221{letter-spacing:0.086400px;}
.ls5_c00221{letter-spacing:0.360000px;}
.ls17_c00221{letter-spacing:47.520000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00221{word-spacing:-17.978400px;}
.ws0_c00221{word-spacing:-17.971200px;}
.ws2_c00221{word-spacing:-17.964000px;}
.ws6_c00221{word-spacing:-0.698400px;}
.ws4_c00221{word-spacing:0.000000px;}
.ws5_c00221{word-spacing:0.129600px;}
.ws7_c00221{word-spacing:0.136800px;}
.ws3_c00221{word-spacing:0.138276px;}
.ws9_c00221{word-spacing:0.167400px;}
.ws8_c00221{word-spacing:2.469600px;}
._9_c00221{margin-left:-48.578400px;}
._8_c00221{margin-left:-47.433600px;}
._4_c00221{margin-left:-2.750400px;}
._1_c00221{margin-left:-1.497600px;}
._0_c00221{width:1.281600px;}
._3_c00221{width:2.469600px;}
._a_c00221{width:5.407200px;}
._7_c00221{width:6.494400px;}
._2_c00221{width:8.229600px;}
._5_c00221{width:25.149600px;}
._6_c00221{width:96.530400px;}
.fc1_c00221{color:rgb(68,84,106);}
.fc0_c00221{color:rgb(0,0,0);}
.fs2_c00221{font-size:54.000000px;}
.fs0_c00221{font-size:60.120000px;}
.fs1_c00221{font-size:72.000000px;}
.y0_c00221{bottom:0.000000px;}
.y6_c00221{bottom:57.360450px;}
.y5_c00221{bottom:78.060450px;}
.y24_c00221{bottom:172.740450px;}
.y23_c00221{bottom:215.850450px;}
.y22_c00221{bottom:258.870450px;}
.y21_c00221{bottom:290.010450px;}
.y20_c00221{bottom:321.060450px;}
.y1f_c00221{bottom:352.110450px;}
.y1e_c00221{bottom:395.040450px;}
.y1d_c00221{bottom:426.180450px;}
.y1c_c00221{bottom:457.230450px;}
.y1b_c00221{bottom:488.280450px;}
.y1a_c00221{bottom:519.330450px;}
.y19_c00221{bottom:550.380450px;}
.y18_c00221{bottom:581.430450px;}
.y17_c00221{bottom:612.480450px;}
.y16_c00221{bottom:643.530450px;}
.y15_c00221{bottom:678.360450px;}
.y14_c00221{bottom:708.870450px;}
.y13_c00221{bottom:747.570450px;}
.y12_c00221{bottom:778.710450px;}
.y11_c00221{bottom:809.670450px;}
.y10_c00221{bottom:840.720450px;}
.yf_c00221{bottom:875.010450px;}
.ye_c00221{bottom:897.330450px;}
.yd_c00221{bottom:922.620450px;}
.yc_c00221{bottom:965.730450px;}
.yb_c00221{bottom:996.870450px;}
.ya_c00221{bottom:1027.920450px;}
.y9_c00221{bottom:1058.970450px;}
.y8_c00221{bottom:1101.900450px;}
.y7_c00221{bottom:1124.130450px;}
.y4_c00221{bottom:1144.380657px;}
.y3_c00221{bottom:1161.660648px;}
.y2_c00221{bottom:1178.850459px;}
.y1_c00221{bottom:1196.130450px;}
.h4_c00221{height:47.513672px;}
.h1_c00221{height:52.898555px;}
.h2_c00221{height:63.175781px;}
.h3_c00221{height:63.351562px;}
.h0_c00221{height:1263.000000px;}
.w1_c00221{width:892.500000px;}
.w0_c00221{width:892.830000px;}
.x0_c00221{left:0.000000px;}
.x4_c00221{left:127.620000px;}
.x5_c00221{left:514.170000px;}
.x1_c00221{left:649.620000px;}
.x3_c00221{left:738.450000px;}
.x2_c00221{left:765.450198px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls10_c00221{letter-spacing:-0.640000pt;}
.ls15_c00221{letter-spacing:-0.531200pt;}
.lsd_c00221{letter-spacing:-0.042752pt;}
.ls16_c00221{letter-spacing:-0.032000pt;}
.ls13_c00221{letter-spacing:-0.025600pt;}
.ls11_c00221{letter-spacing:-0.019200pt;}
.lsf_c00221{letter-spacing:-0.012800pt;}
.ls14_c00221{letter-spacing:-0.006400pt;}
.lse_c00221{letter-spacing:0.000000pt;}
.ls9_c00221{letter-spacing:0.004800pt;}
.ls0_c00221{letter-spacing:0.006400pt;}
.ls8_c00221{letter-spacing:0.009600pt;}
.ls2_c00221{letter-spacing:0.012800pt;}
.lsb_c00221{letter-spacing:0.019200pt;}
.ls4_c00221{letter-spacing:0.025600pt;}
.ls6_c00221{letter-spacing:0.032000pt;}
.ls7_c00221{letter-spacing:0.038400pt;}
.ls3_c00221{letter-spacing:0.044800pt;}
.lsa_c00221{letter-spacing:0.051200pt;}
.ls1_c00221{letter-spacing:0.057600pt;}
.ls12_c00221{letter-spacing:0.064000pt;}
.lsc_c00221{letter-spacing:0.076800pt;}
.ls5_c00221{letter-spacing:0.320000pt;}
.ls17_c00221{letter-spacing:42.240000pt;}
.ws1_c00221{word-spacing:-15.980800pt;}
.ws0_c00221{word-spacing:-15.974400pt;}
.ws2_c00221{word-spacing:-15.968000pt;}
.ws6_c00221{word-spacing:-0.620800pt;}
.ws4_c00221{word-spacing:0.000000pt;}
.ws5_c00221{word-spacing:0.115200pt;}
.ws7_c00221{word-spacing:0.121600pt;}
.ws3_c00221{word-spacing:0.122912pt;}
.ws9_c00221{word-spacing:0.148800pt;}
.ws8_c00221{word-spacing:2.195200pt;}
._9_c00221{margin-left:-43.180800pt;}
._8_c00221{margin-left:-42.163200pt;}
._4_c00221{margin-left:-2.444800pt;}
._1_c00221{margin-left:-1.331200pt;}
._0_c00221{width:1.139200pt;}
._3_c00221{width:2.195200pt;}
._a_c00221{width:4.806400pt;}
._7_c00221{width:5.772800pt;}
._2_c00221{width:7.315200pt;}
._5_c00221{width:22.355200pt;}
._6_c00221{width:85.804800pt;}
.fs2_c00221{font-size:48.000000pt;}
.fs0_c00221{font-size:53.440000pt;}
.fs1_c00221{font-size:64.000000pt;}
.y0_c00221{bottom:0.000000pt;}
.y6_c00221{bottom:50.987067pt;}
.y5_c00221{bottom:69.387067pt;}
.y24_c00221{bottom:153.547067pt;}
.y23_c00221{bottom:191.867067pt;}
.y22_c00221{bottom:230.107067pt;}
.y21_c00221{bottom:257.787067pt;}
.y20_c00221{bottom:285.387067pt;}
.y1f_c00221{bottom:312.987067pt;}
.y1e_c00221{bottom:351.147067pt;}
.y1d_c00221{bottom:378.827067pt;}
.y1c_c00221{bottom:406.427067pt;}
.y1b_c00221{bottom:434.027067pt;}
.y1a_c00221{bottom:461.627067pt;}
.y19_c00221{bottom:489.227067pt;}
.y18_c00221{bottom:516.827067pt;}
.y17_c00221{bottom:544.427067pt;}
.y16_c00221{bottom:572.027067pt;}
.y15_c00221{bottom:602.987067pt;}
.y14_c00221{bottom:630.107067pt;}
.y13_c00221{bottom:664.507067pt;}
.y12_c00221{bottom:692.187067pt;}
.y11_c00221{bottom:719.707067pt;}
.y10_c00221{bottom:747.307067pt;}
.yf_c00221{bottom:777.787067pt;}
.ye_c00221{bottom:797.627067pt;}
.yd_c00221{bottom:820.107067pt;}
.yc_c00221{bottom:858.427067pt;}
.yb_c00221{bottom:886.107067pt;}
.ya_c00221{bottom:913.707067pt;}
.y9_c00221{bottom:941.307067pt;}
.y8_c00221{bottom:979.467067pt;}
.y7_c00221{bottom:999.227067pt;}
.y4_c00221{bottom:1017.227251pt;}
.y3_c00221{bottom:1032.587243pt;}
.y2_c00221{bottom:1047.867075pt;}
.y1_c00221{bottom:1063.227067pt;}
.h4_c00221{height:42.234375pt;}
.h1_c00221{height:47.020937pt;}
.h2_c00221{height:56.156250pt;}
.h3_c00221{height:56.312500pt;}
.h0_c00221{height:1122.666667pt;}
.w1_c00221{width:793.333333pt;}
.w0_c00221{width:793.626667pt;}
.x0_c00221{left:0.000000pt;}
.x4_c00221{left:113.440000pt;}
.x5_c00221{left:457.040000pt;}
.x1_c00221{left:577.440000pt;}
.x3_c00221{left:656.400000pt;}
.x2_c00221{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66e8c037128fcc9b18f74025.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.095703;font-style:normal;font-weight:normal;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_ba6cfdebb3480be2ef7ceb88.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00222{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.lsa_c00222{letter-spacing:-0.102204px;}
.lse_c00222{letter-spacing:-0.043200px;}
.lsf_c00222{letter-spacing:-0.028800px;}
.ls10_c00222{letter-spacing:-0.021600px;}
.lsc_c00222{letter-spacing:-0.014400px;}
.ls11_c00222{letter-spacing:-0.007200px;}
.lsb_c00222{letter-spacing:0.000000px;}
.ls7_c00222{letter-spacing:0.007200px;}
.ls3_c00222{letter-spacing:0.014400px;}
.ls4_c00222{letter-spacing:0.021600px;}
.ls0_c00222{letter-spacing:0.028800px;}
.ls5_c00222{letter-spacing:0.036000px;}
.ls1_c00222{letter-spacing:0.043200px;}
.ls6_c00222{letter-spacing:0.050400px;}
.ls2_c00222{letter-spacing:0.064800px;}
.ls8_c00222{letter-spacing:0.072000px;}
.lsd_c00222{letter-spacing:0.079200px;}
.ls9_c00222{letter-spacing:0.115200px;}
.ls12_c00222{letter-spacing:3.384000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00222{word-spacing:-18.000000px;}
.ws0_c00222{word-spacing:-17.971200px;}
.ws3_c00222{word-spacing:0.000000px;}
.ws2_c00222{word-spacing:0.192384px;}
.ws4_c00222{word-spacing:0.194400px;}
.ws8_c00222{word-spacing:3.103200px;}
.ws9_c00222{word-spacing:3.240000px;}
.ws5_c00222{word-spacing:5.688000px;}
.ws6_c00222{word-spacing:5.760000px;}
.wsa_c00222{word-spacing:8.568000px;}
.ws7_c00222{word-spacing:27.698400px;}
._5_c00222{margin-left:-4.968000px;}
._4_c00222{margin-left:-3.355200px;}
._3_c00222{margin-left:-2.174400px;}
._2_c00222{margin-left:-1.152000px;}
._0_c00222{width:1.034064px;}
._1_c00222{width:2.491200px;}
._6_c00222{width:3.780000px;}
._7_c00222{width:4.816800px;}
._b_c00222{width:5.990400px;}
._9_c00222{width:7.200000px;}
._a_c00222{width:8.524800px;}
._8_c00222{width:10.389600px;}
._12_c00222{width:11.846736px;}
._d_c00222{width:20.174400px;}
._f_c00222{width:22.780800px;}
._e_c00222{width:24.105600px;}
._c_c00222{width:27.064800px;}
._10_c00222{width:30.204000px;}
._11_c00222{width:31.276800px;}
.fc1_c00222{color:rgb(0,0,0);}
.fc0_c00222{color:rgb(32,31,30);}
.fs0_c00222{font-size:60.120000px;}
.fs1_c00222{font-size:72.000000px;}
.y0_c00222{bottom:0.000000px;}
.y5_c00222{bottom:57.360450px;}
.y4_c00222{bottom:78.060450px;}
.y25_c00222{bottom:130.350450px;}
.y24_c00222{bottom:161.400450px;}
.y23_c00222{bottom:192.450450px;}
.y22_c00222{bottom:223.500450px;}
.y21_c00222{bottom:254.550450px;}
.y20_c00222{bottom:285.600450px;}
.y1f_c00222{bottom:316.650450px;}
.y1e_c00222{bottom:359.580450px;}
.y1d_c00222{bottom:390.720450px;}
.y1c_c00222{bottom:421.770450px;}
.y1b_c00222{bottom:452.820450px;}
.y1a_c00222{bottom:483.870450px;}
.y19_c00222{bottom:514.920450px;}
.y18_c00222{bottom:545.970450px;}
.y17_c00222{bottom:577.020450px;}
.y16_c00222{bottom:608.070450px;}
.y15_c00222{bottom:639.120450px;}
.y14_c00222{bottom:682.050450px;}
.y13_c00222{bottom:713.190450px;}
.y12_c00222{bottom:744.240450px;}
.y11_c00222{bottom:775.290450px;}
.y10_c00222{bottom:806.340450px;}
.yf_c00222{bottom:837.390450px;}
.ye_c00222{bottom:868.440450px;}
.yd_c00222{bottom:899.490450px;}
.yc_c00222{bottom:930.540450px;}
.yb_c00222{bottom:961.590450px;}
.ya_c00222{bottom:992.640450px;}
.y9_c00222{bottom:1023.690450px;}
.y8_c00222{bottom:1054.740450px;}
.y7_c00222{bottom:1089.030450px;}
.y6_c00222{bottom:1111.260450px;}
.y3_c00222{bottom:1132.140450px;}
.y2_c00222{bottom:1165.441023px;}
.y1_c00222{bottom:1196.040600px;}
.h1_c00222{height:52.898555px;}
.h2_c00222{height:63.175781px;}
.h3_c00222{height:63.351562px;}
.h0_c00222{height:1263.000000px;}
.w1_c00222{width:892.500000px;}
.w0_c00222{width:892.830000px;}
.x0_c00222{left:0.000000px;}
.x1_c00222{left:127.620000px;}
.x2_c00222{left:738.450000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.lsa_c00222{letter-spacing:-0.090848pt;}
.lse_c00222{letter-spacing:-0.038400pt;}
.lsf_c00222{letter-spacing:-0.025600pt;}
.ls10_c00222{letter-spacing:-0.019200pt;}
.lsc_c00222{letter-spacing:-0.012800pt;}
.ls11_c00222{letter-spacing:-0.006400pt;}
.lsb_c00222{letter-spacing:0.000000pt;}
.ls7_c00222{letter-spacing:0.006400pt;}
.ls3_c00222{letter-spacing:0.012800pt;}
.ls4_c00222{letter-spacing:0.019200pt;}
.ls0_c00222{letter-spacing:0.025600pt;}
.ls5_c00222{letter-spacing:0.032000pt;}
.ls1_c00222{letter-spacing:0.038400pt;}
.ls6_c00222{letter-spacing:0.044800pt;}
.ls2_c00222{letter-spacing:0.057600pt;}
.ls8_c00222{letter-spacing:0.064000pt;}
.lsd_c00222{letter-spacing:0.070400pt;}
.ls9_c00222{letter-spacing:0.102400pt;}
.ls12_c00222{letter-spacing:3.008000pt;}
.ws1_c00222{word-spacing:-16.000000pt;}
.ws0_c00222{word-spacing:-15.974400pt;}
.ws3_c00222{word-spacing:0.000000pt;}
.ws2_c00222{word-spacing:0.171008pt;}
.ws4_c00222{word-spacing:0.172800pt;}
.ws8_c00222{word-spacing:2.758400pt;}
.ws9_c00222{word-spacing:2.880000pt;}
.ws5_c00222{word-spacing:5.056000pt;}
.ws6_c00222{word-spacing:5.120000pt;}
.wsa_c00222{word-spacing:7.616000pt;}
.ws7_c00222{word-spacing:24.620800pt;}
._5_c00222{margin-left:-4.416000pt;}
._4_c00222{margin-left:-2.982400pt;}
._3_c00222{margin-left:-1.932800pt;}
._2_c00222{margin-left:-1.024000pt;}
._0_c00222{width:0.919168pt;}
._1_c00222{width:2.214400pt;}
._6_c00222{width:3.360000pt;}
._7_c00222{width:4.281600pt;}
._b_c00222{width:5.324800pt;}
._9_c00222{width:6.400000pt;}
._a_c00222{width:7.577600pt;}
._8_c00222{width:9.235200pt;}
._12_c00222{width:10.530432pt;}
._d_c00222{width:17.932800pt;}
._f_c00222{width:20.249600pt;}
._e_c00222{width:21.427200pt;}
._c_c00222{width:24.057600pt;}
._10_c00222{width:26.848000pt;}
._11_c00222{width:27.801600pt;}
.fs0_c00222{font-size:53.440000pt;}
.fs1_c00222{font-size:64.000000pt;}
.y0_c00222{bottom:0.000000pt;}
.y5_c00222{bottom:50.987067pt;}
.y4_c00222{bottom:69.387067pt;}
.y25_c00222{bottom:115.867067pt;}
.y24_c00222{bottom:143.467067pt;}
.y23_c00222{bottom:171.067067pt;}
.y22_c00222{bottom:198.667067pt;}
.y21_c00222{bottom:226.267067pt;}
.y20_c00222{bottom:253.867067pt;}
.y1f_c00222{bottom:281.467067pt;}
.y1e_c00222{bottom:319.627067pt;}
.y1d_c00222{bottom:347.307067pt;}
.y1c_c00222{bottom:374.907067pt;}
.y1b_c00222{bottom:402.507067pt;}
.y1a_c00222{bottom:430.107067pt;}
.y19_c00222{bottom:457.707067pt;}
.y18_c00222{bottom:485.307067pt;}
.y17_c00222{bottom:512.907067pt;}
.y16_c00222{bottom:540.507067pt;}
.y15_c00222{bottom:568.107067pt;}
.y14_c00222{bottom:606.267067pt;}
.y13_c00222{bottom:633.947067pt;}
.y12_c00222{bottom:661.547067pt;}
.y11_c00222{bottom:689.147067pt;}
.y10_c00222{bottom:716.747067pt;}
.yf_c00222{bottom:744.347067pt;}
.ye_c00222{bottom:771.947067pt;}
.yd_c00222{bottom:799.547067pt;}
.yc_c00222{bottom:827.147067pt;}
.yb_c00222{bottom:854.747067pt;}
.ya_c00222{bottom:882.347067pt;}
.y9_c00222{bottom:909.947067pt;}
.y8_c00222{bottom:937.547067pt;}
.y7_c00222{bottom:968.027067pt;}
.y6_c00222{bottom:987.787067pt;}
.y3_c00222{bottom:1006.347067pt;}
.y2_c00222{bottom:1035.947576pt;}
.y1_c00222{bottom:1063.147200pt;}
.h1_c00222{height:47.020937pt;}
.h2_c00222{height:56.156250pt;}
.h3_c00222{height:56.312500pt;}
.h0_c00222{height:1122.666667pt;}
.w1_c00222{width:793.333333pt;}
.w0_c00222{width:793.626667pt;}
.x0_c00222{left:0.000000pt;}
.x1_c00222{left:113.440000pt;}
.x2_c00222{left:656.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_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_d194efafc3ccc3b373321cae.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.095703;font-style:normal;font-weight:normal;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_975a4d08f806c97251f93840.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00223{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls12_c00223{letter-spacing:-0.259200px;}
.ls16_c00223{letter-spacing:-0.180000px;}
.ls15_c00223{letter-spacing:-0.064800px;}
.ls14_c00223{letter-spacing:-0.057600px;}
.lsd_c00223{letter-spacing:-0.048096px;}
.ls11_c00223{letter-spacing:-0.036000px;}
.ls18_c00223{letter-spacing:-0.028800px;}
.lsf_c00223{letter-spacing:-0.014400px;}
.ls10_c00223{letter-spacing:-0.007200px;}
.lse_c00223{letter-spacing:0.000000px;}
.ls7_c00223{letter-spacing:0.007200px;}
.ls3_c00223{letter-spacing:0.014400px;}
.ls6_c00223{letter-spacing:0.021600px;}
.ls1_c00223{letter-spacing:0.028800px;}
.ls4_c00223{letter-spacing:0.036000px;}
.ls0_c00223{letter-spacing:0.043200px;}
.ls8_c00223{letter-spacing:0.050400px;}
.lsb_c00223{letter-spacing:0.057600px;}
.ls5_c00223{letter-spacing:0.064800px;}
.lsa_c00223{letter-spacing:0.072000px;}
.ls9_c00223{letter-spacing:0.079200px;}
.lsc_c00223{letter-spacing:0.086400px;}
.ls2_c00223{letter-spacing:0.100800px;}
.ls13_c00223{letter-spacing:4.680000px;}
.ls17_c00223{letter-spacing:7.920000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00223{word-spacing:-17.942400px;}
.ws7_c00223{word-spacing:-0.720000px;}
.ws2_c00223{word-spacing:0.000000px;}
.ws3_c00223{word-spacing:0.122400px;}
.ws1_c00223{word-spacing:0.138276px;}
.ws6_c00223{word-spacing:2.527200px;}
.ws4_c00223{word-spacing:4.600800px;}
.ws5_c00223{word-spacing:4.658400px;}
._e_c00223{margin-left:-8.618400px;}
._f_c00223{margin-left:-7.164000px;}
._a_c00223{margin-left:-5.479200px;}
._0_c00223{margin-left:-4.363200px;}
._10_c00223{margin-left:-3.196800px;}
._1_c00223{margin-left:-1.065600px;}
._3_c00223{width:1.468800px;}
._2_c00223{width:2.476800px;}
._9_c00223{width:3.636000px;}
._8_c00223{width:5.270400px;}
._d_c00223{width:6.804000px;}
._5_c00223{width:7.956000px;}
._4_c00223{width:8.964000px;}
._7_c00223{width:10.461600px;}
._6_c00223{width:11.505600px;}
._b_c00223{width:14.392800px;}
._c_c00223{width:15.624000px;}
.fc0_c00223{color:rgb(0,0,0);}
.fs0_c00223{font-size:60.120000px;}
.fs1_c00223{font-size:72.000000px;}
.y0_c00223{bottom:0.000000px;}
.y6_c00223{bottom:57.360450px;}
.y5_c00223{bottom:78.060450px;}
.y24_c00223{bottom:157.350450px;}
.y23_c00223{bottom:188.400450px;}
.y22_c00223{bottom:219.450450px;}
.y21_c00223{bottom:250.500450px;}
.y20_c00223{bottom:281.550450px;}
.y1f_c00223{bottom:312.600450px;}
.y1e_c00223{bottom:355.620450px;}
.y1d_c00223{bottom:386.760450px;}
.y1c_c00223{bottom:417.810450px;}
.y1b_c00223{bottom:460.740450px;}
.y1a_c00223{bottom:491.880450px;}
.y19_c00223{bottom:522.930450px;}
.y18_c00223{bottom:553.980450px;}
.y17_c00223{bottom:596.910450px;}
.y16_c00223{bottom:628.050450px;}
.y15_c00223{bottom:659.100450px;}
.y14_c00223{bottom:702.030450px;}
.y13_c00223{bottom:733.170450px;}
.y12_c00223{bottom:764.220450px;}
.y11_c00223{bottom:795.270450px;}
.y10_c00223{bottom:826.320450px;}
.yf_c00223{bottom:857.370450px;}
.ye_c00223{bottom:888.420450px;}
.yd_c00223{bottom:919.470450px;}
.yc_c00223{bottom:950.520450px;}
.yb_c00223{bottom:984.810450px;}
.ya_c00223{bottom:1007.040450px;}
.y9_c00223{bottom:1050.150450px;}
.y8_c00223{bottom:1093.170450px;}
.y7_c00223{bottom:1124.310450px;}
.y4_c00223{bottom:1144.380657px;}
.y3_c00223{bottom:1161.660648px;}
.y2_c00223{bottom:1178.850459px;}
.y1_c00223{bottom:1196.130450px;}
.h1_c00223{height:52.898555px;}
.h2_c00223{height:63.175781px;}
.h3_c00223{height:63.351562px;}
.h0_c00223{height:1263.000000px;}
.w1_c00223{width:892.500000px;}
.w0_c00223{width:892.830000px;}
.x0_c00223{left:0.000000px;}
.x4_c00223{left:127.620000px;}
.x1_c00223{left:649.620000px;}
.x3_c00223{left:738.450000px;}
.x2_c00223{left:765.450198px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls12_c00223{letter-spacing:-0.230400pt;}
.ls16_c00223{letter-spacing:-0.160000pt;}
.ls15_c00223{letter-spacing:-0.057600pt;}
.ls14_c00223{letter-spacing:-0.051200pt;}
.lsd_c00223{letter-spacing:-0.042752pt;}
.ls11_c00223{letter-spacing:-0.032000pt;}
.ls18_c00223{letter-spacing:-0.025600pt;}
.lsf_c00223{letter-spacing:-0.012800pt;}
.ls10_c00223{letter-spacing:-0.006400pt;}
.lse_c00223{letter-spacing:0.000000pt;}
.ls7_c00223{letter-spacing:0.006400pt;}
.ls3_c00223{letter-spacing:0.012800pt;}
.ls6_c00223{letter-spacing:0.019200pt;}
.ls1_c00223{letter-spacing:0.025600pt;}
.ls4_c00223{letter-spacing:0.032000pt;}
.ls0_c00223{letter-spacing:0.038400pt;}
.ls8_c00223{letter-spacing:0.044800pt;}
.lsb_c00223{letter-spacing:0.051200pt;}
.ls5_c00223{letter-spacing:0.057600pt;}
.lsa_c00223{letter-spacing:0.064000pt;}
.ls9_c00223{letter-spacing:0.070400pt;}
.lsc_c00223{letter-spacing:0.076800pt;}
.ls2_c00223{letter-spacing:0.089600pt;}
.ls13_c00223{letter-spacing:4.160000pt;}
.ls17_c00223{letter-spacing:7.040000pt;}
.ws0_c00223{word-spacing:-15.948800pt;}
.ws7_c00223{word-spacing:-0.640000pt;}
.ws2_c00223{word-spacing:0.000000pt;}
.ws3_c00223{word-spacing:0.108800pt;}
.ws1_c00223{word-spacing:0.122912pt;}
.ws6_c00223{word-spacing:2.246400pt;}
.ws4_c00223{word-spacing:4.089600pt;}
.ws5_c00223{word-spacing:4.140800pt;}
._e_c00223{margin-left:-7.660800pt;}
._f_c00223{margin-left:-6.368000pt;}
._a_c00223{margin-left:-4.870400pt;}
._0_c00223{margin-left:-3.878400pt;}
._10_c00223{margin-left:-2.841600pt;}
._1_c00223{margin-left:-0.947200pt;}
._3_c00223{width:1.305600pt;}
._2_c00223{width:2.201600pt;}
._9_c00223{width:3.232000pt;}
._8_c00223{width:4.684800pt;}
._d_c00223{width:6.048000pt;}
._5_c00223{width:7.072000pt;}
._4_c00223{width:7.968000pt;}
._7_c00223{width:9.299200pt;}
._6_c00223{width:10.227200pt;}
._b_c00223{width:12.793600pt;}
._c_c00223{width:13.888000pt;}
.fs0_c00223{font-size:53.440000pt;}
.fs1_c00223{font-size:64.000000pt;}
.y0_c00223{bottom:0.000000pt;}
.y6_c00223{bottom:50.987067pt;}
.y5_c00223{bottom:69.387067pt;}
.y24_c00223{bottom:139.867067pt;}
.y23_c00223{bottom:167.467067pt;}
.y22_c00223{bottom:195.067067pt;}
.y21_c00223{bottom:222.667067pt;}
.y20_c00223{bottom:250.267067pt;}
.y1f_c00223{bottom:277.867067pt;}
.y1e_c00223{bottom:316.107067pt;}
.y1d_c00223{bottom:343.787067pt;}
.y1c_c00223{bottom:371.387067pt;}
.y1b_c00223{bottom:409.547067pt;}
.y1a_c00223{bottom:437.227067pt;}
.y19_c00223{bottom:464.827067pt;}
.y18_c00223{bottom:492.427067pt;}
.y17_c00223{bottom:530.587067pt;}
.y16_c00223{bottom:558.267067pt;}
.y15_c00223{bottom:585.867067pt;}
.y14_c00223{bottom:624.027067pt;}
.y13_c00223{bottom:651.707067pt;}
.y12_c00223{bottom:679.307067pt;}
.y11_c00223{bottom:706.907067pt;}
.y10_c00223{bottom:734.507067pt;}
.yf_c00223{bottom:762.107067pt;}
.ye_c00223{bottom:789.707067pt;}
.yd_c00223{bottom:817.307067pt;}
.yc_c00223{bottom:844.907067pt;}
.yb_c00223{bottom:875.387067pt;}
.ya_c00223{bottom:895.147067pt;}
.y9_c00223{bottom:933.467067pt;}
.y8_c00223{bottom:971.707067pt;}
.y7_c00223{bottom:999.387067pt;}
.y4_c00223{bottom:1017.227251pt;}
.y3_c00223{bottom:1032.587243pt;}
.y2_c00223{bottom:1047.867075pt;}
.y1_c00223{bottom:1063.227067pt;}
.h1_c00223{height:47.020937pt;}
.h2_c00223{height:56.156250pt;}
.h3_c00223{height:56.312500pt;}
.h0_c00223{height:1122.666667pt;}
.w1_c00223{width:793.333333pt;}
.w0_c00223{width:793.626667pt;}
.x0_c00223{left:0.000000pt;}
.x4_c00223{left:113.440000pt;}
.x1_c00223{left:577.440000pt;}
.x3_c00223{left:656.400000pt;}
.x2_c00223{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_627f8de7a665b9b0f0cd04aa.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.095703;font-style:normal;font-weight:normal;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_d59bc1811ec7b696b24bcb59.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00224{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls12_c00224{letter-spacing:-0.360000px;}
.lsc_c00224{letter-spacing:-0.102204px;}
.lse_c00224{letter-spacing:-0.057600px;}
.ls11_c00224{letter-spacing:-0.028800px;}
.ls10_c00224{letter-spacing:-0.021600px;}
.ls13_c00224{letter-spacing:-0.014400px;}
.lsf_c00224{letter-spacing:-0.007200px;}
.lsd_c00224{letter-spacing:0.000000px;}
.ls9_c00224{letter-spacing:0.007200px;}
.ls3_c00224{letter-spacing:0.010800px;}
.ls2_c00224{letter-spacing:0.014400px;}
.ls5_c00224{letter-spacing:0.021600px;}
.ls6_c00224{letter-spacing:0.028800px;}
.ls8_c00224{letter-spacing:0.036000px;}
.ls1_c00224{letter-spacing:0.043200px;}
.ls0_c00224{letter-spacing:0.050400px;}
.ls4_c00224{letter-spacing:0.054000px;}
.lsa_c00224{letter-spacing:0.057600px;}
.lsb_c00224{letter-spacing:0.064800px;}
.ls7_c00224{letter-spacing:0.360000px;}
.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;}
}
.ws3_c00224{word-spacing:-18.057600px;}
.ws0_c00224{word-spacing:-17.942400px;}
.ws2_c00224{word-spacing:-13.521600px;}
.ws1_c00224{word-spacing:-13.500000px;}
.ws7_c00224{word-spacing:-0.232200px;}
.wsb_c00224{word-spacing:-0.014400px;}
.ws5_c00224{word-spacing:0.000000px;}
.ws9_c00224{word-spacing:0.028800px;}
.wsa_c00224{word-spacing:0.144000px;}
.ws6_c00224{word-spacing:0.167400px;}
.ws4_c00224{word-spacing:0.192384px;}
.ws8_c00224{word-spacing:0.360000px;}
._4_c00224{margin-left:-2.350800px;}
._2_c00224{margin-left:-1.350000px;}
._0_c00224{width:1.034064px;}
._3_c00224{width:6.465600px;}
._7_c00224{width:7.819200px;}
._6_c00224{width:8.935200px;}
._1_c00224{width:10.029600px;}
._5_c00224{width:11.354400px;}
._8_c00224{width:13.298400px;}
.fc3_c00224{color:rgb(5,99,193);}
.fc2_c00224{color:rgb(68,84,106);}
.fc1_c00224{color:rgb(0,0,0);}
.fc0_c00224{color:rgb(32,31,30);}
.fs2_c00224{font-size:54.000000px;}
.fs0_c00224{font-size:60.120000px;}
.fs1_c00224{font-size:72.000000px;}
.y0_c00224{bottom:0.000000px;}
.y5_c00224{bottom:57.360450px;}
.y4_c00224{bottom:78.060450px;}
.y1d_c00224{bottom:125.580450px;}
.y1c_c00224{bottom:168.690450px;}
.y1b_c00224{bottom:211.710450px;}
.y1a_c00224{bottom:254.730450px;}
.y19_c00224{bottom:297.840450px;}
.y18_c00224{bottom:340.860450px;}
.y17_c00224{bottom:372.000450px;}
.y16_c00224{bottom:403.050450px;}
.y15_c00224{bottom:445.980450px;}
.y14_c00224{bottom:477.120450px;}
.y13_c00224{bottom:508.170450px;}
.y12_c00224{bottom:539.220450px;}
.y11_c00224{bottom:573.510450px;}
.y10_c00224{bottom:595.740450px;}
.yf_c00224{bottom:618.060450px;}
.ye_c00224{bottom:661.170450px;}
.yd_c00224{bottom:704.280450px;}
.yc_c00224{bottom:735.420450px;}
.yb_c00224{bottom:766.380450px;}
.ya_c00224{bottom:801.300450px;}
.y9_c00224{bottom:835.860600px;}
.y8_c00224{bottom:1041.600450px;}
.y7_c00224{bottom:1080.300450px;}
.y6_c00224{bottom:1111.440450px;}
.y3_c00224{bottom:1132.140450px;}
.y2_c00224{bottom:1165.441023px;}
.y1_c00224{bottom:1196.040600px;}
.h4_c00224{height:47.513672px;}
.h1_c00224{height:52.898555px;}
.h2_c00224{height:63.175781px;}
.h3_c00224{height:63.351562px;}
.h0_c00224{height:1263.000000px;}
.w1_c00224{width:892.500000px;}
.w0_c00224{width:892.830000px;}
.x0_c00224{left:0.000000px;}
.x1_c00224{left:127.620000px;}
.x4_c00224{left:203.220000px;}
.x3_c00224{left:634.950000px;}
.x2_c00224{left:738.450000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls12_c00224{letter-spacing:-0.320000pt;}
.lsc_c00224{letter-spacing:-0.090848pt;}
.lse_c00224{letter-spacing:-0.051200pt;}
.ls11_c00224{letter-spacing:-0.025600pt;}
.ls10_c00224{letter-spacing:-0.019200pt;}
.ls13_c00224{letter-spacing:-0.012800pt;}
.lsf_c00224{letter-spacing:-0.006400pt;}
.lsd_c00224{letter-spacing:0.000000pt;}
.ls9_c00224{letter-spacing:0.006400pt;}
.ls3_c00224{letter-spacing:0.009600pt;}
.ls2_c00224{letter-spacing:0.012800pt;}
.ls5_c00224{letter-spacing:0.019200pt;}
.ls6_c00224{letter-spacing:0.025600pt;}
.ls8_c00224{letter-spacing:0.032000pt;}
.ls1_c00224{letter-spacing:0.038400pt;}
.ls0_c00224{letter-spacing:0.044800pt;}
.ls4_c00224{letter-spacing:0.048000pt;}
.lsa_c00224{letter-spacing:0.051200pt;}
.lsb_c00224{letter-spacing:0.057600pt;}
.ls7_c00224{letter-spacing:0.320000pt;}
.ws3_c00224{word-spacing:-16.051200pt;}
.ws0_c00224{word-spacing:-15.948800pt;}
.ws2_c00224{word-spacing:-12.019200pt;}
.ws1_c00224{word-spacing:-12.000000pt;}
.ws7_c00224{word-spacing:-0.206400pt;}
.wsb_c00224{word-spacing:-0.012800pt;}
.ws5_c00224{word-spacing:0.000000pt;}
.ws9_c00224{word-spacing:0.025600pt;}
.wsa_c00224{word-spacing:0.128000pt;}
.ws6_c00224{word-spacing:0.148800pt;}
.ws4_c00224{word-spacing:0.171008pt;}
.ws8_c00224{word-spacing:0.320000pt;}
._4_c00224{margin-left:-2.089600pt;}
._2_c00224{margin-left:-1.200000pt;}
._0_c00224{width:0.919168pt;}
._3_c00224{width:5.747200pt;}
._7_c00224{width:6.950400pt;}
._6_c00224{width:7.942400pt;}
._1_c00224{width:8.915200pt;}
._5_c00224{width:10.092800pt;}
._8_c00224{width:11.820800pt;}
.fs2_c00224{font-size:48.000000pt;}
.fs0_c00224{font-size:53.440000pt;}
.fs1_c00224{font-size:64.000000pt;}
.y0_c00224{bottom:0.000000pt;}
.y5_c00224{bottom:50.987067pt;}
.y4_c00224{bottom:69.387067pt;}
.y1d_c00224{bottom:111.627067pt;}
.y1c_c00224{bottom:149.947067pt;}
.y1b_c00224{bottom:188.187067pt;}
.y1a_c00224{bottom:226.427067pt;}
.y19_c00224{bottom:264.747067pt;}
.y18_c00224{bottom:302.987067pt;}
.y17_c00224{bottom:330.667067pt;}
.y16_c00224{bottom:358.267067pt;}
.y15_c00224{bottom:396.427067pt;}
.y14_c00224{bottom:424.107067pt;}
.y13_c00224{bottom:451.707067pt;}
.y12_c00224{bottom:479.307067pt;}
.y11_c00224{bottom:509.787067pt;}
.y10_c00224{bottom:529.547067pt;}
.yf_c00224{bottom:549.387067pt;}
.ye_c00224{bottom:587.707067pt;}
.yd_c00224{bottom:626.027067pt;}
.yc_c00224{bottom:653.707067pt;}
.yb_c00224{bottom:681.227067pt;}
.ya_c00224{bottom:712.267067pt;}
.y9_c00224{bottom:742.987200pt;}
.y8_c00224{bottom:925.867067pt;}
.y7_c00224{bottom:960.267067pt;}
.y6_c00224{bottom:987.947067pt;}
.y3_c00224{bottom:1006.347067pt;}
.y2_c00224{bottom:1035.947576pt;}
.y1_c00224{bottom:1063.147200pt;}
.h4_c00224{height:42.234375pt;}
.h1_c00224{height:47.020937pt;}
.h2_c00224{height:56.156250pt;}
.h3_c00224{height:56.312500pt;}
.h0_c00224{height:1122.666667pt;}
.w1_c00224{width:793.333333pt;}
.w0_c00224{width:793.626667pt;}
.x0_c00224{left:0.000000pt;}
.x1_c00224{left:113.440000pt;}
.x4_c00224{left:180.640000pt;}
.x3_c00224{left:564.400000pt;}
.x2_c00224{left:656.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_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_060d77316b39baff08a662c3.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.095703;font-style:normal;font-weight:normal;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_5fabd132c48259c32a984587.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.093262;font-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_c00225{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls12_c00225{letter-spacing:-2.152800px;}
.lsf_c00225{letter-spacing:-0.042084px;}
.ls11_c00225{letter-spacing:-0.036000px;}
.ls13_c00225{letter-spacing:-0.014400px;}
.ls15_c00225{letter-spacing:-0.007200px;}
.ls10_c00225{letter-spacing:0.000000px;}
.ls1_c00225{letter-spacing:0.005400px;}
.ls8_c00225{letter-spacing:0.007200px;}
.ls0_c00225{letter-spacing:0.014400px;}
.lsb_c00225{letter-spacing:0.016200px;}
.ls5_c00225{letter-spacing:0.021600px;}
.ls6_c00225{letter-spacing:0.028800px;}
.lsc_c00225{letter-spacing:0.032400px;}
.ls4_c00225{letter-spacing:0.036000px;}
.ls2_c00225{letter-spacing:0.037800px;}
.ls7_c00225{letter-spacing:0.043200px;}
.lsd_c00225{letter-spacing:0.050400px;}
.lsa_c00225{letter-spacing:0.057600px;}
.ls3_c00225{letter-spacing:0.064800px;}
.ls9_c00225{letter-spacing:0.079200px;}
.lse_c00225{letter-spacing:0.136800px;}
.ls14_c00225{letter-spacing:1.807200px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00225{word-spacing:-18.136800px;}
.ws0_c00225{word-spacing:-18.043200px;}
.ws8_c00225{word-spacing:-2.181600px;}
.ws5_c00225{word-spacing:-0.572400px;}
.ws6_c00225{word-spacing:-0.237600px;}
.ws4_c00225{word-spacing:-0.178200px;}
.ws3_c00225{word-spacing:0.000000px;}
.ws2_c00225{word-spacing:0.138276px;}
.wsa_c00225{word-spacing:0.151200px;}
.ws9_c00225{word-spacing:0.167400px;}
.ws7_c00225{word-spacing:0.178200px;}
._5_c00225{margin-left:-3.240000px;}
._2_c00225{margin-left:-2.188800px;}
._0_c00225{margin-left:-1.117800px;}
._4_c00225{width:1.425600px;}
._3_c00225{width:2.923200px;}
._9_c00225{width:4.096800px;}
._6_c00225{width:6.444000px;}
._b_c00225{width:7.898400px;}
._c_c00225{width:8.985600px;}
._1_c00225{width:10.800000px;}
._7_c00225{width:16.480800px;}
._8_c00225{width:19.800000px;}
._a_c00225{width:20.908800px;}
.fc1_c00225{color:rgb(68,84,106);}
.fc0_c00225{color:rgb(0,0,0);}
.fs2_c00225{font-size:54.000000px;}
.fs0_c00225{font-size:60.120000px;}
.fs1_c00225{font-size:72.000000px;}
.y0_c00225{bottom:0.000000px;}
.y6_c00225{bottom:57.360450px;}
.y5_c00225{bottom:78.060450px;}
.y1f_c00225{bottom:151.680450px;}
.y1e_c00225{bottom:182.820450px;}
.y1d_c00225{bottom:213.780450px;}
.y1c_c00225{bottom:244.830450px;}
.y1b_c00225{bottom:275.880450px;}
.y1a_c00225{bottom:318.900450px;}
.y19_c00225{bottom:350.040450px;}
.y18_c00225{bottom:381.090450px;}
.y17_c00225{bottom:412.140450px;}
.y16_c00225{bottom:443.190450px;}
.y15_c00225{bottom:474.240450px;}
.y14_c00225{bottom:509.070450px;}
.y13_c00225{bottom:547.680450px;}
.y12_c00225{bottom:578.820450px;}
.y11_c00225{bottom:609.870450px;}
.y10_c00225{bottom:640.920450px;}
.yf_c00225{bottom:671.970450px;}
.ye_c00225{bottom:714.900450px;}
.yd_c00225{bottom:746.040450px;}
.yc_c00225{bottom:777.090450px;}
.yb_c00225{bottom:808.140450px;}
.ya_c00225{bottom:847.020450px;}
.y9_c00225{bottom:1070.130000px;}
.y8_c00225{bottom:1085.610450px;}
.y7_c00225{bottom:1124.220450px;}
.y4_c00225{bottom:1144.380657px;}
.y3_c00225{bottom:1161.660648px;}
.y2_c00225{bottom:1178.850459px;}
.y1_c00225{bottom:1196.130450px;}
.h3_c00225{height:47.513672px;}
.h1_c00225{height:52.898555px;}
.h2_c00225{height:63.175781px;}
.h4_c00225{height:63.351562px;}
.h0_c00225{height:1263.000000px;}
.w1_c00225{width:892.500000px;}
.w0_c00225{width:892.830000px;}
.x0_c00225{left:0.000000px;}
.x4_c00225{left:127.619324px;}
.x6_c00225{left:415.890599px;}
.x1_c00225{left:649.620000px;}
.x5_c00225{left:715.320000px;}
.x3_c00225{left:738.450000px;}
.x2_c00225{left:765.449030px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls12_c00225{letter-spacing:-1.913600pt;}
.lsf_c00225{letter-spacing:-0.037408pt;}
.ls11_c00225{letter-spacing:-0.032000pt;}
.ls13_c00225{letter-spacing:-0.012800pt;}
.ls15_c00225{letter-spacing:-0.006400pt;}
.ls10_c00225{letter-spacing:0.000000pt;}
.ls1_c00225{letter-spacing:0.004800pt;}
.ls8_c00225{letter-spacing:0.006400pt;}
.ls0_c00225{letter-spacing:0.012800pt;}
.lsb_c00225{letter-spacing:0.014400pt;}
.ls5_c00225{letter-spacing:0.019200pt;}
.ls6_c00225{letter-spacing:0.025600pt;}
.lsc_c00225{letter-spacing:0.028800pt;}
.ls4_c00225{letter-spacing:0.032000pt;}
.ls2_c00225{letter-spacing:0.033600pt;}
.ls7_c00225{letter-spacing:0.038400pt;}
.lsd_c00225{letter-spacing:0.044800pt;}
.lsa_c00225{letter-spacing:0.051200pt;}
.ls3_c00225{letter-spacing:0.057600pt;}
.ls9_c00225{letter-spacing:0.070400pt;}
.lse_c00225{letter-spacing:0.121600pt;}
.ls14_c00225{letter-spacing:1.606400pt;}
.ws1_c00225{word-spacing:-16.121600pt;}
.ws0_c00225{word-spacing:-16.038400pt;}
.ws8_c00225{word-spacing:-1.939200pt;}
.ws5_c00225{word-spacing:-0.508800pt;}
.ws6_c00225{word-spacing:-0.211200pt;}
.ws4_c00225{word-spacing:-0.158400pt;}
.ws3_c00225{word-spacing:0.000000pt;}
.ws2_c00225{word-spacing:0.122912pt;}
.wsa_c00225{word-spacing:0.134400pt;}
.ws9_c00225{word-spacing:0.148800pt;}
.ws7_c00225{word-spacing:0.158400pt;}
._5_c00225{margin-left:-2.880000pt;}
._2_c00225{margin-left:-1.945600pt;}
._0_c00225{margin-left:-0.993600pt;}
._4_c00225{width:1.267200pt;}
._3_c00225{width:2.598400pt;}
._9_c00225{width:3.641600pt;}
._6_c00225{width:5.728000pt;}
._b_c00225{width:7.020800pt;}
._c_c00225{width:7.987200pt;}
._1_c00225{width:9.600000pt;}
._7_c00225{width:14.649600pt;}
._8_c00225{width:17.600000pt;}
._a_c00225{width:18.585600pt;}
.fs2_c00225{font-size:48.000000pt;}
.fs0_c00225{font-size:53.440000pt;}
.fs1_c00225{font-size:64.000000pt;}
.y0_c00225{bottom:0.000000pt;}
.y6_c00225{bottom:50.987067pt;}
.y5_c00225{bottom:69.387067pt;}
.y1f_c00225{bottom:134.827067pt;}
.y1e_c00225{bottom:162.507067pt;}
.y1d_c00225{bottom:190.027067pt;}
.y1c_c00225{bottom:217.627067pt;}
.y1b_c00225{bottom:245.227067pt;}
.y1a_c00225{bottom:283.467067pt;}
.y19_c00225{bottom:311.147067pt;}
.y18_c00225{bottom:338.747067pt;}
.y17_c00225{bottom:366.347067pt;}
.y16_c00225{bottom:393.947067pt;}
.y15_c00225{bottom:421.547067pt;}
.y14_c00225{bottom:452.507067pt;}
.y13_c00225{bottom:486.827067pt;}
.y12_c00225{bottom:514.507067pt;}
.y11_c00225{bottom:542.107067pt;}
.y10_c00225{bottom:569.707067pt;}
.yf_c00225{bottom:597.307067pt;}
.ye_c00225{bottom:635.467067pt;}
.yd_c00225{bottom:663.147067pt;}
.yc_c00225{bottom:690.747067pt;}
.yb_c00225{bottom:718.347067pt;}
.ya_c00225{bottom:752.907067pt;}
.y9_c00225{bottom:951.226667pt;}
.y8_c00225{bottom:964.987067pt;}
.y7_c00225{bottom:999.307067pt;}
.y4_c00225{bottom:1017.227251pt;}
.y3_c00225{bottom:1032.587243pt;}
.y2_c00225{bottom:1047.867075pt;}
.y1_c00225{bottom:1063.227067pt;}
.h3_c00225{height:42.234375pt;}
.h1_c00225{height:47.020937pt;}
.h2_c00225{height:56.156250pt;}
.h4_c00225{height:56.312500pt;}
.h0_c00225{height:1122.666667pt;}
.w1_c00225{width:793.333333pt;}
.w0_c00225{width:793.626667pt;}
.x0_c00225{left:0.000000pt;}
.x4_c00225{left:113.439399pt;}
.x6_c00225{left:369.680532pt;}
.x1_c00225{left:577.440000pt;}
.x5_c00225{left:635.840000pt;}
.x3_c00225{left:656.400000pt;}
.x2_c00225{left:680.399138pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e645fb1706473c0c47da9003.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.095703;font-style:normal;font-weight:normal;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_41836603329e6bc3a84bc963.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00226{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls10_c00226{letter-spacing:-0.102204px;}
.ls17_c00226{letter-spacing:-0.064800px;}
.ls19_c00226{letter-spacing:-0.050400px;}
.ls13_c00226{letter-spacing:-0.043200px;}
.ls16_c00226{letter-spacing:-0.028800px;}
.ls14_c00226{letter-spacing:-0.021600px;}
.ls18_c00226{letter-spacing:-0.014400px;}
.ls15_c00226{letter-spacing:-0.007200px;}
.ls11_c00226{letter-spacing:0.000000px;}
.ls4_c00226{letter-spacing:0.007200px;}
.lsb_c00226{letter-spacing:0.014400px;}
.ls5_c00226{letter-spacing:0.021600px;}
.ls9_c00226{letter-spacing:0.028800px;}
.ls1_c00226{letter-spacing:0.036000px;}
.ls0_c00226{letter-spacing:0.043200px;}
.ls7_c00226{letter-spacing:0.050400px;}
.ls6_c00226{letter-spacing:0.057600px;}
.lse_c00226{letter-spacing:0.064800px;}
.ls2_c00226{letter-spacing:0.072000px;}
.lsf_c00226{letter-spacing:0.079200px;}
.lsa_c00226{letter-spacing:0.086400px;}
.lsd_c00226{letter-spacing:0.093600px;}
.ls8_c00226{letter-spacing:0.100800px;}
.lsc_c00226{letter-spacing:0.115200px;}
.ls3_c00226{letter-spacing:4.320000px;}
.ls12_c00226{letter-spacing:15.120000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00226{word-spacing:0.000000px;}
.ws0_c00226{word-spacing:0.192384px;}
.ws2_c00226{word-spacing:4.284000px;}
._5_c00226{margin-left:-15.789600px;}
._6_c00226{margin-left:-14.508000px;}
._c_c00226{margin-left:-3.268800px;}
._b_c00226{margin-left:-2.138400px;}
._4_c00226{margin-left:-1.087200px;}
._0_c00226{width:1.034064px;}
._2_c00226{width:3.009600px;}
._1_c00226{width:4.276800px;}
._9_c00226{width:5.356800px;}
._e_c00226{width:6.523200px;}
._d_c00226{width:8.604000px;}
._7_c00226{width:12.736800px;}
._8_c00226{width:13.795200px;}
._3_c00226{width:15.112800px;}
._a_c00226{width:16.317936px;}
.fc1_c00226{color:rgb(0,0,0);}
.fc0_c00226{color:rgb(32,31,30);}
.fs0_c00226{font-size:60.120000px;}
.fs1_c00226{font-size:72.000000px;}
.y0_c00226{bottom:0.000000px;}
.y5_c00226{bottom:57.360450px;}
.y4_c00226{bottom:78.060450px;}
.y24_c00226{bottom:131.970450px;}
.y23_c00226{bottom:163.020450px;}
.y22_c00226{bottom:206.040450px;}
.y21_c00226{bottom:237.090450px;}
.y20_c00226{bottom:268.140450px;}
.y1f_c00226{bottom:299.190450px;}
.y1e_c00226{bottom:330.240450px;}
.y1d_c00226{bottom:361.290450px;}
.y1c_c00226{bottom:392.340450px;}
.y1b_c00226{bottom:423.390450px;}
.y1a_c00226{bottom:454.440450px;}
.y19_c00226{bottom:497.460450px;}
.y18_c00226{bottom:528.600450px;}
.y17_c00226{bottom:559.650450px;}
.y16_c00226{bottom:590.700450px;}
.y15_c00226{bottom:621.660450px;}
.y14_c00226{bottom:652.710450px;}
.y13_c00226{bottom:683.760450px;}
.y12_c00226{bottom:714.810450px;}
.y11_c00226{bottom:757.830450px;}
.y10_c00226{bottom:788.970450px;}
.yf_c00226{bottom:820.020450px;}
.ye_c00226{bottom:862.950450px;}
.yd_c00226{bottom:894.090450px;}
.yc_c00226{bottom:925.140450px;}
.yb_c00226{bottom:956.190450px;}
.ya_c00226{bottom:987.240450px;}
.y9_c00226{bottom:1018.290450px;}
.y8_c00226{bottom:1049.340450px;}
.y7_c00226{bottom:1080.390450px;}
.y6_c00226{bottom:1111.440450px;}
.y3_c00226{bottom:1132.140450px;}
.y2_c00226{bottom:1165.441023px;}
.y1_c00226{bottom:1196.040600px;}
.h1_c00226{height:52.898555px;}
.h2_c00226{height:63.175781px;}
.h3_c00226{height:63.351562px;}
.h0_c00226{height:1263.000000px;}
.w1_c00226{width:892.500000px;}
.w0_c00226{width:892.830000px;}
.x0_c00226{left:0.000000px;}
.x1_c00226{left:127.620000px;}
.x2_c00226{left:738.450000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls10_c00226{letter-spacing:-0.090848pt;}
.ls17_c00226{letter-spacing:-0.057600pt;}
.ls19_c00226{letter-spacing:-0.044800pt;}
.ls13_c00226{letter-spacing:-0.038400pt;}
.ls16_c00226{letter-spacing:-0.025600pt;}
.ls14_c00226{letter-spacing:-0.019200pt;}
.ls18_c00226{letter-spacing:-0.012800pt;}
.ls15_c00226{letter-spacing:-0.006400pt;}
.ls11_c00226{letter-spacing:0.000000pt;}
.ls4_c00226{letter-spacing:0.006400pt;}
.lsb_c00226{letter-spacing:0.012800pt;}
.ls5_c00226{letter-spacing:0.019200pt;}
.ls9_c00226{letter-spacing:0.025600pt;}
.ls1_c00226{letter-spacing:0.032000pt;}
.ls0_c00226{letter-spacing:0.038400pt;}
.ls7_c00226{letter-spacing:0.044800pt;}
.ls6_c00226{letter-spacing:0.051200pt;}
.lse_c00226{letter-spacing:0.057600pt;}
.ls2_c00226{letter-spacing:0.064000pt;}
.lsf_c00226{letter-spacing:0.070400pt;}
.lsa_c00226{letter-spacing:0.076800pt;}
.lsd_c00226{letter-spacing:0.083200pt;}
.ls8_c00226{letter-spacing:0.089600pt;}
.lsc_c00226{letter-spacing:0.102400pt;}
.ls3_c00226{letter-spacing:3.840000pt;}
.ls12_c00226{letter-spacing:13.440000pt;}
.ws1_c00226{word-spacing:0.000000pt;}
.ws0_c00226{word-spacing:0.171008pt;}
.ws2_c00226{word-spacing:3.808000pt;}
._5_c00226{margin-left:-14.035200pt;}
._6_c00226{margin-left:-12.896000pt;}
._c_c00226{margin-left:-2.905600pt;}
._b_c00226{margin-left:-1.900800pt;}
._4_c00226{margin-left:-0.966400pt;}
._0_c00226{width:0.919168pt;}
._2_c00226{width:2.675200pt;}
._1_c00226{width:3.801600pt;}
._9_c00226{width:4.761600pt;}
._e_c00226{width:5.798400pt;}
._d_c00226{width:7.648000pt;}
._7_c00226{width:11.321600pt;}
._8_c00226{width:12.262400pt;}
._3_c00226{width:13.433600pt;}
._a_c00226{width:14.504832pt;}
.fs0_c00226{font-size:53.440000pt;}
.fs1_c00226{font-size:64.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y5_c00226{bottom:50.987067pt;}
.y4_c00226{bottom:69.387067pt;}
.y24_c00226{bottom:117.307067pt;}
.y23_c00226{bottom:144.907067pt;}
.y22_c00226{bottom:183.147067pt;}
.y21_c00226{bottom:210.747067pt;}
.y20_c00226{bottom:238.347067pt;}
.y1f_c00226{bottom:265.947067pt;}
.y1e_c00226{bottom:293.547067pt;}
.y1d_c00226{bottom:321.147067pt;}
.y1c_c00226{bottom:348.747067pt;}
.y1b_c00226{bottom:376.347067pt;}
.y1a_c00226{bottom:403.947067pt;}
.y19_c00226{bottom:442.187067pt;}
.y18_c00226{bottom:469.867067pt;}
.y17_c00226{bottom:497.467067pt;}
.y16_c00226{bottom:525.067067pt;}
.y15_c00226{bottom:552.587067pt;}
.y14_c00226{bottom:580.187067pt;}
.y13_c00226{bottom:607.787067pt;}
.y12_c00226{bottom:635.387067pt;}
.y11_c00226{bottom:673.627067pt;}
.y10_c00226{bottom:701.307067pt;}
.yf_c00226{bottom:728.907067pt;}
.ye_c00226{bottom:767.067067pt;}
.yd_c00226{bottom:794.747067pt;}
.yc_c00226{bottom:822.347067pt;}
.yb_c00226{bottom:849.947067pt;}
.ya_c00226{bottom:877.547067pt;}
.y9_c00226{bottom:905.147067pt;}
.y8_c00226{bottom:932.747067pt;}
.y7_c00226{bottom:960.347067pt;}
.y6_c00226{bottom:987.947067pt;}
.y3_c00226{bottom:1006.347067pt;}
.y2_c00226{bottom:1035.947576pt;}
.y1_c00226{bottom:1063.147200pt;}
.h1_c00226{height:47.020937pt;}
.h2_c00226{height:56.156250pt;}
.h3_c00226{height:56.312500pt;}
.h0_c00226{height:1122.666667pt;}
.w1_c00226{width:793.333333pt;}
.w0_c00226{width:793.626667pt;}
.x0_c00226{left:0.000000pt;}
.x1_c00226{left:113.440000pt;}
.x2_c00226{left:656.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_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_146ffc36a9d0dad28cc16e03.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.095703;font-style:normal;font-weight:normal;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_94b676fa29a1b0065bb73b24.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.093262;font-style: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;}
.lsf_c00227{letter-spacing:-0.048096px;}
.ls11_c00227{letter-spacing:-0.028800px;}
.ls15_c00227{letter-spacing:-0.021600px;}
.ls13_c00227{letter-spacing:-0.016200px;}
.ls12_c00227{letter-spacing:-0.014400px;}
.ls14_c00227{letter-spacing:-0.007200px;}
.ls10_c00227{letter-spacing:0.000000px;}
.lsa_c00227{letter-spacing:0.007200px;}
.ls1_c00227{letter-spacing:0.010800px;}
.ls9_c00227{letter-spacing:0.014400px;}
.ls0_c00227{letter-spacing:0.021600px;}
.lsd_c00227{letter-spacing:0.027000px;}
.ls5_c00227{letter-spacing:0.028800px;}
.lsb_c00227{letter-spacing:0.036000px;}
.lse_c00227{letter-spacing:0.043200px;}
.ls2_c00227{letter-spacing:0.050400px;}
.ls8_c00227{letter-spacing:0.057600px;}
.ls3_c00227{letter-spacing:0.064800px;}
.ls4_c00227{letter-spacing:0.072000px;}
.ls6_c00227{letter-spacing:0.086400px;}
.ls7_c00227{letter-spacing:0.100800px;}
.lsc_c00227{letter-spacing:0.115200px;}
.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;}
}
.ws4_c00227{word-spacing:-0.036000px;}
.ws1_c00227{word-spacing:0.000000px;}
.ws6_c00227{word-spacing:0.135000px;}
.ws0_c00227{word-spacing:0.138276px;}
.ws5_c00227{word-spacing:0.151200px;}
.ws2_c00227{word-spacing:0.167400px;}
.ws3_c00227{word-spacing:0.194400px;}
._5_c00227{margin-left:-5.371200px;}
._6_c00227{margin-left:-4.305600px;}
._3_c00227{margin-left:-2.430000px;}
._2_c00227{margin-left:-1.020600px;}
._0_c00227{width:1.915200px;}
._1_c00227{width:3.146400px;}
._7_c00227{width:5.342400px;}
._b_c00227{width:6.724800px;}
._a_c00227{width:8.553600px;}
._8_c00227{width:9.878400px;}
._9_c00227{width:11.304000px;}
._4_c00227{width:14.767200px;}
.fc1_c00227{color:rgb(68,84,106);}
.fc0_c00227{color:rgb(0,0,0);}
.fs2_c00227{font-size:54.000000px;}
.fs0_c00227{font-size:60.120000px;}
.fs1_c00227{font-size:72.000000px;}
.y0_c00227{bottom:0.000000px;}
.y6_c00227{bottom:57.360450px;}
.y5_c00227{bottom:78.060450px;}
.y19_c00227{bottom:123.060450px;}
.y18_c00227{bottom:339.330450px;}
.y17_c00227{bottom:377.940600px;}
.y16_c00227{bottom:409.080600px;}
.y15_c00227{bottom:440.130600px;}
.y14_c00227{bottom:483.150600px;}
.y13_c00227{bottom:514.290600px;}
.y12_c00227{bottom:545.340600px;}
.y11_c00227{bottom:576.300600px;}
.y10_c00227{bottom:607.350600px;}
.yf_c00227{bottom:638.400600px;}
.ye_c00227{bottom:669.450600px;}
.yd_c00227{bottom:712.470600px;}
.yc_c00227{bottom:743.610600px;}
.yb_c00227{bottom:774.660600px;}
.ya_c00227{bottom:813.540600px;}
.y9_c00227{bottom:1054.560450px;}
.y8_c00227{bottom:1093.170450px;}
.y7_c00227{bottom:1124.310450px;}
.y4_c00227{bottom:1144.380657px;}
.y3_c00227{bottom:1161.660648px;}
.y2_c00227{bottom:1178.850459px;}
.y1_c00227{bottom:1196.130450px;}
.h3_c00227{height:47.513672px;}
.h1_c00227{height:52.898555px;}
.h2_c00227{height:63.175781px;}
.h4_c00227{height:63.351562px;}
.h0_c00227{height:1263.000000px;}
.w1_c00227{width:892.500000px;}
.w0_c00227{width:892.830000px;}
.x0_c00227{left:0.000000px;}
.x4_c00227{left:127.620000px;}
.x1_c00227{left:649.620000px;}
.x5_c00227{left:680.850000px;}
.x3_c00227{left:738.450000px;}
.x2_c00227{left:765.450198px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.lsf_c00227{letter-spacing:-0.042752pt;}
.ls11_c00227{letter-spacing:-0.025600pt;}
.ls15_c00227{letter-spacing:-0.019200pt;}
.ls13_c00227{letter-spacing:-0.014400pt;}
.ls12_c00227{letter-spacing:-0.012800pt;}
.ls14_c00227{letter-spacing:-0.006400pt;}
.ls10_c00227{letter-spacing:0.000000pt;}
.lsa_c00227{letter-spacing:0.006400pt;}
.ls1_c00227{letter-spacing:0.009600pt;}
.ls9_c00227{letter-spacing:0.012800pt;}
.ls0_c00227{letter-spacing:0.019200pt;}
.lsd_c00227{letter-spacing:0.024000pt;}
.ls5_c00227{letter-spacing:0.025600pt;}
.lsb_c00227{letter-spacing:0.032000pt;}
.lse_c00227{letter-spacing:0.038400pt;}
.ls2_c00227{letter-spacing:0.044800pt;}
.ls8_c00227{letter-spacing:0.051200pt;}
.ls3_c00227{letter-spacing:0.057600pt;}
.ls4_c00227{letter-spacing:0.064000pt;}
.ls6_c00227{letter-spacing:0.076800pt;}
.ls7_c00227{letter-spacing:0.089600pt;}
.lsc_c00227{letter-spacing:0.102400pt;}
.ws4_c00227{word-spacing:-0.032000pt;}
.ws1_c00227{word-spacing:0.000000pt;}
.ws6_c00227{word-spacing:0.120000pt;}
.ws0_c00227{word-spacing:0.122912pt;}
.ws5_c00227{word-spacing:0.134400pt;}
.ws2_c00227{word-spacing:0.148800pt;}
.ws3_c00227{word-spacing:0.172800pt;}
._5_c00227{margin-left:-4.774400pt;}
._6_c00227{margin-left:-3.827200pt;}
._3_c00227{margin-left:-2.160000pt;}
._2_c00227{margin-left:-0.907200pt;}
._0_c00227{width:1.702400pt;}
._1_c00227{width:2.796800pt;}
._7_c00227{width:4.748800pt;}
._b_c00227{width:5.977600pt;}
._a_c00227{width:7.603200pt;}
._8_c00227{width:8.780800pt;}
._9_c00227{width:10.048000pt;}
._4_c00227{width:13.126400pt;}
.fs2_c00227{font-size:48.000000pt;}
.fs0_c00227{font-size:53.440000pt;}
.fs1_c00227{font-size:64.000000pt;}
.y0_c00227{bottom:0.000000pt;}
.y6_c00227{bottom:50.987067pt;}
.y5_c00227{bottom:69.387067pt;}
.y19_c00227{bottom:109.387067pt;}
.y18_c00227{bottom:301.627067pt;}
.y17_c00227{bottom:335.947200pt;}
.y16_c00227{bottom:363.627200pt;}
.y15_c00227{bottom:391.227200pt;}
.y14_c00227{bottom:429.467200pt;}
.y13_c00227{bottom:457.147200pt;}
.y12_c00227{bottom:484.747200pt;}
.y11_c00227{bottom:512.267200pt;}
.y10_c00227{bottom:539.867200pt;}
.yf_c00227{bottom:567.467200pt;}
.ye_c00227{bottom:595.067200pt;}
.yd_c00227{bottom:633.307200pt;}
.yc_c00227{bottom:660.987200pt;}
.yb_c00227{bottom:688.587200pt;}
.ya_c00227{bottom:723.147200pt;}
.y9_c00227{bottom:937.387067pt;}
.y8_c00227{bottom:971.707067pt;}
.y7_c00227{bottom:999.387067pt;}
.y4_c00227{bottom:1017.227251pt;}
.y3_c00227{bottom:1032.587243pt;}
.y2_c00227{bottom:1047.867075pt;}
.y1_c00227{bottom:1063.227067pt;}
.h3_c00227{height:42.234375pt;}
.h1_c00227{height:47.020937pt;}
.h2_c00227{height:56.156250pt;}
.h4_c00227{height:56.312500pt;}
.h0_c00227{height:1122.666667pt;}
.w1_c00227{width:793.333333pt;}
.w0_c00227{width:793.626667pt;}
.x0_c00227{left:0.000000pt;}
.x4_c00227{left:113.440000pt;}
.x1_c00227{left:577.440000pt;}
.x5_c00227{left:605.200000pt;}
.x3_c00227{left:656.400000pt;}
.x2_c00227{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f5ce935740d2ccbc3f1f418.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.095703;font-style:normal;font-weight:normal;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_7ddb89d45b4bc52819e638c0.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.093262;font-style: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;}
.ls18_c00228{letter-spacing:-0.216000px;}
.lsf_c00228{letter-spacing:-0.102204px;}
.ls17_c00228{letter-spacing:-0.072000px;}
.ls19_c00228{letter-spacing:-0.064800px;}
.ls12_c00228{letter-spacing:-0.057600px;}
.ls13_c00228{letter-spacing:-0.043200px;}
.ls16_c00228{letter-spacing:-0.036000px;}
.ls11_c00228{letter-spacing:-0.021600px;}
.ls15_c00228{letter-spacing:-0.014400px;}
.ls14_c00228{letter-spacing:-0.007200px;}
.ls10_c00228{letter-spacing:0.000000px;}
.ls8_c00228{letter-spacing:0.007200px;}
.ls7_c00228{letter-spacing:0.014400px;}
.ls4_c00228{letter-spacing:0.021600px;}
.ls1_c00228{letter-spacing:0.028800px;}
.lsd_c00228{letter-spacing:0.036000px;}
.ls0_c00228{letter-spacing:0.043200px;}
.ls5_c00228{letter-spacing:0.050400px;}
.ls3_c00228{letter-spacing:0.057600px;}
.lsc_c00228{letter-spacing:0.064800px;}
.ls6_c00228{letter-spacing:0.072000px;}
.ls9_c00228{letter-spacing:0.079200px;}
.ls2_c00228{letter-spacing:0.086400px;}
.lsa_c00228{letter-spacing:0.093600px;}
.lse_c00228{letter-spacing:0.115200px;}
.lsb_c00228{letter-spacing:0.151200px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00228{word-spacing:-17.978400px;}
.ws1_c00228{word-spacing:-17.964000px;}
.ws3_c00228{word-spacing:0.000000px;}
.ws2_c00228{word-spacing:0.192384px;}
.ws6_c00228{word-spacing:0.243000px;}
.ws5_c00228{word-spacing:3.758400px;}
.ws4_c00228{word-spacing:3.916800px;}
._d_c00228{margin-left:-4.593600px;}
._c_c00228{margin-left:-3.592800px;}
._7_c00228{margin-left:-2.116800px;}
._3_c00228{margin-left:-1.051200px;}
._0_c00228{width:1.034064px;}
._8_c00228{width:2.894400px;}
._1_c00228{width:3.916800px;}
._5_c00228{width:5.104800px;}
._6_c00228{width:6.940800px;}
._2_c00228{width:8.913600px;}
._9_c00228{width:10.310400px;}
._4_c00228{width:19.094400px;}
._b_c00228{width:26.937936px;}
._a_c00228{width:28.029600px;}
.fc2_c00228{color:rgb(68,84,106);}
.fc1_c00228{color:rgb(0,0,0);}
.fc0_c00228{color:rgb(32,31,30);}
.fs2_c00228{font-size:54.000000px;}
.fs0_c00228{font-size:60.120000px;}
.fs1_c00228{font-size:72.000000px;}
.y0_c00228{bottom:0.000000px;}
.y26_c00228{bottom:3.240450px;}
.y29_c00228{bottom:3.240600px;}
.y5_c00228{bottom:57.360450px;}
.y4_c00228{bottom:78.060450px;}
.y24_c00228{bottom:131.970450px;}
.y23_c00228{bottom:163.020450px;}
.y22_c00228{bottom:194.070450px;}
.y21_c00228{bottom:237.000450px;}
.y20_c00228{bottom:268.140450px;}
.y1f_c00228{bottom:299.190450px;}
.y1e_c00228{bottom:330.240450px;}
.y1d_c00228{bottom:361.290450px;}
.y28_c00228{bottom:377.220000px;}
.y2a_c00228{bottom:380.460600px;}
.y1c_c00228{bottom:392.340450px;}
.y25_c00228{bottom:392.700000px;}
.y27_c00228{bottom:395.940450px;}
.y1b_c00228{bottom:435.360450px;}
.y1a_c00228{bottom:466.500450px;}
.y19_c00228{bottom:497.550450px;}
.y18_c00228{bottom:528.600450px;}
.y17_c00228{bottom:559.650450px;}
.y16_c00228{bottom:590.700450px;}
.y15_c00228{bottom:621.660450px;}
.y14_c00228{bottom:664.680450px;}
.y13_c00228{bottom:695.820450px;}
.y12_c00228{bottom:726.870450px;}
.y11_c00228{bottom:757.920450px;}
.y10_c00228{bottom:788.970450px;}
.yf_c00228{bottom:820.020450px;}
.ye_c00228{bottom:851.070450px;}
.yd_c00228{bottom:894.000450px;}
.yc_c00228{bottom:925.140450px;}
.yb_c00228{bottom:956.190450px;}
.ya_c00228{bottom:987.240450px;}
.y9_c00228{bottom:1018.290450px;}
.y8_c00228{bottom:1049.340450px;}
.y7_c00228{bottom:1080.390450px;}
.y6_c00228{bottom:1111.440450px;}
.y3_c00228{bottom:1132.140450px;}
.y2_c00228{bottom:1165.441023px;}
.y1_c00228{bottom:1196.040600px;}
.h4_c00228{height:15.300000px;}
.h5_c00228{height:47.513672px;}
.h1_c00228{height:52.898555px;}
.h2_c00228{height:63.175781px;}
.h3_c00228{height:63.351562px;}
.h0_c00228{height:1263.000000px;}
.w3_c00228{width:79.110000px;}
.w2_c00228{width:138.690000px;}
.w1_c00228{width:892.500000px;}
.w0_c00228{width:892.830000px;}
.x0_c00228{left:0.000000px;}
.x1_c00228{left:127.620000px;}
.x4_c00228{left:132.120000px;}
.x5_c00228{left:135.090000px;}
.x3_c00228{left:280.620000px;}
.x2_c00228{left:738.450000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls18_c00228{letter-spacing:-0.192000pt;}
.lsf_c00228{letter-spacing:-0.090848pt;}
.ls17_c00228{letter-spacing:-0.064000pt;}
.ls19_c00228{letter-spacing:-0.057600pt;}
.ls12_c00228{letter-spacing:-0.051200pt;}
.ls13_c00228{letter-spacing:-0.038400pt;}
.ls16_c00228{letter-spacing:-0.032000pt;}
.ls11_c00228{letter-spacing:-0.019200pt;}
.ls15_c00228{letter-spacing:-0.012800pt;}
.ls14_c00228{letter-spacing:-0.006400pt;}
.ls10_c00228{letter-spacing:0.000000pt;}
.ls8_c00228{letter-spacing:0.006400pt;}
.ls7_c00228{letter-spacing:0.012800pt;}
.ls4_c00228{letter-spacing:0.019200pt;}
.ls1_c00228{letter-spacing:0.025600pt;}
.lsd_c00228{letter-spacing:0.032000pt;}
.ls0_c00228{letter-spacing:0.038400pt;}
.ls5_c00228{letter-spacing:0.044800pt;}
.ls3_c00228{letter-spacing:0.051200pt;}
.lsc_c00228{letter-spacing:0.057600pt;}
.ls6_c00228{letter-spacing:0.064000pt;}
.ls9_c00228{letter-spacing:0.070400pt;}
.ls2_c00228{letter-spacing:0.076800pt;}
.lsa_c00228{letter-spacing:0.083200pt;}
.lse_c00228{letter-spacing:0.102400pt;}
.lsb_c00228{letter-spacing:0.134400pt;}
.ws0_c00228{word-spacing:-15.980800pt;}
.ws1_c00228{word-spacing:-15.968000pt;}
.ws3_c00228{word-spacing:0.000000pt;}
.ws2_c00228{word-spacing:0.171008pt;}
.ws6_c00228{word-spacing:0.216000pt;}
.ws5_c00228{word-spacing:3.340800pt;}
.ws4_c00228{word-spacing:3.481600pt;}
._d_c00228{margin-left:-4.083200pt;}
._c_c00228{margin-left:-3.193600pt;}
._7_c00228{margin-left:-1.881600pt;}
._3_c00228{margin-left:-0.934400pt;}
._0_c00228{width:0.919168pt;}
._8_c00228{width:2.572800pt;}
._1_c00228{width:3.481600pt;}
._5_c00228{width:4.537600pt;}
._6_c00228{width:6.169600pt;}
._2_c00228{width:7.923200pt;}
._9_c00228{width:9.164800pt;}
._4_c00228{width:16.972800pt;}
._b_c00228{width:23.944832pt;}
._a_c00228{width:24.915200pt;}
.fs2_c00228{font-size:48.000000pt;}
.fs0_c00228{font-size:53.440000pt;}
.fs1_c00228{font-size:64.000000pt;}
.y0_c00228{bottom:0.000000pt;}
.y26_c00228{bottom:2.880400pt;}
.y29_c00228{bottom:2.880533pt;}
.y5_c00228{bottom:50.987067pt;}
.y4_c00228{bottom:69.387067pt;}
.y24_c00228{bottom:117.307067pt;}
.y23_c00228{bottom:144.907067pt;}
.y22_c00228{bottom:172.507067pt;}
.y21_c00228{bottom:210.667067pt;}
.y20_c00228{bottom:238.347067pt;}
.y1f_c00228{bottom:265.947067pt;}
.y1e_c00228{bottom:293.547067pt;}
.y1d_c00228{bottom:321.147067pt;}
.y28_c00228{bottom:335.306667pt;}
.y2a_c00228{bottom:338.187200pt;}
.y1c_c00228{bottom:348.747067pt;}
.y25_c00228{bottom:349.066667pt;}
.y27_c00228{bottom:351.947067pt;}
.y1b_c00228{bottom:386.987067pt;}
.y1a_c00228{bottom:414.667067pt;}
.y19_c00228{bottom:442.267067pt;}
.y18_c00228{bottom:469.867067pt;}
.y17_c00228{bottom:497.467067pt;}
.y16_c00228{bottom:525.067067pt;}
.y15_c00228{bottom:552.587067pt;}
.y14_c00228{bottom:590.827067pt;}
.y13_c00228{bottom:618.507067pt;}
.y12_c00228{bottom:646.107067pt;}
.y11_c00228{bottom:673.707067pt;}
.y10_c00228{bottom:701.307067pt;}
.yf_c00228{bottom:728.907067pt;}
.ye_c00228{bottom:756.507067pt;}
.yd_c00228{bottom:794.667067pt;}
.yc_c00228{bottom:822.347067pt;}
.yb_c00228{bottom:849.947067pt;}
.ya_c00228{bottom:877.547067pt;}
.y9_c00228{bottom:905.147067pt;}
.y8_c00228{bottom:932.747067pt;}
.y7_c00228{bottom:960.347067pt;}
.y6_c00228{bottom:987.947067pt;}
.y3_c00228{bottom:1006.347067pt;}
.y2_c00228{bottom:1035.947576pt;}
.y1_c00228{bottom:1063.147200pt;}
.h4_c00228{height:13.600000pt;}
.h5_c00228{height:42.234375pt;}
.h1_c00228{height:47.020937pt;}
.h2_c00228{height:56.156250pt;}
.h3_c00228{height:56.312500pt;}
.h0_c00228{height:1122.666667pt;}
.w3_c00228{width:70.320000pt;}
.w2_c00228{width:123.280000pt;}
.w1_c00228{width:793.333333pt;}
.w0_c00228{width:793.626667pt;}
.x0_c00228{left:0.000000pt;}
.x1_c00228{left:113.440000pt;}
.x4_c00228{left:117.440000pt;}
.x5_c00228{left:120.080000pt;}
.x3_c00228{left:249.440000pt;}
.x2_c00228{left:656.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_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_3c0ba9afb65a8f082501ccfc.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.095703;font-style:normal;font-weight:normal;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_a191b5f4d58fcec61a021c0a.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:1.104004;font-style: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:-27.000000px;}
.v3_c00229{vertical-align:-20.880000px;}
.v0_c00229{vertical-align:0.000000px;}
.v1_c00229{vertical-align:27.000000px;}
.ls1a_c00229{letter-spacing:-0.162324px;}
.ls19_c00229{letter-spacing:-0.090180px;}
.ls15_c00229{letter-spacing:-0.079200px;}
.ls18_c00229{letter-spacing:-0.064800px;}
.ls10_c00229{letter-spacing:-0.050400px;}
.lsd_c00229{letter-spacing:-0.048096px;}
.ls14_c00229{letter-spacing:-0.037800px;}
.lsf_c00229{letter-spacing:-0.028800px;}
.ls11_c00229{letter-spacing:-0.021600px;}
.ls12_c00229{letter-spacing:-0.014400px;}
.ls17_c00229{letter-spacing:-0.007200px;}
.lse_c00229{letter-spacing:0.000000px;}
.ls8_c00229{letter-spacing:0.010800px;}
.lsc_c00229{letter-spacing:0.012024px;}
.ls6_c00229{letter-spacing:0.014400px;}
.ls9_c00229{letter-spacing:0.016200px;}
.ls0_c00229{letter-spacing:0.021600px;}
.ls5_c00229{letter-spacing:0.028800px;}
.ls7_c00229{letter-spacing:0.032400px;}
.ls4_c00229{letter-spacing:0.036000px;}
.ls1_c00229{letter-spacing:0.043200px;}
.lsa_c00229{letter-spacing:0.057600px;}
.ls3_c00229{letter-spacing:0.064800px;}
.ls2_c00229{letter-spacing:0.086400px;}
.lsb_c00229{letter-spacing:0.108000px;}
.ls13_c00229{letter-spacing:0.181944px;}
.ls16_c00229{letter-spacing:5.328000px;}
.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;}
}
.ws2_c00229{word-spacing:-15.042024px;}
.ws0_c00229{word-spacing:-12.151944px;}
.ws1_c00229{word-spacing:-9.720000px;}
.ws5_c00229{word-spacing:-2.556000px;}
.ws4_c00229{word-spacing:0.000000px;}
.ws3_c00229{word-spacing:0.138276px;}
.ws6_c00229{word-spacing:0.145800px;}
.wsa_c00229{word-spacing:0.162000px;}
.ws9_c00229{word-spacing:0.167400px;}
.ws7_c00229{word-spacing:0.178200px;}
.ws8_c00229{word-spacing:0.216000px;}
.wsb_c00229{word-spacing:13.759200px;}
._a_c00229{margin-left:-6.278400px;}
._9_c00229{margin-left:-4.802400px;}
._3_c00229{margin-left:-3.276000px;}
._0_c00229{margin-left:-1.461600px;}
._4_c00229{width:1.821600px;}
._7_c00229{width:3.614400px;}
._8_c00229{width:5.364000px;}
._6_c00229{width:9.662400px;}
._5_c00229{width:13.651200px;}
._2_c00229{width:23.947200px;}
._1_c00229{width:25.178400px;}
.fc1_c00229{color:rgb(68,84,106);}
.fc0_c00229{color:rgb(0,0,0);}
.fs5_c00229{font-size:38.880000px;}
.fs2_c00229{font-size:47.880000px;}
.fs3_c00229{font-size:54.000000px;}
.fs0_c00229{font-size:60.120000px;}
.fs1_c00229{font-size:72.000000px;}
.fs4_c00229{font-size:108.000000px;}
.y0_c00229{bottom:0.000000px;}
.y6_c00229{bottom:57.360450px;}
.y5_c00229{bottom:78.060450px;}
.y1e_c00229{bottom:109.920639px;}
.y1d_c00229{bottom:132.330450px;}
.y1c_c00229{bottom:145.020450px;}
.y1b_c00229{bottom:199.650450px;}
.y1a_c00229{bottom:224.578800px;}
.y19_c00229{bottom:276.059700px;}
.y18_c00229{bottom:327.629700px;}
.y17_c00229{bottom:379.110600px;}
.y16_c00229{bottom:430.680600px;}
.y15_c00229{bottom:488.190450px;}
.y14_c00229{bottom:519.330450px;}
.y13_c00229{bottom:550.380450px;}
.y12_c00229{bottom:581.430450px;}
.y11_c00229{bottom:612.480450px;}
.y10_c00229{bottom:643.530450px;}
.yf_c00229{bottom:682.500450px;}
.ye_c00229{bottom:914.880000px;}
.yd_c00229{bottom:930.360450px;}
.yc_c00229{bottom:969.060450px;}
.yb_c00229{bottom:1000.200450px;}
.ya_c00229{bottom:1031.160450px;}
.y9_c00229{bottom:1062.210450px;}
.y8_c00229{bottom:1093.260450px;}
.y7_c00229{bottom:1124.310450px;}
.y4_c00229{bottom:1144.380657px;}
.y3_c00229{bottom:1161.660648px;}
.y2_c00229{bottom:1178.850459px;}
.y1_c00229{bottom:1196.130450px;}
.h7_c00229{height:34.114922px;}
.h5_c00229{height:47.513672px;}
.h8_c00229{height:52.751777px;}
.h1_c00229{height:52.898555px;}
.h2_c00229{height:63.175781px;}
.h3_c00229{height:63.351562px;}
.h4_c00229{height:69.011895px;}
.h6_c00229{height:95.923828px;}
.h0_c00229{height:1263.000000px;}
.w1_c00229{width:892.500000px;}
.w0_c00229{width:892.830000px;}
.x0_c00229{left:0.000000px;}
.x4_c00229{left:127.620000px;}
.x1_c00229{left:649.620000px;}
.x5_c00229{left:700.200000px;}
.x3_c00229{left:738.450000px;}
.x2_c00229{left:765.450198px;}
@media print{
.v2_c00229{vertical-align:-24.000000pt;}
.v3_c00229{vertical-align:-18.560000pt;}
.v0_c00229{vertical-align:0.000000pt;}
.v1_c00229{vertical-align:24.000000pt;}
.ls1a_c00229{letter-spacing:-0.144288pt;}
.ls19_c00229{letter-spacing:-0.080160pt;}
.ls15_c00229{letter-spacing:-0.070400pt;}
.ls18_c00229{letter-spacing:-0.057600pt;}
.ls10_c00229{letter-spacing:-0.044800pt;}
.lsd_c00229{letter-spacing:-0.042752pt;}
.ls14_c00229{letter-spacing:-0.033600pt;}
.lsf_c00229{letter-spacing:-0.025600pt;}
.ls11_c00229{letter-spacing:-0.019200pt;}
.ls12_c00229{letter-spacing:-0.012800pt;}
.ls17_c00229{letter-spacing:-0.006400pt;}
.lse_c00229{letter-spacing:0.000000pt;}
.ls8_c00229{letter-spacing:0.009600pt;}
.lsc_c00229{letter-spacing:0.010688pt;}
.ls6_c00229{letter-spacing:0.012800pt;}
.ls9_c00229{letter-spacing:0.014400pt;}
.ls0_c00229{letter-spacing:0.019200pt;}
.ls5_c00229{letter-spacing:0.025600pt;}
.ls7_c00229{letter-spacing:0.028800pt;}
.ls4_c00229{letter-spacing:0.032000pt;}
.ls1_c00229{letter-spacing:0.038400pt;}
.lsa_c00229{letter-spacing:0.051200pt;}
.ls3_c00229{letter-spacing:0.057600pt;}
.ls2_c00229{letter-spacing:0.076800pt;}
.lsb_c00229{letter-spacing:0.096000pt;}
.ls13_c00229{letter-spacing:0.161728pt;}
.ls16_c00229{letter-spacing:4.736000pt;}
.ws2_c00229{word-spacing:-13.370688pt;}
.ws0_c00229{word-spacing:-10.801728pt;}
.ws1_c00229{word-spacing:-8.640000pt;}
.ws5_c00229{word-spacing:-2.272000pt;}
.ws4_c00229{word-spacing:0.000000pt;}
.ws3_c00229{word-spacing:0.122912pt;}
.ws6_c00229{word-spacing:0.129600pt;}
.wsa_c00229{word-spacing:0.144000pt;}
.ws9_c00229{word-spacing:0.148800pt;}
.ws7_c00229{word-spacing:0.158400pt;}
.ws8_c00229{word-spacing:0.192000pt;}
.wsb_c00229{word-spacing:12.230400pt;}
._a_c00229{margin-left:-5.580800pt;}
._9_c00229{margin-left:-4.268800pt;}
._3_c00229{margin-left:-2.912000pt;}
._0_c00229{margin-left:-1.299200pt;}
._4_c00229{width:1.619200pt;}
._7_c00229{width:3.212800pt;}
._8_c00229{width:4.768000pt;}
._6_c00229{width:8.588800pt;}
._5_c00229{width:12.134400pt;}
._2_c00229{width:21.286400pt;}
._1_c00229{width:22.380800pt;}
.fs5_c00229{font-size:34.560000pt;}
.fs2_c00229{font-size:42.560000pt;}
.fs3_c00229{font-size:48.000000pt;}
.fs0_c00229{font-size:53.440000pt;}
.fs1_c00229{font-size:64.000000pt;}
.fs4_c00229{font-size:96.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y6_c00229{bottom:50.987067pt;}
.y5_c00229{bottom:69.387067pt;}
.y1e_c00229{bottom:97.707235pt;}
.y1d_c00229{bottom:117.627067pt;}
.y1c_c00229{bottom:128.907067pt;}
.y1b_c00229{bottom:177.467067pt;}
.y1a_c00229{bottom:199.625600pt;}
.y19_c00229{bottom:245.386400pt;}
.y18_c00229{bottom:291.226400pt;}
.y17_c00229{bottom:336.987200pt;}
.y16_c00229{bottom:382.827200pt;}
.y15_c00229{bottom:433.947067pt;}
.y14_c00229{bottom:461.627067pt;}
.y13_c00229{bottom:489.227067pt;}
.y12_c00229{bottom:516.827067pt;}
.y11_c00229{bottom:544.427067pt;}
.y10_c00229{bottom:572.027067pt;}
.yf_c00229{bottom:606.667067pt;}
.ye_c00229{bottom:813.226667pt;}
.yd_c00229{bottom:826.987067pt;}
.yc_c00229{bottom:861.387067pt;}
.yb_c00229{bottom:889.067067pt;}
.ya_c00229{bottom:916.587067pt;}
.y9_c00229{bottom:944.187067pt;}
.y8_c00229{bottom:971.787067pt;}
.y7_c00229{bottom:999.387067pt;}
.y4_c00229{bottom:1017.227251pt;}
.y3_c00229{bottom:1032.587243pt;}
.y2_c00229{bottom:1047.867075pt;}
.y1_c00229{bottom:1063.227067pt;}
.h7_c00229{height:30.324375pt;}
.h5_c00229{height:42.234375pt;}
.h8_c00229{height:46.890469pt;}
.h1_c00229{height:47.020937pt;}
.h2_c00229{height:56.156250pt;}
.h3_c00229{height:56.312500pt;}
.h4_c00229{height:61.343906pt;}
.h6_c00229{height:85.265625pt;}
.h0_c00229{height:1122.666667pt;}
.w1_c00229{width:793.333333pt;}
.w0_c00229{width:793.626667pt;}
.x0_c00229{left:0.000000pt;}
.x4_c00229{left:113.440000pt;}
.x1_c00229{left:577.440000pt;}
.x5_c00229{left:622.400000pt;}
.x3_c00229{left:656.400000pt;}
.x2_c00229{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5943c1acdf0bd6864f7c4560.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.095703;font-style:normal;font-weight:normal;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_e43142a3335d236a30164b6b.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.093262;font-style:normal;font-weight:normal;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_97e273a964c5e7792aec0701.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:1.104004;font-style:normal;font-weight:normal;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_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;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_c00230;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff5_c00230{font-family:ff5_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;}
.m0_c00230{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.lsc_c00230{letter-spacing:-0.102204px;}
.ls10_c00230{letter-spacing:-0.057600px;}
.lsf_c00230{letter-spacing:-0.043200px;}
.lse_c00230{letter-spacing:-0.041940px;}
.ls12_c00230{letter-spacing:-0.036000px;}
.ls14_c00230{letter-spacing:-0.028800px;}
.ls15_c00230{letter-spacing:-0.021600px;}
.ls13_c00230{letter-spacing:-0.014400px;}
.ls11_c00230{letter-spacing:-0.007200px;}
.lsd_c00230{letter-spacing:0.000000px;}
.ls4_c00230{letter-spacing:0.007200px;}
.ls2_c00230{letter-spacing:0.014400px;}
.ls9_c00230{letter-spacing:0.021600px;}
.ls1_c00230{letter-spacing:0.028800px;}
.ls5_c00230{letter-spacing:0.036000px;}
.ls0_c00230{letter-spacing:0.041940px;}
.lsb_c00230{letter-spacing:0.043200px;}
.ls8_c00230{letter-spacing:0.050400px;}
.ls7_c00230{letter-spacing:0.057600px;}
.ls6_c00230{letter-spacing:0.079200px;}
.lsa_c00230{letter-spacing:0.100800px;}
.ls3_c00230{letter-spacing:54.864000px;}
.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:-72.000000px;}
.ws3_c00230{word-spacing:-0.021600px;}
.ws2_c00230{word-spacing:0.000000px;}
.ws1_c00230{word-spacing:0.192384px;}
._9_c00230{margin-left:-5.472000px;}
._3_c00230{margin-left:-3.967200px;}
._4_c00230{margin-left:-2.692800px;}
._1_c00230{margin-left:-1.152000px;}
._0_c00230{width:1.034064px;}
._2_c00230{width:2.498400px;}
._8_c00230{width:4.164336px;}
._5_c00230{width:11.109600px;}
._c_c00230{width:19.080000px;}
._d_c00230{width:23.371200px;}
._a_c00230{width:24.897600px;}
._b_c00230{width:26.409600px;}
._6_c00230{width:32.025600px;}
._7_c00230{width:33.307200px;}
.fc1_c00230{color:rgb(0,0,0);}
.fc0_c00230{color:rgb(32,31,30);}
.fs0_c00230{font-size:60.120000px;}
.fs1_c00230{font-size:72.000000px;}
.fs3_c00230{font-size:83.880000px;}
.fs2_c00230{font-size:108.000000px;}
.y0_c00230{bottom:0.000000px;}
.y5_c00230{bottom:57.360450px;}
.y4_c00230{bottom:78.060450px;}
.y23_c00230{bottom:143.040450px;}
.y22_c00230{bottom:174.180450px;}
.y21_c00230{bottom:205.230450px;}
.y20_c00230{bottom:236.190450px;}
.y1f_c00230{bottom:280.560450px;}
.y1e_c00230{bottom:312.960450px;}
.y1d_c00230{bottom:343.920450px;}
.y1c_c00230{bottom:376.320450px;}
.y1b_c00230{bottom:407.370450px;}
.y1a_c00230{bottom:438.330450px;}
.y19_c00230{bottom:470.730450px;}
.y18_c00230{bottom:501.780450px;}
.y17_c00230{bottom:532.830450px;}
.y16_c00230{bottom:572.610450px;}
.y15_c00230{bottom:603.660450px;}
.y14_c00230{bottom:639.300450px;}
.y13_c00230{bottom:661.530450px;}
.y12_c00230{bottom:704.640450px;}
.y11_c00230{bottom:735.780450px;}
.y10_c00230{bottom:766.830450px;}
.yf_c00230{bottom:802.380450px;}
.ye_c00230{bottom:824.610450px;}
.yd_c00230{bottom:867.810450px;}
.yc_c00230{bottom:910.830450px;}
.yb_c00230{bottom:941.970450px;}
.ya_c00230{bottom:973.020450px;}
.y9_c00230{bottom:1007.220450px;}
.y8_c00230{bottom:1040.520450px;}
.y7_c00230{bottom:1077.780450px;}
.y6_c00230{bottom:1102.800450px;}
.y3_c00230{bottom:1132.140450px;}
.y2_c00230{bottom:1165.441023px;}
.y1_c00230{bottom:1196.040600px;}
.h1_c00230{height:52.898555px;}
.h2_c00230{height:63.175781px;}
.h5_c00230{height:63.351562px;}
.h6_c00230{height:64.546875px;}
.h4_c00230{height:74.500840px;}
.h3_c00230{height:95.923828px;}
.h0_c00230{height:1263.000000px;}
.w1_c00230{width:892.500000px;}
.w0_c00230{width:892.830000px;}
.x0_c00230{left:0.000000px;}
.x1_c00230{left:127.620000px;}
.x3_c00230{left:154.620000px;}
.x4_c00230{left:181.620000px;}
.x2_c00230{left:738.450000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.lsc_c00230{letter-spacing:-0.090848pt;}
.ls10_c00230{letter-spacing:-0.051200pt;}
.lsf_c00230{letter-spacing:-0.038400pt;}
.lse_c00230{letter-spacing:-0.037280pt;}
.ls12_c00230{letter-spacing:-0.032000pt;}
.ls14_c00230{letter-spacing:-0.025600pt;}
.ls15_c00230{letter-spacing:-0.019200pt;}
.ls13_c00230{letter-spacing:-0.012800pt;}
.ls11_c00230{letter-spacing:-0.006400pt;}
.lsd_c00230{letter-spacing:0.000000pt;}
.ls4_c00230{letter-spacing:0.006400pt;}
.ls2_c00230{letter-spacing:0.012800pt;}
.ls9_c00230{letter-spacing:0.019200pt;}
.ls1_c00230{letter-spacing:0.025600pt;}
.ls5_c00230{letter-spacing:0.032000pt;}
.ls0_c00230{letter-spacing:0.037280pt;}
.lsb_c00230{letter-spacing:0.038400pt;}
.ls8_c00230{letter-spacing:0.044800pt;}
.ls7_c00230{letter-spacing:0.051200pt;}
.ls6_c00230{letter-spacing:0.070400pt;}
.lsa_c00230{letter-spacing:0.089600pt;}
.ls3_c00230{letter-spacing:48.768000pt;}
.ws0_c00230{word-spacing:-64.000000pt;}
.ws3_c00230{word-spacing:-0.019200pt;}
.ws2_c00230{word-spacing:0.000000pt;}
.ws1_c00230{word-spacing:0.171008pt;}
._9_c00230{margin-left:-4.864000pt;}
._3_c00230{margin-left:-3.526400pt;}
._4_c00230{margin-left:-2.393600pt;}
._1_c00230{margin-left:-1.024000pt;}
._0_c00230{width:0.919168pt;}
._2_c00230{width:2.220800pt;}
._8_c00230{width:3.701632pt;}
._5_c00230{width:9.875200pt;}
._c_c00230{width:16.960000pt;}
._d_c00230{width:20.774400pt;}
._a_c00230{width:22.131200pt;}
._b_c00230{width:23.475200pt;}
._6_c00230{width:28.467200pt;}
._7_c00230{width:29.606400pt;}
.fs0_c00230{font-size:53.440000pt;}
.fs1_c00230{font-size:64.000000pt;}
.fs3_c00230{font-size:74.560000pt;}
.fs2_c00230{font-size:96.000000pt;}
.y0_c00230{bottom:0.000000pt;}
.y5_c00230{bottom:50.987067pt;}
.y4_c00230{bottom:69.387067pt;}
.y23_c00230{bottom:127.147067pt;}
.y22_c00230{bottom:154.827067pt;}
.y21_c00230{bottom:182.427067pt;}
.y20_c00230{bottom:209.947067pt;}
.y1f_c00230{bottom:249.387067pt;}
.y1e_c00230{bottom:278.187067pt;}
.y1d_c00230{bottom:305.707067pt;}
.y1c_c00230{bottom:334.507067pt;}
.y1b_c00230{bottom:362.107067pt;}
.y1a_c00230{bottom:389.627067pt;}
.y19_c00230{bottom:418.427067pt;}
.y18_c00230{bottom:446.027067pt;}
.y17_c00230{bottom:473.627067pt;}
.y16_c00230{bottom:508.987067pt;}
.y15_c00230{bottom:536.587067pt;}
.y14_c00230{bottom:568.267067pt;}
.y13_c00230{bottom:588.027067pt;}
.y12_c00230{bottom:626.347067pt;}
.y11_c00230{bottom:654.027067pt;}
.y10_c00230{bottom:681.627067pt;}
.yf_c00230{bottom:713.227067pt;}
.ye_c00230{bottom:732.987067pt;}
.yd_c00230{bottom:771.387067pt;}
.yc_c00230{bottom:809.627067pt;}
.yb_c00230{bottom:837.307067pt;}
.ya_c00230{bottom:864.907067pt;}
.y9_c00230{bottom:895.307067pt;}
.y8_c00230{bottom:924.907067pt;}
.y7_c00230{bottom:958.027067pt;}
.y6_c00230{bottom:980.267067pt;}
.y3_c00230{bottom:1006.347067pt;}
.y2_c00230{bottom:1035.947576pt;}
.y1_c00230{bottom:1063.147200pt;}
.h1_c00230{height:47.020937pt;}
.h2_c00230{height:56.156250pt;}
.h5_c00230{height:56.312500pt;}
.h6_c00230{height:57.375000pt;}
.h4_c00230{height:66.222969pt;}
.h3_c00230{height:85.265625pt;}
.h0_c00230{height:1122.666667pt;}
.w1_c00230{width:793.333333pt;}
.w0_c00230{width:793.626667pt;}
.x0_c00230{left:0.000000pt;}
.x1_c00230{left:113.440000pt;}
.x3_c00230{left:137.440000pt;}
.x4_c00230{left:161.440000pt;}
.x2_c00230{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.095703;font-style:normal;font-weight:normal;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_b292a456172cabb331938d55.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.093262;font-style:normal;font-weight:normal;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_b0c7f58700d8a5efbe7eff13.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:1.104004;font-style:normal;font-weight:normal;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_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff4_c00231{font-family:ff4_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;}
@font-face{font-family:ff5_c00231;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff5_c00231{font-family:ff5_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;}
.m0_c00231{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls12_c00231{letter-spacing:-0.079200px;}
.lsd_c00231{letter-spacing:-0.057600px;}
.lsa_c00231{letter-spacing:-0.048096px;}
.ls13_c00231{letter-spacing:-0.043200px;}
.lse_c00231{letter-spacing:-0.036000px;}
.ls15_c00231{letter-spacing:-0.028800px;}
.ls10_c00231{letter-spacing:-0.021600px;}
.ls14_c00231{letter-spacing:-0.014400px;}
.lsc_c00231{letter-spacing:-0.007200px;}
.lsb_c00231{letter-spacing:0.000000px;}
.ls2_c00231{letter-spacing:0.007200px;}
.ls3_c00231{letter-spacing:0.014400px;}
.ls8_c00231{letter-spacing:0.021600px;}
.ls7_c00231{letter-spacing:0.028800px;}
.ls4_c00231{letter-spacing:0.036000px;}
.ls9_c00231{letter-spacing:0.043200px;}
.ls5_c00231{letter-spacing:0.064800px;}
.ls0_c00231{letter-spacing:0.075492px;}
.ls6_c00231{letter-spacing:0.151200px;}
.lsf_c00231{letter-spacing:13.320000px;}
.ls11_c00231{letter-spacing:26.640000px;}
.ls1_c00231{letter-spacing:54.864000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:-72.000000px;}
.ws2_c00231{word-spacing:0.000000px;}
.ws1_c00231{word-spacing:0.138276px;}
._9_c00231{margin-left:-27.374400px;}
._3_c00231{margin-left:-13.514400px;}
._4_c00231{margin-left:-12.513600px;}
._1_c00231{margin-left:-1.000800px;}
._0_c00231{width:1.807200px;}
._7_c00231{width:3.247200px;}
._c_c00231{width:4.341600px;}
._a_c00231{width:5.371200px;}
._b_c00231{width:6.451200px;}
._6_c00231{width:9.324000px;}
._5_c00231{width:11.988000px;}
._2_c00231{width:13.312800px;}
._8_c00231{width:26.596800px;}
.fc0_c00231{color:rgb(0,0,0);}
.fs0_c00231{font-size:60.120000px;}
.fs1_c00231{font-size:72.000000px;}
.fs2_c00231{font-size:83.880000px;}
.fs3_c00231{font-size:108.000000px;}
.y0_c00231{bottom:0.000000px;}
.y6_c00231{bottom:57.360450px;}
.y5_c00231{bottom:78.060450px;}
.y25_c00231{bottom:120.900450px;}
.y24_c00231{bottom:155.190450px;}
.y23_c00231{bottom:189.570450px;}
.y22_c00231{bottom:214.590450px;}
.y21_c00231{bottom:263.370450px;}
.y20_c00231{bottom:297.750450px;}
.y1f_c00231{bottom:332.040450px;}
.y1e_c00231{bottom:366.420450px;}
.y1d_c00231{bottom:400.710450px;}
.y1c_c00231{bottom:435.090450px;}
.y1b_c00231{bottom:469.380450px;}
.y1a_c00231{bottom:494.400450px;}
.y19_c00231{bottom:543.270450px;}
.y18_c00231{bottom:586.290450px;}
.y17_c00231{bottom:617.340450px;}
.y16_c00231{bottom:649.740450px;}
.y15_c00231{bottom:680.790450px;}
.y14_c00231{bottom:711.840450px;}
.y13_c00231{bottom:742.890450px;}
.y12_c00231{bottom:775.200450px;}
.y11_c00231{bottom:806.250450px;}
.y10_c00231{bottom:837.300450px;}
.yf_c00231{bottom:868.350450px;}
.ye_c00231{bottom:900.750450px;}
.yd_c00231{bottom:931.800450px;}
.yc_c00231{bottom:962.760450px;}
.yb_c00231{bottom:995.160450px;}
.ya_c00231{bottom:1026.120450px;}
.y9_c00231{bottom:1049.520450px;}
.y8_c00231{bottom:1082.730450px;}
.y7_c00231{bottom:1124.220450px;}
.y4_c00231{bottom:1144.380657px;}
.y3_c00231{bottom:1161.660648px;}
.y2_c00231{bottom:1178.850459px;}
.y1_c00231{bottom:1196.130450px;}
.h1_c00231{height:52.898555px;}
.h2_c00231{height:63.175781px;}
.h4_c00231{height:64.546875px;}
.h3_c00231{height:74.500840px;}
.h5_c00231{height:95.923828px;}
.h0_c00231{height:1263.000000px;}
.w1_c00231{width:892.500000px;}
.w0_c00231{width:892.830000px;}
.x0_c00231{left:0.000000px;}
.x4_c00231{left:127.620000px;}
.x5_c00231{left:181.620000px;}
.x6_c00231{left:208.620000px;}
.x1_c00231{left:649.620000px;}
.x3_c00231{left:738.450000px;}
.x2_c00231{left:765.450198px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls12_c00231{letter-spacing:-0.070400pt;}
.lsd_c00231{letter-spacing:-0.051200pt;}
.lsa_c00231{letter-spacing:-0.042752pt;}
.ls13_c00231{letter-spacing:-0.038400pt;}
.lse_c00231{letter-spacing:-0.032000pt;}
.ls15_c00231{letter-spacing:-0.025600pt;}
.ls10_c00231{letter-spacing:-0.019200pt;}
.ls14_c00231{letter-spacing:-0.012800pt;}
.lsc_c00231{letter-spacing:-0.006400pt;}
.lsb_c00231{letter-spacing:0.000000pt;}
.ls2_c00231{letter-spacing:0.006400pt;}
.ls3_c00231{letter-spacing:0.012800pt;}
.ls8_c00231{letter-spacing:0.019200pt;}
.ls7_c00231{letter-spacing:0.025600pt;}
.ls4_c00231{letter-spacing:0.032000pt;}
.ls9_c00231{letter-spacing:0.038400pt;}
.ls5_c00231{letter-spacing:0.057600pt;}
.ls0_c00231{letter-spacing:0.067104pt;}
.ls6_c00231{letter-spacing:0.134400pt;}
.lsf_c00231{letter-spacing:11.840000pt;}
.ls11_c00231{letter-spacing:23.680000pt;}
.ls1_c00231{letter-spacing:48.768000pt;}
.ws0_c00231{word-spacing:-64.000000pt;}
.ws2_c00231{word-spacing:0.000000pt;}
.ws1_c00231{word-spacing:0.122912pt;}
._9_c00231{margin-left:-24.332800pt;}
._3_c00231{margin-left:-12.012800pt;}
._4_c00231{margin-left:-11.123200pt;}
._1_c00231{margin-left:-0.889600pt;}
._0_c00231{width:1.606400pt;}
._7_c00231{width:2.886400pt;}
._c_c00231{width:3.859200pt;}
._a_c00231{width:4.774400pt;}
._b_c00231{width:5.734400pt;}
._6_c00231{width:8.288000pt;}
._5_c00231{width:10.656000pt;}
._2_c00231{width:11.833600pt;}
._8_c00231{width:23.641600pt;}
.fs0_c00231{font-size:53.440000pt;}
.fs1_c00231{font-size:64.000000pt;}
.fs2_c00231{font-size:74.560000pt;}
.fs3_c00231{font-size:96.000000pt;}
.y0_c00231{bottom:0.000000pt;}
.y6_c00231{bottom:50.987067pt;}
.y5_c00231{bottom:69.387067pt;}
.y25_c00231{bottom:107.467067pt;}
.y24_c00231{bottom:137.947067pt;}
.y23_c00231{bottom:168.507067pt;}
.y22_c00231{bottom:190.747067pt;}
.y21_c00231{bottom:234.107067pt;}
.y20_c00231{bottom:264.667067pt;}
.y1f_c00231{bottom:295.147067pt;}
.y1e_c00231{bottom:325.707067pt;}
.y1d_c00231{bottom:356.187067pt;}
.y1c_c00231{bottom:386.747067pt;}
.y1b_c00231{bottom:417.227067pt;}
.y1a_c00231{bottom:439.467067pt;}
.y19_c00231{bottom:482.907067pt;}
.y18_c00231{bottom:521.147067pt;}
.y17_c00231{bottom:548.747067pt;}
.y16_c00231{bottom:577.547067pt;}
.y15_c00231{bottom:605.147067pt;}
.y14_c00231{bottom:632.747067pt;}
.y13_c00231{bottom:660.347067pt;}
.y12_c00231{bottom:689.067067pt;}
.y11_c00231{bottom:716.667067pt;}
.y10_c00231{bottom:744.267067pt;}
.yf_c00231{bottom:771.867067pt;}
.ye_c00231{bottom:800.667067pt;}
.yd_c00231{bottom:828.267067pt;}
.yc_c00231{bottom:855.787067pt;}
.yb_c00231{bottom:884.587067pt;}
.ya_c00231{bottom:912.107067pt;}
.y9_c00231{bottom:932.907067pt;}
.y8_c00231{bottom:962.427067pt;}
.y7_c00231{bottom:999.307067pt;}
.y4_c00231{bottom:1017.227251pt;}
.y3_c00231{bottom:1032.587243pt;}
.y2_c00231{bottom:1047.867075pt;}
.y1_c00231{bottom:1063.227067pt;}
.h1_c00231{height:47.020937pt;}
.h2_c00231{height:56.156250pt;}
.h4_c00231{height:57.375000pt;}
.h3_c00231{height:66.222969pt;}
.h5_c00231{height:85.265625pt;}
.h0_c00231{height:1122.666667pt;}
.w1_c00231{width:793.333333pt;}
.w0_c00231{width:793.626667pt;}
.x0_c00231{left:0.000000pt;}
.x4_c00231{left:113.440000pt;}
.x5_c00231{left:161.440000pt;}
.x6_c00231{left:185.440000pt;}
.x1_c00231{left:577.440000pt;}
.x3_c00231{left:656.400000pt;}
.x2_c00231{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c4ffc2bb79e377bcadcd5b9.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.095703;font-style:normal;font-weight:normal;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_0ecb1b763554d1597931e105.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.093262;font-style:normal;font-weight:normal;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_121d4b44aaab366b5a178bb4.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:1.104004;font-style:normal;font-weight:normal;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_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff4_c00232{font-family:ff4_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;}
@font-face{font-family:ff5_c00232;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff5_c00232{font-family:ff5_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;}
.m0_c00232{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.lsc_c00232{letter-spacing:-0.102204px;}
.lsf_c00232{letter-spacing:-0.086400px;}
.ls12_c00232{letter-spacing:-0.028800px;}
.ls13_c00232{letter-spacing:-0.021600px;}
.ls11_c00232{letter-spacing:-0.014400px;}
.lse_c00232{letter-spacing:-0.010800px;}
.ls10_c00232{letter-spacing:-0.007200px;}
.lsd_c00232{letter-spacing:0.000000px;}
.ls6_c00232{letter-spacing:0.007200px;}
.ls9_c00232{letter-spacing:0.014400px;}
.ls4_c00232{letter-spacing:0.021600px;}
.ls2_c00232{letter-spacing:0.028800px;}
.ls5_c00232{letter-spacing:0.036000px;}
.ls1_c00232{letter-spacing:0.043200px;}
.ls3_c00232{letter-spacing:0.057600px;}
.lsa_c00232{letter-spacing:0.072000px;}
.ls0_c00232{letter-spacing:0.075492px;}
.ls7_c00232{letter-spacing:0.093600px;}
.ls8_c00232{letter-spacing:0.108000px;}
.lsb_c00232{letter-spacing:54.864000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:-72.000000px;}
.ws2_c00232{word-spacing:0.000000px;}
.ws3_c00232{word-spacing:0.093600px;}
.ws1_c00232{word-spacing:0.192384px;}
._3_c00232{margin-left:-4.219200px;}
._4_c00232{margin-left:-2.980800px;}
._1_c00232{margin-left:-1.123200px;}
._0_c00232{width:1.034064px;}
._8_c00232{width:2.073600px;}
._5_c00232{width:3.196800px;}
._6_c00232{width:4.298400px;}
._7_c00232{width:5.309136px;}
._2_c00232{width:9.338400px;}
.fc1_c00232{color:rgb(0,0,0);}
.fc0_c00232{color:rgb(32,31,30);}
.fs0_c00232{font-size:60.120000px;}
.fs1_c00232{font-size:72.000000px;}
.fs3_c00232{font-size:83.880000px;}
.fs2_c00232{font-size:108.000000px;}
.y0_c00232{bottom:0.000000px;}
.y5_c00232{bottom:57.360450px;}
.y4_c00232{bottom:78.060450px;}
.y22_c00232{bottom:147.900450px;}
.y21_c00232{bottom:178.950450px;}
.y20_c00232{bottom:223.140450px;}
.y1f_c00232{bottom:266.340450px;}
.y1e_c00232{bottom:309.360450px;}
.y1d_c00232{bottom:340.500450px;}
.y1c_c00232{bottom:371.550450px;}
.y1b_c00232{bottom:414.570450px;}
.y1a_c00232{bottom:445.710450px;}
.y19_c00232{bottom:476.760450px;}
.y18_c00232{bottom:507.810450px;}
.y17_c00232{bottom:550.740450px;}
.y16_c00232{bottom:581.880450px;}
.y15_c00232{bottom:612.930450px;}
.y14_c00232{bottom:643.980450px;}
.y13_c00232{bottom:675.030450px;}
.y12_c00232{bottom:706.080450px;}
.y11_c00232{bottom:740.280450px;}
.y10_c00232{bottom:762.510450px;}
.yf_c00232{bottom:805.710450px;}
.ye_c00232{bottom:848.730450px;}
.yd_c00232{bottom:879.870450px;}
.yc_c00232{bottom:910.920450px;}
.yb_c00232{bottom:941.970450px;}
.ya_c00232{bottom:973.020450px;}
.y9_c00232{bottom:1007.220450px;}
.y8_c00232{bottom:1040.520450px;}
.y7_c00232{bottom:1077.780450px;}
.y6_c00232{bottom:1102.800450px;}
.y3_c00232{bottom:1132.140450px;}
.y2_c00232{bottom:1165.441023px;}
.y1_c00232{bottom:1196.040600px;}
.h1_c00232{height:52.898555px;}
.h2_c00232{height:63.175781px;}
.h5_c00232{height:63.351562px;}
.h6_c00232{height:63.949219px;}
.h7_c00232{height:64.546875px;}
.h4_c00232{height:74.500840px;}
.h3_c00232{height:95.923828px;}
.h0_c00232{height:1263.000000px;}
.w1_c00232{width:892.500000px;}
.w0_c00232{width:892.830000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:127.620000px;}
.x3_c00232{left:154.620000px;}
.x4_c00232{left:181.620000px;}
.x2_c00232{left:738.450000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.lsc_c00232{letter-spacing:-0.090848pt;}
.lsf_c00232{letter-spacing:-0.076800pt;}
.ls12_c00232{letter-spacing:-0.025600pt;}
.ls13_c00232{letter-spacing:-0.019200pt;}
.ls11_c00232{letter-spacing:-0.012800pt;}
.lse_c00232{letter-spacing:-0.009600pt;}
.ls10_c00232{letter-spacing:-0.006400pt;}
.lsd_c00232{letter-spacing:0.000000pt;}
.ls6_c00232{letter-spacing:0.006400pt;}
.ls9_c00232{letter-spacing:0.012800pt;}
.ls4_c00232{letter-spacing:0.019200pt;}
.ls2_c00232{letter-spacing:0.025600pt;}
.ls5_c00232{letter-spacing:0.032000pt;}
.ls1_c00232{letter-spacing:0.038400pt;}
.ls3_c00232{letter-spacing:0.051200pt;}
.lsa_c00232{letter-spacing:0.064000pt;}
.ls0_c00232{letter-spacing:0.067104pt;}
.ls7_c00232{letter-spacing:0.083200pt;}
.ls8_c00232{letter-spacing:0.096000pt;}
.lsb_c00232{letter-spacing:48.768000pt;}
.ws0_c00232{word-spacing:-64.000000pt;}
.ws2_c00232{word-spacing:0.000000pt;}
.ws3_c00232{word-spacing:0.083200pt;}
.ws1_c00232{word-spacing:0.171008pt;}
._3_c00232{margin-left:-3.750400pt;}
._4_c00232{margin-left:-2.649600pt;}
._1_c00232{margin-left:-0.998400pt;}
._0_c00232{width:0.919168pt;}
._8_c00232{width:1.843200pt;}
._5_c00232{width:2.841600pt;}
._6_c00232{width:3.820800pt;}
._7_c00232{width:4.719232pt;}
._2_c00232{width:8.300800pt;}
.fs0_c00232{font-size:53.440000pt;}
.fs1_c00232{font-size:64.000000pt;}
.fs3_c00232{font-size:74.560000pt;}
.fs2_c00232{font-size:96.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y5_c00232{bottom:50.987067pt;}
.y4_c00232{bottom:69.387067pt;}
.y22_c00232{bottom:131.467067pt;}
.y21_c00232{bottom:159.067067pt;}
.y20_c00232{bottom:198.347067pt;}
.y1f_c00232{bottom:236.747067pt;}
.y1e_c00232{bottom:274.987067pt;}
.y1d_c00232{bottom:302.667067pt;}
.y1c_c00232{bottom:330.267067pt;}
.y1b_c00232{bottom:368.507067pt;}
.y1a_c00232{bottom:396.187067pt;}
.y19_c00232{bottom:423.787067pt;}
.y18_c00232{bottom:451.387067pt;}
.y17_c00232{bottom:489.547067pt;}
.y16_c00232{bottom:517.227067pt;}
.y15_c00232{bottom:544.827067pt;}
.y14_c00232{bottom:572.427067pt;}
.y13_c00232{bottom:600.027067pt;}
.y12_c00232{bottom:627.627067pt;}
.y11_c00232{bottom:658.027067pt;}
.y10_c00232{bottom:677.787067pt;}
.yf_c00232{bottom:716.187067pt;}
.ye_c00232{bottom:754.427067pt;}
.yd_c00232{bottom:782.107067pt;}
.yc_c00232{bottom:809.707067pt;}
.yb_c00232{bottom:837.307067pt;}
.ya_c00232{bottom:864.907067pt;}
.y9_c00232{bottom:895.307067pt;}
.y8_c00232{bottom:924.907067pt;}
.y7_c00232{bottom:958.027067pt;}
.y6_c00232{bottom:980.267067pt;}
.y3_c00232{bottom:1006.347067pt;}
.y2_c00232{bottom:1035.947576pt;}
.y1_c00232{bottom:1063.147200pt;}
.h1_c00232{height:47.020937pt;}
.h2_c00232{height:56.156250pt;}
.h5_c00232{height:56.312500pt;}
.h6_c00232{height:56.843750pt;}
.h7_c00232{height:57.375000pt;}
.h4_c00232{height:66.222969pt;}
.h3_c00232{height:85.265625pt;}
.h0_c00232{height:1122.666667pt;}
.w1_c00232{width:793.333333pt;}
.w0_c00232{width:793.626667pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:113.440000pt;}
.x3_c00232{left:137.440000pt;}
.x4_c00232{left:161.440000pt;}
.x2_c00232{left:656.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_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_fa8c9327e97106ae6121482b.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.095703;font-style:normal;font-weight:normal;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_054a9c4c541ef5fbfa52032d.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.093262;font-style:normal;font-weight:normal;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_4c1c5a9db97b0fdf536596fe.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:1.104004;font-style:normal;font-weight:normal;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_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;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_c00233;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff5_c00233{font-family:ff5_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;}
.m0_c00233{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls14_c00233{letter-spacing:-0.057600px;}
.lsd_c00233{letter-spacing:-0.048096px;}
.ls11_c00233{letter-spacing:-0.036000px;}
.ls12_c00233{letter-spacing:-0.028800px;}
.lsf_c00233{letter-spacing:-0.014400px;}
.ls10_c00233{letter-spacing:-0.007200px;}
.lse_c00233{letter-spacing:0.000000px;}
.ls3_c00233{letter-spacing:0.007200px;}
.ls7_c00233{letter-spacing:0.014400px;}
.ls5_c00233{letter-spacing:0.021600px;}
.ls8_c00233{letter-spacing:0.028800px;}
.ls9_c00233{letter-spacing:0.036000px;}
.ls6_c00233{letter-spacing:0.043200px;}
.ls4_c00233{letter-spacing:0.050400px;}
.ls2_c00233{letter-spacing:0.057600px;}
.lsb_c00233{letter-spacing:0.064800px;}
.ls1_c00233{letter-spacing:0.079200px;}
.lsc_c00233{letter-spacing:0.093600px;}
.lsa_c00233{letter-spacing:0.100800px;}
.ls13_c00233{letter-spacing:2.880000px;}
.ls0_c00233{letter-spacing:54.864000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00233{word-spacing:-72.000000px;}
.ws2_c00233{word-spacing:0.000000px;}
.ws3_c00233{word-spacing:0.014400px;}
.ws1_c00233{word-spacing:0.138276px;}
._9_c00233{margin-left:-4.348800px;}
._1_c00233{margin-left:-2.952000px;}
._0_c00233{margin-left:-1.879200px;}
._2_c00233{width:1.000800px;}
._d_c00233{width:2.052000px;}
._7_c00233{width:3.290400px;}
._8_c00233{width:4.406400px;}
._3_c00233{width:11.109600px;}
._4_c00233{width:12.117600px;}
._c_c00233{width:19.080000px;}
._a_c00233{width:24.897600px;}
._b_c00233{width:26.409600px;}
._5_c00233{width:32.025600px;}
._6_c00233{width:33.307200px;}
.fc0_c00233{color:rgb(0,0,0);}
.fs0_c00233{font-size:60.120000px;}
.fs1_c00233{font-size:72.000000px;}
.y0_c00233{bottom:0.000000px;}
.y6_c00233{bottom:57.360450px;}
.y5_c00233{bottom:78.060450px;}
.y22_c00233{bottom:175.980450px;}
.y21_c00233{bottom:206.940450px;}
.y20_c00233{bottom:251.220450px;}
.y1f_c00233{bottom:294.330450px;}
.y1e_c00233{bottom:325.470450px;}
.y1d_c00233{bottom:356.430450px;}
.y1c_c00233{bottom:399.270450px;}
.y1b_c00233{bottom:442.470450px;}
.y1a_c00233{bottom:473.610450px;}
.y19_c00233{bottom:507.900450px;}
.y18_c00233{bottom:530.130450px;}
.y17_c00233{bottom:568.740450px;}
.y16_c00233{bottom:607.260450px;}
.y15_c00233{bottom:638.400450px;}
.y14_c00233{bottom:669.450450px;}
.y13_c00233{bottom:713.730450px;}
.y12_c00233{bottom:746.130450px;}
.y11_c00233{bottom:777.180450px;}
.y10_c00233{bottom:809.580450px;}
.yf_c00233{bottom:840.630450px;}
.ye_c00233{bottom:871.590450px;}
.yd_c00233{bottom:903.990450px;}
.yc_c00233{bottom:935.040450px;}
.yb_c00233{bottom:966.000450px;}
.ya_c00233{bottom:1005.780450px;}
.y9_c00233{bottom:1036.920450px;}
.y8_c00233{bottom:1081.020450px;}
.y7_c00233{bottom:1124.040450px;}
.y4_c00233{bottom:1144.380657px;}
.y3_c00233{bottom:1161.660648px;}
.y2_c00233{bottom:1178.850459px;}
.y1_c00233{bottom:1196.130450px;}
.h1_c00233{height:52.898555px;}
.h2_c00233{height:63.175781px;}
.h5_c00233{height:63.351562px;}
.h3_c00233{height:63.949219px;}
.h4_c00233{height:64.546875px;}
.h0_c00233{height:1263.000000px;}
.w1_c00233{width:892.500000px;}
.w0_c00233{width:892.830000px;}
.x0_c00233{left:0.000000px;}
.x4_c00233{left:127.620000px;}
.x5_c00233{left:154.620000px;}
.x6_c00233{left:181.620000px;}
.x7_c00233{left:208.620000px;}
.x1_c00233{left:649.620000px;}
.x3_c00233{left:738.450000px;}
.x2_c00233{left:765.450198px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls14_c00233{letter-spacing:-0.051200pt;}
.lsd_c00233{letter-spacing:-0.042752pt;}
.ls11_c00233{letter-spacing:-0.032000pt;}
.ls12_c00233{letter-spacing:-0.025600pt;}
.lsf_c00233{letter-spacing:-0.012800pt;}
.ls10_c00233{letter-spacing:-0.006400pt;}
.lse_c00233{letter-spacing:0.000000pt;}
.ls3_c00233{letter-spacing:0.006400pt;}
.ls7_c00233{letter-spacing:0.012800pt;}
.ls5_c00233{letter-spacing:0.019200pt;}
.ls8_c00233{letter-spacing:0.025600pt;}
.ls9_c00233{letter-spacing:0.032000pt;}
.ls6_c00233{letter-spacing:0.038400pt;}
.ls4_c00233{letter-spacing:0.044800pt;}
.ls2_c00233{letter-spacing:0.051200pt;}
.lsb_c00233{letter-spacing:0.057600pt;}
.ls1_c00233{letter-spacing:0.070400pt;}
.lsc_c00233{letter-spacing:0.083200pt;}
.lsa_c00233{letter-spacing:0.089600pt;}
.ls13_c00233{letter-spacing:2.560000pt;}
.ls0_c00233{letter-spacing:48.768000pt;}
.ws0_c00233{word-spacing:-64.000000pt;}
.ws2_c00233{word-spacing:0.000000pt;}
.ws3_c00233{word-spacing:0.012800pt;}
.ws1_c00233{word-spacing:0.122912pt;}
._9_c00233{margin-left:-3.865600pt;}
._1_c00233{margin-left:-2.624000pt;}
._0_c00233{margin-left:-1.670400pt;}
._2_c00233{width:0.889600pt;}
._d_c00233{width:1.824000pt;}
._7_c00233{width:2.924800pt;}
._8_c00233{width:3.916800pt;}
._3_c00233{width:9.875200pt;}
._4_c00233{width:10.771200pt;}
._c_c00233{width:16.960000pt;}
._a_c00233{width:22.131200pt;}
._b_c00233{width:23.475200pt;}
._5_c00233{width:28.467200pt;}
._6_c00233{width:29.606400pt;}
.fs0_c00233{font-size:53.440000pt;}
.fs1_c00233{font-size:64.000000pt;}
.y0_c00233{bottom:0.000000pt;}
.y6_c00233{bottom:50.987067pt;}
.y5_c00233{bottom:69.387067pt;}
.y22_c00233{bottom:156.427067pt;}
.y21_c00233{bottom:183.947067pt;}
.y20_c00233{bottom:223.307067pt;}
.y1f_c00233{bottom:261.627067pt;}
.y1e_c00233{bottom:289.307067pt;}
.y1d_c00233{bottom:316.827067pt;}
.y1c_c00233{bottom:354.907067pt;}
.y1b_c00233{bottom:393.307067pt;}
.y1a_c00233{bottom:420.987067pt;}
.y19_c00233{bottom:451.467067pt;}
.y18_c00233{bottom:471.227067pt;}
.y17_c00233{bottom:505.547067pt;}
.y16_c00233{bottom:539.787067pt;}
.y15_c00233{bottom:567.467067pt;}
.y14_c00233{bottom:595.067067pt;}
.y13_c00233{bottom:634.427067pt;}
.y12_c00233{bottom:663.227067pt;}
.y11_c00233{bottom:690.827067pt;}
.y10_c00233{bottom:719.627067pt;}
.yf_c00233{bottom:747.227067pt;}
.ye_c00233{bottom:774.747067pt;}
.yd_c00233{bottom:803.547067pt;}
.yc_c00233{bottom:831.147067pt;}
.yb_c00233{bottom:858.667067pt;}
.ya_c00233{bottom:894.027067pt;}
.y9_c00233{bottom:921.707067pt;}
.y8_c00233{bottom:960.907067pt;}
.y7_c00233{bottom:999.147067pt;}
.y4_c00233{bottom:1017.227251pt;}
.y3_c00233{bottom:1032.587243pt;}
.y2_c00233{bottom:1047.867075pt;}
.y1_c00233{bottom:1063.227067pt;}
.h1_c00233{height:47.020937pt;}
.h2_c00233{height:56.156250pt;}
.h5_c00233{height:56.312500pt;}
.h3_c00233{height:56.843750pt;}
.h4_c00233{height:57.375000pt;}
.h0_c00233{height:1122.666667pt;}
.w1_c00233{width:793.333333pt;}
.w0_c00233{width:793.626667pt;}
.x0_c00233{left:0.000000pt;}
.x4_c00233{left:113.440000pt;}
.x5_c00233{left:137.440000pt;}
.x6_c00233{left:161.440000pt;}
.x7_c00233{left:185.440000pt;}
.x1_c00233{left:577.440000pt;}
.x3_c00233{left:656.400000pt;}
.x2_c00233{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.095703;font-style:normal;font-weight:normal;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_f306cb5a08a847fe26cd69b1.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00234;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;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_c00234;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff4_c00234{font-family:ff4_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:ff5_c00234;src:url('chunks/assets/font_c4894e74861e2e29e611eeea.woff2')format("woff");}.ff5_c00234{font-family:ff5_c00234;line-height:1.104004;font-style: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;}
.lsc_c00234{letter-spacing:-0.102204px;}
.ls13_c00234{letter-spacing:-0.072000px;}
.ls14_c00234{letter-spacing:-0.043200px;}
.lse_c00234{letter-spacing:-0.036000px;}
.ls16_c00234{letter-spacing:-0.028800px;}
.ls10_c00234{letter-spacing:-0.021600px;}
.ls15_c00234{letter-spacing:-0.014400px;}
.ls11_c00234{letter-spacing:-0.007200px;}
.lsd_c00234{letter-spacing:0.000000px;}
.ls1_c00234{letter-spacing:0.007200px;}
.ls2_c00234{letter-spacing:0.014400px;}
.ls7_c00234{letter-spacing:0.021600px;}
.ls6_c00234{letter-spacing:0.028800px;}
.ls3_c00234{letter-spacing:0.036000px;}
.ls8_c00234{letter-spacing:0.043200px;}
.lsb_c00234{letter-spacing:0.050400px;}
.lsa_c00234{letter-spacing:0.057600px;}
.ls4_c00234{letter-spacing:0.064800px;}
.ls9_c00234{letter-spacing:0.075492px;}
.ls5_c00234{letter-spacing:0.151200px;}
.ls19_c00234{letter-spacing:4.968000px;}
.ls18_c00234{letter-spacing:6.480000px;}
.ls17_c00234{letter-spacing:9.720000px;}
.lsf_c00234{letter-spacing:13.320000px;}
.ls12_c00234{letter-spacing:26.640000px;}
.ls0_c00234{letter-spacing:54.864000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00234{word-spacing:-72.000000px;}
.ws2_c00234{word-spacing:0.000000px;}
.ws1_c00234{word-spacing:0.192384px;}
._9_c00234{margin-left:-27.374400px;}
._2_c00234{margin-left:-13.514400px;}
._3_c00234{margin-left:-12.513600px;}
._11_c00234{margin-left:-9.777600px;}
._12_c00234{margin-left:-8.582400px;}
._13_c00234{margin-left:-6.868800px;}
._14_c00234{margin-left:-5.709600px;}
._17_c00234{margin-left:-4.600800px;}
._15_c00234{margin-left:-2.340000px;}
._4_c00234{margin-left:-1.015200px;}
._0_c00234{width:1.034064px;}
._d_c00234{width:2.217600px;}
._7_c00234{width:3.247200px;}
._c_c00234{width:4.341600px;}
._a_c00234{width:5.371200px;}
._b_c00234{width:6.451200px;}
._6_c00234{width:9.324000px;}
._e_c00234{width:10.418400px;}
._5_c00234{width:12.002400px;}
._1_c00234{width:13.312800px;}
._f_c00234{width:14.385600px;}
._10_c00234{width:15.681600px;}
._16_c00234{width:19.425600px;}
._8_c00234{width:26.596800px;}
.fc1_c00234{color:rgb(0,0,0);}
.fc0_c00234{color:rgb(32,31,30);}
.fs0_c00234{font-size:60.120000px;}
.fs1_c00234{font-size:72.000000px;}
.fs2_c00234{font-size:83.880000px;}
.y0_c00234{bottom:0.000000px;}
.y5_c00234{bottom:57.360450px;}
.y4_c00234{bottom:78.060450px;}
.y24_c00234{bottom:130.260450px;}
.y23_c00234{bottom:161.400450px;}
.y22_c00234{bottom:192.450450px;}
.y21_c00234{bottom:223.500450px;}
.y20_c00234{bottom:254.550450px;}
.y1f_c00234{bottom:285.600450px;}
.y1e_c00234{bottom:328.530450px;}
.y1d_c00234{bottom:359.670450px;}
.y1c_c00234{bottom:390.720450px;}
.y1b_c00234{bottom:421.770450px;}
.y1a_c00234{bottom:464.700450px;}
.y19_c00234{bottom:495.840450px;}
.y18_c00234{bottom:526.890450px;}
.y17_c00234{bottom:557.940450px;}
.y16_c00234{bottom:588.990450px;}
.y15_c00234{bottom:623.280450px;}
.y14_c00234{bottom:656.490450px;}
.y13_c00234{bottom:702.570450px;}
.y12_c00234{bottom:733.710450px;}
.y11_c00234{bottom:764.670450px;}
.y10_c00234{bottom:797.070450px;}
.yf_c00234{bottom:828.120450px;}
.ye_c00234{bottom:859.170450px;}
.yd_c00234{bottom:890.130450px;}
.yc_c00234{bottom:922.530450px;}
.yb_c00234{bottom:953.580450px;}
.ya_c00234{bottom:984.630450px;}
.y9_c00234{bottom:1015.590450px;}
.y8_c00234{bottom:1047.990450px;}
.y7_c00234{bottom:1079.040450px;}
.y6_c00234{bottom:1110.090450px;}
.y3_c00234{bottom:1132.140450px;}
.y2_c00234{bottom:1165.441023px;}
.y1_c00234{bottom:1196.040600px;}
.h1_c00234{height:52.898555px;}
.h2_c00234{height:63.175781px;}
.h3_c00234{height:64.546875px;}
.h4_c00234{height:74.500840px;}
.h0_c00234{height:1263.000000px;}
.w1_c00234{width:892.500000px;}
.w0_c00234{width:892.830000px;}
.x0_c00234{left:0.000000px;}
.x1_c00234{left:127.620000px;}
.x3_c00234{left:181.620000px;}
.x4_c00234{left:208.620000px;}
.x2_c00234{left:738.450000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.lsc_c00234{letter-spacing:-0.090848pt;}
.ls13_c00234{letter-spacing:-0.064000pt;}
.ls14_c00234{letter-spacing:-0.038400pt;}
.lse_c00234{letter-spacing:-0.032000pt;}
.ls16_c00234{letter-spacing:-0.025600pt;}
.ls10_c00234{letter-spacing:-0.019200pt;}
.ls15_c00234{letter-spacing:-0.012800pt;}
.ls11_c00234{letter-spacing:-0.006400pt;}
.lsd_c00234{letter-spacing:0.000000pt;}
.ls1_c00234{letter-spacing:0.006400pt;}
.ls2_c00234{letter-spacing:0.012800pt;}
.ls7_c00234{letter-spacing:0.019200pt;}
.ls6_c00234{letter-spacing:0.025600pt;}
.ls3_c00234{letter-spacing:0.032000pt;}
.ls8_c00234{letter-spacing:0.038400pt;}
.lsb_c00234{letter-spacing:0.044800pt;}
.lsa_c00234{letter-spacing:0.051200pt;}
.ls4_c00234{letter-spacing:0.057600pt;}
.ls9_c00234{letter-spacing:0.067104pt;}
.ls5_c00234{letter-spacing:0.134400pt;}
.ls19_c00234{letter-spacing:4.416000pt;}
.ls18_c00234{letter-spacing:5.760000pt;}
.ls17_c00234{letter-spacing:8.640000pt;}
.lsf_c00234{letter-spacing:11.840000pt;}
.ls12_c00234{letter-spacing:23.680000pt;}
.ls0_c00234{letter-spacing:48.768000pt;}
.ws0_c00234{word-spacing:-64.000000pt;}
.ws2_c00234{word-spacing:0.000000pt;}
.ws1_c00234{word-spacing:0.171008pt;}
._9_c00234{margin-left:-24.332800pt;}
._2_c00234{margin-left:-12.012800pt;}
._3_c00234{margin-left:-11.123200pt;}
._11_c00234{margin-left:-8.691200pt;}
._12_c00234{margin-left:-7.628800pt;}
._13_c00234{margin-left:-6.105600pt;}
._14_c00234{margin-left:-5.075200pt;}
._17_c00234{margin-left:-4.089600pt;}
._15_c00234{margin-left:-2.080000pt;}
._4_c00234{margin-left:-0.902400pt;}
._0_c00234{width:0.919168pt;}
._d_c00234{width:1.971200pt;}
._7_c00234{width:2.886400pt;}
._c_c00234{width:3.859200pt;}
._a_c00234{width:4.774400pt;}
._b_c00234{width:5.734400pt;}
._6_c00234{width:8.288000pt;}
._e_c00234{width:9.260800pt;}
._5_c00234{width:10.668800pt;}
._1_c00234{width:11.833600pt;}
._f_c00234{width:12.787200pt;}
._10_c00234{width:13.939200pt;}
._16_c00234{width:17.267200pt;}
._8_c00234{width:23.641600pt;}
.fs0_c00234{font-size:53.440000pt;}
.fs1_c00234{font-size:64.000000pt;}
.fs2_c00234{font-size:74.560000pt;}
.y0_c00234{bottom:0.000000pt;}
.y5_c00234{bottom:50.987067pt;}
.y4_c00234{bottom:69.387067pt;}
.y24_c00234{bottom:115.787067pt;}
.y23_c00234{bottom:143.467067pt;}
.y22_c00234{bottom:171.067067pt;}
.y21_c00234{bottom:198.667067pt;}
.y20_c00234{bottom:226.267067pt;}
.y1f_c00234{bottom:253.867067pt;}
.y1e_c00234{bottom:292.027067pt;}
.y1d_c00234{bottom:319.707067pt;}
.y1c_c00234{bottom:347.307067pt;}
.y1b_c00234{bottom:374.907067pt;}
.y1a_c00234{bottom:413.067067pt;}
.y19_c00234{bottom:440.747067pt;}
.y18_c00234{bottom:468.347067pt;}
.y17_c00234{bottom:495.947067pt;}
.y16_c00234{bottom:523.547067pt;}
.y15_c00234{bottom:554.027067pt;}
.y14_c00234{bottom:583.547067pt;}
.y13_c00234{bottom:624.507067pt;}
.y12_c00234{bottom:652.187067pt;}
.y11_c00234{bottom:679.707067pt;}
.y10_c00234{bottom:708.507067pt;}
.yf_c00234{bottom:736.107067pt;}
.ye_c00234{bottom:763.707067pt;}
.yd_c00234{bottom:791.227067pt;}
.yc_c00234{bottom:820.027067pt;}
.yb_c00234{bottom:847.627067pt;}
.ya_c00234{bottom:875.227067pt;}
.y9_c00234{bottom:902.747067pt;}
.y8_c00234{bottom:931.547067pt;}
.y7_c00234{bottom:959.147067pt;}
.y6_c00234{bottom:986.747067pt;}
.y3_c00234{bottom:1006.347067pt;}
.y2_c00234{bottom:1035.947576pt;}
.y1_c00234{bottom:1063.147200pt;}
.h1_c00234{height:47.020937pt;}
.h2_c00234{height:56.156250pt;}
.h3_c00234{height:57.375000pt;}
.h4_c00234{height:66.222969pt;}
.h0_c00234{height:1122.666667pt;}
.w1_c00234{width:793.333333pt;}
.w0_c00234{width:793.626667pt;}
.x0_c00234{left:0.000000pt;}
.x1_c00234{left:113.440000pt;}
.x3_c00234{left:161.440000pt;}
.x4_c00234{left:185.440000pt;}
.x2_c00234{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.095703;font-style:normal;font-weight:normal;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_d050c65f8d874dd3817939db.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.093262;font-style:normal;font-weight:normal;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_6a27beed931e190a13a122ed.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:1.104004;font-style: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;}
.lsf_c00235{letter-spacing:-0.048096px;}
.ls11_c00235{letter-spacing:-0.043200px;}
.ls12_c00235{letter-spacing:-0.028800px;}
.ls13_c00235{letter-spacing:-0.014400px;}
.ls14_c00235{letter-spacing:-0.007200px;}
.ls10_c00235{letter-spacing:0.000000px;}
.ls1_c00235{letter-spacing:0.007200px;}
.lsc_c00235{letter-spacing:0.008388px;}
.ls0_c00235{letter-spacing:0.014400px;}
.ls6_c00235{letter-spacing:0.021600px;}
.ls3_c00235{letter-spacing:0.028800px;}
.ls2_c00235{letter-spacing:0.036000px;}
.ls9_c00235{letter-spacing:0.041940px;}
.ls7_c00235{letter-spacing:0.043200px;}
.ls8_c00235{letter-spacing:0.050400px;}
.lsa_c00235{letter-spacing:0.057600px;}
.lsb_c00235{letter-spacing:0.064800px;}
.ls5_c00235{letter-spacing:0.079200px;}
.ls4_c00235{letter-spacing:0.086400px;}
.lsd_c00235{letter-spacing:0.115200px;}
.lse_c00235{letter-spacing:0.144000px;}
.ls15_c00235{letter-spacing:3.960000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00235{word-spacing:0.000000px;}
.ws0_c00235{word-spacing:0.138276px;}
._8_c00235{margin-left:-5.169600px;}
._7_c00235{margin-left:-4.017600px;}
._a_c00235{margin-left:-2.556000px;}
._2_c00235{margin-left:-1.368000px;}
._3_c00235{width:1.411200px;}
._10_c00235{width:2.469600px;}
._e_c00235{width:3.931200px;}
._d_c00235{width:5.745600px;}
._c_c00235{width:7.790400px;}
._b_c00235{width:8.956800px;}
._0_c00235{width:11.275200px;}
._1_c00235{width:12.528000px;}
._6_c00235{width:13.665600px;}
._f_c00235{width:15.494400px;}
._4_c00235{width:25.185600px;}
._5_c00235{width:26.611200px;}
._9_c00235{width:33.112800px;}
.fc0_c00235{color:rgb(0,0,0);}
.fs0_c00235{font-size:60.120000px;}
.fs1_c00235{font-size:72.000000px;}
.fs2_c00235{font-size:83.880000px;}
.y0_c00235{bottom:0.000000px;}
.y6_c00235{bottom:57.360450px;}
.y5_c00235{bottom:78.060450px;}
.y24_c00235{bottom:164.640600px;}
.y23_c00235{bottom:186.960600px;}
.y22_c00235{bottom:230.070600px;}
.y21_c00235{bottom:261.210600px;}
.y20_c00235{bottom:304.140600px;}
.y1f_c00235{bottom:335.280600px;}
.y1e_c00235{bottom:366.330600px;}
.y1d_c00235{bottom:400.620600px;}
.y1c_c00235{bottom:433.830450px;}
.y1b_c00235{bottom:470.910450px;}
.y1a_c00235{bottom:501.960450px;}
.y19_c00235{bottom:533.010450px;}
.y18_c00235{bottom:564.060450px;}
.y17_c00235{bottom:595.110450px;}
.y16_c00235{bottom:626.160450px;}
.y15_c00235{bottom:657.210450px;}
.y14_c00235{bottom:688.260450px;}
.y13_c00235{bottom:719.310450px;}
.y12_c00235{bottom:750.360450px;}
.y11_c00235{bottom:781.410450px;}
.y10_c00235{bottom:812.460450px;}
.yf_c00235{bottom:846.660450px;}
.ye_c00235{bottom:879.960450px;}
.yd_c00235{bottom:925.950450px;}
.yc_c00235{bottom:969.060450px;}
.yb_c00235{bottom:1000.200450px;}
.ya_c00235{bottom:1031.160450px;}
.y9_c00235{bottom:1062.210450px;}
.y8_c00235{bottom:1093.260450px;}
.y7_c00235{bottom:1124.310450px;}
.y4_c00235{bottom:1144.380657px;}
.y3_c00235{bottom:1161.660648px;}
.y2_c00235{bottom:1178.850459px;}
.y1_c00235{bottom:1196.130450px;}
.h1_c00235{height:52.898555px;}
.h2_c00235{height:63.175781px;}
.h3_c00235{height:74.500840px;}
.h0_c00235{height:1263.000000px;}
.w1_c00235{width:892.500000px;}
.w0_c00235{width:892.830000px;}
.x0_c00235{left:0.000000px;}
.x4_c00235{left:127.620000px;}
.x1_c00235{left:649.620000px;}
.x3_c00235{left:738.450000px;}
.x2_c00235{left:765.450198px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.lsf_c00235{letter-spacing:-0.042752pt;}
.ls11_c00235{letter-spacing:-0.038400pt;}
.ls12_c00235{letter-spacing:-0.025600pt;}
.ls13_c00235{letter-spacing:-0.012800pt;}
.ls14_c00235{letter-spacing:-0.006400pt;}
.ls10_c00235{letter-spacing:0.000000pt;}
.ls1_c00235{letter-spacing:0.006400pt;}
.lsc_c00235{letter-spacing:0.007456pt;}
.ls0_c00235{letter-spacing:0.012800pt;}
.ls6_c00235{letter-spacing:0.019200pt;}
.ls3_c00235{letter-spacing:0.025600pt;}
.ls2_c00235{letter-spacing:0.032000pt;}
.ls9_c00235{letter-spacing:0.037280pt;}
.ls7_c00235{letter-spacing:0.038400pt;}
.ls8_c00235{letter-spacing:0.044800pt;}
.lsa_c00235{letter-spacing:0.051200pt;}
.lsb_c00235{letter-spacing:0.057600pt;}
.ls5_c00235{letter-spacing:0.070400pt;}
.ls4_c00235{letter-spacing:0.076800pt;}
.lsd_c00235{letter-spacing:0.102400pt;}
.lse_c00235{letter-spacing:0.128000pt;}
.ls15_c00235{letter-spacing:3.520000pt;}
.ws1_c00235{word-spacing:0.000000pt;}
.ws0_c00235{word-spacing:0.122912pt;}
._8_c00235{margin-left:-4.595200pt;}
._7_c00235{margin-left:-3.571200pt;}
._a_c00235{margin-left:-2.272000pt;}
._2_c00235{margin-left:-1.216000pt;}
._3_c00235{width:1.254400pt;}
._10_c00235{width:2.195200pt;}
._e_c00235{width:3.494400pt;}
._d_c00235{width:5.107200pt;}
._c_c00235{width:6.924800pt;}
._b_c00235{width:7.961600pt;}
._0_c00235{width:10.022400pt;}
._1_c00235{width:11.136000pt;}
._6_c00235{width:12.147200pt;}
._f_c00235{width:13.772800pt;}
._4_c00235{width:22.387200pt;}
._5_c00235{width:23.654400pt;}
._9_c00235{width:29.433600pt;}
.fs0_c00235{font-size:53.440000pt;}
.fs1_c00235{font-size:64.000000pt;}
.fs2_c00235{font-size:74.560000pt;}
.y0_c00235{bottom:0.000000pt;}
.y6_c00235{bottom:50.987067pt;}
.y5_c00235{bottom:69.387067pt;}
.y24_c00235{bottom:146.347200pt;}
.y23_c00235{bottom:166.187200pt;}
.y22_c00235{bottom:204.507200pt;}
.y21_c00235{bottom:232.187200pt;}
.y20_c00235{bottom:270.347200pt;}
.y1f_c00235{bottom:298.027200pt;}
.y1e_c00235{bottom:325.627200pt;}
.y1d_c00235{bottom:356.107200pt;}
.y1c_c00235{bottom:385.627067pt;}
.y1b_c00235{bottom:418.587067pt;}
.y1a_c00235{bottom:446.187067pt;}
.y19_c00235{bottom:473.787067pt;}
.y18_c00235{bottom:501.387067pt;}
.y17_c00235{bottom:528.987067pt;}
.y16_c00235{bottom:556.587067pt;}
.y15_c00235{bottom:584.187067pt;}
.y14_c00235{bottom:611.787067pt;}
.y13_c00235{bottom:639.387067pt;}
.y12_c00235{bottom:666.987067pt;}
.y11_c00235{bottom:694.587067pt;}
.y10_c00235{bottom:722.187067pt;}
.yf_c00235{bottom:752.587067pt;}
.ye_c00235{bottom:782.187067pt;}
.yd_c00235{bottom:823.067067pt;}
.yc_c00235{bottom:861.387067pt;}
.yb_c00235{bottom:889.067067pt;}
.ya_c00235{bottom:916.587067pt;}
.y9_c00235{bottom:944.187067pt;}
.y8_c00235{bottom:971.787067pt;}
.y7_c00235{bottom:999.387067pt;}
.y4_c00235{bottom:1017.227251pt;}
.y3_c00235{bottom:1032.587243pt;}
.y2_c00235{bottom:1047.867075pt;}
.y1_c00235{bottom:1063.227067pt;}
.h1_c00235{height:47.020937pt;}
.h2_c00235{height:56.156250pt;}
.h3_c00235{height:66.222969pt;}
.h0_c00235{height:1122.666667pt;}
.w1_c00235{width:793.333333pt;}
.w0_c00235{width:793.626667pt;}
.x0_c00235{left:0.000000pt;}
.x4_c00235{left:113.440000pt;}
.x1_c00235{left:577.440000pt;}
.x3_c00235{left:656.400000pt;}
.x2_c00235{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_896644e55d9c8354ef1c1a8e.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.095703;font-style:normal;font-weight:normal;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_611a7568624a456db3427e24.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00236{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.lsd_c00236{letter-spacing:-0.102204px;}
.ls11_c00236{letter-spacing:-0.093600px;}
.ls13_c00236{letter-spacing:-0.028800px;}
.ls10_c00236{letter-spacing:-0.021600px;}
.ls12_c00236{letter-spacing:-0.014400px;}
.lsf_c00236{letter-spacing:-0.007200px;}
.lse_c00236{letter-spacing:0.000000px;}
.ls9_c00236{letter-spacing:0.007200px;}
.ls4_c00236{letter-spacing:0.014400px;}
.ls7_c00236{letter-spacing:0.021600px;}
.ls0_c00236{letter-spacing:0.028800px;}
.ls5_c00236{letter-spacing:0.036000px;}
.ls3_c00236{letter-spacing:0.043200px;}
.ls1_c00236{letter-spacing:0.050400px;}
.ls6_c00236{letter-spacing:0.057600px;}
.lsb_c00236{letter-spacing:0.064800px;}
.lsa_c00236{letter-spacing:0.072000px;}
.ls2_c00236{letter-spacing:0.079200px;}
.lsc_c00236{letter-spacing:0.086400px;}
.ls8_c00236{letter-spacing:0.100800px;}
.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:-18.014400px;}
.ws7_c00236{word-spacing:-1.576800px;}
.ws6_c00236{word-spacing:-0.014400px;}
.ws2_c00236{word-spacing:0.000000px;}
.ws3_c00236{word-spacing:0.187200px;}
.ws1_c00236{word-spacing:0.192384px;}
.ws5_c00236{word-spacing:0.201600px;}
.ws4_c00236{word-spacing:12.247200px;}
._2_c00236{margin-left:-4.298400px;}
._c_c00236{margin-left:-2.383200px;}
._3_c00236{margin-left:-1.080000px;}
._0_c00236{width:1.034064px;}
._5_c00236{width:2.073600px;}
._4_c00236{width:3.204000px;}
._8_c00236{width:4.341600px;}
._a_c00236{width:5.745600px;}
._1_c00236{width:9.691200px;}
._9_c00236{width:10.716336px;}
._b_c00236{width:11.769264px;}
._7_c00236{width:12.787200px;}
._6_c00236{width:14.047200px;}
._d_c00236{width:15.760800px;}
.fc1_c00236{color:rgb(0,0,0);}
.fc0_c00236{color:rgb(32,31,30);}
.fs0_c00236{font-size:60.120000px;}
.fs1_c00236{font-size:72.000000px;}
.y0_c00236{bottom:0.000000px;}
.y5_c00236{bottom:57.360450px;}
.y4_c00236{bottom:78.060450px;}
.y24_c00236{bottom:136.470450px;}
.y23_c00236{bottom:167.610450px;}
.y22_c00236{bottom:198.660450px;}
.y21_c00236{bottom:229.710450px;}
.y20_c00236{bottom:260.760450px;}
.y1f_c00236{bottom:303.690450px;}
.y1e_c00236{bottom:334.830450px;}
.y1d_c00236{bottom:365.880450px;}
.y1c_c00236{bottom:396.930450px;}
.y1b_c00236{bottom:439.860450px;}
.y1a_c00236{bottom:471.000450px;}
.y19_c00236{bottom:502.050450px;}
.y18_c00236{bottom:533.100450px;}
.y17_c00236{bottom:564.150450px;}
.y16_c00236{bottom:595.200450px;}
.y15_c00236{bottom:626.250450px;}
.y14_c00236{bottom:657.300450px;}
.y13_c00236{bottom:700.230450px;}
.y12_c00236{bottom:731.370450px;}
.y11_c00236{bottom:762.420450px;}
.y10_c00236{bottom:796.710450px;}
.yf_c00236{bottom:818.940450px;}
.ye_c00236{bottom:844.320450px;}
.yd_c00236{bottom:887.430450px;}
.yc_c00236{bottom:918.570450px;}
.yb_c00236{bottom:949.620450px;}
.ya_c00236{bottom:992.550450px;}
.y9_c00236{bottom:1023.690450px;}
.y8_c00236{bottom:1054.740450px;}
.y7_c00236{bottom:1089.030450px;}
.y6_c00236{bottom:1111.260450px;}
.y3_c00236{bottom:1132.140450px;}
.y2_c00236{bottom:1165.441023px;}
.y1_c00236{bottom:1196.040600px;}
.h1_c00236{height:52.898555px;}
.h2_c00236{height:63.175781px;}
.h3_c00236{height:63.351562px;}
.h0_c00236{height:1263.000000px;}
.w1_c00236{width:892.500000px;}
.w0_c00236{width:892.830000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:127.620000px;}
.x2_c00236{left:738.450000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.lsd_c00236{letter-spacing:-0.090848pt;}
.ls11_c00236{letter-spacing:-0.083200pt;}
.ls13_c00236{letter-spacing:-0.025600pt;}
.ls10_c00236{letter-spacing:-0.019200pt;}
.ls12_c00236{letter-spacing:-0.012800pt;}
.lsf_c00236{letter-spacing:-0.006400pt;}
.lse_c00236{letter-spacing:0.000000pt;}
.ls9_c00236{letter-spacing:0.006400pt;}
.ls4_c00236{letter-spacing:0.012800pt;}
.ls7_c00236{letter-spacing:0.019200pt;}
.ls0_c00236{letter-spacing:0.025600pt;}
.ls5_c00236{letter-spacing:0.032000pt;}
.ls3_c00236{letter-spacing:0.038400pt;}
.ls1_c00236{letter-spacing:0.044800pt;}
.ls6_c00236{letter-spacing:0.051200pt;}
.lsb_c00236{letter-spacing:0.057600pt;}
.lsa_c00236{letter-spacing:0.064000pt;}
.ls2_c00236{letter-spacing:0.070400pt;}
.lsc_c00236{letter-spacing:0.076800pt;}
.ls8_c00236{letter-spacing:0.089600pt;}
.ws0_c00236{word-spacing:-16.012800pt;}
.ws7_c00236{word-spacing:-1.401600pt;}
.ws6_c00236{word-spacing:-0.012800pt;}
.ws2_c00236{word-spacing:0.000000pt;}
.ws3_c00236{word-spacing:0.166400pt;}
.ws1_c00236{word-spacing:0.171008pt;}
.ws5_c00236{word-spacing:0.179200pt;}
.ws4_c00236{word-spacing:10.886400pt;}
._2_c00236{margin-left:-3.820800pt;}
._c_c00236{margin-left:-2.118400pt;}
._3_c00236{margin-left:-0.960000pt;}
._0_c00236{width:0.919168pt;}
._5_c00236{width:1.843200pt;}
._4_c00236{width:2.848000pt;}
._8_c00236{width:3.859200pt;}
._a_c00236{width:5.107200pt;}
._1_c00236{width:8.614400pt;}
._9_c00236{width:9.525632pt;}
._b_c00236{width:10.461568pt;}
._7_c00236{width:11.366400pt;}
._6_c00236{width:12.486400pt;}
._d_c00236{width:14.009600pt;}
.fs0_c00236{font-size:53.440000pt;}
.fs1_c00236{font-size:64.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y5_c00236{bottom:50.987067pt;}
.y4_c00236{bottom:69.387067pt;}
.y24_c00236{bottom:121.307067pt;}
.y23_c00236{bottom:148.987067pt;}
.y22_c00236{bottom:176.587067pt;}
.y21_c00236{bottom:204.187067pt;}
.y20_c00236{bottom:231.787067pt;}
.y1f_c00236{bottom:269.947067pt;}
.y1e_c00236{bottom:297.627067pt;}
.y1d_c00236{bottom:325.227067pt;}
.y1c_c00236{bottom:352.827067pt;}
.y1b_c00236{bottom:390.987067pt;}
.y1a_c00236{bottom:418.667067pt;}
.y19_c00236{bottom:446.267067pt;}
.y18_c00236{bottom:473.867067pt;}
.y17_c00236{bottom:501.467067pt;}
.y16_c00236{bottom:529.067067pt;}
.y15_c00236{bottom:556.667067pt;}
.y14_c00236{bottom:584.267067pt;}
.y13_c00236{bottom:622.427067pt;}
.y12_c00236{bottom:650.107067pt;}
.y11_c00236{bottom:677.707067pt;}
.y10_c00236{bottom:708.187067pt;}
.yf_c00236{bottom:727.947067pt;}
.ye_c00236{bottom:750.507067pt;}
.yd_c00236{bottom:788.827067pt;}
.yc_c00236{bottom:816.507067pt;}
.yb_c00236{bottom:844.107067pt;}
.ya_c00236{bottom:882.267067pt;}
.y9_c00236{bottom:909.947067pt;}
.y8_c00236{bottom:937.547067pt;}
.y7_c00236{bottom:968.027067pt;}
.y6_c00236{bottom:987.787067pt;}
.y3_c00236{bottom:1006.347067pt;}
.y2_c00236{bottom:1035.947576pt;}
.y1_c00236{bottom:1063.147200pt;}
.h1_c00236{height:47.020937pt;}
.h2_c00236{height:56.156250pt;}
.h3_c00236{height:56.312500pt;}
.h0_c00236{height:1122.666667pt;}
.w1_c00236{width:793.333333pt;}
.w0_c00236{width:793.626667pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:113.440000pt;}
.x2_c00236{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.095703;font-style:normal;font-weight:normal;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_8f58c96ea9bb4f4081d59ec3.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.093262;font-style:normal;font-weight:normal;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_6139bfea4074e62539d590b7.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00237{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls13_c00237{letter-spacing:-0.050400px;}
.lsd_c00237{letter-spacing:-0.048096px;}
.ls11_c00237{letter-spacing:-0.036000px;}
.lsf_c00237{letter-spacing:-0.021600px;}
.ls10_c00237{letter-spacing:-0.014400px;}
.ls12_c00237{letter-spacing:-0.007200px;}
.lse_c00237{letter-spacing:0.000000px;}
.ls7_c00237{letter-spacing:0.007200px;}
.ls1_c00237{letter-spacing:0.014400px;}
.ls4_c00237{letter-spacing:0.021600px;}
.ls8_c00237{letter-spacing:0.028800px;}
.ls5_c00237{letter-spacing:0.036000px;}
.ls0_c00237{letter-spacing:0.043200px;}
.ls9_c00237{letter-spacing:0.050400px;}
.lsb_c00237{letter-spacing:0.057600px;}
.lsc_c00237{letter-spacing:0.058716px;}
.ls2_c00237{letter-spacing:0.064800px;}
.ls3_c00237{letter-spacing:0.093600px;}
.lsa_c00237{letter-spacing:0.100800px;}
.ls6_c00237{letter-spacing:0.108000px;}
.ls14_c00237{letter-spacing:17.280000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00237{word-spacing:-17.985600px;}
.ws2_c00237{word-spacing:0.000000px;}
.ws1_c00237{word-spacing:0.138276px;}
._c_c00237{margin-left:-17.784000px;}
._d_c00237{margin-left:-16.747200px;}
._6_c00237{margin-left:-2.354400px;}
._3_c00237{margin-left:-1.195200px;}
._5_c00237{width:1.224000px;}
._0_c00237{width:2.232000px;}
._1_c00237{width:3.441600px;}
._2_c00237{width:4.975200px;}
._4_c00237{width:6.156000px;}
._a_c00237{width:7.452000px;}
._9_c00237{width:9.021600px;}
._8_c00237{width:12.182400px;}
._7_c00237{width:13.291200px;}
._b_c00237{width:16.660800px;}
.fc0_c00237{color:rgb(0,0,0);}
.fs0_c00237{font-size:60.120000px;}
.fs1_c00237{font-size:72.000000px;}
.fs2_c00237{font-size:83.880000px;}
.y0_c00237{bottom:0.000000px;}
.y6_c00237{bottom:57.360450px;}
.y5_c00237{bottom:78.060450px;}
.y22_c00237{bottom:169.500450px;}
.y21_c00237{bottom:212.520450px;}
.y20_c00237{bottom:243.660450px;}
.y1f_c00237{bottom:274.710450px;}
.y1e_c00237{bottom:309.000450px;}
.y1d_c00237{bottom:342.210600px;}
.y1c_c00237{bottom:388.290450px;}
.y1b_c00237{bottom:431.310450px;}
.y1a_c00237{bottom:462.450450px;}
.y19_c00237{bottom:493.500450px;}
.y18_c00237{bottom:524.550450px;}
.y17_c00237{bottom:567.480450px;}
.y16_c00237{bottom:598.620450px;}
.y15_c00237{bottom:629.670450px;}
.y14_c00237{bottom:672.600450px;}
.y13_c00237{bottom:703.740450px;}
.y12_c00237{bottom:734.790450px;}
.y11_c00237{bottom:777.810450px;}
.y10_c00237{bottom:820.830450px;}
.yf_c00237{bottom:863.850450px;}
.ye_c00237{bottom:894.990450px;}
.yd_c00237{bottom:926.040450px;}
.yc_c00237{bottom:957.090450px;}
.yb_c00237{bottom:988.140450px;}
.ya_c00237{bottom:1031.070450px;}
.y9_c00237{bottom:1062.210450px;}
.y8_c00237{bottom:1093.260450px;}
.y7_c00237{bottom:1124.310450px;}
.y4_c00237{bottom:1144.380657px;}
.y3_c00237{bottom:1161.660648px;}
.y2_c00237{bottom:1178.850459px;}
.y1_c00237{bottom:1196.130450px;}
.h1_c00237{height:52.898555px;}
.h2_c00237{height:63.175781px;}
.h3_c00237{height:63.949219px;}
.h4_c00237{height:74.500840px;}
.h0_c00237{height:1263.000000px;}
.w1_c00237{width:892.500000px;}
.w0_c00237{width:892.830000px;}
.x0_c00237{left:0.000000px;}
.x4_c00237{left:127.620000px;}
.x1_c00237{left:649.620000px;}
.x3_c00237{left:738.450000px;}
.x2_c00237{left:765.450198px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls13_c00237{letter-spacing:-0.044800pt;}
.lsd_c00237{letter-spacing:-0.042752pt;}
.ls11_c00237{letter-spacing:-0.032000pt;}
.lsf_c00237{letter-spacing:-0.019200pt;}
.ls10_c00237{letter-spacing:-0.012800pt;}
.ls12_c00237{letter-spacing:-0.006400pt;}
.lse_c00237{letter-spacing:0.000000pt;}
.ls7_c00237{letter-spacing:0.006400pt;}
.ls1_c00237{letter-spacing:0.012800pt;}
.ls4_c00237{letter-spacing:0.019200pt;}
.ls8_c00237{letter-spacing:0.025600pt;}
.ls5_c00237{letter-spacing:0.032000pt;}
.ls0_c00237{letter-spacing:0.038400pt;}
.ls9_c00237{letter-spacing:0.044800pt;}
.lsb_c00237{letter-spacing:0.051200pt;}
.lsc_c00237{letter-spacing:0.052192pt;}
.ls2_c00237{letter-spacing:0.057600pt;}
.ls3_c00237{letter-spacing:0.083200pt;}
.lsa_c00237{letter-spacing:0.089600pt;}
.ls6_c00237{letter-spacing:0.096000pt;}
.ls14_c00237{letter-spacing:15.360000pt;}
.ws0_c00237{word-spacing:-15.987200pt;}
.ws2_c00237{word-spacing:0.000000pt;}
.ws1_c00237{word-spacing:0.122912pt;}
._c_c00237{margin-left:-15.808000pt;}
._d_c00237{margin-left:-14.886400pt;}
._6_c00237{margin-left:-2.092800pt;}
._3_c00237{margin-left:-1.062400pt;}
._5_c00237{width:1.088000pt;}
._0_c00237{width:1.984000pt;}
._1_c00237{width:3.059200pt;}
._2_c00237{width:4.422400pt;}
._4_c00237{width:5.472000pt;}
._a_c00237{width:6.624000pt;}
._9_c00237{width:8.019200pt;}
._8_c00237{width:10.828800pt;}
._7_c00237{width:11.814400pt;}
._b_c00237{width:14.809600pt;}
.fs0_c00237{font-size:53.440000pt;}
.fs1_c00237{font-size:64.000000pt;}
.fs2_c00237{font-size:74.560000pt;}
.y0_c00237{bottom:0.000000pt;}
.y6_c00237{bottom:50.987067pt;}
.y5_c00237{bottom:69.387067pt;}
.y22_c00237{bottom:150.667067pt;}
.y21_c00237{bottom:188.907067pt;}
.y20_c00237{bottom:216.587067pt;}
.y1f_c00237{bottom:244.187067pt;}
.y1e_c00237{bottom:274.667067pt;}
.y1d_c00237{bottom:304.187200pt;}
.y1c_c00237{bottom:345.147067pt;}
.y1b_c00237{bottom:383.387067pt;}
.y1a_c00237{bottom:411.067067pt;}
.y19_c00237{bottom:438.667067pt;}
.y18_c00237{bottom:466.267067pt;}
.y17_c00237{bottom:504.427067pt;}
.y16_c00237{bottom:532.107067pt;}
.y15_c00237{bottom:559.707067pt;}
.y14_c00237{bottom:597.867067pt;}
.y13_c00237{bottom:625.547067pt;}
.y12_c00237{bottom:653.147067pt;}
.y11_c00237{bottom:691.387067pt;}
.y10_c00237{bottom:729.627067pt;}
.yf_c00237{bottom:767.867067pt;}
.ye_c00237{bottom:795.547067pt;}
.yd_c00237{bottom:823.147067pt;}
.yc_c00237{bottom:850.747067pt;}
.yb_c00237{bottom:878.347067pt;}
.ya_c00237{bottom:916.507067pt;}
.y9_c00237{bottom:944.187067pt;}
.y8_c00237{bottom:971.787067pt;}
.y7_c00237{bottom:999.387067pt;}
.y4_c00237{bottom:1017.227251pt;}
.y3_c00237{bottom:1032.587243pt;}
.y2_c00237{bottom:1047.867075pt;}
.y1_c00237{bottom:1063.227067pt;}
.h1_c00237{height:47.020937pt;}
.h2_c00237{height:56.156250pt;}
.h3_c00237{height:56.843750pt;}
.h4_c00237{height:66.222969pt;}
.h0_c00237{height:1122.666667pt;}
.w1_c00237{width:793.333333pt;}
.w0_c00237{width:793.626667pt;}
.x0_c00237{left:0.000000pt;}
.x4_c00237{left:113.440000pt;}
.x1_c00237{left:577.440000pt;}
.x3_c00237{left:656.400000pt;}
.x2_c00237{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bac66722a969ff001b63eca6.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.095703;font-style:normal;font-weight:normal;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_f058ccaa908be646035e4706.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.093262;font-style:normal;font-weight:normal;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_5fe0c8621efc576a0838da1c.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:1.104004;font-style:normal;font-weight:normal;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_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff4_c00238{font-family:ff4_c00238;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_c00238;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff5_c00238{font-family:ff5_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;}
.m0_c00238{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.lse_c00238{letter-spacing:-0.216000px;}
.lsb_c00238{letter-spacing:-0.102204px;}
.ls10_c00238{letter-spacing:-0.021600px;}
.lsd_c00238{letter-spacing:-0.007200px;}
.lsc_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:0.007200px;}
.ls1_c00238{letter-spacing:0.014400px;}
.lsa_c00238{letter-spacing:0.021600px;}
.ls6_c00238{letter-spacing:0.028800px;}
.ls9_c00238{letter-spacing:0.036000px;}
.ls2_c00238{letter-spacing:0.043200px;}
.ls4_c00238{letter-spacing:0.057600px;}
.ls5_c00238{letter-spacing:0.064800px;}
.ls3_c00238{letter-spacing:0.072000px;}
.ls8_c00238{letter-spacing:0.093600px;}
.lsf_c00238{letter-spacing:5.760000px;}
.ls7_c00238{letter-spacing:54.864000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00238{word-spacing:-72.000000px;}
.ws0_c00238{word-spacing:-18.064800px;}
.ws2_c00238{word-spacing:-18.036000px;}
.ws4_c00238{word-spacing:0.000000px;}
.ws5_c00238{word-spacing:0.007200px;}
.ws3_c00238{word-spacing:0.192384px;}
._a_c00238{margin-left:-6.847200px;}
._9_c00238{margin-left:-5.508000px;}
._b_c00238{margin-left:-3.909600px;}
._7_c00238{margin-left:-2.527200px;}
._1_c00238{margin-left:-1.447200px;}
._0_c00238{width:1.034064px;}
._6_c00238{width:2.491200px;}
._5_c00238{width:3.542400px;}
._2_c00238{width:4.636800px;}
._8_c00238{width:6.537600px;}
._e_c00238{width:8.179200px;}
._3_c00238{width:10.022400px;}
._4_c00238{width:11.721600px;}
._d_c00238{width:19.627200px;}
._c_c00238{width:20.851200px;}
.fc1_c00238{color:rgb(0,0,0);}
.fc0_c00238{color:rgb(32,31,30);}
.fs0_c00238{font-size:60.120000px;}
.fs1_c00238{font-size:72.000000px;}
.y0_c00238{bottom:0.000000px;}
.y5_c00238{bottom:57.360450px;}
.y4_c00238{bottom:78.060450px;}
.y25_c00238{bottom:141.420450px;}
.y24_c00238{bottom:172.470450px;}
.y23_c00238{bottom:203.520450px;}
.y22_c00238{bottom:234.570450px;}
.y21_c00238{bottom:265.620450px;}
.y20_c00238{bottom:296.670450px;}
.y1f_c00238{bottom:327.720450px;}
.y1e_c00238{bottom:358.590450px;}
.y1d_c00238{bottom:389.730450px;}
.y1c_c00238{bottom:422.130450px;}
.y1b_c00238{bottom:454.440450px;}
.y1a_c00238{bottom:486.750450px;}
.y19_c00238{bottom:519.150450px;}
.y18_c00238{bottom:551.460450px;}
.y17_c00238{bottom:583.770450px;}
.y16_c00238{bottom:616.170450px;}
.y15_c00238{bottom:648.480450px;}
.y14_c00238{bottom:680.790450px;}
.y13_c00238{bottom:713.010450px;}
.y12_c00238{bottom:744.240450px;}
.y11_c00238{bottom:775.290450px;}
.y10_c00238{bottom:806.340450px;}
.yf_c00238{bottom:837.390450px;}
.ye_c00238{bottom:868.440450px;}
.yd_c00238{bottom:899.490450px;}
.yc_c00238{bottom:930.540450px;}
.yb_c00238{bottom:961.590450px;}
.ya_c00238{bottom:992.640450px;}
.y9_c00238{bottom:1023.690450px;}
.y8_c00238{bottom:1054.740450px;}
.y7_c00238{bottom:1089.030450px;}
.y6_c00238{bottom:1111.260450px;}
.y3_c00238{bottom:1132.140450px;}
.y2_c00238{bottom:1165.441023px;}
.y1_c00238{bottom:1196.040600px;}
.h1_c00238{height:52.898555px;}
.h2_c00238{height:63.175781px;}
.h3_c00238{height:63.351562px;}
.h4_c00238{height:63.949219px;}
.h5_c00238{height:64.546875px;}
.h0_c00238{height:1263.000000px;}
.w1_c00238{width:892.500000px;}
.w0_c00238{width:892.830000px;}
.x0_c00238{left:0.000000px;}
.x1_c00238{left:127.620000px;}
.x3_c00238{left:154.620000px;}
.x4_c00238{left:181.620000px;}
.x2_c00238{left:738.450000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.lse_c00238{letter-spacing:-0.192000pt;}
.lsb_c00238{letter-spacing:-0.090848pt;}
.ls10_c00238{letter-spacing:-0.019200pt;}
.lsd_c00238{letter-spacing:-0.006400pt;}
.lsc_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:0.006400pt;}
.ls1_c00238{letter-spacing:0.012800pt;}
.lsa_c00238{letter-spacing:0.019200pt;}
.ls6_c00238{letter-spacing:0.025600pt;}
.ls9_c00238{letter-spacing:0.032000pt;}
.ls2_c00238{letter-spacing:0.038400pt;}
.ls4_c00238{letter-spacing:0.051200pt;}
.ls5_c00238{letter-spacing:0.057600pt;}
.ls3_c00238{letter-spacing:0.064000pt;}
.ls8_c00238{letter-spacing:0.083200pt;}
.lsf_c00238{letter-spacing:5.120000pt;}
.ls7_c00238{letter-spacing:48.768000pt;}
.ws1_c00238{word-spacing:-64.000000pt;}
.ws0_c00238{word-spacing:-16.057600pt;}
.ws2_c00238{word-spacing:-16.032000pt;}
.ws4_c00238{word-spacing:0.000000pt;}
.ws5_c00238{word-spacing:0.006400pt;}
.ws3_c00238{word-spacing:0.171008pt;}
._a_c00238{margin-left:-6.086400pt;}
._9_c00238{margin-left:-4.896000pt;}
._b_c00238{margin-left:-3.475200pt;}
._7_c00238{margin-left:-2.246400pt;}
._1_c00238{margin-left:-1.286400pt;}
._0_c00238{width:0.919168pt;}
._6_c00238{width:2.214400pt;}
._5_c00238{width:3.148800pt;}
._2_c00238{width:4.121600pt;}
._8_c00238{width:5.811200pt;}
._e_c00238{width:7.270400pt;}
._3_c00238{width:8.908800pt;}
._4_c00238{width:10.419200pt;}
._d_c00238{width:17.446400pt;}
._c_c00238{width:18.534400pt;}
.fs0_c00238{font-size:53.440000pt;}
.fs1_c00238{font-size:64.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y5_c00238{bottom:50.987067pt;}
.y4_c00238{bottom:69.387067pt;}
.y25_c00238{bottom:125.707067pt;}
.y24_c00238{bottom:153.307067pt;}
.y23_c00238{bottom:180.907067pt;}
.y22_c00238{bottom:208.507067pt;}
.y21_c00238{bottom:236.107067pt;}
.y20_c00238{bottom:263.707067pt;}
.y1f_c00238{bottom:291.307067pt;}
.y1e_c00238{bottom:318.747067pt;}
.y1d_c00238{bottom:346.427067pt;}
.y1c_c00238{bottom:375.227067pt;}
.y1b_c00238{bottom:403.947067pt;}
.y1a_c00238{bottom:432.667067pt;}
.y19_c00238{bottom:461.467067pt;}
.y18_c00238{bottom:490.187067pt;}
.y17_c00238{bottom:518.907067pt;}
.y16_c00238{bottom:547.707067pt;}
.y15_c00238{bottom:576.427067pt;}
.y14_c00238{bottom:605.147067pt;}
.y13_c00238{bottom:633.787067pt;}
.y12_c00238{bottom:661.547067pt;}
.y11_c00238{bottom:689.147067pt;}
.y10_c00238{bottom:716.747067pt;}
.yf_c00238{bottom:744.347067pt;}
.ye_c00238{bottom:771.947067pt;}
.yd_c00238{bottom:799.547067pt;}
.yc_c00238{bottom:827.147067pt;}
.yb_c00238{bottom:854.747067pt;}
.ya_c00238{bottom:882.347067pt;}
.y9_c00238{bottom:909.947067pt;}
.y8_c00238{bottom:937.547067pt;}
.y7_c00238{bottom:968.027067pt;}
.y6_c00238{bottom:987.787067pt;}
.y3_c00238{bottom:1006.347067pt;}
.y2_c00238{bottom:1035.947576pt;}
.y1_c00238{bottom:1063.147200pt;}
.h1_c00238{height:47.020937pt;}
.h2_c00238{height:56.156250pt;}
.h3_c00238{height:56.312500pt;}
.h4_c00238{height:56.843750pt;}
.h5_c00238{height:57.375000pt;}
.h0_c00238{height:1122.666667pt;}
.w1_c00238{width:793.333333pt;}
.w0_c00238{width:793.626667pt;}
.x0_c00238{left:0.000000pt;}
.x1_c00238{left:113.440000pt;}
.x3_c00238{left:137.440000pt;}
.x4_c00238{left:161.440000pt;}
.x2_c00238{left:656.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_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_0738f82ff202bc7c5a1601db.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.095703;font-style:normal;font-weight:normal;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_f50651a9fe45ca1b6b4e6d80.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.093262;font-style: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:-27.000000px;}
.v3_c00239{vertical-align:-20.880000px;}
.v0_c00239{vertical-align:0.000000px;}
.v1_c00239{vertical-align:27.000000px;}
.ls1b_c00239{letter-spacing:-0.132264px;}
.ls19_c00239{letter-spacing:-0.090180px;}
.ls15_c00239{letter-spacing:-0.050400px;}
.lsf_c00239{letter-spacing:-0.048096px;}
.ls18_c00239{letter-spacing:-0.043200px;}
.ls17_c00239{letter-spacing:-0.036000px;}
.ls11_c00239{letter-spacing:-0.028800px;}
.ls12_c00239{letter-spacing:-0.021600px;}
.ls14_c00239{letter-spacing:-0.014400px;}
.ls10_c00239{letter-spacing:0.000000px;}
.ls2_c00239{letter-spacing:0.007200px;}
.ls8_c00239{letter-spacing:0.014400px;}
.ls6_c00239{letter-spacing:0.021600px;}
.ls3_c00239{letter-spacing:0.028800px;}
.ls0_c00239{letter-spacing:0.036000px;}
.ls7_c00239{letter-spacing:0.043200px;}
.lse_c00239{letter-spacing:0.048096px;}
.ls5_c00239{letter-spacing:0.050400px;}
.ls4_c00239{letter-spacing:0.057600px;}
.lsb_c00239{letter-spacing:0.064800px;}
.lsa_c00239{letter-spacing:0.072000px;}
.ls1_c00239{letter-spacing:0.079200px;}
.ls9_c00239{letter-spacing:0.093600px;}
.ls1a_c00239{letter-spacing:0.114228px;}
.lsd_c00239{letter-spacing:0.136800px;}
.ls16_c00239{letter-spacing:0.181944px;}
.lsc_c00239{letter-spacing:0.187200px;}
.ls13_c00239{letter-spacing:24.840000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00239{word-spacing:-18.064800px;}
.ws5_c00239{word-spacing:-15.144228px;}
.ws3_c00239{word-spacing:-15.078096px;}
.ws4_c00239{word-spacing:-15.030000px;}
.ws1_c00239{word-spacing:-12.151944px;}
.ws2_c00239{word-spacing:-9.720000px;}
.ws7_c00239{word-spacing:0.000000px;}
.ws9_c00239{word-spacing:0.093600px;}
.ws8_c00239{word-spacing:0.100800px;}
.wsc_c00239{word-spacing:0.122400px;}
.ws6_c00239{word-spacing:0.138276px;}
.wsb_c00239{word-spacing:11.743200px;}
.wsa_c00239{word-spacing:11.829600px;}
._6_c00239{margin-left:-25.632000px;}
._5_c00239{margin-left:-24.465600px;}
._c_c00239{margin-left:-4.233600px;}
._a_c00239{margin-left:-2.966400px;}
._1_c00239{margin-left:-1.231200px;}
._0_c00239{width:1.036800px;}
._7_c00239{width:2.116800px;}
._b_c00239{width:3.168000px;}
._11_c00239{width:5.932800px;}
._10_c00239{width:10.404000px;}
._12_c00239{width:11.872800px;}
._d_c00239{width:12.880800px;}
._e_c00239{width:14.443200px;}
._f_c00239{width:15.444000px;}
._3_c00239{width:21.967200px;}
._2_c00239{width:23.011200px;}
._4_c00239{width:25.178400px;}
._8_c00239{width:28.396800px;}
._9_c00239{width:29.836800px;}
.fc0_c00239{color:rgb(0,0,0);}
.fs3_c00239{font-size:38.880000px;}
.fs2_c00239{font-size:47.880000px;}
.fs0_c00239{font-size:60.120000px;}
.fs1_c00239{font-size:72.000000px;}
.y0_c00239{bottom:0.000000px;}
.y6_c00239{bottom:57.360450px;}
.y5_c00239{bottom:78.060450px;}
.y28_c00239{bottom:109.920639px;}
.y27_c00239{bottom:132.330450px;}
.y26_c00239{bottom:145.020450px;}
.y25_c00239{bottom:203.160450px;}
.y24_c00239{bottom:234.210450px;}
.y23_c00239{bottom:265.260450px;}
.y22_c00239{bottom:296.310450px;}
.y21_c00239{bottom:327.360450px;}
.y20_c00239{bottom:358.410450px;}
.y1f_c00239{bottom:389.460450px;}
.y1e_c00239{bottom:420.510450px;}
.y1d_c00239{bottom:454.800450px;}
.y1c_c00239{bottom:477.030450px;}
.y1b_c00239{bottom:511.230450px;}
.y1a_c00239{bottom:542.280450px;}
.y19_c00239{bottom:573.330450px;}
.y18_c00239{bottom:604.380450px;}
.y17_c00239{bottom:635.430450px;}
.y16_c00239{bottom:666.480450px;}
.y15_c00239{bottom:697.530450px;}
.y14_c00239{bottom:728.580450px;}
.y13_c00239{bottom:759.630450px;}
.y12_c00239{bottom:790.680450px;}
.y11_c00239{bottom:824.880450px;}
.y10_c00239{bottom:847.200450px;}
.yf_c00239{bottom:881.400450px;}
.ye_c00239{bottom:912.450450px;}
.yd_c00239{bottom:943.500450px;}
.yc_c00239{bottom:974.550450px;}
.yb_c00239{bottom:1005.600450px;}
.ya_c00239{bottom:1036.650450px;}
.y9_c00239{bottom:1067.700450px;}
.y8_c00239{bottom:1101.900450px;}
.y7_c00239{bottom:1124.220450px;}
.y4_c00239{bottom:1144.380657px;}
.y3_c00239{bottom:1161.660648px;}
.y2_c00239{bottom:1178.850459px;}
.y1_c00239{bottom:1196.130450px;}
.h5_c00239{height:34.114922px;}
.h6_c00239{height:52.751777px;}
.h1_c00239{height:52.898555px;}
.h2_c00239{height:63.175781px;}
.h3_c00239{height:63.351562px;}
.h4_c00239{height:69.011895px;}
.h0_c00239{height:1263.000000px;}
.w1_c00239{width:892.500000px;}
.w0_c00239{width:892.830000px;}
.x0_c00239{left:0.000000px;}
.x4_c00239{left:127.620000px;}
.x1_c00239{left:649.620000px;}
.x3_c00239{left:738.450000px;}
.x2_c00239{left:765.450198px;}
@media print{
.v2_c00239{vertical-align:-24.000000pt;}
.v3_c00239{vertical-align:-18.560000pt;}
.v0_c00239{vertical-align:0.000000pt;}
.v1_c00239{vertical-align:24.000000pt;}
.ls1b_c00239{letter-spacing:-0.117568pt;}
.ls19_c00239{letter-spacing:-0.080160pt;}
.ls15_c00239{letter-spacing:-0.044800pt;}
.lsf_c00239{letter-spacing:-0.042752pt;}
.ls18_c00239{letter-spacing:-0.038400pt;}
.ls17_c00239{letter-spacing:-0.032000pt;}
.ls11_c00239{letter-spacing:-0.025600pt;}
.ls12_c00239{letter-spacing:-0.019200pt;}
.ls14_c00239{letter-spacing:-0.012800pt;}
.ls10_c00239{letter-spacing:0.000000pt;}
.ls2_c00239{letter-spacing:0.006400pt;}
.ls8_c00239{letter-spacing:0.012800pt;}
.ls6_c00239{letter-spacing:0.019200pt;}
.ls3_c00239{letter-spacing:0.025600pt;}
.ls0_c00239{letter-spacing:0.032000pt;}
.ls7_c00239{letter-spacing:0.038400pt;}
.lse_c00239{letter-spacing:0.042752pt;}
.ls5_c00239{letter-spacing:0.044800pt;}
.ls4_c00239{letter-spacing:0.051200pt;}
.lsb_c00239{letter-spacing:0.057600pt;}
.lsa_c00239{letter-spacing:0.064000pt;}
.ls1_c00239{letter-spacing:0.070400pt;}
.ls9_c00239{letter-spacing:0.083200pt;}
.ls1a_c00239{letter-spacing:0.101536pt;}
.lsd_c00239{letter-spacing:0.121600pt;}
.ls16_c00239{letter-spacing:0.161728pt;}
.lsc_c00239{letter-spacing:0.166400pt;}
.ls13_c00239{letter-spacing:22.080000pt;}
.ws0_c00239{word-spacing:-16.057600pt;}
.ws5_c00239{word-spacing:-13.461536pt;}
.ws3_c00239{word-spacing:-13.402752pt;}
.ws4_c00239{word-spacing:-13.360000pt;}
.ws1_c00239{word-spacing:-10.801728pt;}
.ws2_c00239{word-spacing:-8.640000pt;}
.ws7_c00239{word-spacing:0.000000pt;}
.ws9_c00239{word-spacing:0.083200pt;}
.ws8_c00239{word-spacing:0.089600pt;}
.wsc_c00239{word-spacing:0.108800pt;}
.ws6_c00239{word-spacing:0.122912pt;}
.wsb_c00239{word-spacing:10.438400pt;}
.wsa_c00239{word-spacing:10.515200pt;}
._6_c00239{margin-left:-22.784000pt;}
._5_c00239{margin-left:-21.747200pt;}
._c_c00239{margin-left:-3.763200pt;}
._a_c00239{margin-left:-2.636800pt;}
._1_c00239{margin-left:-1.094400pt;}
._0_c00239{width:0.921600pt;}
._7_c00239{width:1.881600pt;}
._b_c00239{width:2.816000pt;}
._11_c00239{width:5.273600pt;}
._10_c00239{width:9.248000pt;}
._12_c00239{width:10.553600pt;}
._d_c00239{width:11.449600pt;}
._e_c00239{width:12.838400pt;}
._f_c00239{width:13.728000pt;}
._3_c00239{width:19.526400pt;}
._2_c00239{width:20.454400pt;}
._4_c00239{width:22.380800pt;}
._8_c00239{width:25.241600pt;}
._9_c00239{width:26.521600pt;}
.fs3_c00239{font-size:34.560000pt;}
.fs2_c00239{font-size:42.560000pt;}
.fs0_c00239{font-size:53.440000pt;}
.fs1_c00239{font-size:64.000000pt;}
.y0_c00239{bottom:0.000000pt;}
.y6_c00239{bottom:50.987067pt;}
.y5_c00239{bottom:69.387067pt;}
.y28_c00239{bottom:97.707235pt;}
.y27_c00239{bottom:117.627067pt;}
.y26_c00239{bottom:128.907067pt;}
.y25_c00239{bottom:180.587067pt;}
.y24_c00239{bottom:208.187067pt;}
.y23_c00239{bottom:235.787067pt;}
.y22_c00239{bottom:263.387067pt;}
.y21_c00239{bottom:290.987067pt;}
.y20_c00239{bottom:318.587067pt;}
.y1f_c00239{bottom:346.187067pt;}
.y1e_c00239{bottom:373.787067pt;}
.y1d_c00239{bottom:404.267067pt;}
.y1c_c00239{bottom:424.027067pt;}
.y1b_c00239{bottom:454.427067pt;}
.y1a_c00239{bottom:482.027067pt;}
.y19_c00239{bottom:509.627067pt;}
.y18_c00239{bottom:537.227067pt;}
.y17_c00239{bottom:564.827067pt;}
.y16_c00239{bottom:592.427067pt;}
.y15_c00239{bottom:620.027067pt;}
.y14_c00239{bottom:647.627067pt;}
.y13_c00239{bottom:675.227067pt;}
.y12_c00239{bottom:702.827067pt;}
.y11_c00239{bottom:733.227067pt;}
.y10_c00239{bottom:753.067067pt;}
.yf_c00239{bottom:783.467067pt;}
.ye_c00239{bottom:811.067067pt;}
.yd_c00239{bottom:838.667067pt;}
.yc_c00239{bottom:866.267067pt;}
.yb_c00239{bottom:893.867067pt;}
.ya_c00239{bottom:921.467067pt;}
.y9_c00239{bottom:949.067067pt;}
.y8_c00239{bottom:979.467067pt;}
.y7_c00239{bottom:999.307067pt;}
.y4_c00239{bottom:1017.227251pt;}
.y3_c00239{bottom:1032.587243pt;}
.y2_c00239{bottom:1047.867075pt;}
.y1_c00239{bottom:1063.227067pt;}
.h5_c00239{height:30.324375pt;}
.h6_c00239{height:46.890469pt;}
.h1_c00239{height:47.020937pt;}
.h2_c00239{height:56.156250pt;}
.h3_c00239{height:56.312500pt;}
.h4_c00239{height:61.343906pt;}
.h0_c00239{height:1122.666667pt;}
.w1_c00239{width:793.333333pt;}
.w0_c00239{width:793.626667pt;}
.x0_c00239{left:0.000000pt;}
.x4_c00239{left:113.440000pt;}
.x1_c00239{left:577.440000pt;}
.x3_c00239{left:656.400000pt;}
.x2_c00239{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8b1533c242806c26c050c0c7.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.095703;font-style:normal;font-weight:normal;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_98b8f9f182e605588e79e7f2.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.093262;font-style:normal;font-weight:normal;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_b32b949b40d0181aa967e6fd.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls13_c00240{letter-spacing:-0.360000px;}
.ls18_c00240{letter-spacing:-0.172800px;}
.lsb_c00240{letter-spacing:-0.102204px;}
.ls15_c00240{letter-spacing:-0.086400px;}
.ls17_c00240{letter-spacing:-0.064800px;}
.lsf_c00240{letter-spacing:-0.057600px;}
.lse_c00240{letter-spacing:-0.043200px;}
.ls11_c00240{letter-spacing:-0.028800px;}
.ls12_c00240{letter-spacing:-0.021600px;}
.ls14_c00240{letter-spacing:-0.014400px;}
.ls16_c00240{letter-spacing:-0.010800px;}
.lsd_c00240{letter-spacing:-0.007200px;}
.lsc_c00240{letter-spacing:0.000000px;}
.ls2_c00240{letter-spacing:0.007200px;}
.ls0_c00240{letter-spacing:0.014400px;}
.ls9_c00240{letter-spacing:0.021600px;}
.ls4_c00240{letter-spacing:0.028800px;}
.ls5_c00240{letter-spacing:0.036000px;}
.ls6_c00240{letter-spacing:0.043200px;}
.ls3_c00240{letter-spacing:0.057600px;}
.ls7_c00240{letter-spacing:0.064800px;}
.ls1_c00240{letter-spacing:0.072000px;}
.ls8_c00240{letter-spacing:0.093600px;}
.lsa_c00240{letter-spacing:0.108000px;}
.ls10_c00240{letter-spacing:1.440000px;}
.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:0.000000px;}
.ws3_c00240{word-spacing:0.144000px;}
.ws4_c00240{word-spacing:0.189000px;}
.ws0_c00240{word-spacing:0.192384px;}
.ws2_c00240{word-spacing:1.036800px;}
._16_c00240{margin-left:-5.493600px;}
._2_c00240{margin-left:-3.967200px;}
._9_c00240{margin-left:-2.786400px;}
._1_c00240{margin-left:-1.396800px;}
._0_c00240{width:1.034064px;}
._6_c00240{width:2.168208px;}
._5_c00240{width:4.572000px;}
._4_c00240{width:5.724000px;}
._7_c00240{width:7.084800px;}
._3_c00240{width:16.142400px;}
._b_c00240{width:69.955200px;}
._a_c00240{width:185.414400px;}
._e_c00240{width:213.003072px;}
._11_c00240{width:214.034400px;}
._13_c00240{width:227.512800px;}
._d_c00240{width:229.564800px;}
._f_c00240{width:237.945600px;}
._8_c00240{width:252.100800px;}
._14_c00240{width:295.567200px;}
._12_c00240{width:296.743536px;}
._15_c00240{width:320.184000px;}
._10_c00240{width:323.294400px;}
._c_c00240{width:359.280000px;}
.fc2_c00240{color:rgb(68,84,106);}
.fc1_c00240{color:rgb(0,0,0);}
.fc0_c00240{color:rgb(32,31,30);}
.fs2_c00240{font-size:54.000000px;}
.fs0_c00240{font-size:60.120000px;}
.fs1_c00240{font-size:72.000000px;}
.y0_c00240{bottom:0.000000px;}
.y5_c00240{bottom:57.360450px;}
.y4_c00240{bottom:78.060450px;}
.y26_c00240{bottom:123.599892px;}
.y25_c00240{bottom:149.430450px;}
.y24_c00240{bottom:178.230450px;}
.y23_c00240{bottom:209.640450px;}
.y22_c00240{bottom:241.140450px;}
.y21_c00240{bottom:272.550450px;}
.y20_c00240{bottom:303.960600px;}
.y1f_c00240{bottom:337.260450px;}
.y1e_c00240{bottom:368.310450px;}
.y1d_c00240{bottom:404.040600px;}
.y1c_c00240{bottom:430.770450px;}
.y1b_c00240{bottom:461.820450px;}
.y1a_c00240{bottom:492.870450px;}
.y19_c00240{bottom:523.920450px;}
.y18_c00240{bottom:554.970450px;}
.y17_c00240{bottom:586.020450px;}
.y16_c00240{bottom:617.070450px;}
.y15_c00240{bottom:648.120450px;}
.y14_c00240{bottom:679.170450px;}
.y13_c00240{bottom:713.460450px;}
.y12_c00240{bottom:735.690450px;}
.y11_c00240{bottom:769.890450px;}
.y10_c00240{bottom:800.940450px;}
.yf_c00240{bottom:831.990450px;}
.ye_c00240{bottom:863.040450px;}
.yd_c00240{bottom:894.090450px;}
.yc_c00240{bottom:925.140450px;}
.yb_c00240{bottom:956.190450px;}
.ya_c00240{bottom:987.240450px;}
.y9_c00240{bottom:1018.290450px;}
.y8_c00240{bottom:1049.340450px;}
.y7_c00240{bottom:1080.390450px;}
.y6_c00240{bottom:1111.440450px;}
.y3_c00240{bottom:1132.140450px;}
.y2_c00240{bottom:1165.441023px;}
.y1_c00240{bottom:1196.040600px;}
.h4_c00240{height:47.513672px;}
.h6_c00240{height:52.751777px;}
.h1_c00240{height:52.898555px;}
.h2_c00240{height:63.175781px;}
.h3_c00240{height:63.351562px;}
.h5_c00240{height:63.949219px;}
.h0_c00240{height:1263.000000px;}
.w1_c00240{width:892.500000px;}
.w0_c00240{width:892.830000px;}
.x0_c00240{left:0.000000px;}
.x1_c00240{left:127.620000px;}
.x4_c00240{left:136.080000px;}
.x3_c00240{left:220.230000px;}
.x5_c00240{left:263.430000px;}
.x2_c00240{left:738.450000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls13_c00240{letter-spacing:-0.320000pt;}
.ls18_c00240{letter-spacing:-0.153600pt;}
.lsb_c00240{letter-spacing:-0.090848pt;}
.ls15_c00240{letter-spacing:-0.076800pt;}
.ls17_c00240{letter-spacing:-0.057600pt;}
.lsf_c00240{letter-spacing:-0.051200pt;}
.lse_c00240{letter-spacing:-0.038400pt;}
.ls11_c00240{letter-spacing:-0.025600pt;}
.ls12_c00240{letter-spacing:-0.019200pt;}
.ls14_c00240{letter-spacing:-0.012800pt;}
.ls16_c00240{letter-spacing:-0.009600pt;}
.lsd_c00240{letter-spacing:-0.006400pt;}
.lsc_c00240{letter-spacing:0.000000pt;}
.ls2_c00240{letter-spacing:0.006400pt;}
.ls0_c00240{letter-spacing:0.012800pt;}
.ls9_c00240{letter-spacing:0.019200pt;}
.ls4_c00240{letter-spacing:0.025600pt;}
.ls5_c00240{letter-spacing:0.032000pt;}
.ls6_c00240{letter-spacing:0.038400pt;}
.ls3_c00240{letter-spacing:0.051200pt;}
.ls7_c00240{letter-spacing:0.057600pt;}
.ls1_c00240{letter-spacing:0.064000pt;}
.ls8_c00240{letter-spacing:0.083200pt;}
.lsa_c00240{letter-spacing:0.096000pt;}
.ls10_c00240{letter-spacing:1.280000pt;}
.ws1_c00240{word-spacing:0.000000pt;}
.ws3_c00240{word-spacing:0.128000pt;}
.ws4_c00240{word-spacing:0.168000pt;}
.ws0_c00240{word-spacing:0.171008pt;}
.ws2_c00240{word-spacing:0.921600pt;}
._16_c00240{margin-left:-4.883200pt;}
._2_c00240{margin-left:-3.526400pt;}
._9_c00240{margin-left:-2.476800pt;}
._1_c00240{margin-left:-1.241600pt;}
._0_c00240{width:0.919168pt;}
._6_c00240{width:1.927296pt;}
._5_c00240{width:4.064000pt;}
._4_c00240{width:5.088000pt;}
._7_c00240{width:6.297600pt;}
._3_c00240{width:14.348800pt;}
._b_c00240{width:62.182400pt;}
._a_c00240{width:164.812800pt;}
._e_c00240{width:189.336064pt;}
._11_c00240{width:190.252800pt;}
._13_c00240{width:202.233600pt;}
._d_c00240{width:204.057600pt;}
._f_c00240{width:211.507200pt;}
._8_c00240{width:224.089600pt;}
._14_c00240{width:262.726400pt;}
._12_c00240{width:263.772032pt;}
._15_c00240{width:284.608000pt;}
._10_c00240{width:287.372800pt;}
._c_c00240{width:319.360000pt;}
.fs2_c00240{font-size:48.000000pt;}
.fs0_c00240{font-size:53.440000pt;}
.fs1_c00240{font-size:64.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y5_c00240{bottom:50.987067pt;}
.y4_c00240{bottom:69.387067pt;}
.y26_c00240{bottom:109.866571pt;}
.y25_c00240{bottom:132.827067pt;}
.y24_c00240{bottom:158.427067pt;}
.y23_c00240{bottom:186.347067pt;}
.y22_c00240{bottom:214.347067pt;}
.y21_c00240{bottom:242.267067pt;}
.y20_c00240{bottom:270.187200pt;}
.y1f_c00240{bottom:299.787067pt;}
.y1e_c00240{bottom:327.387067pt;}
.y1d_c00240{bottom:359.147200pt;}
.y1c_c00240{bottom:382.907067pt;}
.y1b_c00240{bottom:410.507067pt;}
.y1a_c00240{bottom:438.107067pt;}
.y19_c00240{bottom:465.707067pt;}
.y18_c00240{bottom:493.307067pt;}
.y17_c00240{bottom:520.907067pt;}
.y16_c00240{bottom:548.507067pt;}
.y15_c00240{bottom:576.107067pt;}
.y14_c00240{bottom:603.707067pt;}
.y13_c00240{bottom:634.187067pt;}
.y12_c00240{bottom:653.947067pt;}
.y11_c00240{bottom:684.347067pt;}
.y10_c00240{bottom:711.947067pt;}
.yf_c00240{bottom:739.547067pt;}
.ye_c00240{bottom:767.147067pt;}
.yd_c00240{bottom:794.747067pt;}
.yc_c00240{bottom:822.347067pt;}
.yb_c00240{bottom:849.947067pt;}
.ya_c00240{bottom:877.547067pt;}
.y9_c00240{bottom:905.147067pt;}
.y8_c00240{bottom:932.747067pt;}
.y7_c00240{bottom:960.347067pt;}
.y6_c00240{bottom:987.947067pt;}
.y3_c00240{bottom:1006.347067pt;}
.y2_c00240{bottom:1035.947576pt;}
.y1_c00240{bottom:1063.147200pt;}
.h4_c00240{height:42.234375pt;}
.h6_c00240{height:46.890469pt;}
.h1_c00240{height:47.020937pt;}
.h2_c00240{height:56.156250pt;}
.h3_c00240{height:56.312500pt;}
.h5_c00240{height:56.843750pt;}
.h0_c00240{height:1122.666667pt;}
.w1_c00240{width:793.333333pt;}
.w0_c00240{width:793.626667pt;}
.x0_c00240{left:0.000000pt;}
.x1_c00240{left:113.440000pt;}
.x4_c00240{left:120.960000pt;}
.x3_c00240{left:195.760000pt;}
.x5_c00240{left:234.160000pt;}
.x2_c00240{left:656.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_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_6e6e9796fe7638860be44f12.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.095703;font-style:normal;font-weight:normal;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_c61dc4509a343e47e3819841.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.093262;font-style:normal;font-weight:normal;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_68626830f25da115dfca3870.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.lsc_c00241{letter-spacing:-0.360000px;}
.ls11_c00241{letter-spacing:-0.172800px;}
.lsb_c00241{letter-spacing:-0.086400px;}
.ls8_c00241{letter-spacing:-0.064800px;}
.ls9_c00241{letter-spacing:-0.057600px;}
.ls5_c00241{letter-spacing:-0.048096px;}
.lsa_c00241{letter-spacing:-0.036000px;}
.ls10_c00241{letter-spacing:-0.028800px;}
.lse_c00241{letter-spacing:-0.021600px;}
.lsd_c00241{letter-spacing:-0.014400px;}
.ls7_c00241{letter-spacing:-0.010800px;}
.lsf_c00241{letter-spacing:-0.007200px;}
.ls6_c00241{letter-spacing:0.000000px;}
.ls3_c00241{letter-spacing:0.007200px;}
.ls0_c00241{letter-spacing:0.014400px;}
.ls2_c00241{letter-spacing:0.021600px;}
.ls1_c00241{letter-spacing:0.028800px;}
.ls4_c00241{letter-spacing:0.108000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00241{word-spacing:0.000000px;}
.ws0_c00241{word-spacing:0.138276px;}
.ws2_c00241{word-spacing:0.189000px;}
._6_c00241{margin-left:-4.737600px;}
._d_c00241{margin-left:-2.786400px;}
._7_c00241{width:1.411200px;}
._f_c00241{width:69.955200px;}
._1_c00241{width:171.820800px;}
._e_c00241{width:185.414400px;}
._8_c00241{width:213.379200px;}
._0_c00241{width:216.165600px;}
._b_c00241{width:227.512800px;}
._5_c00241{width:229.269600px;}
._a_c00241{width:237.585600px;}
._2_c00241{width:252.100800px;}
._c_c00241{width:295.927200px;}
._4_c00241{width:320.184000px;}
._9_c00241{width:323.294400px;}
._3_c00241{width:359.280000px;}
.fc1_c00241{color:rgb(68,84,106);}
.fc0_c00241{color:rgb(0,0,0);}
.fs2_c00241{font-size:54.000000px;}
.fs0_c00241{font-size:60.120000px;}
.fs1_c00241{font-size:72.000000px;}
.y0_c00241{bottom:0.000000px;}
.y6_c00241{bottom:57.360450px;}
.y5_c00241{bottom:78.060450px;}
.y27_c00241{bottom:133.050450px;}
.y26_c00241{bottom:164.100450px;}
.y25_c00241{bottom:195.150450px;}
.y24_c00241{bottom:223.950600px;}
.y23_c00241{bottom:252.840450px;}
.y22_c00241{bottom:284.250450px;}
.y21_c00241{bottom:315.660450px;}
.y20_c00241{bottom:347.070450px;}
.y1f_c00241{bottom:378.480450px;}
.y1e_c00241{bottom:411.780450px;}
.y1d_c00241{bottom:442.830450px;}
.y1c_c00241{bottom:478.650450px;}
.y1b_c00241{bottom:505.380450px;}
.y1a_c00241{bottom:534.000450px;}
.y19_c00241{bottom:562.800450px;}
.y18_c00241{bottom:594.300450px;}
.y17_c00241{bottom:625.710450px;}
.y16_c00241{bottom:657.120450px;}
.y15_c00241{bottom:688.530450px;}
.y14_c00241{bottom:721.830450px;}
.y13_c00241{bottom:752.880450px;}
.y12_c00241{bottom:788.610000px;}
.y11_c00241{bottom:819.120000px;}
.y10_c00241{bottom:849.720450px;}
.yf_c00241{bottom:876.990450px;}
.ye_c00241{bottom:908.400450px;}
.yd_c00241{bottom:939.810450px;}
.yc_c00241{bottom:971.220450px;}
.yb_c00241{bottom:1002.630450px;}
.ya_c00241{bottom:1035.930450px;}
.y9_c00241{bottom:1066.980450px;}
.y8_c00241{bottom:1102.800450px;}
.y7_c00241{bottom:1127.100450px;}
.y4_c00241{bottom:1144.380657px;}
.y3_c00241{bottom:1161.660648px;}
.y2_c00241{bottom:1178.850459px;}
.y1_c00241{bottom:1196.130450px;}
.h4_c00241{height:47.513672px;}
.h3_c00241{height:52.751777px;}
.h1_c00241{height:52.898555px;}
.h2_c00241{height:63.175781px;}
.h5_c00241{height:63.949219px;}
.h0_c00241{height:1263.000000px;}
.w1_c00241{width:892.500000px;}
.w0_c00241{width:892.830000px;}
.x0_c00241{left:0.000000px;}
.x4_c00241{left:127.620000px;}
.x6_c00241{left:136.080000px;}
.x5_c00241{left:220.230000px;}
.x7_c00241{left:263.430000px;}
.x1_c00241{left:649.620000px;}
.x3_c00241{left:738.450000px;}
.x2_c00241{left:765.450198px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.lsc_c00241{letter-spacing:-0.320000pt;}
.ls11_c00241{letter-spacing:-0.153600pt;}
.lsb_c00241{letter-spacing:-0.076800pt;}
.ls8_c00241{letter-spacing:-0.057600pt;}
.ls9_c00241{letter-spacing:-0.051200pt;}
.ls5_c00241{letter-spacing:-0.042752pt;}
.lsa_c00241{letter-spacing:-0.032000pt;}
.ls10_c00241{letter-spacing:-0.025600pt;}
.lse_c00241{letter-spacing:-0.019200pt;}
.lsd_c00241{letter-spacing:-0.012800pt;}
.ls7_c00241{letter-spacing:-0.009600pt;}
.lsf_c00241{letter-spacing:-0.006400pt;}
.ls6_c00241{letter-spacing:0.000000pt;}
.ls3_c00241{letter-spacing:0.006400pt;}
.ls0_c00241{letter-spacing:0.012800pt;}
.ls2_c00241{letter-spacing:0.019200pt;}
.ls1_c00241{letter-spacing:0.025600pt;}
.ls4_c00241{letter-spacing:0.096000pt;}
.ws1_c00241{word-spacing:0.000000pt;}
.ws0_c00241{word-spacing:0.122912pt;}
.ws2_c00241{word-spacing:0.168000pt;}
._6_c00241{margin-left:-4.211200pt;}
._d_c00241{margin-left:-2.476800pt;}
._7_c00241{width:1.254400pt;}
._f_c00241{width:62.182400pt;}
._1_c00241{width:152.729600pt;}
._e_c00241{width:164.812800pt;}
._8_c00241{width:189.670400pt;}
._0_c00241{width:192.147200pt;}
._b_c00241{width:202.233600pt;}
._5_c00241{width:203.795200pt;}
._a_c00241{width:211.187200pt;}
._2_c00241{width:224.089600pt;}
._c_c00241{width:263.046400pt;}
._4_c00241{width:284.608000pt;}
._9_c00241{width:287.372800pt;}
._3_c00241{width:319.360000pt;}
.fs2_c00241{font-size:48.000000pt;}
.fs0_c00241{font-size:53.440000pt;}
.fs1_c00241{font-size:64.000000pt;}
.y0_c00241{bottom:0.000000pt;}
.y6_c00241{bottom:50.987067pt;}
.y5_c00241{bottom:69.387067pt;}
.y27_c00241{bottom:118.267067pt;}
.y26_c00241{bottom:145.867067pt;}
.y25_c00241{bottom:173.467067pt;}
.y24_c00241{bottom:199.067200pt;}
.y23_c00241{bottom:224.747067pt;}
.y22_c00241{bottom:252.667067pt;}
.y21_c00241{bottom:280.587067pt;}
.y20_c00241{bottom:308.507067pt;}
.y1f_c00241{bottom:336.427067pt;}
.y1e_c00241{bottom:366.027067pt;}
.y1d_c00241{bottom:393.627067pt;}
.y1c_c00241{bottom:425.467067pt;}
.y1b_c00241{bottom:449.227067pt;}
.y1a_c00241{bottom:474.667067pt;}
.y19_c00241{bottom:500.267067pt;}
.y18_c00241{bottom:528.267067pt;}
.y17_c00241{bottom:556.187067pt;}
.y16_c00241{bottom:584.107067pt;}
.y15_c00241{bottom:612.027067pt;}
.y14_c00241{bottom:641.627067pt;}
.y13_c00241{bottom:669.227067pt;}
.y12_c00241{bottom:700.986667pt;}
.y11_c00241{bottom:728.106667pt;}
.y10_c00241{bottom:755.307067pt;}
.yf_c00241{bottom:779.547067pt;}
.ye_c00241{bottom:807.467067pt;}
.yd_c00241{bottom:835.387067pt;}
.yc_c00241{bottom:863.307067pt;}
.yb_c00241{bottom:891.227067pt;}
.ya_c00241{bottom:920.827067pt;}
.y9_c00241{bottom:948.427067pt;}
.y8_c00241{bottom:980.267067pt;}
.y7_c00241{bottom:1001.867067pt;}
.y4_c00241{bottom:1017.227251pt;}
.y3_c00241{bottom:1032.587243pt;}
.y2_c00241{bottom:1047.867075pt;}
.y1_c00241{bottom:1063.227067pt;}
.h4_c00241{height:42.234375pt;}
.h3_c00241{height:46.890469pt;}
.h1_c00241{height:47.020937pt;}
.h2_c00241{height:56.156250pt;}
.h5_c00241{height:56.843750pt;}
.h0_c00241{height:1122.666667pt;}
.w1_c00241{width:793.333333pt;}
.w0_c00241{width:793.626667pt;}
.x0_c00241{left:0.000000pt;}
.x4_c00241{left:113.440000pt;}
.x6_c00241{left:120.960000pt;}
.x5_c00241{left:195.760000pt;}
.x7_c00241{left:234.160000pt;}
.x1_c00241{left:577.440000pt;}
.x3_c00241{left:656.400000pt;}
.x2_c00241{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a09aa768c33d160f1fe1aa4.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.095703;font-style:normal;font-weight:normal;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_598c6df7da5f6b2d3878c962.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.093262;font-style:normal;font-weight:normal;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_13e4c6e9a2b74dbc3af2e38a.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:0.896973;font-style:normal;font-weight:normal;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_b32b949b40d0181aa967e6fd.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00242;src:url('chunks/assets/font_e3e5c377e28628a4de297643.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00242;src:url('chunks/assets/font_e336adc5d7bfbfd18b4f4ec0.woff2')format("woff");}.ff6_c00242{font-family:ff6_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;}
.m0_c00242{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.v1_c00242{vertical-align:65.880000px;}
.ls13_c00242{letter-spacing:-0.360000px;}
.ls1a_c00242{letter-spacing:-0.151200px;}
.ls18_c00242{letter-spacing:-0.124200px;}
.ls19_c00242{letter-spacing:-0.113400px;}
.lse_c00242{letter-spacing:-0.102204px;}
.ls1d_c00242{letter-spacing:-0.091800px;}
.ls16_c00242{letter-spacing:-0.086400px;}
.ls11_c00242{letter-spacing:-0.064800px;}
.ls1b_c00242{letter-spacing:-0.059400px;}
.ls12_c00242{letter-spacing:-0.028800px;}
.ls15_c00242{letter-spacing:-0.021600px;}
.ls1c_c00242{letter-spacing:-0.016200px;}
.ls14_c00242{letter-spacing:-0.014400px;}
.ls10_c00242{letter-spacing:-0.010800px;}
.ls17_c00242{letter-spacing:-0.007200px;}
.lsf_c00242{letter-spacing:0.000000px;}
.ls4_c00242{letter-spacing:0.007200px;}
.ls0_c00242{letter-spacing:0.014400px;}
.lsa_c00242{letter-spacing:0.016200px;}
.ls3_c00242{letter-spacing:0.021600px;}
.ls2_c00242{letter-spacing:0.028800px;}
.ls6_c00242{letter-spacing:0.036000px;}
.ls7_c00242{letter-spacing:0.043200px;}
.ls5_c00242{letter-spacing:0.050400px;}
.ls8_c00242{letter-spacing:0.057600px;}
.lsb_c00242{letter-spacing:0.072000px;}
.ls9_c00242{letter-spacing:0.079200px;}
.lsd_c00242{letter-spacing:0.102600px;}
.ls1_c00242{letter-spacing:0.108000px;}
.ls1e_c00242{letter-spacing:0.496800px;}
.lsc_c00242{letter-spacing:400.320000px;}
.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:-20.088000px;}
.ws2_c00242{word-spacing:0.000000px;}
.ws4_c00242{word-spacing:0.162000px;}
.ws3_c00242{word-spacing:0.189000px;}
.ws1_c00242{word-spacing:0.192384px;}
._6_c00242{margin-left:-4.737600px;}
._2_c00242{margin-left:-2.786400px;}
._10_c00242{margin-left:-1.029600px;}
._0_c00242{width:1.034064px;}
._11_c00242{width:4.752000px;}
._12_c00242{width:5.961600px;}
._13_c00242{width:7.389936px;}
._f_c00242{width:10.411200px;}
._4_c00242{width:69.955200px;}
._15_c00242{width:99.070200px;}
._17_c00242{width:107.723736px;}
._1a_c00242{width:119.461536px;}
._3_c00242{width:185.414400px;}
._e_c00242{width:212.392800px;}
._7_c00242{width:214.133472px;}
._c_c00242{width:227.512800px;}
._d_c00242{width:229.939200px;}
._8_c00242{width:237.585600px;}
._1_c00242{width:252.100800px;}
._16_c00242{width:254.750400px;}
._14_c00242{width:271.245600px;}
._1c_c00242{width:275.950800px;}
._9_c00242{width:295.927200px;}
._19_c00242{width:305.922600px;}
._1b_c00242{width:316.544400px;}
._b_c00242{width:319.514400px;}
._a_c00242{width:323.294400px;}
._18_c00242{width:335.723400px;}
._5_c00242{width:359.280000px;}
.fc4_c00242{color:rgb(38,74,96);}
.fc3_c00242{color:rgb(1,2,5);}
.fc2_c00242{color:rgb(68,84,106);}
.fc1_c00242{color:rgb(0,0,0);}
.fc0_c00242{color:rgb(32,31,30);}
.fs2_c00242{font-size:54.000000px;}
.fs0_c00242{font-size:60.120000px;}
.fs1_c00242{font-size:72.000000px;}
.y0_c00242{bottom:0.000000px;}
.y5_c00242{bottom:57.360450px;}
.y4_c00242{bottom:78.060450px;}
.y2a_c00242{bottom:116.940450px;}
.y29_c00242{bottom:141.330450px;}
.y28_c00242{bottom:165.720450px;}
.y27_c00242{bottom:190.110450px;}
.y26_c00242{bottom:214.500450px;}
.y25_c00242{bottom:238.890450px;}
.y24_c00242{bottom:263.190450px;}
.y23_c00242{bottom:287.580450px;}
.y22_c00242{bottom:311.970450px;}
.y21_c00242{bottom:336.360450px;}
.y20_c00242{bottom:360.750600px;}
.y1f_c00242{bottom:385.140450px;}
.y1e_c00242{bottom:409.440450px;}
.y1d_c00242{bottom:433.830450px;}
.y1c_c00242{bottom:458.220450px;}
.y1b_c00242{bottom:482.610600px;}
.y1a_c00242{bottom:507.000600px;}
.y19_c00242{bottom:532.290450px;}
.y18_c00242{bottom:552.990450px;}
.y17_c00242{bottom:588.360450px;}
.y16_c00242{bottom:615.090450px;}
.y15_c00242{bottom:646.140450px;}
.y14_c00242{bottom:677.190450px;}
.y13_c00242{bottom:708.240450px;}
.y12_c00242{bottom:739.290450px;}
.y11_c00242{bottom:770.340450px;}
.y10_c00242{bottom:801.390450px;}
.yf_c00242{bottom:832.440450px;}
.ye_c00242{bottom:861.060450px;}
.yd_c00242{bottom:889.950450px;}
.yc_c00242{bottom:921.720450px;}
.yb_c00242{bottom:953.490450px;}
.ya_c00242{bottom:985.350450px;}
.y9_c00242{bottom:1017.120450px;}
.y8_c00242{bottom:1048.890450px;}
.y7_c00242{bottom:1079.940450px;}
.y6_c00242{bottom:1115.760450px;}
.y3_c00242{bottom:1132.140450px;}
.y2_c00242{bottom:1165.441023px;}
.y1_c00242{bottom:1196.040600px;}
.h3_c00242{height:47.513672px;}
.h8_c00242{height:48.410156px;}
.h5_c00242{height:52.751777px;}
.h1_c00242{height:52.898555px;}
.h2_c00242{height:63.175781px;}
.h4_c00242{height:63.949219px;}
.h6_c00242{height:65.003906px;}
.h7_c00242{height:114.290156px;}
.h0_c00242{height:1263.000000px;}
.w1_c00242{width:892.500000px;}
.w0_c00242{width:892.830000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:127.620000px;}
.x4_c00242{left:136.080000px;}
.x6_c00242{left:203.040000px;}
.x3_c00242{left:220.230000px;}
.x5_c00242{left:263.430000px;}
.x2_c00242{left:738.450000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.v1_c00242{vertical-align:58.560000pt;}
.ls13_c00242{letter-spacing:-0.320000pt;}
.ls1a_c00242{letter-spacing:-0.134400pt;}
.ls18_c00242{letter-spacing:-0.110400pt;}
.ls19_c00242{letter-spacing:-0.100800pt;}
.lse_c00242{letter-spacing:-0.090848pt;}
.ls1d_c00242{letter-spacing:-0.081600pt;}
.ls16_c00242{letter-spacing:-0.076800pt;}
.ls11_c00242{letter-spacing:-0.057600pt;}
.ls1b_c00242{letter-spacing:-0.052800pt;}
.ls12_c00242{letter-spacing:-0.025600pt;}
.ls15_c00242{letter-spacing:-0.019200pt;}
.ls1c_c00242{letter-spacing:-0.014400pt;}
.ls14_c00242{letter-spacing:-0.012800pt;}
.ls10_c00242{letter-spacing:-0.009600pt;}
.ls17_c00242{letter-spacing:-0.006400pt;}
.lsf_c00242{letter-spacing:0.000000pt;}
.ls4_c00242{letter-spacing:0.006400pt;}
.ls0_c00242{letter-spacing:0.012800pt;}
.lsa_c00242{letter-spacing:0.014400pt;}
.ls3_c00242{letter-spacing:0.019200pt;}
.ls2_c00242{letter-spacing:0.025600pt;}
.ls6_c00242{letter-spacing:0.032000pt;}
.ls7_c00242{letter-spacing:0.038400pt;}
.ls5_c00242{letter-spacing:0.044800pt;}
.ls8_c00242{letter-spacing:0.051200pt;}
.lsb_c00242{letter-spacing:0.064000pt;}
.ls9_c00242{letter-spacing:0.070400pt;}
.lsd_c00242{letter-spacing:0.091200pt;}
.ls1_c00242{letter-spacing:0.096000pt;}
.ls1e_c00242{letter-spacing:0.441600pt;}
.lsc_c00242{letter-spacing:355.840000pt;}
.ws0_c00242{word-spacing:-17.856000pt;}
.ws2_c00242{word-spacing:0.000000pt;}
.ws4_c00242{word-spacing:0.144000pt;}
.ws3_c00242{word-spacing:0.168000pt;}
.ws1_c00242{word-spacing:0.171008pt;}
._6_c00242{margin-left:-4.211200pt;}
._2_c00242{margin-left:-2.476800pt;}
._10_c00242{margin-left:-0.915200pt;}
._0_c00242{width:0.919168pt;}
._11_c00242{width:4.224000pt;}
._12_c00242{width:5.299200pt;}
._13_c00242{width:6.568832pt;}
._f_c00242{width:9.254400pt;}
._4_c00242{width:62.182400pt;}
._15_c00242{width:88.062400pt;}
._17_c00242{width:95.754432pt;}
._1a_c00242{width:106.188032pt;}
._3_c00242{width:164.812800pt;}
._e_c00242{width:188.793600pt;}
._7_c00242{width:190.340864pt;}
._c_c00242{width:202.233600pt;}
._d_c00242{width:204.390400pt;}
._8_c00242{width:211.187200pt;}
._1_c00242{width:224.089600pt;}
._16_c00242{width:226.444800pt;}
._14_c00242{width:241.107200pt;}
._1c_c00242{width:245.289600pt;}
._9_c00242{width:263.046400pt;}
._19_c00242{width:271.931200pt;}
._1b_c00242{width:281.372800pt;}
._b_c00242{width:284.012800pt;}
._a_c00242{width:287.372800pt;}
._18_c00242{width:298.420800pt;}
._5_c00242{width:319.360000pt;}
.fs2_c00242{font-size:48.000000pt;}
.fs0_c00242{font-size:53.440000pt;}
.fs1_c00242{font-size:64.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y5_c00242{bottom:50.987067pt;}
.y4_c00242{bottom:69.387067pt;}
.y2a_c00242{bottom:103.947067pt;}
.y29_c00242{bottom:125.627067pt;}
.y28_c00242{bottom:147.307067pt;}
.y27_c00242{bottom:168.987067pt;}
.y26_c00242{bottom:190.667067pt;}
.y25_c00242{bottom:212.347067pt;}
.y24_c00242{bottom:233.947067pt;}
.y23_c00242{bottom:255.627067pt;}
.y22_c00242{bottom:277.307067pt;}
.y21_c00242{bottom:298.987067pt;}
.y20_c00242{bottom:320.667200pt;}
.y1f_c00242{bottom:342.347067pt;}
.y1e_c00242{bottom:363.947067pt;}
.y1d_c00242{bottom:385.627067pt;}
.y1c_c00242{bottom:407.307067pt;}
.y1b_c00242{bottom:428.987200pt;}
.y1a_c00242{bottom:450.667200pt;}
.y19_c00242{bottom:473.147067pt;}
.y18_c00242{bottom:491.547067pt;}
.y17_c00242{bottom:522.987067pt;}
.y16_c00242{bottom:546.747067pt;}
.y15_c00242{bottom:574.347067pt;}
.y14_c00242{bottom:601.947067pt;}
.y13_c00242{bottom:629.547067pt;}
.y12_c00242{bottom:657.147067pt;}
.y11_c00242{bottom:684.747067pt;}
.y10_c00242{bottom:712.347067pt;}
.yf_c00242{bottom:739.947067pt;}
.ye_c00242{bottom:765.387067pt;}
.yd_c00242{bottom:791.067067pt;}
.yc_c00242{bottom:819.307067pt;}
.yb_c00242{bottom:847.547067pt;}
.ya_c00242{bottom:875.867067pt;}
.y9_c00242{bottom:904.107067pt;}
.y8_c00242{bottom:932.347067pt;}
.y7_c00242{bottom:959.947067pt;}
.y6_c00242{bottom:991.787067pt;}
.y3_c00242{bottom:1006.347067pt;}
.y2_c00242{bottom:1035.947576pt;}
.y1_c00242{bottom:1063.147200pt;}
.h3_c00242{height:42.234375pt;}
.h8_c00242{height:43.031250pt;}
.h5_c00242{height:46.890469pt;}
.h1_c00242{height:47.020937pt;}
.h2_c00242{height:56.156250pt;}
.h4_c00242{height:56.843750pt;}
.h6_c00242{height:57.781250pt;}
.h7_c00242{height:101.591250pt;}
.h0_c00242{height:1122.666667pt;}
.w1_c00242{width:793.333333pt;}
.w0_c00242{width:793.626667pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:113.440000pt;}
.x4_c00242{left:120.960000pt;}
.x6_c00242{left:180.480000pt;}
.x3_c00242{left:195.760000pt;}
.x5_c00242{left:234.160000pt;}
.x2_c00242{left:656.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_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_fb4d02e6456501cb1ae1a2e1.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.095703;font-style:normal;font-weight:normal;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_109d534f4457a41e5b38ec66.woff2')format("woff");}.ff2_c00243{font-family:ff2_c00243;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00243{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls14_c00243{letter-spacing:-0.079200px;}
.ls11_c00243{letter-spacing:-0.057600px;}
.lsc_c00243{letter-spacing:-0.048096px;}
.lse_c00243{letter-spacing:-0.036000px;}
.lsf_c00243{letter-spacing:-0.028800px;}
.ls12_c00243{letter-spacing:-0.021600px;}
.ls13_c00243{letter-spacing:-0.014400px;}
.ls10_c00243{letter-spacing:-0.007200px;}
.lsd_c00243{letter-spacing:0.000000px;}
.ls3_c00243{letter-spacing:0.007200px;}
.ls7_c00243{letter-spacing:0.014400px;}
.ls8_c00243{letter-spacing:0.021600px;}
.ls4_c00243{letter-spacing:0.028800px;}
.ls0_c00243{letter-spacing:0.036000px;}
.ls6_c00243{letter-spacing:0.043200px;}
.ls2_c00243{letter-spacing:0.050400px;}
.lsa_c00243{letter-spacing:0.057600px;}
.ls9_c00243{letter-spacing:0.064800px;}
.ls1_c00243{letter-spacing:0.072000px;}
.ls5_c00243{letter-spacing:0.086400px;}
.lsb_c00243{letter-spacing:0.100800px;}
.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;}
}
.ws1_c00243{word-spacing:0.000000px;}
.ws0_c00243{word-spacing:0.138276px;}
.ws2_c00243{word-spacing:5.767200px;}
._9_c00243{margin-left:-4.759200px;}
._1_c00243{margin-left:-2.844000px;}
._0_c00243{margin-left:-1.476000px;}
._2_c00243{width:1.310400px;}
._7_c00243{width:3.038400px;}
._8_c00243{width:4.312800px;}
._4_c00243{width:5.392800px;}
._3_c00243{width:6.472800px;}
._5_c00243{width:7.509600px;}
._11_c00243{width:8.712000px;}
._12_c00243{width:10.166400px;}
._6_c00243{width:11.851200px;}
._b_c00243{width:13.795200px;}
._a_c00243{width:15.048000px;}
._c_c00243{width:16.063200px;}
._d_c00243{width:19.224000px;}
._10_c00243{width:20.448000px;}
._e_c00243{width:23.155200px;}
._f_c00243{width:24.343200px;}
.fc0_c00243{color:rgb(0,0,0);}
.fs0_c00243{font-size:60.120000px;}
.fs1_c00243{font-size:72.000000px;}
.y0_c00243{bottom:0.000000px;}
.y6_c00243{bottom:57.360450px;}
.y5_c00243{bottom:78.060450px;}
.y27_c00243{bottom:118.830450px;}
.y26_c00243{bottom:149.880450px;}
.y25_c00243{bottom:180.930450px;}
.y24_c00243{bottom:211.980450px;}
.y23_c00243{bottom:243.030450px;}
.y22_c00243{bottom:274.080450px;}
.y21_c00243{bottom:305.130450px;}
.y20_c00243{bottom:336.180450px;}
.y1f_c00243{bottom:367.230450px;}
.y1e_c00243{bottom:398.280450px;}
.y1d_c00243{bottom:429.330450px;}
.y1c_c00243{bottom:460.380450px;}
.y1b_c00243{bottom:491.430450px;}
.y1a_c00243{bottom:522.480450px;}
.y19_c00243{bottom:553.530450px;}
.y18_c00243{bottom:584.580450px;}
.y17_c00243{bottom:615.630450px;}
.y16_c00243{bottom:646.680450px;}
.y15_c00243{bottom:677.640450px;}
.y14_c00243{bottom:708.690450px;}
.y13_c00243{bottom:739.740450px;}
.y12_c00243{bottom:770.790450px;}
.y11_c00243{bottom:801.840450px;}
.y10_c00243{bottom:832.890450px;}
.yf_c00243{bottom:863.940450px;}
.ye_c00243{bottom:894.990450px;}
.yd_c00243{bottom:926.040450px;}
.yc_c00243{bottom:957.090450px;}
.yb_c00243{bottom:988.140450px;}
.ya_c00243{bottom:1019.190450px;}
.y9_c00243{bottom:1062.120450px;}
.y8_c00243{bottom:1093.260450px;}
.y7_c00243{bottom:1124.310450px;}
.y4_c00243{bottom:1144.380657px;}
.y3_c00243{bottom:1161.660648px;}
.y2_c00243{bottom:1178.850459px;}
.y1_c00243{bottom:1196.130450px;}
.h1_c00243{height:52.898555px;}
.h2_c00243{height:63.175781px;}
.h3_c00243{height:63.351562px;}
.h0_c00243{height:1263.000000px;}
.w1_c00243{width:892.500000px;}
.w0_c00243{width:892.830000px;}
.x0_c00243{left:0.000000px;}
.x4_c00243{left:127.620000px;}
.x1_c00243{left:649.620000px;}
.x3_c00243{left:738.450000px;}
.x2_c00243{left:765.450198px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls14_c00243{letter-spacing:-0.070400pt;}
.ls11_c00243{letter-spacing:-0.051200pt;}
.lsc_c00243{letter-spacing:-0.042752pt;}
.lse_c00243{letter-spacing:-0.032000pt;}
.lsf_c00243{letter-spacing:-0.025600pt;}
.ls12_c00243{letter-spacing:-0.019200pt;}
.ls13_c00243{letter-spacing:-0.012800pt;}
.ls10_c00243{letter-spacing:-0.006400pt;}
.lsd_c00243{letter-spacing:0.000000pt;}
.ls3_c00243{letter-spacing:0.006400pt;}
.ls7_c00243{letter-spacing:0.012800pt;}
.ls8_c00243{letter-spacing:0.019200pt;}
.ls4_c00243{letter-spacing:0.025600pt;}
.ls0_c00243{letter-spacing:0.032000pt;}
.ls6_c00243{letter-spacing:0.038400pt;}
.ls2_c00243{letter-spacing:0.044800pt;}
.lsa_c00243{letter-spacing:0.051200pt;}
.ls9_c00243{letter-spacing:0.057600pt;}
.ls1_c00243{letter-spacing:0.064000pt;}
.ls5_c00243{letter-spacing:0.076800pt;}
.lsb_c00243{letter-spacing:0.089600pt;}
.ws1_c00243{word-spacing:0.000000pt;}
.ws0_c00243{word-spacing:0.122912pt;}
.ws2_c00243{word-spacing:5.126400pt;}
._9_c00243{margin-left:-4.230400pt;}
._1_c00243{margin-left:-2.528000pt;}
._0_c00243{margin-left:-1.312000pt;}
._2_c00243{width:1.164800pt;}
._7_c00243{width:2.700800pt;}
._8_c00243{width:3.833600pt;}
._4_c00243{width:4.793600pt;}
._3_c00243{width:5.753600pt;}
._5_c00243{width:6.675200pt;}
._11_c00243{width:7.744000pt;}
._12_c00243{width:9.036800pt;}
._6_c00243{width:10.534400pt;}
._b_c00243{width:12.262400pt;}
._a_c00243{width:13.376000pt;}
._c_c00243{width:14.278400pt;}
._d_c00243{width:17.088000pt;}
._10_c00243{width:18.176000pt;}
._e_c00243{width:20.582400pt;}
._f_c00243{width:21.638400pt;}
.fs0_c00243{font-size:53.440000pt;}
.fs1_c00243{font-size:64.000000pt;}
.y0_c00243{bottom:0.000000pt;}
.y6_c00243{bottom:50.987067pt;}
.y5_c00243{bottom:69.387067pt;}
.y27_c00243{bottom:105.627067pt;}
.y26_c00243{bottom:133.227067pt;}
.y25_c00243{bottom:160.827067pt;}
.y24_c00243{bottom:188.427067pt;}
.y23_c00243{bottom:216.027067pt;}
.y22_c00243{bottom:243.627067pt;}
.y21_c00243{bottom:271.227067pt;}
.y20_c00243{bottom:298.827067pt;}
.y1f_c00243{bottom:326.427067pt;}
.y1e_c00243{bottom:354.027067pt;}
.y1d_c00243{bottom:381.627067pt;}
.y1c_c00243{bottom:409.227067pt;}
.y1b_c00243{bottom:436.827067pt;}
.y1a_c00243{bottom:464.427067pt;}
.y19_c00243{bottom:492.027067pt;}
.y18_c00243{bottom:519.627067pt;}
.y17_c00243{bottom:547.227067pt;}
.y16_c00243{bottom:574.827067pt;}
.y15_c00243{bottom:602.347067pt;}
.y14_c00243{bottom:629.947067pt;}
.y13_c00243{bottom:657.547067pt;}
.y12_c00243{bottom:685.147067pt;}
.y11_c00243{bottom:712.747067pt;}
.y10_c00243{bottom:740.347067pt;}
.yf_c00243{bottom:767.947067pt;}
.ye_c00243{bottom:795.547067pt;}
.yd_c00243{bottom:823.147067pt;}
.yc_c00243{bottom:850.747067pt;}
.yb_c00243{bottom:878.347067pt;}
.ya_c00243{bottom:905.947067pt;}
.y9_c00243{bottom:944.107067pt;}
.y8_c00243{bottom:971.787067pt;}
.y7_c00243{bottom:999.387067pt;}
.y4_c00243{bottom:1017.227251pt;}
.y3_c00243{bottom:1032.587243pt;}
.y2_c00243{bottom:1047.867075pt;}
.y1_c00243{bottom:1063.227067pt;}
.h1_c00243{height:47.020937pt;}
.h2_c00243{height:56.156250pt;}
.h3_c00243{height:56.312500pt;}
.h0_c00243{height:1122.666667pt;}
.w1_c00243{width:793.333333pt;}
.w0_c00243{width:793.626667pt;}
.x0_c00243{left:0.000000pt;}
.x4_c00243{left:113.440000pt;}
.x1_c00243{left:577.440000pt;}
.x3_c00243{left:656.400000pt;}
.x2_c00243{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.095703;font-style:normal;font-weight:normal;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_21aa842a8c8d8b3b4bd82e8f.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.093262;font-style:normal;font-weight:normal;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_025be6c7e27319ee6dd3e4c4.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:1.104004;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff4_c00244{font-family:ff4_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;}
.m0_c00244{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls13_c00244{letter-spacing:-1.800000px;}
.ls10_c00244{letter-spacing:-0.102204px;}
.ls18_c00244{letter-spacing:-0.064800px;}
.ls15_c00244{letter-spacing:-0.043200px;}
.ls16_c00244{letter-spacing:-0.036000px;}
.ls17_c00244{letter-spacing:-0.028800px;}
.ls14_c00244{letter-spacing:-0.014400px;}
.ls12_c00244{letter-spacing:-0.007200px;}
.ls11_c00244{letter-spacing:0.000000px;}
.ls7_c00244{letter-spacing:0.007200px;}
.lsa_c00244{letter-spacing:0.014400px;}
.ls1_c00244{letter-spacing:0.021600px;}
.ls8_c00244{letter-spacing:0.028800px;}
.ls2_c00244{letter-spacing:0.036000px;}
.ls3_c00244{letter-spacing:0.043200px;}
.lsc_c00244{letter-spacing:0.050400px;}
.ls4_c00244{letter-spacing:0.057600px;}
.ls9_c00244{letter-spacing:0.064800px;}
.ls0_c00244{letter-spacing:0.067104px;}
.lsd_c00244{letter-spacing:0.072000px;}
.ls5_c00244{letter-spacing:0.086400px;}
.lsf_c00244{letter-spacing:0.093600px;}
.lse_c00244{letter-spacing:0.100800px;}
.ls6_c00244{letter-spacing:0.129600px;}
.ls19_c00244{letter-spacing:6.120000px;}
.lsb_c00244{letter-spacing:33.984000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00244{word-spacing:-18.000000px;}
.ws2_c00244{word-spacing:0.000000px;}
.ws1_c00244{word-spacing:0.192384px;}
._d_c00244{margin-left:-6.357600px;}
._9_c00244{margin-left:-4.370400px;}
._4_c00244{margin-left:-2.491200px;}
._1_c00244{margin-left:-1.418400px;}
._0_c00244{width:1.034064px;}
._5_c00244{width:2.285136px;}
._a_c00244{width:3.683664px;}
._c_c00244{width:6.112800px;}
._7_c00244{width:9.475200px;}
._6_c00244{width:10.756800px;}
._8_c00244{width:12.542400px;}
._b_c00244{width:14.500800px;}
._3_c00244{width:15.667200px;}
._2_c00244{width:16.884000px;}
.fc1_c00244{color:rgb(0,0,0);}
.fc0_c00244{color:rgb(32,31,30);}
.fs0_c00244{font-size:60.120000px;}
.fs1_c00244{font-size:72.000000px;}
.fs2_c00244{font-size:83.880000px;}
.y0_c00244{bottom:0.000000px;}
.y5_c00244{bottom:57.360450px;}
.y4_c00244{bottom:78.060450px;}
.y22_c00244{bottom:181.020450px;}
.y21_c00244{bottom:219.540450px;}
.y20_c00244{bottom:258.150450px;}
.y1f_c00244{bottom:289.290450px;}
.y1e_c00244{bottom:320.340450px;}
.y1d_c00244{bottom:358.770450px;}
.y1c_c00244{bottom:389.910450px;}
.y1b_c00244{bottom:420.960450px;}
.y1a_c00244{bottom:452.010450px;}
.y19_c00244{bottom:483.060450px;}
.y18_c00244{bottom:514.110450px;}
.y17_c00244{bottom:545.160450px;}
.y16_c00244{bottom:576.210450px;}
.y15_c00244{bottom:614.640450px;}
.y14_c00244{bottom:645.780450px;}
.y13_c00244{bottom:676.830450px;}
.y12_c00244{bottom:715.260450px;}
.y11_c00244{bottom:746.400450px;}
.y10_c00244{bottom:777.450450px;}
.yf_c00244{bottom:815.970450px;}
.ye_c00244{bottom:847.110450px;}
.yd_c00244{bottom:878.160450px;}
.yc_c00244{bottom:909.210450px;}
.yb_c00244{bottom:947.640450px;}
.ya_c00244{bottom:978.780450px;}
.y9_c00244{bottom:1009.830450px;}
.y8_c00244{bottom:1040.880450px;}
.y7_c00244{bottom:1075.080450px;}
.y6_c00244{bottom:1108.380450px;}
.y3_c00244{bottom:1132.140450px;}
.y2_c00244{bottom:1165.441023px;}
.y1_c00244{bottom:1196.040600px;}
.h1_c00244{height:52.898555px;}
.h2_c00244{height:63.175781px;}
.h4_c00244{height:64.546875px;}
.h3_c00244{height:74.500840px;}
.h0_c00244{height:1263.000000px;}
.w1_c00244{width:892.500000px;}
.w0_c00244{width:892.830000px;}
.x0_c00244{left:0.000000px;}
.x1_c00244{left:127.620000px;}
.x3_c00244{left:154.620000px;}
.x4_c00244{left:181.620000px;}
.x2_c00244{left:738.450000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls13_c00244{letter-spacing:-1.600000pt;}
.ls10_c00244{letter-spacing:-0.090848pt;}
.ls18_c00244{letter-spacing:-0.057600pt;}
.ls15_c00244{letter-spacing:-0.038400pt;}
.ls16_c00244{letter-spacing:-0.032000pt;}
.ls17_c00244{letter-spacing:-0.025600pt;}
.ls14_c00244{letter-spacing:-0.012800pt;}
.ls12_c00244{letter-spacing:-0.006400pt;}
.ls11_c00244{letter-spacing:0.000000pt;}
.ls7_c00244{letter-spacing:0.006400pt;}
.lsa_c00244{letter-spacing:0.012800pt;}
.ls1_c00244{letter-spacing:0.019200pt;}
.ls8_c00244{letter-spacing:0.025600pt;}
.ls2_c00244{letter-spacing:0.032000pt;}
.ls3_c00244{letter-spacing:0.038400pt;}
.lsc_c00244{letter-spacing:0.044800pt;}
.ls4_c00244{letter-spacing:0.051200pt;}
.ls9_c00244{letter-spacing:0.057600pt;}
.ls0_c00244{letter-spacing:0.059648pt;}
.lsd_c00244{letter-spacing:0.064000pt;}
.ls5_c00244{letter-spacing:0.076800pt;}
.lsf_c00244{letter-spacing:0.083200pt;}
.lse_c00244{letter-spacing:0.089600pt;}
.ls6_c00244{letter-spacing:0.115200pt;}
.ls19_c00244{letter-spacing:5.440000pt;}
.lsb_c00244{letter-spacing:30.208000pt;}
.ws0_c00244{word-spacing:-16.000000pt;}
.ws2_c00244{word-spacing:0.000000pt;}
.ws1_c00244{word-spacing:0.171008pt;}
._d_c00244{margin-left:-5.651200pt;}
._9_c00244{margin-left:-3.884800pt;}
._4_c00244{margin-left:-2.214400pt;}
._1_c00244{margin-left:-1.260800pt;}
._0_c00244{width:0.919168pt;}
._5_c00244{width:2.031232pt;}
._a_c00244{width:3.274368pt;}
._c_c00244{width:5.433600pt;}
._7_c00244{width:8.422400pt;}
._6_c00244{width:9.561600pt;}
._8_c00244{width:11.148800pt;}
._b_c00244{width:12.889600pt;}
._3_c00244{width:13.926400pt;}
._2_c00244{width:15.008000pt;}
.fs0_c00244{font-size:53.440000pt;}
.fs1_c00244{font-size:64.000000pt;}
.fs2_c00244{font-size:74.560000pt;}
.y0_c00244{bottom:0.000000pt;}
.y5_c00244{bottom:50.987067pt;}
.y4_c00244{bottom:69.387067pt;}
.y22_c00244{bottom:160.907067pt;}
.y21_c00244{bottom:195.147067pt;}
.y20_c00244{bottom:229.467067pt;}
.y1f_c00244{bottom:257.147067pt;}
.y1e_c00244{bottom:284.747067pt;}
.y1d_c00244{bottom:318.907067pt;}
.y1c_c00244{bottom:346.587067pt;}
.y1b_c00244{bottom:374.187067pt;}
.y1a_c00244{bottom:401.787067pt;}
.y19_c00244{bottom:429.387067pt;}
.y18_c00244{bottom:456.987067pt;}
.y17_c00244{bottom:484.587067pt;}
.y16_c00244{bottom:512.187067pt;}
.y15_c00244{bottom:546.347067pt;}
.y14_c00244{bottom:574.027067pt;}
.y13_c00244{bottom:601.627067pt;}
.y12_c00244{bottom:635.787067pt;}
.y11_c00244{bottom:663.467067pt;}
.y10_c00244{bottom:691.067067pt;}
.yf_c00244{bottom:725.307067pt;}
.ye_c00244{bottom:752.987067pt;}
.yd_c00244{bottom:780.587067pt;}
.yc_c00244{bottom:808.187067pt;}
.yb_c00244{bottom:842.347067pt;}
.ya_c00244{bottom:870.027067pt;}
.y9_c00244{bottom:897.627067pt;}
.y8_c00244{bottom:925.227067pt;}
.y7_c00244{bottom:955.627067pt;}
.y6_c00244{bottom:985.227067pt;}
.y3_c00244{bottom:1006.347067pt;}
.y2_c00244{bottom:1035.947576pt;}
.y1_c00244{bottom:1063.147200pt;}
.h1_c00244{height:47.020937pt;}
.h2_c00244{height:56.156250pt;}
.h4_c00244{height:57.375000pt;}
.h3_c00244{height:66.222969pt;}
.h0_c00244{height:1122.666667pt;}
.w1_c00244{width:793.333333pt;}
.w0_c00244{width:793.626667pt;}
.x0_c00244{left:0.000000pt;}
.x1_c00244{left:113.440000pt;}
.x3_c00244{left:137.440000pt;}
.x4_c00244{left:161.440000pt;}
.x2_c00244{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.095703;font-style:normal;font-weight:normal;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_2d08257343377a82d36a60ca.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.093262;font-style:normal;font-weight:normal;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_e0312c344bb91e56943e2e29.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00245{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.lsf_c00245{letter-spacing:-0.048096px;}
.ls13_c00245{letter-spacing:-0.036000px;}
.ls12_c00245{letter-spacing:-0.014400px;}
.ls11_c00245{letter-spacing:-0.007200px;}
.ls10_c00245{letter-spacing:0.000000px;}
.ls2_c00245{letter-spacing:0.007200px;}
.lse_c00245{letter-spacing:0.014400px;}
.lsa_c00245{letter-spacing:0.021600px;}
.ls1_c00245{letter-spacing:0.028800px;}
.ls5_c00245{letter-spacing:0.050400px;}
.ls4_c00245{letter-spacing:0.057600px;}
.ls3_c00245{letter-spacing:0.064800px;}
.ls0_c00245{letter-spacing:0.067104px;}
.ls7_c00245{letter-spacing:0.072000px;}
.lsc_c00245{letter-spacing:0.079200px;}
.ls8_c00245{letter-spacing:0.086400px;}
.ls6_c00245{letter-spacing:0.093600px;}
.lsd_c00245{letter-spacing:0.100800px;}
.lsb_c00245{letter-spacing:0.115200px;}
.ls9_c00245{letter-spacing:0.129600px;}
.ls14_c00245{letter-spacing:6.120000px;}
.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:0.000000px;}
.ws0_c00245{word-spacing:0.138276px;}
._b_c00245{margin-left:-6.278400px;}
._9_c00245{margin-left:-4.708800px;}
._8_c00245{margin-left:-3.657600px;}
._2_c00245{margin-left:-2.210400px;}
._1_c00245{margin-left:-1.166400px;}
._4_c00245{width:1.080000px;}
._c_c00245{width:2.808000px;}
._d_c00245{width:4.176000px;}
._3_c00245{width:5.400000px;}
._0_c00245{width:7.171200px;}
._a_c00245{width:9.036000px;}
._7_c00245{width:11.901600px;}
._6_c00245{width:12.931200px;}
._5_c00245{width:16.560000px;}
.fc0_c00245{color:rgb(0,0,0);}
.fs0_c00245{font-size:60.120000px;}
.fs1_c00245{font-size:72.000000px;}
.fs2_c00245{font-size:83.880000px;}
.fs3_c00245{font-size:108.000000px;}
.y0_c00245{bottom:0.000000px;}
.y6_c00245{bottom:57.360450px;}
.y5_c00245{bottom:78.060450px;}
.y23_c00245{bottom:169.230450px;}
.y22_c00245{bottom:203.520450px;}
.y21_c00245{bottom:237.900450px;}
.y20_c00245{bottom:272.280450px;}
.y1f_c00245{bottom:306.570450px;}
.y1e_c00245{bottom:331.500450px;}
.y1d_c00245{bottom:383.070450px;}
.y1c_c00245{bottom:431.940450px;}
.y1b_c00245{bottom:469.470450px;}
.y1a_c00245{bottom:500.520450px;}
.y19_c00245{bottom:531.570450px;}
.y18_c00245{bottom:568.920450px;}
.y17_c00245{bottom:599.970450px;}
.y16_c00245{bottom:637.410450px;}
.y15_c00245{bottom:668.460450px;}
.y14_c00245{bottom:699.510450px;}
.y13_c00245{bottom:730.560450px;}
.y12_c00245{bottom:761.610450px;}
.y11_c00245{bottom:792.660450px;}
.y10_c00245{bottom:830.100450px;}
.yf_c00245{bottom:861.150450px;}
.ye_c00245{bottom:892.200450px;}
.yd_c00245{bottom:923.250450px;}
.yc_c00245{bottom:954.300450px;}
.yb_c00245{bottom:991.650450px;}
.ya_c00245{bottom:1022.700450px;}
.y9_c00245{bottom:1053.750450px;}
.y8_c00245{bottom:1088.040450px;}
.y7_c00245{bottom:1121.250450px;}
.y4_c00245{bottom:1144.380657px;}
.y3_c00245{bottom:1161.660648px;}
.y2_c00245{bottom:1178.850459px;}
.y1_c00245{bottom:1196.130450px;}
.h1_c00245{height:52.898555px;}
.h2_c00245{height:63.175781px;}
.h3_c00245{height:74.500840px;}
.h4_c00245{height:95.923828px;}
.h0_c00245{height:1263.000000px;}
.w1_c00245{width:892.500000px;}
.w0_c00245{width:892.830000px;}
.x0_c00245{left:0.000000px;}
.x4_c00245{left:127.620000px;}
.x1_c00245{left:649.620000px;}
.x3_c00245{left:738.450000px;}
.x2_c00245{left:765.450198px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.lsf_c00245{letter-spacing:-0.042752pt;}
.ls13_c00245{letter-spacing:-0.032000pt;}
.ls12_c00245{letter-spacing:-0.012800pt;}
.ls11_c00245{letter-spacing:-0.006400pt;}
.ls10_c00245{letter-spacing:0.000000pt;}
.ls2_c00245{letter-spacing:0.006400pt;}
.lse_c00245{letter-spacing:0.012800pt;}
.lsa_c00245{letter-spacing:0.019200pt;}
.ls1_c00245{letter-spacing:0.025600pt;}
.ls5_c00245{letter-spacing:0.044800pt;}
.ls4_c00245{letter-spacing:0.051200pt;}
.ls3_c00245{letter-spacing:0.057600pt;}
.ls0_c00245{letter-spacing:0.059648pt;}
.ls7_c00245{letter-spacing:0.064000pt;}
.lsc_c00245{letter-spacing:0.070400pt;}
.ls8_c00245{letter-spacing:0.076800pt;}
.ls6_c00245{letter-spacing:0.083200pt;}
.lsd_c00245{letter-spacing:0.089600pt;}
.lsb_c00245{letter-spacing:0.102400pt;}
.ls9_c00245{letter-spacing:0.115200pt;}
.ls14_c00245{letter-spacing:5.440000pt;}
.ws1_c00245{word-spacing:0.000000pt;}
.ws0_c00245{word-spacing:0.122912pt;}
._b_c00245{margin-left:-5.580800pt;}
._9_c00245{margin-left:-4.185600pt;}
._8_c00245{margin-left:-3.251200pt;}
._2_c00245{margin-left:-1.964800pt;}
._1_c00245{margin-left:-1.036800pt;}
._4_c00245{width:0.960000pt;}
._c_c00245{width:2.496000pt;}
._d_c00245{width:3.712000pt;}
._3_c00245{width:4.800000pt;}
._0_c00245{width:6.374400pt;}
._a_c00245{width:8.032000pt;}
._7_c00245{width:10.579200pt;}
._6_c00245{width:11.494400pt;}
._5_c00245{width:14.720000pt;}
.fs0_c00245{font-size:53.440000pt;}
.fs1_c00245{font-size:64.000000pt;}
.fs2_c00245{font-size:74.560000pt;}
.fs3_c00245{font-size:96.000000pt;}
.y0_c00245{bottom:0.000000pt;}
.y6_c00245{bottom:50.987067pt;}
.y5_c00245{bottom:69.387067pt;}
.y23_c00245{bottom:150.427067pt;}
.y22_c00245{bottom:180.907067pt;}
.y21_c00245{bottom:211.467067pt;}
.y20_c00245{bottom:242.027067pt;}
.y1f_c00245{bottom:272.507067pt;}
.y1e_c00245{bottom:294.667067pt;}
.y1d_c00245{bottom:340.507067pt;}
.y1c_c00245{bottom:383.947067pt;}
.y1b_c00245{bottom:417.307067pt;}
.y1a_c00245{bottom:444.907067pt;}
.y19_c00245{bottom:472.507067pt;}
.y18_c00245{bottom:505.707067pt;}
.y17_c00245{bottom:533.307067pt;}
.y16_c00245{bottom:566.587067pt;}
.y15_c00245{bottom:594.187067pt;}
.y14_c00245{bottom:621.787067pt;}
.y13_c00245{bottom:649.387067pt;}
.y12_c00245{bottom:676.987067pt;}
.y11_c00245{bottom:704.587067pt;}
.y10_c00245{bottom:737.867067pt;}
.yf_c00245{bottom:765.467067pt;}
.ye_c00245{bottom:793.067067pt;}
.yd_c00245{bottom:820.667067pt;}
.yc_c00245{bottom:848.267067pt;}
.yb_c00245{bottom:881.467067pt;}
.ya_c00245{bottom:909.067067pt;}
.y9_c00245{bottom:936.667067pt;}
.y8_c00245{bottom:967.147067pt;}
.y7_c00245{bottom:996.667067pt;}
.y4_c00245{bottom:1017.227251pt;}
.y3_c00245{bottom:1032.587243pt;}
.y2_c00245{bottom:1047.867075pt;}
.y1_c00245{bottom:1063.227067pt;}
.h1_c00245{height:47.020937pt;}
.h2_c00245{height:56.156250pt;}
.h3_c00245{height:66.222969pt;}
.h4_c00245{height:85.265625pt;}
.h0_c00245{height:1122.666667pt;}
.w1_c00245{width:793.333333pt;}
.w0_c00245{width:793.626667pt;}
.x0_c00245{left:0.000000pt;}
.x4_c00245{left:113.440000pt;}
.x1_c00245{left:577.440000pt;}
.x3_c00245{left:656.400000pt;}
.x2_c00245{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3045af6975482623d5715e94.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.095703;font-style:normal;font-weight:normal;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_e5704793383701833491372f.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.093262;font-style:normal;font-weight:normal;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_a46fc2c1ac82e5d780a3d1c5.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:1.104004;font-style:normal;font-weight:normal;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_22c54d38a0960520f7e6c5a5.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00246{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.lsa_c00246{letter-spacing:-0.102204px;}
.lsd_c00246{letter-spacing:-0.064800px;}
.ls10_c00246{letter-spacing:-0.043200px;}
.ls12_c00246{letter-spacing:-0.037800px;}
.lsc_c00246{letter-spacing:-0.028800px;}
.ls13_c00246{letter-spacing:-0.025164px;}
.ls11_c00246{letter-spacing:-0.021600px;}
.lse_c00246{letter-spacing:-0.014400px;}
.lsf_c00246{letter-spacing:-0.007200px;}
.ls14_c00246{letter-spacing:-0.005400px;}
.lsb_c00246{letter-spacing:0.000000px;}
.ls7_c00246{letter-spacing:0.007200px;}
.ls0_c00246{letter-spacing:0.014400px;}
.ls5_c00246{letter-spacing:0.021600px;}
.ls2_c00246{letter-spacing:0.028800px;}
.ls4_c00246{letter-spacing:0.036000px;}
.ls3_c00246{letter-spacing:0.043200px;}
.ls6_c00246{letter-spacing:0.050400px;}
.ls8_c00246{letter-spacing:0.057600px;}
.ls1_c00246{letter-spacing:0.064800px;}
.ls9_c00246{letter-spacing:0.086400px;}
.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;}
}
.ws2_c00246{word-spacing:0.000000px;}
.ws4_c00246{word-spacing:0.156600px;}
.ws3_c00246{word-spacing:0.178200px;}
.ws1_c00246{word-spacing:0.192384px;}
.ws0_c00246{word-spacing:42.042600px;}
._6_c00246{margin-left:-2.930400px;}
._5_c00246{margin-left:-1.425600px;}
._0_c00246{width:1.034064px;}
._1_c00246{width:2.455200px;}
._3_c00246{width:3.556800px;}
._4_c00246{width:4.636800px;}
._7_c00246{width:11.894400px;}
._2_c00246{width:12.931200px;}
._8_c00246{width:16.560000px;}
.fc4_c00246{color:rgb(89,89,89);}
.fc3_c00246{color:rgb(64,64,64);}
.fc2_c00246{color:rgb(68,84,106);}
.fc1_c00246{color:rgb(0,0,0);}
.fc0_c00246{color:rgb(32,31,30);}
.fs3_c00246{font-size:54.000000px;}
.fs0_c00246{font-size:60.120000px;}
.fs1_c00246{font-size:72.000000px;}
.fs4_c00246{font-size:83.880000px;}
.fs2_c00246{font-size:108.000000px;}
.y0_c00246{bottom:0.000000px;}
.y5_c00246{bottom:57.360450px;}
.y4_c00246{bottom:78.060450px;}
.y1c_c00246{bottom:167.430600px;}
.y20_c00246{bottom:186.330450px;}
.y1e_c00246{bottom:258.060000px;}
.y1d_c00246{bottom:306.480450px;}
.y1f_c00246{bottom:372.450450px;}
.y1b_c00246{bottom:421.950600px;}
.y1a_c00246{bottom:460.650450px;}
.y19_c00246{bottom:491.790450px;}
.y18_c00246{bottom:522.840450px;}
.y17_c00246{bottom:553.890450px;}
.y16_c00246{bottom:584.940450px;}
.y15_c00246{bottom:627.870450px;}
.y14_c00246{bottom:659.010450px;}
.y13_c00246{bottom:690.060450px;}
.y12_c00246{bottom:721.110450px;}
.y11_c00246{bottom:764.040450px;}
.y10_c00246{bottom:795.180450px;}
.yf_c00246{bottom:826.230450px;}
.ye_c00246{bottom:857.280450px;}
.yd_c00246{bottom:888.330450px;}
.yc_c00246{bottom:919.380450px;}
.yb_c00246{bottom:950.430450px;}
.ya_c00246{bottom:981.480450px;}
.y9_c00246{bottom:1012.530450px;}
.y8_c00246{bottom:1043.580450px;}
.y7_c00246{bottom:1077.780450px;}
.y6_c00246{bottom:1102.800450px;}
.y3_c00246{bottom:1132.140450px;}
.y2_c00246{bottom:1165.441023px;}
.y1_c00246{bottom:1196.040600px;}
.h5_c00246{height:44.534180px;}
.h1_c00246{height:52.898555px;}
.h2_c00246{height:63.175781px;}
.h4_c00246{height:63.351562px;}
.h6_c00246{height:69.176426px;}
.h3_c00246{height:95.923828px;}
.h0_c00246{height:1263.000000px;}
.w1_c00246{width:892.500000px;}
.w0_c00246{width:892.830000px;}
.x0_c00246{left:0.000000px;}
.x1_c00246{left:127.620000px;}
.x7_c00246{left:342.180000px;}
.x6_c00246{left:353.520000px;}
.x5_c00246{left:361.530000px;}
.x4_c00246{left:400.950000px;}
.x3_c00246{left:672.120000px;}
.x2_c00246{left:738.450000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.lsa_c00246{letter-spacing:-0.090848pt;}
.lsd_c00246{letter-spacing:-0.057600pt;}
.ls10_c00246{letter-spacing:-0.038400pt;}
.ls12_c00246{letter-spacing:-0.033600pt;}
.lsc_c00246{letter-spacing:-0.025600pt;}
.ls13_c00246{letter-spacing:-0.022368pt;}
.ls11_c00246{letter-spacing:-0.019200pt;}
.lse_c00246{letter-spacing:-0.012800pt;}
.lsf_c00246{letter-spacing:-0.006400pt;}
.ls14_c00246{letter-spacing:-0.004800pt;}
.lsb_c00246{letter-spacing:0.000000pt;}
.ls7_c00246{letter-spacing:0.006400pt;}
.ls0_c00246{letter-spacing:0.012800pt;}
.ls5_c00246{letter-spacing:0.019200pt;}
.ls2_c00246{letter-spacing:0.025600pt;}
.ls4_c00246{letter-spacing:0.032000pt;}
.ls3_c00246{letter-spacing:0.038400pt;}
.ls6_c00246{letter-spacing:0.044800pt;}
.ls8_c00246{letter-spacing:0.051200pt;}
.ls1_c00246{letter-spacing:0.057600pt;}
.ls9_c00246{letter-spacing:0.076800pt;}
.ws2_c00246{word-spacing:0.000000pt;}
.ws4_c00246{word-spacing:0.139200pt;}
.ws3_c00246{word-spacing:0.158400pt;}
.ws1_c00246{word-spacing:0.171008pt;}
.ws0_c00246{word-spacing:37.371200pt;}
._6_c00246{margin-left:-2.604800pt;}
._5_c00246{margin-left:-1.267200pt;}
._0_c00246{width:0.919168pt;}
._1_c00246{width:2.182400pt;}
._3_c00246{width:3.161600pt;}
._4_c00246{width:4.121600pt;}
._7_c00246{width:10.572800pt;}
._2_c00246{width:11.494400pt;}
._8_c00246{width:14.720000pt;}
.fs3_c00246{font-size:48.000000pt;}
.fs0_c00246{font-size:53.440000pt;}
.fs1_c00246{font-size:64.000000pt;}
.fs4_c00246{font-size:74.560000pt;}
.fs2_c00246{font-size:96.000000pt;}
.y0_c00246{bottom:0.000000pt;}
.y5_c00246{bottom:50.987067pt;}
.y4_c00246{bottom:69.387067pt;}
.y1c_c00246{bottom:148.827200pt;}
.y20_c00246{bottom:165.627067pt;}
.y1e_c00246{bottom:229.386667pt;}
.y1d_c00246{bottom:272.427067pt;}
.y1f_c00246{bottom:331.067067pt;}
.y1b_c00246{bottom:375.067200pt;}
.y1a_c00246{bottom:409.467067pt;}
.y19_c00246{bottom:437.147067pt;}
.y18_c00246{bottom:464.747067pt;}
.y17_c00246{bottom:492.347067pt;}
.y16_c00246{bottom:519.947067pt;}
.y15_c00246{bottom:558.107067pt;}
.y14_c00246{bottom:585.787067pt;}
.y13_c00246{bottom:613.387067pt;}
.y12_c00246{bottom:640.987067pt;}
.y11_c00246{bottom:679.147067pt;}
.y10_c00246{bottom:706.827067pt;}
.yf_c00246{bottom:734.427067pt;}
.ye_c00246{bottom:762.027067pt;}
.yd_c00246{bottom:789.627067pt;}
.yc_c00246{bottom:817.227067pt;}
.yb_c00246{bottom:844.827067pt;}
.ya_c00246{bottom:872.427067pt;}
.y9_c00246{bottom:900.027067pt;}
.y8_c00246{bottom:927.627067pt;}
.y7_c00246{bottom:958.027067pt;}
.y6_c00246{bottom:980.267067pt;}
.y3_c00246{bottom:1006.347067pt;}
.y2_c00246{bottom:1035.947576pt;}
.y1_c00246{bottom:1063.147200pt;}
.h5_c00246{height:39.585938pt;}
.h1_c00246{height:47.020937pt;}
.h2_c00246{height:56.156250pt;}
.h4_c00246{height:56.312500pt;}
.h6_c00246{height:61.490156pt;}
.h3_c00246{height:85.265625pt;}
.h0_c00246{height:1122.666667pt;}
.w1_c00246{width:793.333333pt;}
.w0_c00246{width:793.626667pt;}
.x0_c00246{left:0.000000pt;}
.x1_c00246{left:113.440000pt;}
.x7_c00246{left:304.160000pt;}
.x6_c00246{left:314.240000pt;}
.x5_c00246{left:321.360000pt;}
.x4_c00246{left:356.400000pt;}
.x3_c00246{left:597.440000pt;}
.x2_c00246{left:656.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_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_73338abb55f60ba23097cb5a.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.095703;font-style:normal;font-weight:normal;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_de7fb4fa4af47f424c4cf9a3.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.093262;font-style:normal;font-weight:normal;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_6adb65f3db145285f53f6b55.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:1.104004;font-style:normal;font-weight:normal;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_1222e60b190ab2023fc878d8.woff2')format("woff");}.ff4_c00247{font-family:ff4_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;}
.m0_c00247{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.v1_c00247{vertical-align:16.920000px;}
.ls18_c00247{letter-spacing:-0.151200px;}
.ls17_c00247{letter-spacing:-0.124200px;}
.ls15_c00247{letter-spacing:-0.093600px;}
.ls14_c00247{letter-spacing:-0.072000px;}
.lsf_c00247{letter-spacing:-0.048096px;}
.ls16_c00247{letter-spacing:-0.036000px;}
.ls12_c00247{letter-spacing:-0.021600px;}
.ls13_c00247{letter-spacing:-0.014400px;}
.ls11_c00247{letter-spacing:-0.007200px;}
.ls10_c00247{letter-spacing:0.000000px;}
.ls6_c00247{letter-spacing:0.007200px;}
.ls3_c00247{letter-spacing:0.014400px;}
.lse_c00247{letter-spacing:0.021600px;}
.ls5_c00247{letter-spacing:0.028800px;}
.ls2_c00247{letter-spacing:0.036000px;}
.ls4_c00247{letter-spacing:0.043200px;}
.ls0_c00247{letter-spacing:0.050328px;}
.ls7_c00247{letter-spacing:0.050400px;}
.lsc_c00247{letter-spacing:0.064800px;}
.ls9_c00247{letter-spacing:0.075492px;}
.ls1_c00247{letter-spacing:0.079200px;}
.ls8_c00247{letter-spacing:0.086400px;}
.lsd_c00247{letter-spacing:0.100800px;}
.ls19_c00247{letter-spacing:0.496800px;}
.lsb_c00247{letter-spacing:441.466200px;}
.lsa_c00247{letter-spacing:543.600000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:-18.036000px;}
.ws2_c00247{word-spacing:-18.007200px;}
.ws1_c00247{word-spacing:-17.964000px;}
.ws5_c00247{word-spacing:-1.836000px;}
.ws4_c00247{word-spacing:0.000000px;}
.ws3_c00247{word-spacing:0.138276px;}
._2_c00247{margin-left:-2.196000px;}
._1_c00247{margin-left:-1.173600px;}
._3_c00247{width:1.065600px;}
._6_c00247{width:2.448000px;}
._0_c00247{width:5.047200px;}
._c_c00247{width:6.091200px;}
._4_c00247{width:7.221600px;}
._5_c00247{width:8.287200px;}
._b_c00247{width:10.843200px;}
._a_c00247{width:11.858400px;}
._d_c00247{width:23.371200px;}
._9_c00247{width:262.414800px;}
._7_c00247{width:322.475400px;}
._8_c00247{width:352.346400px;}
.fc2_c00247{color:rgb(38,74,96);}
.fc1_c00247{color:rgb(1,2,5);}
.fc0_c00247{color:rgb(0,0,0);}
.fs3_c00247{font-size:54.000000px;}
.fs0_c00247{font-size:60.120000px;}
.fs1_c00247{font-size:72.000000px;}
.fs2_c00247{font-size:83.880000px;}
.y0_c00247{bottom:0.000000px;}
.y6_c00247{bottom:57.360450px;}
.y5_c00247{bottom:78.060450px;}
.y2a_c00247{bottom:134.760600px;}
.y29_c00247{bottom:165.810600px;}
.y28_c00247{bottom:196.860600px;}
.y27_c00247{bottom:227.910600px;}
.y26_c00247{bottom:258.960600px;}
.y25_c00247{bottom:290.010600px;}
.y24_c00247{bottom:321.060600px;}
.y23_c00247{bottom:352.110600px;}
.y22_c00247{bottom:383.160600px;}
.y21_c00247{bottom:414.210600px;}
.y20_c00247{bottom:441.930600px;}
.y1f_c00247{bottom:465.600450px;}
.y1e_c00247{bottom:489.180600px;}
.y1d_c00247{bottom:512.850450px;}
.y1c_c00247{bottom:536.520450px;}
.y1b_c00247{bottom:560.190450px;}
.y1a_c00247{bottom:583.860450px;}
.y19_c00247{bottom:607.530450px;}
.y18_c00247{bottom:631.200450px;}
.y17_c00247{bottom:654.870450px;}
.y16_c00247{bottom:678.540450px;}
.y15_c00247{bottom:702.210450px;}
.y14_c00247{bottom:725.790450px;}
.y13_c00247{bottom:749.460450px;}
.y12_c00247{bottom:776.640450px;}
.y11_c00247{bottom:804.810450px;}
.y10_c00247{bottom:833.700450px;}
.yf_c00247{bottom:870.780450px;}
.ye_c00247{bottom:901.830450px;}
.yd_c00247{bottom:932.880450px;}
.yc_c00247{bottom:963.930450px;}
.yb_c00247{bottom:994.980450px;}
.ya_c00247{bottom:1026.030450px;}
.y9_c00247{bottom:1057.080450px;}
.y8_c00247{bottom:1088.130450px;}
.y7_c00247{bottom:1121.250450px;}
.y4_c00247{bottom:1144.380657px;}
.y3_c00247{bottom:1161.660648px;}
.y2_c00247{bottom:1178.850459px;}
.y1_c00247{bottom:1196.130450px;}
.h6_c00247{height:48.410156px;}
.h1_c00247{height:52.898555px;}
.h2_c00247{height:63.175781px;}
.h4_c00247{height:63.351562px;}
.h5_c00247{height:65.330156px;}
.h3_c00247{height:74.500840px;}
.h0_c00247{height:1263.000000px;}
.w1_c00247{width:892.500000px;}
.w0_c00247{width:892.830000px;}
.x0_c00247{left:0.000000px;}
.x4_c00247{left:127.620000px;}
.x5_c00247{left:275.310000px;}
.x6_c00247{left:389.430000px;}
.x1_c00247{left:649.620000px;}
.x3_c00247{left:738.450000px;}
.x2_c00247{left:765.450198px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.v1_c00247{vertical-align:15.040000pt;}
.ls18_c00247{letter-spacing:-0.134400pt;}
.ls17_c00247{letter-spacing:-0.110400pt;}
.ls15_c00247{letter-spacing:-0.083200pt;}
.ls14_c00247{letter-spacing:-0.064000pt;}
.lsf_c00247{letter-spacing:-0.042752pt;}
.ls16_c00247{letter-spacing:-0.032000pt;}
.ls12_c00247{letter-spacing:-0.019200pt;}
.ls13_c00247{letter-spacing:-0.012800pt;}
.ls11_c00247{letter-spacing:-0.006400pt;}
.ls10_c00247{letter-spacing:0.000000pt;}
.ls6_c00247{letter-spacing:0.006400pt;}
.ls3_c00247{letter-spacing:0.012800pt;}
.lse_c00247{letter-spacing:0.019200pt;}
.ls5_c00247{letter-spacing:0.025600pt;}
.ls2_c00247{letter-spacing:0.032000pt;}
.ls4_c00247{letter-spacing:0.038400pt;}
.ls0_c00247{letter-spacing:0.044736pt;}
.ls7_c00247{letter-spacing:0.044800pt;}
.lsc_c00247{letter-spacing:0.057600pt;}
.ls9_c00247{letter-spacing:0.067104pt;}
.ls1_c00247{letter-spacing:0.070400pt;}
.ls8_c00247{letter-spacing:0.076800pt;}
.lsd_c00247{letter-spacing:0.089600pt;}
.ls19_c00247{letter-spacing:0.441600pt;}
.lsb_c00247{letter-spacing:392.414400pt;}
.lsa_c00247{letter-spacing:483.200000pt;}
.ws0_c00247{word-spacing:-16.032000pt;}
.ws2_c00247{word-spacing:-16.006400pt;}
.ws1_c00247{word-spacing:-15.968000pt;}
.ws5_c00247{word-spacing:-1.632000pt;}
.ws4_c00247{word-spacing:0.000000pt;}
.ws3_c00247{word-spacing:0.122912pt;}
._2_c00247{margin-left:-1.952000pt;}
._1_c00247{margin-left:-1.043200pt;}
._3_c00247{width:0.947200pt;}
._6_c00247{width:2.176000pt;}
._0_c00247{width:4.486400pt;}
._c_c00247{width:5.414400pt;}
._4_c00247{width:6.419200pt;}
._5_c00247{width:7.366400pt;}
._b_c00247{width:9.638400pt;}
._a_c00247{width:10.540800pt;}
._d_c00247{width:20.774400pt;}
._9_c00247{width:233.257600pt;}
._7_c00247{width:286.644800pt;}
._8_c00247{width:313.196800pt;}
.fs3_c00247{font-size:48.000000pt;}
.fs0_c00247{font-size:53.440000pt;}
.fs1_c00247{font-size:64.000000pt;}
.fs2_c00247{font-size:74.560000pt;}
.y0_c00247{bottom:0.000000pt;}
.y6_c00247{bottom:50.987067pt;}
.y5_c00247{bottom:69.387067pt;}
.y2a_c00247{bottom:119.787200pt;}
.y29_c00247{bottom:147.387200pt;}
.y28_c00247{bottom:174.987200pt;}
.y27_c00247{bottom:202.587200pt;}
.y26_c00247{bottom:230.187200pt;}
.y25_c00247{bottom:257.787200pt;}
.y24_c00247{bottom:285.387200pt;}
.y23_c00247{bottom:312.987200pt;}
.y22_c00247{bottom:340.587200pt;}
.y21_c00247{bottom:368.187200pt;}
.y20_c00247{bottom:392.827200pt;}
.y1f_c00247{bottom:413.867067pt;}
.y1e_c00247{bottom:434.827200pt;}
.y1d_c00247{bottom:455.867067pt;}
.y1c_c00247{bottom:476.907067pt;}
.y1b_c00247{bottom:497.947067pt;}
.y1a_c00247{bottom:518.987067pt;}
.y19_c00247{bottom:540.027067pt;}
.y18_c00247{bottom:561.067067pt;}
.y17_c00247{bottom:582.107067pt;}
.y16_c00247{bottom:603.147067pt;}
.y15_c00247{bottom:624.187067pt;}
.y14_c00247{bottom:645.147067pt;}
.y13_c00247{bottom:666.187067pt;}
.y12_c00247{bottom:690.347067pt;}
.y11_c00247{bottom:715.387067pt;}
.y10_c00247{bottom:741.067067pt;}
.yf_c00247{bottom:774.027067pt;}
.ye_c00247{bottom:801.627067pt;}
.yd_c00247{bottom:829.227067pt;}
.yc_c00247{bottom:856.827067pt;}
.yb_c00247{bottom:884.427067pt;}
.ya_c00247{bottom:912.027067pt;}
.y9_c00247{bottom:939.627067pt;}
.y8_c00247{bottom:967.227067pt;}
.y7_c00247{bottom:996.667067pt;}
.y4_c00247{bottom:1017.227251pt;}
.y3_c00247{bottom:1032.587243pt;}
.y2_c00247{bottom:1047.867075pt;}
.y1_c00247{bottom:1063.227067pt;}
.h6_c00247{height:43.031250pt;}
.h1_c00247{height:47.020937pt;}
.h2_c00247{height:56.156250pt;}
.h4_c00247{height:56.312500pt;}
.h5_c00247{height:58.071250pt;}
.h3_c00247{height:66.222969pt;}
.h0_c00247{height:1122.666667pt;}
.w1_c00247{width:793.333333pt;}
.w0_c00247{width:793.626667pt;}
.x0_c00247{left:0.000000pt;}
.x4_c00247{left:113.440000pt;}
.x5_c00247{left:244.720000pt;}
.x6_c00247{left:346.160000pt;}
.x1_c00247{left:577.440000pt;}
.x3_c00247{left:656.400000pt;}
.x2_c00247{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9320e390a68c41f19bf2beab.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.095703;font-style:normal;font-weight:normal;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_26240552bc35457dd2c77bfd.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.093262;font-style:normal;font-weight:normal;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_05cca466f343b1d0e3ca8f8a.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:1.104004;font-style: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;}
.ls1e_c00248{letter-spacing:-0.223200px;}
.ls1a_c00248{letter-spacing:-0.108000px;}
.ls13_c00248{letter-spacing:-0.102204px;}
.ls1f_c00248{letter-spacing:-0.072000px;}
.ls1c_c00248{letter-spacing:-0.064800px;}
.ls15_c00248{letter-spacing:-0.057600px;}
.ls1b_c00248{letter-spacing:-0.050400px;}
.ls16_c00248{letter-spacing:-0.036000px;}
.ls18_c00248{letter-spacing:-0.028800px;}
.ls19_c00248{letter-spacing:-0.021600px;}
.ls1d_c00248{letter-spacing:-0.014400px;}
.ls17_c00248{letter-spacing:-0.007200px;}
.ls14_c00248{letter-spacing:0.000000px;}
.ls5_c00248{letter-spacing:0.007200px;}
.ls0_c00248{letter-spacing:0.014400px;}
.lse_c00248{letter-spacing:0.021600px;}
.ls2_c00248{letter-spacing:0.028800px;}
.ls4_c00248{letter-spacing:0.036000px;}
.lsd_c00248{letter-spacing:0.037800px;}
.ls1_c00248{letter-spacing:0.043200px;}
.lsb_c00248{letter-spacing:0.050328px;}
.lsc_c00248{letter-spacing:0.059400px;}
.lsf_c00248{letter-spacing:0.064800px;}
.ls11_c00248{letter-spacing:0.072000px;}
.lsa_c00248{letter-spacing:0.079200px;}
.ls7_c00248{letter-spacing:0.086400px;}
.ls12_c00248{letter-spacing:0.093600px;}
.ls10_c00248{letter-spacing:0.108000px;}
.ls9_c00248{letter-spacing:0.122400px;}
.ls8_c00248{letter-spacing:0.144000px;}
.ls3_c00248{letter-spacing:1.440000px;}
.ls6_c00248{letter-spacing:5.400000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00248{word-spacing:-18.064800px;}
.ws1_c00248{word-spacing:-17.949600px;}
.ws9_c00248{word-spacing:-0.079200px;}
.ws4_c00248{word-spacing:-0.028800px;}
.ws3_c00248{word-spacing:0.000000px;}
.ws2_c00248{word-spacing:0.192384px;}
.ws6_c00248{word-spacing:1.476000px;}
.ws5_c00248{word-spacing:1.497600px;}
.ws7_c00248{word-spacing:5.392800px;}
.ws8_c00248{word-spacing:5.457600px;}
._5_c00248{margin-left:-5.796000px;}
._1_c00248{margin-left:-2.390400px;}
._2_c00248{margin-left:-1.036800px;}
._0_c00248{width:1.034064px;}
._3_c00248{width:2.052288px;}
._4_c00248{width:5.371200px;}
._6_c00248{width:23.824800px;}
._8_c00248{width:30.621600px;}
._c_c00248{width:43.214400px;}
._7_c00248{width:63.028800px;}
._9_c00248{width:64.265472px;}
._b_c00248{width:106.992000px;}
._a_c00248{width:225.734400px;}
._1d_c00248{width:244.886400px;}
._10_c00248{width:278.496000px;}
._13_c00248{width:281.548800px;}
._f_c00248{width:299.527200px;}
._15_c00248{width:317.556000px;}
._19_c00248{width:335.606400px;}
._12_c00248{width:339.120000px;}
._e_c00248{width:357.127200px;}
._11_c00248{width:366.120000px;}
._18_c00248{width:375.120000px;}
._1a_c00248{width:376.416000px;}
._d_c00248{width:384.127200px;}
._17_c00248{width:402.120000px;}
._16_c00248{width:416.678400px;}
._1f_c00248{width:421.581600px;}
._1e_c00248{width:441.626400px;}
._1b_c00248{width:453.240000px;}
._1c_c00248{width:473.040000px;}
._14_c00248{width:521.294400px;}
.fc2_c00248{color:rgb(1,2,5);}
.fc1_c00248{color:rgb(0,0,0);}
.fc0_c00248{color:rgb(32,31,30);}
.fs3_c00248{font-size:54.000000px;}
.fs0_c00248{font-size:60.120000px;}
.fs1_c00248{font-size:72.000000px;}
.fs2_c00248{font-size:83.880000px;}
.y0_c00248{bottom:0.000000px;}
.y5_c00248{bottom:57.360450px;}
.y4_c00248{bottom:78.060450px;}
.y28_c00248{bottom:116.580450px;}
.y27_c00248{bottom:148.350450px;}
.y26_c00248{bottom:180.210600px;}
.y25_c00248{bottom:211.980450px;}
.y24_c00248{bottom:243.750450px;}
.y23_c00248{bottom:275.610450px;}
.y22_c00248{bottom:306.660450px;}
.y21_c00248{bottom:338.430450px;}
.y20_c00248{bottom:369.480450px;}
.y1f_c00248{bottom:401.250450px;}
.y1e_c00248{bottom:432.300450px;}
.y1d_c00248{bottom:464.160450px;}
.y1c_c00248{bottom:495.930600px;}
.y1b_c00248{bottom:527.700450px;}
.y1a_c00248{bottom:559.470450px;}
.y19_c00248{bottom:590.520450px;}
.y18_c00248{bottom:622.200450px;}
.y17_c00248{bottom:653.250450px;}
.y16_c00248{bottom:684.300450px;}
.y14_c00248{bottom:694.830450px;}
.y15_c00248{bottom:715.350450px;}
.y13_c00248{bottom:715.530450px;}
.y12_c00248{bottom:743.880450px;}
.y11_c00248{bottom:773.760450px;}
.y10_c00248{bottom:796.889739px;}
.yf_c00248{bottom:825.960450px;}
.ye_c00248{bottom:863.040450px;}
.yd_c00248{bottom:894.090450px;}
.yc_c00248{bottom:925.140450px;}
.yb_c00248{bottom:956.190450px;}
.ya_c00248{bottom:987.240450px;}
.y9_c00248{bottom:1018.290450px;}
.y8_c00248{bottom:1049.340450px;}
.y7_c00248{bottom:1080.390450px;}
.y6_c00248{bottom:1111.440450px;}
.y3_c00248{bottom:1132.140450px;}
.y2_c00248{bottom:1165.441023px;}
.y1_c00248{bottom:1196.040600px;}
.h5_c00248{height:47.381836px;}
.h1_c00248{height:52.898555px;}
.h2_c00248{height:63.175781px;}
.h3_c00248{height:63.351562px;}
.h6_c00248{height:63.949219px;}
.h4_c00248{height:74.500840px;}
.h0_c00248{height:1263.000000px;}
.w1_c00248{width:892.500000px;}
.w0_c00248{width:892.830000px;}
.x0_c00248{left:0.000000px;}
.x1_c00248{left:127.620000px;}
.x3_c00248{left:135.630000px;}
.x4_c00248{left:272.790000px;}
.x8_c00248{left:312.480000px;}
.x5_c00248{left:386.370000px;}
.x6_c00248{left:509.850000px;}
.x7_c00248{left:639.990000px;}
.x2_c00248{left:738.450000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls1e_c00248{letter-spacing:-0.198400pt;}
.ls1a_c00248{letter-spacing:-0.096000pt;}
.ls13_c00248{letter-spacing:-0.090848pt;}
.ls1f_c00248{letter-spacing:-0.064000pt;}
.ls1c_c00248{letter-spacing:-0.057600pt;}
.ls15_c00248{letter-spacing:-0.051200pt;}
.ls1b_c00248{letter-spacing:-0.044800pt;}
.ls16_c00248{letter-spacing:-0.032000pt;}
.ls18_c00248{letter-spacing:-0.025600pt;}
.ls19_c00248{letter-spacing:-0.019200pt;}
.ls1d_c00248{letter-spacing:-0.012800pt;}
.ls17_c00248{letter-spacing:-0.006400pt;}
.ls14_c00248{letter-spacing:0.000000pt;}
.ls5_c00248{letter-spacing:0.006400pt;}
.ls0_c00248{letter-spacing:0.012800pt;}
.lse_c00248{letter-spacing:0.019200pt;}
.ls2_c00248{letter-spacing:0.025600pt;}
.ls4_c00248{letter-spacing:0.032000pt;}
.lsd_c00248{letter-spacing:0.033600pt;}
.ls1_c00248{letter-spacing:0.038400pt;}
.lsb_c00248{letter-spacing:0.044736pt;}
.lsc_c00248{letter-spacing:0.052800pt;}
.lsf_c00248{letter-spacing:0.057600pt;}
.ls11_c00248{letter-spacing:0.064000pt;}
.lsa_c00248{letter-spacing:0.070400pt;}
.ls7_c00248{letter-spacing:0.076800pt;}
.ls12_c00248{letter-spacing:0.083200pt;}
.ls10_c00248{letter-spacing:0.096000pt;}
.ls9_c00248{letter-spacing:0.108800pt;}
.ls8_c00248{letter-spacing:0.128000pt;}
.ls3_c00248{letter-spacing:1.280000pt;}
.ls6_c00248{letter-spacing:4.800000pt;}
.ws0_c00248{word-spacing:-16.057600pt;}
.ws1_c00248{word-spacing:-15.955200pt;}
.ws9_c00248{word-spacing:-0.070400pt;}
.ws4_c00248{word-spacing:-0.025600pt;}
.ws3_c00248{word-spacing:0.000000pt;}
.ws2_c00248{word-spacing:0.171008pt;}
.ws6_c00248{word-spacing:1.312000pt;}
.ws5_c00248{word-spacing:1.331200pt;}
.ws7_c00248{word-spacing:4.793600pt;}
.ws8_c00248{word-spacing:4.851200pt;}
._5_c00248{margin-left:-5.152000pt;}
._1_c00248{margin-left:-2.124800pt;}
._2_c00248{margin-left:-0.921600pt;}
._0_c00248{width:0.919168pt;}
._3_c00248{width:1.824256pt;}
._4_c00248{width:4.774400pt;}
._6_c00248{width:21.177600pt;}
._8_c00248{width:27.219200pt;}
._c_c00248{width:38.412800pt;}
._7_c00248{width:56.025600pt;}
._9_c00248{width:57.124864pt;}
._b_c00248{width:95.104000pt;}
._a_c00248{width:200.652800pt;}
._1d_c00248{width:217.676800pt;}
._10_c00248{width:247.552000pt;}
._13_c00248{width:250.265600pt;}
._f_c00248{width:266.246400pt;}
._15_c00248{width:282.272000pt;}
._19_c00248{width:298.316800pt;}
._12_c00248{width:301.440000pt;}
._e_c00248{width:317.446400pt;}
._11_c00248{width:325.440000pt;}
._18_c00248{width:333.440000pt;}
._1a_c00248{width:334.592000pt;}
._d_c00248{width:341.446400pt;}
._17_c00248{width:357.440000pt;}
._16_c00248{width:370.380800pt;}
._1f_c00248{width:374.739200pt;}
._1e_c00248{width:392.556800pt;}
._1b_c00248{width:402.880000pt;}
._1c_c00248{width:420.480000pt;}
._14_c00248{width:463.372800pt;}
.fs3_c00248{font-size:48.000000pt;}
.fs0_c00248{font-size:53.440000pt;}
.fs1_c00248{font-size:64.000000pt;}
.fs2_c00248{font-size:74.560000pt;}
.y0_c00248{bottom:0.000000pt;}
.y5_c00248{bottom:50.987067pt;}
.y4_c00248{bottom:69.387067pt;}
.y28_c00248{bottom:103.627067pt;}
.y27_c00248{bottom:131.867067pt;}
.y26_c00248{bottom:160.187200pt;}
.y25_c00248{bottom:188.427067pt;}
.y24_c00248{bottom:216.667067pt;}
.y23_c00248{bottom:244.987067pt;}
.y22_c00248{bottom:272.587067pt;}
.y21_c00248{bottom:300.827067pt;}
.y20_c00248{bottom:328.427067pt;}
.y1f_c00248{bottom:356.667067pt;}
.y1e_c00248{bottom:384.267067pt;}
.y1d_c00248{bottom:412.587067pt;}
.y1c_c00248{bottom:440.827200pt;}
.y1b_c00248{bottom:469.067067pt;}
.y1a_c00248{bottom:497.307067pt;}
.y19_c00248{bottom:524.907067pt;}
.y18_c00248{bottom:553.067067pt;}
.y17_c00248{bottom:580.667067pt;}
.y16_c00248{bottom:608.267067pt;}
.y14_c00248{bottom:617.627067pt;}
.y15_c00248{bottom:635.867067pt;}
.y13_c00248{bottom:636.027067pt;}
.y12_c00248{bottom:661.227067pt;}
.y11_c00248{bottom:687.787067pt;}
.y10_c00248{bottom:708.346435pt;}
.yf_c00248{bottom:734.187067pt;}
.ye_c00248{bottom:767.147067pt;}
.yd_c00248{bottom:794.747067pt;}
.yc_c00248{bottom:822.347067pt;}
.yb_c00248{bottom:849.947067pt;}
.ya_c00248{bottom:877.547067pt;}
.y9_c00248{bottom:905.147067pt;}
.y8_c00248{bottom:932.747067pt;}
.y7_c00248{bottom:960.347067pt;}
.y6_c00248{bottom:987.947067pt;}
.y3_c00248{bottom:1006.347067pt;}
.y2_c00248{bottom:1035.947576pt;}
.y1_c00248{bottom:1063.147200pt;}
.h5_c00248{height:42.117188pt;}
.h1_c00248{height:47.020937pt;}
.h2_c00248{height:56.156250pt;}
.h3_c00248{height:56.312500pt;}
.h6_c00248{height:56.843750pt;}
.h4_c00248{height:66.222969pt;}
.h0_c00248{height:1122.666667pt;}
.w1_c00248{width:793.333333pt;}
.w0_c00248{width:793.626667pt;}
.x0_c00248{left:0.000000pt;}
.x1_c00248{left:113.440000pt;}
.x3_c00248{left:120.560000pt;}
.x4_c00248{left:242.480000pt;}
.x8_c00248{left:277.760000pt;}
.x5_c00248{left:343.440000pt;}
.x6_c00248{left:453.200000pt;}
.x7_c00248{left:568.880000pt;}
.x2_c00248{left:656.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_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_d7e424ed057bce90df2a1cb1.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.095703;font-style:normal;font-weight:normal;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_bf5e3a9c031e437806d2489a.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00249{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls10_c00249{letter-spacing:-0.280800px;}
.ls18_c00249{letter-spacing:-0.162000px;}
.ls16_c00249{letter-spacing:-0.079200px;}
.ls13_c00249{letter-spacing:-0.057600px;}
.lsd_c00249{letter-spacing:-0.048096px;}
.ls11_c00249{letter-spacing:-0.028800px;}
.ls14_c00249{letter-spacing:-0.021600px;}
.ls17_c00249{letter-spacing:-0.016200px;}
.ls12_c00249{letter-spacing:-0.014400px;}
.lsf_c00249{letter-spacing:-0.007200px;}
.lse_c00249{letter-spacing:0.000000px;}
.ls19_c00249{letter-spacing:0.005400px;}
.lsa_c00249{letter-spacing:0.007200px;}
.ls6_c00249{letter-spacing:0.014400px;}
.ls7_c00249{letter-spacing:0.021600px;}
.ls0_c00249{letter-spacing:0.028800px;}
.ls1_c00249{letter-spacing:0.036000px;}
.ls9_c00249{letter-spacing:0.043200px;}
.ls3_c00249{letter-spacing:0.064800px;}
.ls8_c00249{letter-spacing:0.072000px;}
.ls5_c00249{letter-spacing:0.079200px;}
.ls2_c00249{letter-spacing:0.086400px;}
.lsc_c00249{letter-spacing:0.093600px;}
.ls4_c00249{letter-spacing:0.108000px;}
.lsb_c00249{letter-spacing:0.115200px;}
.ls15_c00249{letter-spacing:0.583200px;}
.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:-18.086400px;}
.ws1_c00249{word-spacing:-18.036000px;}
.ws2_c00249{word-spacing:-17.920800px;}
.wsa_c00249{word-spacing:-0.183600px;}
.ws6_c00249{word-spacing:-0.162000px;}
.ws4_c00249{word-spacing:0.000000px;}
.ws9_c00249{word-spacing:0.135000px;}
.ws3_c00249{word-spacing:0.138276px;}
.ws5_c00249{word-spacing:0.597600px;}
.ws7_c00249{word-spacing:17.458200px;}
.ws8_c00249{word-spacing:17.620200px;}
._c_c00249{margin-left:-3.621600px;}
._5_c00249{margin-left:-1.836000px;}
._10_c00249{width:1.022400px;}
._0_c00249{width:2.131200px;}
._1_c00249{width:3.254400px;}
._f_c00249{width:4.708800px;}
._3_c00249{width:5.940000px;}
._2_c00249{width:7.135200px;}
._4_c00249{width:8.236800px;}
._8_c00249{width:9.691200px;}
._e_c00249{width:10.771200px;}
._9_c00249{width:13.334400px;}
._a_c00249{width:14.486400px;}
._b_c00249{width:15.609600px;}
._d_c00249{width:24.098400px;}
._11_c00249{width:26.265600px;}
._6_c00249{width:35.330400px;}
._7_c00249{width:36.597600px;}
.fc2_c00249{color:rgb(68,84,106);}
.fc1_c00249{color:rgb(1,2,5);}
.fc0_c00249{color:rgb(0,0,0);}
.fs2_c00249{font-size:54.000000px;}
.fs0_c00249{font-size:60.120000px;}
.fs1_c00249{font-size:72.000000px;}
.y0_c00249{bottom:0.000000px;}
.y29_c00249{bottom:3.240450px;}
.y2d_c00249{bottom:3.240600px;}
.y6_c00249{bottom:57.360450px;}
.y5_c00249{bottom:78.060450px;}
.y27_c00249{bottom:118.830450px;}
.y26_c00249{bottom:149.880450px;}
.y25_c00249{bottom:180.930450px;}
.y24_c00249{bottom:211.980450px;}
.y23_c00249{bottom:243.030450px;}
.y22_c00249{bottom:274.080450px;}
.y21_c00249{bottom:305.130450px;}
.y20_c00249{bottom:336.180450px;}
.y1f_c00249{bottom:367.230450px;}
.y1e_c00249{bottom:398.280450px;}
.y1d_c00249{bottom:429.330450px;}
.y1c_c00249{bottom:460.380450px;}
.y1b_c00249{bottom:491.430450px;}
.y1a_c00249{bottom:522.480450px;}
.y19_c00249{bottom:553.530450px;}
.y18_c00249{bottom:584.580450px;}
.y17_c00249{bottom:615.630450px;}
.y16_c00249{bottom:646.680450px;}
.y15_c00249{bottom:677.640450px;}
.y14_c00249{bottom:708.690450px;}
.y13_c00249{bottom:739.740450px;}
.y2e_c00249{bottom:765.480450px;}
.y12_c00249{bottom:770.790450px;}
.y2c_c00249{bottom:785.550000px;}
.y2b_c00249{bottom:788.790000px;}
.y11_c00249{bottom:801.840450px;}
.y28_c00249{bottom:808.860000px;}
.y2a_c00249{bottom:812.100450px;}
.y10_c00249{bottom:832.890450px;}
.yf_c00249{bottom:875.910450px;}
.ye_c00249{bottom:907.050450px;}
.yd_c00249{bottom:938.100450px;}
.yc_c00249{bottom:969.150450px;}
.yb_c00249{bottom:1000.200450px;}
.ya_c00249{bottom:1031.160450px;}
.y9_c00249{bottom:1062.210450px;}
.y8_c00249{bottom:1093.260450px;}
.y7_c00249{bottom:1124.310450px;}
.y4_c00249{bottom:1144.380657px;}
.y3_c00249{bottom:1161.660648px;}
.y2_c00249{bottom:1178.850459px;}
.y1_c00249{bottom:1196.130450px;}
.h4_c00249{height:15.300000px;}
.h5_c00249{height:47.513672px;}
.h1_c00249{height:52.898555px;}
.h2_c00249{height:63.175781px;}
.h3_c00249{height:63.351562px;}
.h0_c00249{height:1263.000000px;}
.w3_c00249{width:16.470000px;}
.w2_c00249{width:300.330000px;}
.w1_c00249{width:892.500000px;}
.w0_c00249{width:892.830000px;}
.x0_c00249{left:0.000000px;}
.x9_c00249{left:12.780000px;}
.x4_c00249{left:127.620000px;}
.x7_c00249{left:132.120000px;}
.x8_c00249{left:411.480000px;}
.x6_c00249{left:438.120000px;}
.x5_c00249{left:442.620000px;}
.x1_c00249{left:649.620000px;}
.x3_c00249{left:738.450000px;}
.x2_c00249{left:765.450198px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls10_c00249{letter-spacing:-0.249600pt;}
.ls18_c00249{letter-spacing:-0.144000pt;}
.ls16_c00249{letter-spacing:-0.070400pt;}
.ls13_c00249{letter-spacing:-0.051200pt;}
.lsd_c00249{letter-spacing:-0.042752pt;}
.ls11_c00249{letter-spacing:-0.025600pt;}
.ls14_c00249{letter-spacing:-0.019200pt;}
.ls17_c00249{letter-spacing:-0.014400pt;}
.ls12_c00249{letter-spacing:-0.012800pt;}
.lsf_c00249{letter-spacing:-0.006400pt;}
.lse_c00249{letter-spacing:0.000000pt;}
.ls19_c00249{letter-spacing:0.004800pt;}
.lsa_c00249{letter-spacing:0.006400pt;}
.ls6_c00249{letter-spacing:0.012800pt;}
.ls7_c00249{letter-spacing:0.019200pt;}
.ls0_c00249{letter-spacing:0.025600pt;}
.ls1_c00249{letter-spacing:0.032000pt;}
.ls9_c00249{letter-spacing:0.038400pt;}
.ls3_c00249{letter-spacing:0.057600pt;}
.ls8_c00249{letter-spacing:0.064000pt;}
.ls5_c00249{letter-spacing:0.070400pt;}
.ls2_c00249{letter-spacing:0.076800pt;}
.lsc_c00249{letter-spacing:0.083200pt;}
.ls4_c00249{letter-spacing:0.096000pt;}
.lsb_c00249{letter-spacing:0.102400pt;}
.ls15_c00249{letter-spacing:0.518400pt;}
.ws0_c00249{word-spacing:-16.076800pt;}
.ws1_c00249{word-spacing:-16.032000pt;}
.ws2_c00249{word-spacing:-15.929600pt;}
.wsa_c00249{word-spacing:-0.163200pt;}
.ws6_c00249{word-spacing:-0.144000pt;}
.ws4_c00249{word-spacing:0.000000pt;}
.ws9_c00249{word-spacing:0.120000pt;}
.ws3_c00249{word-spacing:0.122912pt;}
.ws5_c00249{word-spacing:0.531200pt;}
.ws7_c00249{word-spacing:15.518400pt;}
.ws8_c00249{word-spacing:15.662400pt;}
._c_c00249{margin-left:-3.219200pt;}
._5_c00249{margin-left:-1.632000pt;}
._10_c00249{width:0.908800pt;}
._0_c00249{width:1.894400pt;}
._1_c00249{width:2.892800pt;}
._f_c00249{width:4.185600pt;}
._3_c00249{width:5.280000pt;}
._2_c00249{width:6.342400pt;}
._4_c00249{width:7.321600pt;}
._8_c00249{width:8.614400pt;}
._e_c00249{width:9.574400pt;}
._9_c00249{width:11.852800pt;}
._a_c00249{width:12.876800pt;}
._b_c00249{width:13.875200pt;}
._d_c00249{width:21.420800pt;}
._11_c00249{width:23.347200pt;}
._6_c00249{width:31.404800pt;}
._7_c00249{width:32.531200pt;}
.fs2_c00249{font-size:48.000000pt;}
.fs0_c00249{font-size:53.440000pt;}
.fs1_c00249{font-size:64.000000pt;}
.y0_c00249{bottom:0.000000pt;}
.y29_c00249{bottom:2.880400pt;}
.y2d_c00249{bottom:2.880533pt;}
.y6_c00249{bottom:50.987067pt;}
.y5_c00249{bottom:69.387067pt;}
.y27_c00249{bottom:105.627067pt;}
.y26_c00249{bottom:133.227067pt;}
.y25_c00249{bottom:160.827067pt;}
.y24_c00249{bottom:188.427067pt;}
.y23_c00249{bottom:216.027067pt;}
.y22_c00249{bottom:243.627067pt;}
.y21_c00249{bottom:271.227067pt;}
.y20_c00249{bottom:298.827067pt;}
.y1f_c00249{bottom:326.427067pt;}
.y1e_c00249{bottom:354.027067pt;}
.y1d_c00249{bottom:381.627067pt;}
.y1c_c00249{bottom:409.227067pt;}
.y1b_c00249{bottom:436.827067pt;}
.y1a_c00249{bottom:464.427067pt;}
.y19_c00249{bottom:492.027067pt;}
.y18_c00249{bottom:519.627067pt;}
.y17_c00249{bottom:547.227067pt;}
.y16_c00249{bottom:574.827067pt;}
.y15_c00249{bottom:602.347067pt;}
.y14_c00249{bottom:629.947067pt;}
.y13_c00249{bottom:657.547067pt;}
.y2e_c00249{bottom:680.427067pt;}
.y12_c00249{bottom:685.147067pt;}
.y2c_c00249{bottom:698.266667pt;}
.y2b_c00249{bottom:701.146667pt;}
.y11_c00249{bottom:712.747067pt;}
.y28_c00249{bottom:718.986667pt;}
.y2a_c00249{bottom:721.867067pt;}
.y10_c00249{bottom:740.347067pt;}
.yf_c00249{bottom:778.587067pt;}
.ye_c00249{bottom:806.267067pt;}
.yd_c00249{bottom:833.867067pt;}
.yc_c00249{bottom:861.467067pt;}
.yb_c00249{bottom:889.067067pt;}
.ya_c00249{bottom:916.587067pt;}
.y9_c00249{bottom:944.187067pt;}
.y8_c00249{bottom:971.787067pt;}
.y7_c00249{bottom:999.387067pt;}
.y4_c00249{bottom:1017.227251pt;}
.y3_c00249{bottom:1032.587243pt;}
.y2_c00249{bottom:1047.867075pt;}
.y1_c00249{bottom:1063.227067pt;}
.h4_c00249{height:13.600000pt;}
.h5_c00249{height:42.234375pt;}
.h1_c00249{height:47.020937pt;}
.h2_c00249{height:56.156250pt;}
.h3_c00249{height:56.312500pt;}
.h0_c00249{height:1122.666667pt;}
.w3_c00249{width:14.640000pt;}
.w2_c00249{width:266.960000pt;}
.w1_c00249{width:793.333333pt;}
.w0_c00249{width:793.626667pt;}
.x0_c00249{left:0.000000pt;}
.x9_c00249{left:11.360000pt;}
.x4_c00249{left:113.440000pt;}
.x7_c00249{left:117.440000pt;}
.x8_c00249{left:365.760000pt;}
.x6_c00249{left:389.440000pt;}
.x5_c00249{left:393.440000pt;}
.x1_c00249{left:577.440000pt;}
.x3_c00249{left:656.400000pt;}
.x2_c00249{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac9895ce55be2678e8728870.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.095703;font-style:normal;font-weight:normal;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_d4cc78396918692278efc055.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00250{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls11_c00250{letter-spacing:-0.102204px;}
.ls18_c00250{letter-spacing:-0.072000px;}
.ls14_c00250{letter-spacing:-0.028800px;}
.ls19_c00250{letter-spacing:-0.021600px;}
.ls13_c00250{letter-spacing:-0.014400px;}
.ls15_c00250{letter-spacing:-0.010800px;}
.ls17_c00250{letter-spacing:-0.007200px;}
.ls12_c00250{letter-spacing:0.000000px;}
.ls3_c00250{letter-spacing:0.007200px;}
.ls1_c00250{letter-spacing:0.014400px;}
.ls5_c00250{letter-spacing:0.016200px;}
.lse_c00250{letter-spacing:0.021600px;}
.ls8_c00250{letter-spacing:0.027000px;}
.ls2_c00250{letter-spacing:0.028800px;}
.ls10_c00250{letter-spacing:0.032400px;}
.ls4_c00250{letter-spacing:0.036000px;}
.lsf_c00250{letter-spacing:0.043200px;}
.lsa_c00250{letter-spacing:0.057600px;}
.lsd_c00250{letter-spacing:0.064800px;}
.lsb_c00250{letter-spacing:0.086400px;}
.ls0_c00250{letter-spacing:0.093600px;}
.ls6_c00250{letter-spacing:0.097200px;}
.lsc_c00250{letter-spacing:0.158400px;}
.ls16_c00250{letter-spacing:12.600000px;}
.ls7_c00250{letter-spacing:1143.000000px;}
.ls9_c00250{letter-spacing:1237.320000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:-13.500000px;}
.ws2_c00250{word-spacing:0.000000px;}
.ws4_c00250{word-spacing:0.081000px;}
.ws5_c00250{word-spacing:0.151200px;}
.ws3_c00250{word-spacing:0.162000px;}
.ws6_c00250{word-spacing:0.189000px;}
.ws1_c00250{word-spacing:0.192384px;}
.ws8_c00250{word-spacing:14.909400px;}
.ws7_c00250{word-spacing:14.963400px;}
._b_c00250{margin-left:-13.140000px;}
._c_c00250{margin-left:-11.916000px;}
._10_c00250{margin-left:-2.196000px;}
._1_c00250{margin-left:-1.108800px;}
._0_c00250{width:1.034064px;}
._8_c00250{width:2.635200px;}
._4_c00250{width:3.974400px;}
._5_c00250{width:4.982400px;}
._6_c00250{width:6.055200px;}
._7_c00250{width:7.387200px;}
._d_c00250{width:9.208800px;}
._9_c00250{width:12.225600px;}
._a_c00250{width:13.507200px;}
._e_c00250{width:14.846400px;}
._f_c00250{width:16.862400px;}
._3_c00250{width:19.706400px;}
._2_c00250{width:20.786400px;}
.fc2_c00250{color:rgb(68,84,106);}
.fc1_c00250{color:rgb(0,0,0);}
.fc0_c00250{color:rgb(32,31,30);}
.fs2_c00250{font-size:54.000000px;}
.fs0_c00250{font-size:60.120000px;}
.fs1_c00250{font-size:72.000000px;}
.y0_c00250{bottom:0.000000px;}
.y1e_c00250{bottom:3.240450px;}
.y5_c00250{bottom:57.360450px;}
.y4_c00250{bottom:78.060450px;}
.y1c_c00250{bottom:113.790450px;}
.y1b_c00250{bottom:144.840450px;}
.y1a_c00250{bottom:175.890450px;}
.y19_c00250{bottom:206.940450px;}
.y18_c00250{bottom:237.990450px;}
.y17_c00250{bottom:269.040450px;}
.y16_c00250{bottom:300.090450px;}
.y15_c00250{bottom:331.140450px;}
.y14_c00250{bottom:362.190450px;}
.y20_c00250{bottom:365.430000px;}
.y21_c00250{bottom:368.670450px;}
.y1d_c00250{bottom:388.650000px;}
.y1f_c00250{bottom:391.890450px;}
.y13_c00250{bottom:393.240450px;}
.y12_c00250{bottom:436.170450px;}
.y11_c00250{bottom:467.310450px;}
.y10_c00250{bottom:498.360450px;}
.yf_c00250{bottom:529.410450px;}
.ye_c00250{bottom:560.460450px;}
.yd_c00250{bottom:587.460450px;}
.yc_c00250{bottom:762.870450px;}
.yb_c00250{bottom:785.550450px;}
.ya_c00250{bottom:975.090450px;}
.y9_c00250{bottom:1018.200450px;}
.y8_c00250{bottom:1049.340450px;}
.y7_c00250{bottom:1080.390450px;}
.y6_c00250{bottom:1111.440450px;}
.y3_c00250{bottom:1132.140450px;}
.y2_c00250{bottom:1165.441023px;}
.y1_c00250{bottom:1196.040600px;}
.h5_c00250{height:15.300000px;}
.h4_c00250{height:47.513672px;}
.h1_c00250{height:52.898555px;}
.h2_c00250{height:63.175781px;}
.h3_c00250{height:63.351562px;}
.h0_c00250{height:1263.000000px;}
.w2_c00250{width:40.500000px;}
.w3_c00250{width:72.360000px;}
.w1_c00250{width:892.500000px;}
.w0_c00250{width:892.830000px;}
.x0_c00250{left:0.000000px;}
.x1_c00250{left:127.620000px;}
.x6_c00250{left:132.120000px;}
.x7_c00250{left:135.900000px;}
.x4_c00250{left:444.240000px;}
.x5_c00250{left:453.870000px;}
.x3_c00250{left:464.760000px;}
.x2_c00250{left:738.450000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls11_c00250{letter-spacing:-0.090848pt;}
.ls18_c00250{letter-spacing:-0.064000pt;}
.ls14_c00250{letter-spacing:-0.025600pt;}
.ls19_c00250{letter-spacing:-0.019200pt;}
.ls13_c00250{letter-spacing:-0.012800pt;}
.ls15_c00250{letter-spacing:-0.009600pt;}
.ls17_c00250{letter-spacing:-0.006400pt;}
.ls12_c00250{letter-spacing:0.000000pt;}
.ls3_c00250{letter-spacing:0.006400pt;}
.ls1_c00250{letter-spacing:0.012800pt;}
.ls5_c00250{letter-spacing:0.014400pt;}
.lse_c00250{letter-spacing:0.019200pt;}
.ls8_c00250{letter-spacing:0.024000pt;}
.ls2_c00250{letter-spacing:0.025600pt;}
.ls10_c00250{letter-spacing:0.028800pt;}
.ls4_c00250{letter-spacing:0.032000pt;}
.lsf_c00250{letter-spacing:0.038400pt;}
.lsa_c00250{letter-spacing:0.051200pt;}
.lsd_c00250{letter-spacing:0.057600pt;}
.lsb_c00250{letter-spacing:0.076800pt;}
.ls0_c00250{letter-spacing:0.083200pt;}
.ls6_c00250{letter-spacing:0.086400pt;}
.lsc_c00250{letter-spacing:0.140800pt;}
.ls16_c00250{letter-spacing:11.200000pt;}
.ls7_c00250{letter-spacing:1016.000000pt;}
.ls9_c00250{letter-spacing:1099.840000pt;}
.ws0_c00250{word-spacing:-12.000000pt;}
.ws2_c00250{word-spacing:0.000000pt;}
.ws4_c00250{word-spacing:0.072000pt;}
.ws5_c00250{word-spacing:0.134400pt;}
.ws3_c00250{word-spacing:0.144000pt;}
.ws6_c00250{word-spacing:0.168000pt;}
.ws1_c00250{word-spacing:0.171008pt;}
.ws8_c00250{word-spacing:13.252800pt;}
.ws7_c00250{word-spacing:13.300800pt;}
._b_c00250{margin-left:-11.680000pt;}
._c_c00250{margin-left:-10.592000pt;}
._10_c00250{margin-left:-1.952000pt;}
._1_c00250{margin-left:-0.985600pt;}
._0_c00250{width:0.919168pt;}
._8_c00250{width:2.342400pt;}
._4_c00250{width:3.532800pt;}
._5_c00250{width:4.428800pt;}
._6_c00250{width:5.382400pt;}
._7_c00250{width:6.566400pt;}
._d_c00250{width:8.185600pt;}
._9_c00250{width:10.867200pt;}
._a_c00250{width:12.006400pt;}
._e_c00250{width:13.196800pt;}
._f_c00250{width:14.988800pt;}
._3_c00250{width:17.516800pt;}
._2_c00250{width:18.476800pt;}
.fs2_c00250{font-size:48.000000pt;}
.fs0_c00250{font-size:53.440000pt;}
.fs1_c00250{font-size:64.000000pt;}
.y0_c00250{bottom:0.000000pt;}
.y1e_c00250{bottom:2.880400pt;}
.y5_c00250{bottom:50.987067pt;}
.y4_c00250{bottom:69.387067pt;}
.y1c_c00250{bottom:101.147067pt;}
.y1b_c00250{bottom:128.747067pt;}
.y1a_c00250{bottom:156.347067pt;}
.y19_c00250{bottom:183.947067pt;}
.y18_c00250{bottom:211.547067pt;}
.y17_c00250{bottom:239.147067pt;}
.y16_c00250{bottom:266.747067pt;}
.y15_c00250{bottom:294.347067pt;}
.y14_c00250{bottom:321.947067pt;}
.y20_c00250{bottom:324.826667pt;}
.y21_c00250{bottom:327.707067pt;}
.y1d_c00250{bottom:345.466667pt;}
.y1f_c00250{bottom:348.347067pt;}
.y13_c00250{bottom:349.547067pt;}
.y12_c00250{bottom:387.707067pt;}
.y11_c00250{bottom:415.387067pt;}
.y10_c00250{bottom:442.987067pt;}
.yf_c00250{bottom:470.587067pt;}
.ye_c00250{bottom:498.187067pt;}
.yd_c00250{bottom:522.187067pt;}
.yc_c00250{bottom:678.107067pt;}
.yb_c00250{bottom:698.267067pt;}
.ya_c00250{bottom:866.747067pt;}
.y9_c00250{bottom:905.067067pt;}
.y8_c00250{bottom:932.747067pt;}
.y7_c00250{bottom:960.347067pt;}
.y6_c00250{bottom:987.947067pt;}
.y3_c00250{bottom:1006.347067pt;}
.y2_c00250{bottom:1035.947576pt;}
.y1_c00250{bottom:1063.147200pt;}
.h5_c00250{height:13.600000pt;}
.h4_c00250{height:42.234375pt;}
.h1_c00250{height:47.020937pt;}
.h2_c00250{height:56.156250pt;}
.h3_c00250{height:56.312500pt;}
.h0_c00250{height:1122.666667pt;}
.w2_c00250{width:36.000000pt;}
.w3_c00250{width:64.320000pt;}
.w1_c00250{width:793.333333pt;}
.w0_c00250{width:793.626667pt;}
.x0_c00250{left:0.000000pt;}
.x1_c00250{left:113.440000pt;}
.x6_c00250{left:117.440000pt;}
.x7_c00250{left:120.800000pt;}
.x4_c00250{left:394.880000pt;}
.x5_c00250{left:403.440000pt;}
.x3_c00250{left:413.120000pt;}
.x2_c00250{left:656.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_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_473ad5dd6311efbd07ade068.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.095703;font-style:normal;font-weight:normal;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_03f6eb73443d4b76e1b30ba9.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00251{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.lse_c00251{letter-spacing:-0.048096px;}
.ls14_c00251{letter-spacing:-0.028800px;}
.ls11_c00251{letter-spacing:-0.014400px;}
.ls10_c00251{letter-spacing:-0.007200px;}
.lsf_c00251{letter-spacing:0.000000px;}
.lsc_c00251{letter-spacing:0.005400px;}
.ls7_c00251{letter-spacing:0.007200px;}
.ls1_c00251{letter-spacing:0.014400px;}
.ls3_c00251{letter-spacing:0.021600px;}
.ls2_c00251{letter-spacing:0.028800px;}
.ls5_c00251{letter-spacing:0.036000px;}
.ls4_c00251{letter-spacing:0.043200px;}
.ls0_c00251{letter-spacing:0.050400px;}
.ls6_c00251{letter-spacing:0.057600px;}
.lsa_c00251{letter-spacing:0.064800px;}
.lsb_c00251{letter-spacing:0.072000px;}
.lsd_c00251{letter-spacing:0.081000px;}
.ls9_c00251{letter-spacing:0.093600px;}
.ls8_c00251{letter-spacing:0.122400px;}
.ls15_c00251{letter-spacing:6.120000px;}
.ls12_c00251{letter-spacing:9.720000px;}
.ls13_c00251{letter-spacing:17.280000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00251{word-spacing:-17.971200px;}
.ws1_c00251{word-spacing:-13.581000px;}
.ws3_c00251{word-spacing:0.000000px;}
.ws2_c00251{word-spacing:0.138276px;}
.ws4_c00251{word-spacing:9.536400px;}
._f_c00251{margin-left:-17.625600px;}
._10_c00251{margin-left:-16.164000px;}
._a_c00251{margin-left:-9.849600px;}
._b_c00251{margin-left:-8.812800px;}
._15_c00251{margin-left:-6.278400px;}
._16_c00251{margin-left:-5.169600px;}
._17_c00251{margin-left:-3.600000px;}
._5_c00251{margin-left:-2.325600px;}
._3_c00251{margin-left:-1.252800px;}
._2_c00251{width:1.288800px;}
._4_c00251{width:2.325600px;}
._8_c00251{width:3.333600px;}
._6_c00251{width:4.629600px;}
._7_c00251{width:5.724000px;}
._11_c00251{width:7.128000px;}
._c_c00251{width:8.272800px;}
._9_c00251{width:9.662400px;}
._13_c00251{width:10.843200px;}
._d_c00251{width:11.844000px;}
._e_c00251{width:16.200000px;}
._0_c00251{width:19.972800px;}
._1_c00251{width:20.980800px;}
._12_c00251{width:31.651200px;}
._14_c00251{width:36.712800px;}
.fc1_c00251{color:rgb(68,84,106);}
.fc0_c00251{color:rgb(0,0,0);}
.fs2_c00251{font-size:54.000000px;}
.fs0_c00251{font-size:60.120000px;}
.fs1_c00251{font-size:72.000000px;}
.y0_c00251{bottom:0.000000px;}
.y28_c00251{bottom:3.240450px;}
.y6_c00251{bottom:57.360450px;}
.y5_c00251{bottom:78.060450px;}
.y26_c00251{bottom:113.880450px;}
.y25_c00251{bottom:144.930450px;}
.y24_c00251{bottom:175.980450px;}
.y23_c00251{bottom:218.910450px;}
.y22_c00251{bottom:250.050450px;}
.y21_c00251{bottom:281.100450px;}
.y20_c00251{bottom:312.150450px;}
.y1f_c00251{bottom:343.200450px;}
.y1e_c00251{bottom:374.250450px;}
.y1d_c00251{bottom:405.300450px;}
.y1c_c00251{bottom:436.350450px;}
.y1b_c00251{bottom:467.400450px;}
.y1a_c00251{bottom:498.450450px;}
.y19_c00251{bottom:529.500450px;}
.y2a_c00251{bottom:536.610000px;}
.y2b_c00251{bottom:539.850450px;}
.y27_c00251{bottom:559.920000px;}
.y18_c00251{bottom:560.550450px;}
.y29_c00251{bottom:563.160450px;}
.y17_c00251{bottom:603.480450px;}
.y16_c00251{bottom:634.620450px;}
.y15_c00251{bottom:665.670450px;}
.y14_c00251{bottom:696.720450px;}
.y13_c00251{bottom:739.650450px;}
.y12_c00251{bottom:770.790450px;}
.y11_c00251{bottom:801.840450px;}
.y10_c00251{bottom:832.890450px;}
.yf_c00251{bottom:863.940450px;}
.ye_c00251{bottom:906.960450px;}
.yd_c00251{bottom:938.100450px;}
.yc_c00251{bottom:969.150450px;}
.yb_c00251{bottom:1000.200450px;}
.ya_c00251{bottom:1031.160450px;}
.y9_c00251{bottom:1062.210450px;}
.y8_c00251{bottom:1093.260450px;}
.y7_c00251{bottom:1124.310450px;}
.y4_c00251{bottom:1144.380657px;}
.y3_c00251{bottom:1161.660648px;}
.y2_c00251{bottom:1178.850459px;}
.y1_c00251{bottom:1196.130450px;}
.h4_c00251{height:15.300000px;}
.h5_c00251{height:47.513672px;}
.h1_c00251{height:52.898555px;}
.h2_c00251{height:63.175781px;}
.h3_c00251{height:63.351562px;}
.h0_c00251{height:1263.000000px;}
.w3_c00251{width:30.330000px;}
.w2_c00251{width:334.710000px;}
.w1_c00251{width:892.500000px;}
.w0_c00251{width:892.830000px;}
.x0_c00251{left:0.000000px;}
.x4_c00251{left:127.620000px;}
.x6_c00251{left:132.120000px;}
.x7_c00251{left:135.900000px;}
.x5_c00251{left:476.370000px;}
.x1_c00251{left:649.620000px;}
.x3_c00251{left:738.450000px;}
.x2_c00251{left:765.450198px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.lse_c00251{letter-spacing:-0.042752pt;}
.ls14_c00251{letter-spacing:-0.025600pt;}
.ls11_c00251{letter-spacing:-0.012800pt;}
.ls10_c00251{letter-spacing:-0.006400pt;}
.lsf_c00251{letter-spacing:0.000000pt;}
.lsc_c00251{letter-spacing:0.004800pt;}
.ls7_c00251{letter-spacing:0.006400pt;}
.ls1_c00251{letter-spacing:0.012800pt;}
.ls3_c00251{letter-spacing:0.019200pt;}
.ls2_c00251{letter-spacing:0.025600pt;}
.ls5_c00251{letter-spacing:0.032000pt;}
.ls4_c00251{letter-spacing:0.038400pt;}
.ls0_c00251{letter-spacing:0.044800pt;}
.ls6_c00251{letter-spacing:0.051200pt;}
.lsa_c00251{letter-spacing:0.057600pt;}
.lsb_c00251{letter-spacing:0.064000pt;}
.lsd_c00251{letter-spacing:0.072000pt;}
.ls9_c00251{letter-spacing:0.083200pt;}
.ls8_c00251{letter-spacing:0.108800pt;}
.ls15_c00251{letter-spacing:5.440000pt;}
.ls12_c00251{letter-spacing:8.640000pt;}
.ls13_c00251{letter-spacing:15.360000pt;}
.ws0_c00251{word-spacing:-15.974400pt;}
.ws1_c00251{word-spacing:-12.072000pt;}
.ws3_c00251{word-spacing:0.000000pt;}
.ws2_c00251{word-spacing:0.122912pt;}
.ws4_c00251{word-spacing:8.476800pt;}
._f_c00251{margin-left:-15.667200pt;}
._10_c00251{margin-left:-14.368000pt;}
._a_c00251{margin-left:-8.755200pt;}
._b_c00251{margin-left:-7.833600pt;}
._15_c00251{margin-left:-5.580800pt;}
._16_c00251{margin-left:-4.595200pt;}
._17_c00251{margin-left:-3.200000pt;}
._5_c00251{margin-left:-2.067200pt;}
._3_c00251{margin-left:-1.113600pt;}
._2_c00251{width:1.145600pt;}
._4_c00251{width:2.067200pt;}
._8_c00251{width:2.963200pt;}
._6_c00251{width:4.115200pt;}
._7_c00251{width:5.088000pt;}
._11_c00251{width:6.336000pt;}
._c_c00251{width:7.353600pt;}
._9_c00251{width:8.588800pt;}
._13_c00251{width:9.638400pt;}
._d_c00251{width:10.528000pt;}
._e_c00251{width:14.400000pt;}
._0_c00251{width:17.753600pt;}
._1_c00251{width:18.649600pt;}
._12_c00251{width:28.134400pt;}
._14_c00251{width:32.633600pt;}
.fs2_c00251{font-size:48.000000pt;}
.fs0_c00251{font-size:53.440000pt;}
.fs1_c00251{font-size:64.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y28_c00251{bottom:2.880400pt;}
.y6_c00251{bottom:50.987067pt;}
.y5_c00251{bottom:69.387067pt;}
.y26_c00251{bottom:101.227067pt;}
.y25_c00251{bottom:128.827067pt;}
.y24_c00251{bottom:156.427067pt;}
.y23_c00251{bottom:194.587067pt;}
.y22_c00251{bottom:222.267067pt;}
.y21_c00251{bottom:249.867067pt;}
.y20_c00251{bottom:277.467067pt;}
.y1f_c00251{bottom:305.067067pt;}
.y1e_c00251{bottom:332.667067pt;}
.y1d_c00251{bottom:360.267067pt;}
.y1c_c00251{bottom:387.867067pt;}
.y1b_c00251{bottom:415.467067pt;}
.y1a_c00251{bottom:443.067067pt;}
.y19_c00251{bottom:470.667067pt;}
.y2a_c00251{bottom:476.986667pt;}
.y2b_c00251{bottom:479.867067pt;}
.y27_c00251{bottom:497.706667pt;}
.y18_c00251{bottom:498.267067pt;}
.y29_c00251{bottom:500.587067pt;}
.y17_c00251{bottom:536.427067pt;}
.y16_c00251{bottom:564.107067pt;}
.y15_c00251{bottom:591.707067pt;}
.y14_c00251{bottom:619.307067pt;}
.y13_c00251{bottom:657.467067pt;}
.y12_c00251{bottom:685.147067pt;}
.y11_c00251{bottom:712.747067pt;}
.y10_c00251{bottom:740.347067pt;}
.yf_c00251{bottom:767.947067pt;}
.ye_c00251{bottom:806.187067pt;}
.yd_c00251{bottom:833.867067pt;}
.yc_c00251{bottom:861.467067pt;}
.yb_c00251{bottom:889.067067pt;}
.ya_c00251{bottom:916.587067pt;}
.y9_c00251{bottom:944.187067pt;}
.y8_c00251{bottom:971.787067pt;}
.y7_c00251{bottom:999.387067pt;}
.y4_c00251{bottom:1017.227251pt;}
.y3_c00251{bottom:1032.587243pt;}
.y2_c00251{bottom:1047.867075pt;}
.y1_c00251{bottom:1063.227067pt;}
.h4_c00251{height:13.600000pt;}
.h5_c00251{height:42.234375pt;}
.h1_c00251{height:47.020937pt;}
.h2_c00251{height:56.156250pt;}
.h3_c00251{height:56.312500pt;}
.h0_c00251{height:1122.666667pt;}
.w3_c00251{width:26.960000pt;}
.w2_c00251{width:297.520000pt;}
.w1_c00251{width:793.333333pt;}
.w0_c00251{width:793.626667pt;}
.x0_c00251{left:0.000000pt;}
.x4_c00251{left:113.440000pt;}
.x6_c00251{left:117.440000pt;}
.x7_c00251{left:120.800000pt;}
.x5_c00251{left:423.440000pt;}
.x1_c00251{left:577.440000pt;}
.x3_c00251{left:656.400000pt;}
.x2_c00251{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20fac893daf959de4a5f3b78.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.095703;font-style:normal;font-weight:normal;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_5717d5d0b3fe4da242d19b46.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00252;src:url('chunks/assets/font_dbe53e29781b8fb54f3b51ca.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:1.104004;font-style: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);}
.v2_c00252{vertical-align:-20.880000px;}
.v0_c00252{vertical-align:0.000000px;}
.v1_c00252{vertical-align:27.000000px;}
.ls1f_c00252{letter-spacing:-0.150300px;}
.ls13_c00252{letter-spacing:-0.102204px;}
.ls1d_c00252{letter-spacing:-0.084168px;}
.ls1c_c00252{letter-spacing:-0.072000px;}
.ls19_c00252{letter-spacing:-0.050400px;}
.ls16_c00252{letter-spacing:-0.036000px;}
.ls1e_c00252{letter-spacing:-0.030060px;}
.ls15_c00252{letter-spacing:-0.021600px;}
.ls1b_c00252{letter-spacing:-0.014400px;}
.ls1a_c00252{letter-spacing:-0.007200px;}
.ls14_c00252{letter-spacing:0.000000px;}
.ls3_c00252{letter-spacing:0.007200px;}
.ls8_c00252{letter-spacing:0.010800px;}
.lsf_c00252{letter-spacing:0.014400px;}
.lse_c00252{letter-spacing:0.021600px;}
.ls1_c00252{letter-spacing:0.028800px;}
.ls9_c00252{letter-spacing:0.036000px;}
.ls7_c00252{letter-spacing:0.048600px;}
.ls0_c00252{letter-spacing:0.050400px;}
.lsb_c00252{letter-spacing:0.057600px;}
.ls5_c00252{letter-spacing:0.058716px;}
.lsa_c00252{letter-spacing:0.064800px;}
.ls12_c00252{letter-spacing:0.090180px;}
.ls2_c00252{letter-spacing:0.093600px;}
.ls11_c00252{letter-spacing:0.096192px;}
.lsc_c00252{letter-spacing:0.100800px;}
.ls10_c00252{letter-spacing:0.122400px;}
.ls6_c00252{letter-spacing:0.145800px;}
.ls4_c00252{letter-spacing:0.176148px;}
.ls18_c00252{letter-spacing:0.181944px;}
.ls17_c00252{letter-spacing:2.116800px;}
.lsd_c00252{letter-spacing:2.160000px;}
.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;}
}
.ws3_c00252{word-spacing:-14.999940px;}
.ws2_c00252{word-spacing:-14.945832px;}
.ws4_c00252{word-spacing:-14.879700px;}
.ws0_c00252{word-spacing:-12.151944px;}
.ws1_c00252{word-spacing:-9.720000px;}
.ws6_c00252{word-spacing:0.000000px;}
.ws5_c00252{word-spacing:0.192384px;}
.ws7_c00252{word-spacing:12.931200px;}
._6_c00252{margin-left:-3.628800px;}
._3_c00252{margin-left:-2.476800px;}
._2_c00252{margin-left:-1.123200px;}
._0_c00252{width:1.034064px;}
._4_c00252{width:2.486736px;}
._8_c00252{width:7.401600px;}
._7_c00252{width:8.452800px;}
._9_c00252{width:9.504000px;}
._a_c00252{width:10.677600px;}
._1_c00252{width:12.909600px;}
._5_c00252{width:14.313600px;}
.fc3_c00252{color:rgb(5,99,193);}
.fc2_c00252{color:rgb(255,0,0);}
.fc1_c00252{color:rgb(0,0,0);}
.fc0_c00252{color:rgb(32,31,30);}
.fs5_c00252{font-size:38.880000px;}
.fs4_c00252{font-size:47.880000px;}
.fs3_c00252{font-size:54.000000px;}
.fs0_c00252{font-size:60.120000px;}
.fs1_c00252{font-size:72.000000px;}
.fs2_c00252{font-size:83.880000px;}
.y0_c00252{bottom:0.000000px;}
.y5_c00252{bottom:57.360450px;}
.y4_c00252{bottom:78.060450px;}
.y1c_c00252{bottom:109.920450px;}
.y1b_c00252{bottom:132.330450px;}
.y1a_c00252{bottom:145.020450px;}
.y19_c00252{bottom:235.920450px;}
.y18_c00252{bottom:266.970450px;}
.y17_c00252{bottom:298.020450px;}
.y16_c00252{bottom:341.040450px;}
.y15_c00252{bottom:372.180450px;}
.y14_c00252{bottom:415.110450px;}
.y13_c00252{bottom:446.250450px;}
.y12_c00252{bottom:477.300450px;}
.y11_c00252{bottom:508.350450px;}
.y10_c00252{bottom:539.400450px;}
.yf_c00252{bottom:570.450450px;}
.ye_c00252{bottom:601.500450px;}
.yd_c00252{bottom:632.550450px;}
.yc_c00252{bottom:663.600450px;}
.yb_c00252{bottom:931.350450px;}
.ya_c00252{bottom:960.420450px;}
.y9_c00252{bottom:1006.140450px;}
.y8_c00252{bottom:1049.250450px;}
.y7_c00252{bottom:1080.390450px;}
.y6_c00252{bottom:1111.440450px;}
.y3_c00252{bottom:1132.140450px;}
.y2_c00252{bottom:1165.441023px;}
.y1_c00252{bottom:1196.040600px;}
.h7_c00252{height:34.114922px;}
.h5_c00252{height:47.381836px;}
.h8_c00252{height:52.751777px;}
.h1_c00252{height:52.898555px;}
.h2_c00252{height:63.175781px;}
.h3_c00252{height:63.351562px;}
.h6_c00252{height:69.011895px;}
.h4_c00252{height:74.500840px;}
.h0_c00252{height:1263.000000px;}
.w1_c00252{width:892.500000px;}
.w0_c00252{width:892.830000px;}
.x0_c00252{left:0.000000px;}
.x3_c00252{left:47.340000px;}
.x1_c00252{left:127.620000px;}
.x2_c00252{left:738.450000px;}
@media print{
.v2_c00252{vertical-align:-18.560000pt;}
.v0_c00252{vertical-align:0.000000pt;}
.v1_c00252{vertical-align:24.000000pt;}
.ls1f_c00252{letter-spacing:-0.133600pt;}
.ls13_c00252{letter-spacing:-0.090848pt;}
.ls1d_c00252{letter-spacing:-0.074816pt;}
.ls1c_c00252{letter-spacing:-0.064000pt;}
.ls19_c00252{letter-spacing:-0.044800pt;}
.ls16_c00252{letter-spacing:-0.032000pt;}
.ls1e_c00252{letter-spacing:-0.026720pt;}
.ls15_c00252{letter-spacing:-0.019200pt;}
.ls1b_c00252{letter-spacing:-0.012800pt;}
.ls1a_c00252{letter-spacing:-0.006400pt;}
.ls14_c00252{letter-spacing:0.000000pt;}
.ls3_c00252{letter-spacing:0.006400pt;}
.ls8_c00252{letter-spacing:0.009600pt;}
.lsf_c00252{letter-spacing:0.012800pt;}
.lse_c00252{letter-spacing:0.019200pt;}
.ls1_c00252{letter-spacing:0.025600pt;}
.ls9_c00252{letter-spacing:0.032000pt;}
.ls7_c00252{letter-spacing:0.043200pt;}
.ls0_c00252{letter-spacing:0.044800pt;}
.lsb_c00252{letter-spacing:0.051200pt;}
.ls5_c00252{letter-spacing:0.052192pt;}
.lsa_c00252{letter-spacing:0.057600pt;}
.ls12_c00252{letter-spacing:0.080160pt;}
.ls2_c00252{letter-spacing:0.083200pt;}
.ls11_c00252{letter-spacing:0.085504pt;}
.lsc_c00252{letter-spacing:0.089600pt;}
.ls10_c00252{letter-spacing:0.108800pt;}
.ls6_c00252{letter-spacing:0.129600pt;}
.ls4_c00252{letter-spacing:0.156576pt;}
.ls18_c00252{letter-spacing:0.161728pt;}
.ls17_c00252{letter-spacing:1.881600pt;}
.lsd_c00252{letter-spacing:1.920000pt;}
.ws3_c00252{word-spacing:-13.333280pt;}
.ws2_c00252{word-spacing:-13.285184pt;}
.ws4_c00252{word-spacing:-13.226400pt;}
.ws0_c00252{word-spacing:-10.801728pt;}
.ws1_c00252{word-spacing:-8.640000pt;}
.ws6_c00252{word-spacing:0.000000pt;}
.ws5_c00252{word-spacing:0.171008pt;}
.ws7_c00252{word-spacing:11.494400pt;}
._6_c00252{margin-left:-3.225600pt;}
._3_c00252{margin-left:-2.201600pt;}
._2_c00252{margin-left:-0.998400pt;}
._0_c00252{width:0.919168pt;}
._4_c00252{width:2.210432pt;}
._8_c00252{width:6.579200pt;}
._7_c00252{width:7.513600pt;}
._9_c00252{width:8.448000pt;}
._a_c00252{width:9.491200pt;}
._1_c00252{width:11.475200pt;}
._5_c00252{width:12.723200pt;}
.fs5_c00252{font-size:34.560000pt;}
.fs4_c00252{font-size:42.560000pt;}
.fs3_c00252{font-size:48.000000pt;}
.fs0_c00252{font-size:53.440000pt;}
.fs1_c00252{font-size:64.000000pt;}
.fs2_c00252{font-size:74.560000pt;}
.y0_c00252{bottom:0.000000pt;}
.y5_c00252{bottom:50.987067pt;}
.y4_c00252{bottom:69.387067pt;}
.y1c_c00252{bottom:97.707067pt;}
.y1b_c00252{bottom:117.627067pt;}
.y1a_c00252{bottom:128.907067pt;}
.y19_c00252{bottom:209.707067pt;}
.y18_c00252{bottom:237.307067pt;}
.y17_c00252{bottom:264.907067pt;}
.y16_c00252{bottom:303.147067pt;}
.y15_c00252{bottom:330.827067pt;}
.y14_c00252{bottom:368.987067pt;}
.y13_c00252{bottom:396.667067pt;}
.y12_c00252{bottom:424.267067pt;}
.y11_c00252{bottom:451.867067pt;}
.y10_c00252{bottom:479.467067pt;}
.yf_c00252{bottom:507.067067pt;}
.ye_c00252{bottom:534.667067pt;}
.yd_c00252{bottom:562.267067pt;}
.yc_c00252{bottom:589.867067pt;}
.yb_c00252{bottom:827.867067pt;}
.ya_c00252{bottom:853.707067pt;}
.y9_c00252{bottom:894.347067pt;}
.y8_c00252{bottom:932.667067pt;}
.y7_c00252{bottom:960.347067pt;}
.y6_c00252{bottom:987.947067pt;}
.y3_c00252{bottom:1006.347067pt;}
.y2_c00252{bottom:1035.947576pt;}
.y1_c00252{bottom:1063.147200pt;}
.h7_c00252{height:30.324375pt;}
.h5_c00252{height:42.117188pt;}
.h8_c00252{height:46.890469pt;}
.h1_c00252{height:47.020937pt;}
.h2_c00252{height:56.156250pt;}
.h3_c00252{height:56.312500pt;}
.h6_c00252{height:61.343906pt;}
.h4_c00252{height:66.222969pt;}
.h0_c00252{height:1122.666667pt;}
.w1_c00252{width:793.333333pt;}
.w0_c00252{width:793.626667pt;}
.x0_c00252{left:0.000000pt;}
.x3_c00252{left:42.080000pt;}
.x1_c00252{left:113.440000pt;}
.x2_c00252{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.095703;font-style:normal;font-weight:normal;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_e8f98d27b95092842a2f5a47.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00253{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls15_c00253{letter-spacing:-1.080000px;}
.ls10_c00253{letter-spacing:-0.194400px;}
.ls13_c00253{letter-spacing:-0.050400px;}
.lsa_c00253{letter-spacing:-0.048096px;}
.ls16_c00253{letter-spacing:-0.036000px;}
.ls12_c00253{letter-spacing:-0.028800px;}
.ls11_c00253{letter-spacing:-0.021600px;}
.lse_c00253{letter-spacing:-0.014400px;}
.lsc_c00253{letter-spacing:-0.007200px;}
.lsb_c00253{letter-spacing:0.000000px;}
.ls6_c00253{letter-spacing:0.007200px;}
.ls3_c00253{letter-spacing:0.014400px;}
.ls9_c00253{letter-spacing:0.021600px;}
.ls1_c00253{letter-spacing:0.028800px;}
.ls0_c00253{letter-spacing:0.036000px;}
.ls4_c00253{letter-spacing:0.043200px;}
.ls5_c00253{letter-spacing:0.050400px;}
.ls8_c00253{letter-spacing:0.057600px;}
.ls7_c00253{letter-spacing:0.072000px;}
.ls2_c00253{letter-spacing:0.100800px;}
.ls14_c00253{letter-spacing:3.600000px;}
.lsf_c00253{letter-spacing:4.320000px;}
.lsd_c00253{letter-spacing:11.880000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00253{word-spacing:0.000000px;}
.ws0_c00253{word-spacing:0.138276px;}
._2_c00253{margin-left:-12.088800px;}
._3_c00253{margin-left:-10.951200px;}
._8_c00253{margin-left:-5.068800px;}
._7_c00253{margin-left:-3.916800px;}
._e_c00253{margin-left:-2.577600px;}
._1_c00253{margin-left:-1.065600px;}
._4_c00253{width:1.411200px;}
._c_c00253{width:2.937600px;}
._5_c00253{width:3.945600px;}
._6_c00253{width:5.068800px;}
._d_c00253{width:6.436800px;}
._f_c00253{width:7.545600px;}
._a_c00253{width:9.345600px;}
._0_c00253{width:11.887200px;}
._b_c00253{width:15.098400px;}
._10_c00253{width:19.252800px;}
._12_c00253{width:23.371200px;}
._11_c00253{width:24.789600px;}
._13_c00253{width:25.948800px;}
._9_c00253{width:28.764000px;}
.fc0_c00253{color:rgb(0,0,0);}
.fs0_c00253{font-size:60.120000px;}
.fs1_c00253{font-size:72.000000px;}
.y0_c00253{bottom:0.000000px;}
.y6_c00253{bottom:57.360450px;}
.y5_c00253{bottom:78.060450px;}
.y25_c00253{bottom:132.960450px;}
.y24_c00253{bottom:164.010450px;}
.y23_c00253{bottom:195.060450px;}
.y22_c00253{bottom:226.110450px;}
.y21_c00253{bottom:269.040450px;}
.y20_c00253{bottom:300.180450px;}
.y1f_c00253{bottom:331.230450px;}
.y1e_c00253{bottom:374.160450px;}
.y1d_c00253{bottom:405.300450px;}
.y1c_c00253{bottom:436.350450px;}
.y1b_c00253{bottom:467.400450px;}
.y1a_c00253{bottom:498.450450px;}
.y19_c00253{bottom:529.500450px;}
.y18_c00253{bottom:560.550450px;}
.y17_c00253{bottom:603.480450px;}
.y16_c00253{bottom:634.620450px;}
.y15_c00253{bottom:665.670450px;}
.y14_c00253{bottom:696.720450px;}
.y13_c00253{bottom:727.770450px;}
.y12_c00253{bottom:758.820450px;}
.y11_c00253{bottom:789.870450px;}
.y10_c00253{bottom:820.920450px;}
.yf_c00253{bottom:851.970450px;}
.ye_c00253{bottom:894.900450px;}
.yd_c00253{bottom:926.040450px;}
.yc_c00253{bottom:957.090450px;}
.yb_c00253{bottom:988.140450px;}
.ya_c00253{bottom:1019.190450px;}
.y9_c00253{bottom:1050.240450px;}
.y8_c00253{bottom:1093.170450px;}
.y7_c00253{bottom:1124.310450px;}
.y4_c00253{bottom:1144.380657px;}
.y3_c00253{bottom:1161.660648px;}
.y2_c00253{bottom:1178.850459px;}
.y1_c00253{bottom:1196.130450px;}
.h1_c00253{height:52.898555px;}
.h2_c00253{height:63.175781px;}
.h0_c00253{height:1263.000000px;}
.w1_c00253{width:892.500000px;}
.w0_c00253{width:892.830000px;}
.x0_c00253{left:0.000000px;}
.x4_c00253{left:127.620000px;}
.x1_c00253{left:649.620000px;}
.x3_c00253{left:738.450000px;}
.x2_c00253{left:765.450198px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls15_c00253{letter-spacing:-0.960000pt;}
.ls10_c00253{letter-spacing:-0.172800pt;}
.ls13_c00253{letter-spacing:-0.044800pt;}
.lsa_c00253{letter-spacing:-0.042752pt;}
.ls16_c00253{letter-spacing:-0.032000pt;}
.ls12_c00253{letter-spacing:-0.025600pt;}
.ls11_c00253{letter-spacing:-0.019200pt;}
.lse_c00253{letter-spacing:-0.012800pt;}
.lsc_c00253{letter-spacing:-0.006400pt;}
.lsb_c00253{letter-spacing:0.000000pt;}
.ls6_c00253{letter-spacing:0.006400pt;}
.ls3_c00253{letter-spacing:0.012800pt;}
.ls9_c00253{letter-spacing:0.019200pt;}
.ls1_c00253{letter-spacing:0.025600pt;}
.ls0_c00253{letter-spacing:0.032000pt;}
.ls4_c00253{letter-spacing:0.038400pt;}
.ls5_c00253{letter-spacing:0.044800pt;}
.ls8_c00253{letter-spacing:0.051200pt;}
.ls7_c00253{letter-spacing:0.064000pt;}
.ls2_c00253{letter-spacing:0.089600pt;}
.ls14_c00253{letter-spacing:3.200000pt;}
.lsf_c00253{letter-spacing:3.840000pt;}
.lsd_c00253{letter-spacing:10.560000pt;}
.ws1_c00253{word-spacing:0.000000pt;}
.ws0_c00253{word-spacing:0.122912pt;}
._2_c00253{margin-left:-10.745600pt;}
._3_c00253{margin-left:-9.734400pt;}
._8_c00253{margin-left:-4.505600pt;}
._7_c00253{margin-left:-3.481600pt;}
._e_c00253{margin-left:-2.291200pt;}
._1_c00253{margin-left:-0.947200pt;}
._4_c00253{width:1.254400pt;}
._c_c00253{width:2.611200pt;}
._5_c00253{width:3.507200pt;}
._6_c00253{width:4.505600pt;}
._d_c00253{width:5.721600pt;}
._f_c00253{width:6.707200pt;}
._a_c00253{width:8.307200pt;}
._0_c00253{width:10.566400pt;}
._b_c00253{width:13.420800pt;}
._10_c00253{width:17.113600pt;}
._12_c00253{width:20.774400pt;}
._11_c00253{width:22.035200pt;}
._13_c00253{width:23.065600pt;}
._9_c00253{width:25.568000pt;}
.fs0_c00253{font-size:53.440000pt;}
.fs1_c00253{font-size:64.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.y6_c00253{bottom:50.987067pt;}
.y5_c00253{bottom:69.387067pt;}
.y25_c00253{bottom:118.187067pt;}
.y24_c00253{bottom:145.787067pt;}
.y23_c00253{bottom:173.387067pt;}
.y22_c00253{bottom:200.987067pt;}
.y21_c00253{bottom:239.147067pt;}
.y20_c00253{bottom:266.827067pt;}
.y1f_c00253{bottom:294.427067pt;}
.y1e_c00253{bottom:332.587067pt;}
.y1d_c00253{bottom:360.267067pt;}
.y1c_c00253{bottom:387.867067pt;}
.y1b_c00253{bottom:415.467067pt;}
.y1a_c00253{bottom:443.067067pt;}
.y19_c00253{bottom:470.667067pt;}
.y18_c00253{bottom:498.267067pt;}
.y17_c00253{bottom:536.427067pt;}
.y16_c00253{bottom:564.107067pt;}
.y15_c00253{bottom:591.707067pt;}
.y14_c00253{bottom:619.307067pt;}
.y13_c00253{bottom:646.907067pt;}
.y12_c00253{bottom:674.507067pt;}
.y11_c00253{bottom:702.107067pt;}
.y10_c00253{bottom:729.707067pt;}
.yf_c00253{bottom:757.307067pt;}
.ye_c00253{bottom:795.467067pt;}
.yd_c00253{bottom:823.147067pt;}
.yc_c00253{bottom:850.747067pt;}
.yb_c00253{bottom:878.347067pt;}
.ya_c00253{bottom:905.947067pt;}
.y9_c00253{bottom:933.547067pt;}
.y8_c00253{bottom:971.707067pt;}
.y7_c00253{bottom:999.387067pt;}
.y4_c00253{bottom:1017.227251pt;}
.y3_c00253{bottom:1032.587243pt;}
.y2_c00253{bottom:1047.867075pt;}
.y1_c00253{bottom:1063.227067pt;}
.h1_c00253{height:47.020937pt;}
.h2_c00253{height:56.156250pt;}
.h0_c00253{height:1122.666667pt;}
.w1_c00253{width:793.333333pt;}
.w0_c00253{width:793.626667pt;}
.x0_c00253{left:0.000000pt;}
.x4_c00253{left:113.440000pt;}
.x1_c00253{left:577.440000pt;}
.x3_c00253{left:656.400000pt;}
.x2_c00253{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.095703;font-style:normal;font-weight:normal;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_39a701672fe62965d6c08869.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.093262;font-style:normal;font-weight:normal;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_4b9232a211d883114bdca31e.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:1.104004;font-style:normal;font-weight:normal;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_5aa7ec5fe75a64c7351d393e.woff2')format("woff");}.ff4_c00254{font-family:ff4_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;}
.m1_c00254{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_c00254{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.v2_c00254{vertical-align:1.080000px;}
.v1_c00254{vertical-align:65.160000px;}
.ls14_c00254{letter-spacing:-3.960000px;}
.ls15_c00254{letter-spacing:-3.240000px;}
.ls16_c00254{letter-spacing:-2.880000px;}
.ls26_c00254{letter-spacing:-0.151200px;}
.ls28_c00254{letter-spacing:-0.129600px;}
.ls20_c00254{letter-spacing:-0.108000px;}
.ls12_c00254{letter-spacing:-0.102204px;}
.ls1d_c00254{letter-spacing:-0.097200px;}
.ls19_c00254{letter-spacing:-0.091800px;}
.ls1e_c00254{letter-spacing:-0.086400px;}
.ls27_c00254{letter-spacing:-0.081000px;}
.ls29_c00254{letter-spacing:-0.075600px;}
.ls23_c00254{letter-spacing:-0.070200px;}
.ls18_c00254{letter-spacing:-0.059400px;}
.ls21_c00254{letter-spacing:-0.054000px;}
.ls24_c00254{letter-spacing:-0.043200px;}
.ls1a_c00254{letter-spacing:-0.037800px;}
.ls2a_c00254{letter-spacing:-0.032400px;}
.ls17_c00254{letter-spacing:-0.028800px;}
.ls25_c00254{letter-spacing:-0.027000px;}
.ls1b_c00254{letter-spacing:-0.021600px;}
.ls1c_c00254{letter-spacing:-0.016200px;}
.ls13_c00254{letter-spacing:0.000000px;}
.lsd_c00254{letter-spacing:0.005400px;}
.lsf_c00254{letter-spacing:0.010800px;}
.ls2_c00254{letter-spacing:0.014400px;}
.ls3_c00254{letter-spacing:0.021600px;}
.lse_c00254{letter-spacing:0.027000px;}
.ls10_c00254{letter-spacing:0.032400px;}
.lsb_c00254{letter-spacing:0.033552px;}
.ls4_c00254{letter-spacing:0.036000px;}
.lsa_c00254{letter-spacing:0.041940px;}
.ls1_c00254{letter-spacing:0.043200px;}
.ls8_c00254{letter-spacing:0.050328px;}
.ls11_c00254{letter-spacing:0.057456px;}
.ls6_c00254{letter-spacing:0.057600px;}
.ls0_c00254{letter-spacing:0.064800px;}
.ls5_c00254{letter-spacing:0.100800px;}
.ls7_c00254{letter-spacing:0.115200px;}
.ls1f_c00254{letter-spacing:0.145800px;}
.ls22_c00254{letter-spacing:0.151200px;}
.ls9_c00254{letter-spacing:0.360684px;}
.lsc_c00254{letter-spacing:937.800000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:-14.952600px;}
.ws2_c00254{word-spacing:0.000000px;}
.ws1_c00254{word-spacing:0.192384px;}
._1_c00254{margin-left:-4.651200px;}
._2_c00254{margin-left:-3.074400px;}
._5_c00254{margin-left:-1.843200px;}
._0_c00254{width:1.034064px;}
._6_c00254{width:2.304000px;}
._3_c00254{width:3.333600px;}
._4_c00254{width:4.759200px;}
._7_c00254{width:7.135200px;}
._8_c00254{width:15.702336px;}
._10_c00254{width:119.066400px;}
._a_c00254{width:123.386400px;}
._e_c00254{width:125.193600px;}
._f_c00254{width:126.626400px;}
._d_c00254{width:135.626400px;}
._b_c00254{width:137.426400px;}
._11_c00254{width:142.106400px;}
._18_c00254{width:162.037080px;}
._19_c00254{width:163.683000px;}
._14_c00254{width:165.866400px;}
._c_c00254{width:168.746400px;}
._16_c00254{width:171.979200px;}
._13_c00254{width:204.399000px;}
._1b_c00254{width:250.488000px;}
._1d_c00254{width:253.566000px;}
._15_c00254{width:258.404400px;}
._17_c00254{width:262.638000px;}
._12_c00254{width:264.700800px;}
._1a_c00254{width:294.770736px;}
._9_c00254{width:300.546000px;}
._1c_c00254{width:304.401600px;}
._1e_c00254{width:348.984000px;}
.fc2_c00254{color:rgb(38,74,96);}
.fc3_c00254{color:rgb(1,2,5);}
.fc1_c00254{color:rgb(0,0,0);}
.fc0_c00254{color:rgb(32,31,30);}
.fs4_c00254{font-size:47.880000px;}
.fs3_c00254{font-size:54.000000px;}
.fs0_c00254{font-size:60.120000px;}
.fs1_c00254{font-size:72.000000px;}
.fs2_c00254{font-size:83.880000px;}
.y0_c00254{bottom:0.000000px;}
.y5_c00254{bottom:57.360450px;}
.y4_c00254{bottom:78.060450px;}
.y2d_c00254{bottom:133.590450px;}
.y2c_c00254{bottom:157.890450px;}
.y2b_c00254{bottom:182.280450px;}
.y2a_c00254{bottom:206.670450px;}
.y29_c00254{bottom:231.060450px;}
.y28_c00254{bottom:255.450450px;}
.y22_c00254{bottom:257.700450px;}
.y27_c00254{bottom:279.570450px;}
.y21_c00254{bottom:281.640450px;}
.y26_c00254{bottom:304.140450px;}
.y20_c00254{bottom:305.670450px;}
.y25_c00254{bottom:328.530450px;}
.y1f_c00254{bottom:329.700450px;}
.y24_c00254{bottom:352.920450px;}
.y1e_c00254{bottom:353.640450px;}
.y23_c00254{bottom:377.310450px;}
.y1d_c00254{bottom:377.670450px;}
.y1c_c00254{bottom:401.700600px;}
.y1a_c00254{bottom:427.530450px;}
.y1b_c00254{bottom:431.490000px;}
.y19_c00254{bottom:511.050450px;}
.y18_c00254{bottom:584.040450px;}
.y17_c00254{bottom:591.780450px;}
.y16_c00254{bottom:612.480450px;}
.y15_c00254{bottom:632.460450px;}
.y14_c00254{bottom:662.610450px;}
.y13_c00254{bottom:685.741359px;}
.y12_c00254{bottom:711.750450px;}
.y11_c00254{bottom:757.830450px;}
.y10_c00254{bottom:800.850450px;}
.yf_c00254{bottom:831.990450px;}
.ye_c00254{bottom:863.040450px;}
.yd_c00254{bottom:894.090450px;}
.yc_c00254{bottom:925.140450px;}
.yb_c00254{bottom:956.190450px;}
.ya_c00254{bottom:987.240450px;}
.y9_c00254{bottom:1018.290450px;}
.y8_c00254{bottom:1049.340450px;}
.y7_c00254{bottom:1080.390450px;}
.y6_c00254{bottom:1111.440450px;}
.y3_c00254{bottom:1132.140450px;}
.y2_c00254{bottom:1165.441023px;}
.y1_c00254{bottom:1196.040600px;}
.h5_c00254{height:48.410156px;}
.h6_c00254{height:49.490156px;}
.h1_c00254{height:52.898555px;}
.h2_c00254{height:63.175781px;}
.h3_c00254{height:74.500840px;}
.h4_c00254{height:113.570156px;}
.h0_c00254{height:1263.000000px;}
.w1_c00254{width:892.500000px;}
.w0_c00254{width:892.830000px;}
.x0_c00254{left:0.000000px;}
.x1_c00254{left:127.620000px;}
.x4_c00254{left:130.410000px;}
.x10_c00254{left:134.910000px;}
.x5_c00254{left:154.980000px;}
.x3_c00254{left:224.820144px;}
.x11_c00254{left:253.350000px;}
.x8_c00254{left:374.940000px;}
.x9_c00254{left:425.520000px;}
.x6_c00254{left:458.370000px;}
.xa_c00254{left:467.549550px;}
.xb_c00254{left:513.090000px;}
.xc_c00254{left:566.459550px;}
.xd_c00254{left:619.110000px;}
.xe_c00254{left:661.500000px;}
.xf_c00254{left:704.340000px;}
.x2_c00254{left:738.450000px;}
.x7_c00254{left:745.290000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.v2_c00254{vertical-align:0.960000pt;}
.v1_c00254{vertical-align:57.920000pt;}
.ls14_c00254{letter-spacing:-3.520000pt;}
.ls15_c00254{letter-spacing:-2.880000pt;}
.ls16_c00254{letter-spacing:-2.560000pt;}
.ls26_c00254{letter-spacing:-0.134400pt;}
.ls28_c00254{letter-spacing:-0.115200pt;}
.ls20_c00254{letter-spacing:-0.096000pt;}
.ls12_c00254{letter-spacing:-0.090848pt;}
.ls1d_c00254{letter-spacing:-0.086400pt;}
.ls19_c00254{letter-spacing:-0.081600pt;}
.ls1e_c00254{letter-spacing:-0.076800pt;}
.ls27_c00254{letter-spacing:-0.072000pt;}
.ls29_c00254{letter-spacing:-0.067200pt;}
.ls23_c00254{letter-spacing:-0.062400pt;}
.ls18_c00254{letter-spacing:-0.052800pt;}
.ls21_c00254{letter-spacing:-0.048000pt;}
.ls24_c00254{letter-spacing:-0.038400pt;}
.ls1a_c00254{letter-spacing:-0.033600pt;}
.ls2a_c00254{letter-spacing:-0.028800pt;}
.ls17_c00254{letter-spacing:-0.025600pt;}
.ls25_c00254{letter-spacing:-0.024000pt;}
.ls1b_c00254{letter-spacing:-0.019200pt;}
.ls1c_c00254{letter-spacing:-0.014400pt;}
.ls13_c00254{letter-spacing:0.000000pt;}
.lsd_c00254{letter-spacing:0.004800pt;}
.lsf_c00254{letter-spacing:0.009600pt;}
.ls2_c00254{letter-spacing:0.012800pt;}
.ls3_c00254{letter-spacing:0.019200pt;}
.lse_c00254{letter-spacing:0.024000pt;}
.ls10_c00254{letter-spacing:0.028800pt;}
.lsb_c00254{letter-spacing:0.029824pt;}
.ls4_c00254{letter-spacing:0.032000pt;}
.lsa_c00254{letter-spacing:0.037280pt;}
.ls1_c00254{letter-spacing:0.038400pt;}
.ls8_c00254{letter-spacing:0.044736pt;}
.ls11_c00254{letter-spacing:0.051072pt;}
.ls6_c00254{letter-spacing:0.051200pt;}
.ls0_c00254{letter-spacing:0.057600pt;}
.ls5_c00254{letter-spacing:0.089600pt;}
.ls7_c00254{letter-spacing:0.102400pt;}
.ls1f_c00254{letter-spacing:0.129600pt;}
.ls22_c00254{letter-spacing:0.134400pt;}
.ls9_c00254{letter-spacing:0.320608pt;}
.lsc_c00254{letter-spacing:833.600000pt;}
.ws0_c00254{word-spacing:-13.291200pt;}
.ws2_c00254{word-spacing:0.000000pt;}
.ws1_c00254{word-spacing:0.171008pt;}
._1_c00254{margin-left:-4.134400pt;}
._2_c00254{margin-left:-2.732800pt;}
._5_c00254{margin-left:-1.638400pt;}
._0_c00254{width:0.919168pt;}
._6_c00254{width:2.048000pt;}
._3_c00254{width:2.963200pt;}
._4_c00254{width:4.230400pt;}
._7_c00254{width:6.342400pt;}
._8_c00254{width:13.957632pt;}
._10_c00254{width:105.836800pt;}
._a_c00254{width:109.676800pt;}
._e_c00254{width:111.283200pt;}
._f_c00254{width:112.556800pt;}
._d_c00254{width:120.556800pt;}
._b_c00254{width:122.156800pt;}
._11_c00254{width:126.316800pt;}
._18_c00254{width:144.032960pt;}
._19_c00254{width:145.496000pt;}
._14_c00254{width:147.436800pt;}
._c_c00254{width:149.996800pt;}
._16_c00254{width:152.870400pt;}
._13_c00254{width:181.688000pt;}
._1b_c00254{width:222.656000pt;}
._1d_c00254{width:225.392000pt;}
._15_c00254{width:229.692800pt;}
._17_c00254{width:233.456000pt;}
._12_c00254{width:235.289600pt;}
._1a_c00254{width:262.018432pt;}
._9_c00254{width:267.152000pt;}
._1c_c00254{width:270.579200pt;}
._1e_c00254{width:310.208000pt;}
.fs4_c00254{font-size:42.560000pt;}
.fs3_c00254{font-size:48.000000pt;}
.fs0_c00254{font-size:53.440000pt;}
.fs1_c00254{font-size:64.000000pt;}
.fs2_c00254{font-size:74.560000pt;}
.y0_c00254{bottom:0.000000pt;}
.y5_c00254{bottom:50.987067pt;}
.y4_c00254{bottom:69.387067pt;}
.y2d_c00254{bottom:118.747067pt;}
.y2c_c00254{bottom:140.347067pt;}
.y2b_c00254{bottom:162.027067pt;}
.y2a_c00254{bottom:183.707067pt;}
.y29_c00254{bottom:205.387067pt;}
.y28_c00254{bottom:227.067067pt;}
.y22_c00254{bottom:229.067067pt;}
.y27_c00254{bottom:248.507067pt;}
.y21_c00254{bottom:250.347067pt;}
.y26_c00254{bottom:270.347067pt;}
.y20_c00254{bottom:271.707067pt;}
.y25_c00254{bottom:292.027067pt;}
.y1f_c00254{bottom:293.067067pt;}
.y24_c00254{bottom:313.707067pt;}
.y1e_c00254{bottom:314.347067pt;}
.y23_c00254{bottom:335.387067pt;}
.y1d_c00254{bottom:335.707067pt;}
.y1c_c00254{bottom:357.067200pt;}
.y1a_c00254{bottom:380.027067pt;}
.y1b_c00254{bottom:383.546667pt;}
.y19_c00254{bottom:454.267067pt;}
.y18_c00254{bottom:519.147067pt;}
.y17_c00254{bottom:526.027067pt;}
.y16_c00254{bottom:544.427067pt;}
.y15_c00254{bottom:562.187067pt;}
.y14_c00254{bottom:588.987067pt;}
.y13_c00254{bottom:609.547875pt;}
.y12_c00254{bottom:632.667067pt;}
.y11_c00254{bottom:673.627067pt;}
.y10_c00254{bottom:711.867067pt;}
.yf_c00254{bottom:739.547067pt;}
.ye_c00254{bottom:767.147067pt;}
.yd_c00254{bottom:794.747067pt;}
.yc_c00254{bottom:822.347067pt;}
.yb_c00254{bottom:849.947067pt;}
.ya_c00254{bottom:877.547067pt;}
.y9_c00254{bottom:905.147067pt;}
.y8_c00254{bottom:932.747067pt;}
.y7_c00254{bottom:960.347067pt;}
.y6_c00254{bottom:987.947067pt;}
.y3_c00254{bottom:1006.347067pt;}
.y2_c00254{bottom:1035.947576pt;}
.y1_c00254{bottom:1063.147200pt;}
.h5_c00254{height:43.031250pt;}
.h6_c00254{height:43.991250pt;}
.h1_c00254{height:47.020937pt;}
.h2_c00254{height:56.156250pt;}
.h3_c00254{height:66.222969pt;}
.h4_c00254{height:100.951250pt;}
.h0_c00254{height:1122.666667pt;}
.w1_c00254{width:793.333333pt;}
.w0_c00254{width:793.626667pt;}
.x0_c00254{left:0.000000pt;}
.x1_c00254{left:113.440000pt;}
.x4_c00254{left:115.920000pt;}
.x10_c00254{left:119.920000pt;}
.x5_c00254{left:137.760000pt;}
.x3_c00254{left:199.840128pt;}
.x11_c00254{left:225.200000pt;}
.x8_c00254{left:333.280000pt;}
.x9_c00254{left:378.240000pt;}
.x6_c00254{left:407.440000pt;}
.xa_c00254{left:415.599600pt;}
.xb_c00254{left:456.080000pt;}
.xc_c00254{left:503.519600pt;}
.xd_c00254{left:550.320000pt;}
.xe_c00254{left:588.000000pt;}
.xf_c00254{left:626.080000pt;}
.x2_c00254{left:656.400000pt;}
.x7_c00254{left:662.480000pt;}
}





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

.ir_c00255:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00255;src:url('chunks/assets/font_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.095703;font-style:normal;font-weight:normal;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_5d73defb50b8d02eb905aa03.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.093262;font-style:normal;font-weight:normal;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_33ce5a61571b1b30f4885a1e.woff2')format("woff");}.ff3_c00255{font-family:ff3_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;}
.m0_c00255{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls10_c00255{letter-spacing:-0.151200px;}
.ls15_c00255{letter-spacing:-0.093600px;}
.lsf_c00255{letter-spacing:-0.086400px;}
.ls11_c00255{letter-spacing:-0.075600px;}
.ls17_c00255{letter-spacing:-0.050400px;}
.ls12_c00255{letter-spacing:-0.048600px;}
.lsd_c00255{letter-spacing:-0.048096px;}
.ls19_c00255{letter-spacing:-0.036000px;}
.ls16_c00255{letter-spacing:-0.021600px;}
.ls14_c00255{letter-spacing:-0.014400px;}
.lse_c00255{letter-spacing:0.000000px;}
.lsb_c00255{letter-spacing:0.007200px;}
.ls1_c00255{letter-spacing:0.014400px;}
.ls0_c00255{letter-spacing:0.021600px;}
.ls9_c00255{letter-spacing:0.028800px;}
.ls4_c00255{letter-spacing:0.036000px;}
.ls2_c00255{letter-spacing:0.043200px;}
.ls5_c00255{letter-spacing:0.050400px;}
.lsa_c00255{letter-spacing:0.057600px;}
.ls7_c00255{letter-spacing:0.064800px;}
.ls8_c00255{letter-spacing:0.072000px;}
.ls3_c00255{letter-spacing:0.079200px;}
.ls6_c00255{letter-spacing:0.086400px;}
.lsc_c00255{letter-spacing:0.093600px;}
.ls13_c00255{letter-spacing:0.496800px;}
.ls18_c00255{letter-spacing:10.440000px;}
.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;}
}
.ws1_c00255{word-spacing:0.000000px;}
.ws0_c00255{word-spacing:0.138276px;}
._1f_c00255{margin-left:-10.742400px;}
._1e_c00255{margin-left:-9.676800px;}
._18_c00255{margin-left:-3.175200px;}
._13_c00255{margin-left:-2.044800px;}
._c_c00255{margin-left:-1.026000px;}
._12_c00255{width:1.065600px;}
._14_c00255{width:3.016800px;}
._17_c00255{width:4.161600px;}
._19_c00255{width:5.846400px;}
._1a_c00255{width:7.480800px;}
._1b_c00255{width:8.488800px;}
._1c_c00255{width:10.065600px;}
._1d_c00255{width:11.124000px;}
._16_c00255{width:12.513600px;}
._15_c00255{width:19.598400px;}
._10_c00255{width:94.953600px;}
._e_c00255{width:107.186400px;}
._11_c00255{width:112.593600px;}
._7_c00255{width:119.066400px;}
._1_c00255{width:123.386400px;}
._5_c00255{width:124.826400px;}
._6_c00255{width:126.626400px;}
._f_c00255{width:135.993600px;}
._2_c00255{width:137.426400px;}
._4_c00255{width:165.866400px;}
._3_c00255{width:168.746400px;}
._8_c00255{width:172.346400px;}
._a_c00255{width:262.157400px;}
._0_c00255{width:271.483200px;}
._9_c00255{width:283.406400px;}
._b_c00255{width:345.668400px;}
._d_c00255{width:830.617200px;}
.fc1_c00255{color:rgb(38,74,96);}
.fc2_c00255{color:rgb(1,2,5);}
.fc0_c00255{color:rgb(0,0,0);}
.fs2_c00255{font-size:54.000000px;}
.fs0_c00255{font-size:60.120000px;}
.fs1_c00255{font-size:72.000000px;}
.y0_c00255{bottom:0.000000px;}
.y6_c00255{bottom:57.360450px;}
.y5_c00255{bottom:78.060450px;}
.y27_c00255{bottom:116.850450px;}
.y26_c00255{bottom:147.900450px;}
.y25_c00255{bottom:190.830450px;}
.y24_c00255{bottom:221.970450px;}
.y23_c00255{bottom:253.020450px;}
.y22_c00255{bottom:284.070450px;}
.y21_c00255{bottom:327.090450px;}
.y20_c00255{bottom:358.230450px;}
.y1f_c00255{bottom:389.280450px;}
.y1e_c00255{bottom:420.330450px;}
.y1d_c00255{bottom:451.380450px;}
.y1c_c00255{bottom:482.430450px;}
.y1b_c00255{bottom:513.390450px;}
.y1a_c00255{bottom:544.440450px;}
.y19_c00255{bottom:587.460450px;}
.y18_c00255{bottom:618.600450px;}
.y17_c00255{bottom:649.650450px;}
.y16_c00255{bottom:680.700450px;}
.y15_c00255{bottom:711.750450px;}
.y14_c00255{bottom:742.800450px;}
.y13_c00255{bottom:773.850450px;}
.y12_c00255{bottom:816.780450px;}
.y11_c00255{bottom:847.920450px;}
.y10_c00255{bottom:878.970450px;}
.yf_c00255{bottom:910.020450px;}
.ye_c00255{bottom:941.070450px;}
.yd_c00255{bottom:972.120450px;}
.yc_c00255{bottom:992.730450px;}
.yb_c00255{bottom:1022.070450px;}
.ya_c00255{bottom:1046.460450px;}
.y9_c00255{bottom:1070.850450px;}
.y8_c00255{bottom:1095.150450px;}
.y7_c00255{bottom:1119.540600px;}
.y4_c00255{bottom:1144.380657px;}
.y3_c00255{bottom:1161.660648px;}
.y2_c00255{bottom:1178.850459px;}
.y1_c00255{bottom:1196.130450px;}
.h3_c00255{height:48.410156px;}
.h1_c00255{height:52.898555px;}
.h2_c00255{height:63.175781px;}
.h0_c00255{height:1263.000000px;}
.w1_c00255{width:892.500000px;}
.w0_c00255{width:892.830000px;}
.x0_c00255{left:0.000000px;}
.x4_c00255{left:127.620000px;}
.x6_c00255{left:134.910000px;}
.x5_c00255{left:253.350000px;}
.x1_c00255{left:649.620000px;}
.x3_c00255{left:738.450000px;}
.x2_c00255{left:765.450198px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls10_c00255{letter-spacing:-0.134400pt;}
.ls15_c00255{letter-spacing:-0.083200pt;}
.lsf_c00255{letter-spacing:-0.076800pt;}
.ls11_c00255{letter-spacing:-0.067200pt;}
.ls17_c00255{letter-spacing:-0.044800pt;}
.ls12_c00255{letter-spacing:-0.043200pt;}
.lsd_c00255{letter-spacing:-0.042752pt;}
.ls19_c00255{letter-spacing:-0.032000pt;}
.ls16_c00255{letter-spacing:-0.019200pt;}
.ls14_c00255{letter-spacing:-0.012800pt;}
.lse_c00255{letter-spacing:0.000000pt;}
.lsb_c00255{letter-spacing:0.006400pt;}
.ls1_c00255{letter-spacing:0.012800pt;}
.ls0_c00255{letter-spacing:0.019200pt;}
.ls9_c00255{letter-spacing:0.025600pt;}
.ls4_c00255{letter-spacing:0.032000pt;}
.ls2_c00255{letter-spacing:0.038400pt;}
.ls5_c00255{letter-spacing:0.044800pt;}
.lsa_c00255{letter-spacing:0.051200pt;}
.ls7_c00255{letter-spacing:0.057600pt;}
.ls8_c00255{letter-spacing:0.064000pt;}
.ls3_c00255{letter-spacing:0.070400pt;}
.ls6_c00255{letter-spacing:0.076800pt;}
.lsc_c00255{letter-spacing:0.083200pt;}
.ls13_c00255{letter-spacing:0.441600pt;}
.ls18_c00255{letter-spacing:9.280000pt;}
.ws1_c00255{word-spacing:0.000000pt;}
.ws0_c00255{word-spacing:0.122912pt;}
._1f_c00255{margin-left:-9.548800pt;}
._1e_c00255{margin-left:-8.601600pt;}
._18_c00255{margin-left:-2.822400pt;}
._13_c00255{margin-left:-1.817600pt;}
._c_c00255{margin-left:-0.912000pt;}
._12_c00255{width:0.947200pt;}
._14_c00255{width:2.681600pt;}
._17_c00255{width:3.699200pt;}
._19_c00255{width:5.196800pt;}
._1a_c00255{width:6.649600pt;}
._1b_c00255{width:7.545600pt;}
._1c_c00255{width:8.947200pt;}
._1d_c00255{width:9.888000pt;}
._16_c00255{width:11.123200pt;}
._15_c00255{width:17.420800pt;}
._10_c00255{width:84.403200pt;}
._e_c00255{width:95.276800pt;}
._11_c00255{width:100.083200pt;}
._7_c00255{width:105.836800pt;}
._1_c00255{width:109.676800pt;}
._5_c00255{width:110.956800pt;}
._6_c00255{width:112.556800pt;}
._f_c00255{width:120.883200pt;}
._2_c00255{width:122.156800pt;}
._4_c00255{width:147.436800pt;}
._3_c00255{width:149.996800pt;}
._8_c00255{width:153.196800pt;}
._a_c00255{width:233.028800pt;}
._0_c00255{width:241.318400pt;}
._9_c00255{width:251.916800pt;}
._b_c00255{width:307.260800pt;}
._d_c00255{width:738.326400pt;}
.fs2_c00255{font-size:48.000000pt;}
.fs0_c00255{font-size:53.440000pt;}
.fs1_c00255{font-size:64.000000pt;}
.y0_c00255{bottom:0.000000pt;}
.y6_c00255{bottom:50.987067pt;}
.y5_c00255{bottom:69.387067pt;}
.y27_c00255{bottom:103.867067pt;}
.y26_c00255{bottom:131.467067pt;}
.y25_c00255{bottom:169.627067pt;}
.y24_c00255{bottom:197.307067pt;}
.y23_c00255{bottom:224.907067pt;}
.y22_c00255{bottom:252.507067pt;}
.y21_c00255{bottom:290.747067pt;}
.y20_c00255{bottom:318.427067pt;}
.y1f_c00255{bottom:346.027067pt;}
.y1e_c00255{bottom:373.627067pt;}
.y1d_c00255{bottom:401.227067pt;}
.y1c_c00255{bottom:428.827067pt;}
.y1b_c00255{bottom:456.347067pt;}
.y1a_c00255{bottom:483.947067pt;}
.y19_c00255{bottom:522.187067pt;}
.y18_c00255{bottom:549.867067pt;}
.y17_c00255{bottom:577.467067pt;}
.y16_c00255{bottom:605.067067pt;}
.y15_c00255{bottom:632.667067pt;}
.y14_c00255{bottom:660.267067pt;}
.y13_c00255{bottom:687.867067pt;}
.y12_c00255{bottom:726.027067pt;}
.y11_c00255{bottom:753.707067pt;}
.y10_c00255{bottom:781.307067pt;}
.yf_c00255{bottom:808.907067pt;}
.ye_c00255{bottom:836.507067pt;}
.yd_c00255{bottom:864.107067pt;}
.yc_c00255{bottom:882.427067pt;}
.yb_c00255{bottom:908.507067pt;}
.ya_c00255{bottom:930.187067pt;}
.y9_c00255{bottom:951.867067pt;}
.y8_c00255{bottom:973.467067pt;}
.y7_c00255{bottom:995.147200pt;}
.y4_c00255{bottom:1017.227251pt;}
.y3_c00255{bottom:1032.587243pt;}
.y2_c00255{bottom:1047.867075pt;}
.y1_c00255{bottom:1063.227067pt;}
.h3_c00255{height:43.031250pt;}
.h1_c00255{height:47.020937pt;}
.h2_c00255{height:56.156250pt;}
.h0_c00255{height:1122.666667pt;}
.w1_c00255{width:793.333333pt;}
.w0_c00255{width:793.626667pt;}
.x0_c00255{left:0.000000pt;}
.x4_c00255{left:113.440000pt;}
.x6_c00255{left:119.920000pt;}
.x5_c00255{left:225.200000pt;}
.x1_c00255{left:577.440000pt;}
.x3_c00255{left:656.400000pt;}
.x2_c00255{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e304bfa0ccce543b230bc9b.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.095703;font-style:normal;font-weight:normal;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_9da4c0df2979747a90c48100.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls1b_c00256{letter-spacing:-3.960000px;}
.ls19_c00256{letter-spacing:-3.600000px;}
.ls1c_c00256{letter-spacing:-2.880000px;}
.ls1a_c00256{letter-spacing:-0.180000px;}
.ls1f_c00256{letter-spacing:-0.136800px;}
.ls1e_c00256{letter-spacing:-0.108000px;}
.ls10_c00256{letter-spacing:-0.102204px;}
.ls1d_c00256{letter-spacing:-0.079200px;}
.ls15_c00256{letter-spacing:-0.050400px;}
.ls12_c00256{letter-spacing:-0.043200px;}
.ls16_c00256{letter-spacing:-0.036000px;}
.ls13_c00256{letter-spacing:-0.028800px;}
.ls18_c00256{letter-spacing:-0.021600px;}
.ls14_c00256{letter-spacing:-0.014400px;}
.ls17_c00256{letter-spacing:-0.007200px;}
.ls11_c00256{letter-spacing:0.000000px;}
.ls4_c00256{letter-spacing:0.007200px;}
.ls1_c00256{letter-spacing:0.014400px;}
.ls2_c00256{letter-spacing:0.021600px;}
.ls0_c00256{letter-spacing:0.028800px;}
.ls6_c00256{letter-spacing:0.036000px;}
.ls3_c00256{letter-spacing:0.043200px;}
.ls5_c00256{letter-spacing:0.050400px;}
.ls8_c00256{letter-spacing:0.057600px;}
.ls7_c00256{letter-spacing:0.064800px;}
.lsd_c00256{letter-spacing:0.072000px;}
.lsc_c00256{letter-spacing:0.086400px;}
.lsa_c00256{letter-spacing:0.093600px;}
.lsb_c00256{letter-spacing:0.108000px;}
.ls9_c00256{letter-spacing:0.144000px;}
.lse_c00256{letter-spacing:1.080000px;}
.lsf_c00256{letter-spacing:6.480000px;}
.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;}
}
.ws2_c00256{word-spacing:-18.000000px;}
.ws0_c00256{word-spacing:-17.978400px;}
.ws1_c00256{word-spacing:-17.820000px;}
.ws5_c00256{word-spacing:-3.628800px;}
.ws6_c00256{word-spacing:-3.600000px;}
.ws4_c00256{word-spacing:0.000000px;}
.ws3_c00256{word-spacing:0.192384px;}
._9_c00256{margin-left:-4.903200px;}
._8_c00256{margin-left:-3.636000px;}
._b_c00256{margin-left:-2.548800px;}
._1_c00256{margin-left:-1.339200px;}
._0_c00256{width:1.034064px;}
._5_c00256{width:2.836800px;}
._a_c00256{width:4.060800px;}
._7_c00256{width:5.205600px;}
._6_c00256{width:6.444000px;}
._4_c00256{width:7.920000px;}
._d_c00256{width:8.956800px;}
._e_c00256{width:10.058400px;}
._3_c00256{width:11.476800px;}
._2_c00256{width:12.585600px;}
._c_c00256{width:19.111536px;}
.fc1_c00256{color:rgb(0,0,0);}
.fc0_c00256{color:rgb(32,31,30);}
.fs0_c00256{font-size:60.120000px;}
.fs1_c00256{font-size:72.000000px;}
.y0_c00256{bottom:0.000000px;}
.y5_c00256{bottom:57.360450px;}
.y4_c00256{bottom:78.060450px;}
.y24_c00256{bottom:131.970450px;}
.y23_c00256{bottom:163.020450px;}
.y22_c00256{bottom:206.040450px;}
.y21_c00256{bottom:237.090450px;}
.y20_c00256{bottom:268.140450px;}
.y1f_c00256{bottom:299.190450px;}
.y1e_c00256{bottom:330.240450px;}
.y1d_c00256{bottom:361.290450px;}
.y1c_c00256{bottom:392.340450px;}
.y1b_c00256{bottom:423.390450px;}
.y1a_c00256{bottom:454.440450px;}
.y19_c00256{bottom:485.490450px;}
.y18_c00256{bottom:528.510450px;}
.y17_c00256{bottom:559.650450px;}
.y16_c00256{bottom:590.700450px;}
.y15_c00256{bottom:621.660450px;}
.y14_c00256{bottom:664.680450px;}
.y13_c00256{bottom:695.820450px;}
.y12_c00256{bottom:726.870450px;}
.y11_c00256{bottom:757.920450px;}
.y10_c00256{bottom:788.970450px;}
.yf_c00256{bottom:820.020450px;}
.ye_c00256{bottom:851.070450px;}
.yd_c00256{bottom:882.120450px;}
.yc_c00256{bottom:925.050450px;}
.yb_c00256{bottom:956.190450px;}
.ya_c00256{bottom:987.240450px;}
.y9_c00256{bottom:1018.290450px;}
.y8_c00256{bottom:1049.340450px;}
.y7_c00256{bottom:1080.390450px;}
.y6_c00256{bottom:1111.440450px;}
.y3_c00256{bottom:1132.140450px;}
.y2_c00256{bottom:1165.441023px;}
.y1_c00256{bottom:1196.040600px;}
.h1_c00256{height:52.898555px;}
.h2_c00256{height:63.175781px;}
.h3_c00256{height:63.351562px;}
.h0_c00256{height:1263.000000px;}
.w1_c00256{width:892.500000px;}
.w0_c00256{width:892.830000px;}
.x0_c00256{left:0.000000px;}
.x1_c00256{left:127.620000px;}
.x2_c00256{left:738.450000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls1b_c00256{letter-spacing:-3.520000pt;}
.ls19_c00256{letter-spacing:-3.200000pt;}
.ls1c_c00256{letter-spacing:-2.560000pt;}
.ls1a_c00256{letter-spacing:-0.160000pt;}
.ls1f_c00256{letter-spacing:-0.121600pt;}
.ls1e_c00256{letter-spacing:-0.096000pt;}
.ls10_c00256{letter-spacing:-0.090848pt;}
.ls1d_c00256{letter-spacing:-0.070400pt;}
.ls15_c00256{letter-spacing:-0.044800pt;}
.ls12_c00256{letter-spacing:-0.038400pt;}
.ls16_c00256{letter-spacing:-0.032000pt;}
.ls13_c00256{letter-spacing:-0.025600pt;}
.ls18_c00256{letter-spacing:-0.019200pt;}
.ls14_c00256{letter-spacing:-0.012800pt;}
.ls17_c00256{letter-spacing:-0.006400pt;}
.ls11_c00256{letter-spacing:0.000000pt;}
.ls4_c00256{letter-spacing:0.006400pt;}
.ls1_c00256{letter-spacing:0.012800pt;}
.ls2_c00256{letter-spacing:0.019200pt;}
.ls0_c00256{letter-spacing:0.025600pt;}
.ls6_c00256{letter-spacing:0.032000pt;}
.ls3_c00256{letter-spacing:0.038400pt;}
.ls5_c00256{letter-spacing:0.044800pt;}
.ls8_c00256{letter-spacing:0.051200pt;}
.ls7_c00256{letter-spacing:0.057600pt;}
.lsd_c00256{letter-spacing:0.064000pt;}
.lsc_c00256{letter-spacing:0.076800pt;}
.lsa_c00256{letter-spacing:0.083200pt;}
.lsb_c00256{letter-spacing:0.096000pt;}
.ls9_c00256{letter-spacing:0.128000pt;}
.lse_c00256{letter-spacing:0.960000pt;}
.lsf_c00256{letter-spacing:5.760000pt;}
.ws2_c00256{word-spacing:-16.000000pt;}
.ws0_c00256{word-spacing:-15.980800pt;}
.ws1_c00256{word-spacing:-15.840000pt;}
.ws5_c00256{word-spacing:-3.225600pt;}
.ws6_c00256{word-spacing:-3.200000pt;}
.ws4_c00256{word-spacing:0.000000pt;}
.ws3_c00256{word-spacing:0.171008pt;}
._9_c00256{margin-left:-4.358400pt;}
._8_c00256{margin-left:-3.232000pt;}
._b_c00256{margin-left:-2.265600pt;}
._1_c00256{margin-left:-1.190400pt;}
._0_c00256{width:0.919168pt;}
._5_c00256{width:2.521600pt;}
._a_c00256{width:3.609600pt;}
._7_c00256{width:4.627200pt;}
._6_c00256{width:5.728000pt;}
._4_c00256{width:7.040000pt;}
._d_c00256{width:7.961600pt;}
._e_c00256{width:8.940800pt;}
._3_c00256{width:10.201600pt;}
._2_c00256{width:11.187200pt;}
._c_c00256{width:16.988032pt;}
.fs0_c00256{font-size:53.440000pt;}
.fs1_c00256{font-size:64.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y5_c00256{bottom:50.987067pt;}
.y4_c00256{bottom:69.387067pt;}
.y24_c00256{bottom:117.307067pt;}
.y23_c00256{bottom:144.907067pt;}
.y22_c00256{bottom:183.147067pt;}
.y21_c00256{bottom:210.747067pt;}
.y20_c00256{bottom:238.347067pt;}
.y1f_c00256{bottom:265.947067pt;}
.y1e_c00256{bottom:293.547067pt;}
.y1d_c00256{bottom:321.147067pt;}
.y1c_c00256{bottom:348.747067pt;}
.y1b_c00256{bottom:376.347067pt;}
.y1a_c00256{bottom:403.947067pt;}
.y19_c00256{bottom:431.547067pt;}
.y18_c00256{bottom:469.787067pt;}
.y17_c00256{bottom:497.467067pt;}
.y16_c00256{bottom:525.067067pt;}
.y15_c00256{bottom:552.587067pt;}
.y14_c00256{bottom:590.827067pt;}
.y13_c00256{bottom:618.507067pt;}
.y12_c00256{bottom:646.107067pt;}
.y11_c00256{bottom:673.707067pt;}
.y10_c00256{bottom:701.307067pt;}
.yf_c00256{bottom:728.907067pt;}
.ye_c00256{bottom:756.507067pt;}
.yd_c00256{bottom:784.107067pt;}
.yc_c00256{bottom:822.267067pt;}
.yb_c00256{bottom:849.947067pt;}
.ya_c00256{bottom:877.547067pt;}
.y9_c00256{bottom:905.147067pt;}
.y8_c00256{bottom:932.747067pt;}
.y7_c00256{bottom:960.347067pt;}
.y6_c00256{bottom:987.947067pt;}
.y3_c00256{bottom:1006.347067pt;}
.y2_c00256{bottom:1035.947576pt;}
.y1_c00256{bottom:1063.147200pt;}
.h1_c00256{height:47.020937pt;}
.h2_c00256{height:56.156250pt;}
.h3_c00256{height:56.312500pt;}
.h0_c00256{height:1122.666667pt;}
.w1_c00256{width:793.333333pt;}
.w0_c00256{width:793.626667pt;}
.x0_c00256{left:0.000000pt;}
.x1_c00256{left:113.440000pt;}
.x2_c00256{left:656.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_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_9f970f1eab93bf797b4c08f3.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.095703;font-style:normal;font-weight:normal;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_0185d442595b0783ba9a679a.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00257{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls11_c00257{letter-spacing:-1.080000px;}
.ls14_c00257{letter-spacing:-0.050400px;}
.lsf_c00257{letter-spacing:-0.048096px;}
.ls16_c00257{letter-spacing:-0.036000px;}
.ls13_c00257{letter-spacing:-0.021600px;}
.ls12_c00257{letter-spacing:-0.007200px;}
.ls10_c00257{letter-spacing:0.000000px;}
.ls9_c00257{letter-spacing:0.007200px;}
.lse_c00257{letter-spacing:0.010800px;}
.lsa_c00257{letter-spacing:0.014400px;}
.ls1_c00257{letter-spacing:0.021600px;}
.lsb_c00257{letter-spacing:0.028800px;}
.ls2_c00257{letter-spacing:0.032400px;}
.ls0_c00257{letter-spacing:0.036000px;}
.ls7_c00257{letter-spacing:0.043200px;}
.ls4_c00257{letter-spacing:0.057600px;}
.ls6_c00257{letter-spacing:0.064800px;}
.ls8_c00257{letter-spacing:0.072000px;}
.lsc_c00257{letter-spacing:0.079200px;}
.ls5_c00257{letter-spacing:0.086400px;}
.lsd_c00257{letter-spacing:0.115200px;}
.ls15_c00257{letter-spacing:8.913600px;}
.ls3_c00257{letter-spacing:1210.320000px;}
.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;}
}
.ws4_c00257{word-spacing:-1.886400px;}
.ws5_c00257{word-spacing:-1.864800px;}
.ws1_c00257{word-spacing:0.000000px;}
.ws0_c00257{word-spacing:0.138276px;}
.ws2_c00257{word-spacing:0.145800px;}
.ws8_c00257{word-spacing:0.167400px;}
.ws3_c00257{word-spacing:0.684000px;}
.ws6_c00257{word-spacing:21.916800px;}
.ws7_c00257{word-spacing:21.945600px;}
._b_c00257{margin-left:-9.309600px;}
._c_c00257{margin-left:-7.963200px;}
._2_c00257{margin-left:-4.053600px;}
._3_c00257{margin-left:-2.916000px;}
._0_c00257{margin-left:-1.663200px;}
._1_c00257{width:1.476000px;}
._9_c00257{width:2.865600px;}
._4_c00257{width:3.895200px;}
._7_c00257{width:7.416000px;}
._6_c00257{width:8.560800px;}
._a_c00257{width:9.756000px;}
._5_c00257{width:21.852000px;}
._8_c00257{width:24.487200px;}
.fc1_c00257{color:rgb(68,84,106);}
.fc0_c00257{color:rgb(0,0,0);}
.fs2_c00257{font-size:54.000000px;}
.fs0_c00257{font-size:60.120000px;}
.fs1_c00257{font-size:72.000000px;}
.y0_c00257{bottom:0.000000px;}
.y22_c00257{bottom:3.240450px;}
.y6_c00257{bottom:57.360450px;}
.y5_c00257{bottom:78.060450px;}
.y20_c00257{bottom:137.820450px;}
.y1f_c00257{bottom:180.840450px;}
.y1e_c00257{bottom:223.860450px;}
.y1d_c00257{bottom:266.970450px;}
.y1c_c00257{bottom:298.110450px;}
.y1b_c00257{bottom:329.160450px;}
.y1a_c00257{bottom:360.210450px;}
.y19_c00257{bottom:391.260450px;}
.y18_c00257{bottom:422.310450px;}
.y17_c00257{bottom:453.360450px;}
.y16_c00257{bottom:484.410450px;}
.y15_c00257{bottom:515.460450px;}
.y21_c00257{bottom:543.450000px;}
.y14_c00257{bottom:546.510450px;}
.y23_c00257{bottom:546.690450px;}
.y13_c00257{bottom:589.440450px;}
.y12_c00257{bottom:620.580450px;}
.y11_c00257{bottom:651.630450px;}
.y10_c00257{bottom:682.680450px;}
.yf_c00257{bottom:713.730450px;}
.ye_c00257{bottom:744.780450px;}
.yd_c00257{bottom:775.830450px;}
.yc_c00257{bottom:806.880450px;}
.yb_c00257{bottom:845.760450px;}
.ya_c00257{bottom:1023.510450px;}
.y9_c00257{bottom:1062.120450px;}
.y8_c00257{bottom:1093.260450px;}
.y7_c00257{bottom:1124.310450px;}
.y4_c00257{bottom:1144.380657px;}
.y3_c00257{bottom:1161.660648px;}
.y2_c00257{bottom:1178.850459px;}
.y1_c00257{bottom:1196.130450px;}
.h5_c00257{height:15.300000px;}
.h3_c00257{height:47.513672px;}
.h1_c00257{height:52.898555px;}
.h2_c00257{height:63.175781px;}
.h4_c00257{height:63.351562px;}
.h0_c00257{height:1263.000000px;}
.w2_c00257{width:263.610000px;}
.w1_c00257{width:892.500000px;}
.w0_c00257{width:892.830000px;}
.x0_c00257{left:0.000000px;}
.x4_c00257{left:127.620000px;}
.x7_c00257{left:132.120000px;}
.x6_c00257{left:416.520000px;}
.x5_c00257{left:443.160000px;}
.x1_c00257{left:649.620000px;}
.x3_c00257{left:738.450000px;}
.x2_c00257{left:765.450198px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls11_c00257{letter-spacing:-0.960000pt;}
.ls14_c00257{letter-spacing:-0.044800pt;}
.lsf_c00257{letter-spacing:-0.042752pt;}
.ls16_c00257{letter-spacing:-0.032000pt;}
.ls13_c00257{letter-spacing:-0.019200pt;}
.ls12_c00257{letter-spacing:-0.006400pt;}
.ls10_c00257{letter-spacing:0.000000pt;}
.ls9_c00257{letter-spacing:0.006400pt;}
.lse_c00257{letter-spacing:0.009600pt;}
.lsa_c00257{letter-spacing:0.012800pt;}
.ls1_c00257{letter-spacing:0.019200pt;}
.lsb_c00257{letter-spacing:0.025600pt;}
.ls2_c00257{letter-spacing:0.028800pt;}
.ls0_c00257{letter-spacing:0.032000pt;}
.ls7_c00257{letter-spacing:0.038400pt;}
.ls4_c00257{letter-spacing:0.051200pt;}
.ls6_c00257{letter-spacing:0.057600pt;}
.ls8_c00257{letter-spacing:0.064000pt;}
.lsc_c00257{letter-spacing:0.070400pt;}
.ls5_c00257{letter-spacing:0.076800pt;}
.lsd_c00257{letter-spacing:0.102400pt;}
.ls15_c00257{letter-spacing:7.923200pt;}
.ls3_c00257{letter-spacing:1075.840000pt;}
.ws4_c00257{word-spacing:-1.676800pt;}
.ws5_c00257{word-spacing:-1.657600pt;}
.ws1_c00257{word-spacing:0.000000pt;}
.ws0_c00257{word-spacing:0.122912pt;}
.ws2_c00257{word-spacing:0.129600pt;}
.ws8_c00257{word-spacing:0.148800pt;}
.ws3_c00257{word-spacing:0.608000pt;}
.ws6_c00257{word-spacing:19.481600pt;}
.ws7_c00257{word-spacing:19.507200pt;}
._b_c00257{margin-left:-8.275200pt;}
._c_c00257{margin-left:-7.078400pt;}
._2_c00257{margin-left:-3.603200pt;}
._3_c00257{margin-left:-2.592000pt;}
._0_c00257{margin-left:-1.478400pt;}
._1_c00257{width:1.312000pt;}
._9_c00257{width:2.547200pt;}
._4_c00257{width:3.462400pt;}
._7_c00257{width:6.592000pt;}
._6_c00257{width:7.609600pt;}
._a_c00257{width:8.672000pt;}
._5_c00257{width:19.424000pt;}
._8_c00257{width:21.766400pt;}
.fs2_c00257{font-size:48.000000pt;}
.fs0_c00257{font-size:53.440000pt;}
.fs1_c00257{font-size:64.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y22_c00257{bottom:2.880400pt;}
.y6_c00257{bottom:50.987067pt;}
.y5_c00257{bottom:69.387067pt;}
.y20_c00257{bottom:122.507067pt;}
.y1f_c00257{bottom:160.747067pt;}
.y1e_c00257{bottom:198.987067pt;}
.y1d_c00257{bottom:237.307067pt;}
.y1c_c00257{bottom:264.987067pt;}
.y1b_c00257{bottom:292.587067pt;}
.y1a_c00257{bottom:320.187067pt;}
.y19_c00257{bottom:347.787067pt;}
.y18_c00257{bottom:375.387067pt;}
.y17_c00257{bottom:402.987067pt;}
.y16_c00257{bottom:430.587067pt;}
.y15_c00257{bottom:458.187067pt;}
.y21_c00257{bottom:483.066667pt;}
.y14_c00257{bottom:485.787067pt;}
.y23_c00257{bottom:485.947067pt;}
.y13_c00257{bottom:523.947067pt;}
.y12_c00257{bottom:551.627067pt;}
.y11_c00257{bottom:579.227067pt;}
.y10_c00257{bottom:606.827067pt;}
.yf_c00257{bottom:634.427067pt;}
.ye_c00257{bottom:662.027067pt;}
.yd_c00257{bottom:689.627067pt;}
.yc_c00257{bottom:717.227067pt;}
.yb_c00257{bottom:751.787067pt;}
.ya_c00257{bottom:909.787067pt;}
.y9_c00257{bottom:944.107067pt;}
.y8_c00257{bottom:971.787067pt;}
.y7_c00257{bottom:999.387067pt;}
.y4_c00257{bottom:1017.227251pt;}
.y3_c00257{bottom:1032.587243pt;}
.y2_c00257{bottom:1047.867075pt;}
.y1_c00257{bottom:1063.227067pt;}
.h5_c00257{height:13.600000pt;}
.h3_c00257{height:42.234375pt;}
.h1_c00257{height:47.020937pt;}
.h2_c00257{height:56.156250pt;}
.h4_c00257{height:56.312500pt;}
.h0_c00257{height:1122.666667pt;}
.w2_c00257{width:234.320000pt;}
.w1_c00257{width:793.333333pt;}
.w0_c00257{width:793.626667pt;}
.x0_c00257{left:0.000000pt;}
.x4_c00257{left:113.440000pt;}
.x7_c00257{left:117.440000pt;}
.x6_c00257{left:370.240000pt;}
.x5_c00257{left:393.920000pt;}
.x1_c00257{left:577.440000pt;}
.x3_c00257{left:656.400000pt;}
.x2_c00257{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.095703;font-style:normal;font-weight:normal;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_d3707e73cb43774ae1aedff5.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_f61b2402b982e6e5282369f6.woff2')format("woff");}.ff3_c00258{font-family:ff3_c00258;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00258;src:url('chunks/assets/font_34d797974d12f85917d3c840.woff2')format("woff");}.ff4_c00258{font-family:ff4_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;}
@font-face{font-family:ff5_c00258;src:url('chunks/assets/font_ee2f74a7a92a5475ced49515.woff2')format("woff");}.ff5_c00258{font-family:ff5_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:ff6_c00258;src:url('chunks/assets/font_a9151c2c38c99d18eab868b7.woff2')format("woff");}.ff6_c00258{font-family:ff6_c00258;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls20_c00258{letter-spacing:-1.080000px;}
.ls23_c00258{letter-spacing:-0.237600px;}
.ls22_c00258{letter-spacing:-0.158400px;}
.ls19_c00258{letter-spacing:-0.151200px;}
.ls1d_c00258{letter-spacing:-0.129600px;}
.ls17_c00258{letter-spacing:-0.124200px;}
.ls1a_c00258{letter-spacing:-0.118800px;}
.ls1e_c00258{letter-spacing:-0.108216px;}
.ls13_c00258{letter-spacing:-0.102204px;}
.ls1c_c00258{letter-spacing:-0.036072px;}
.ls16_c00258{letter-spacing:-0.030060px;}
.ls15_c00258{letter-spacing:-0.024048px;}
.ls1f_c00258{letter-spacing:-0.012024px;}
.ls21_c00258{letter-spacing:-0.007200px;}
.ls14_c00258{letter-spacing:0.000000px;}
.lsc_c00258{letter-spacing:0.007200px;}
.ls10_c00258{letter-spacing:0.014400px;}
.ls2_c00258{letter-spacing:0.016200px;}
.lsb_c00258{letter-spacing:0.021600px;}
.ls6_c00258{letter-spacing:0.024048px;}
.ls7_c00258{letter-spacing:0.027000px;}
.lse_c00258{letter-spacing:0.028800px;}
.ls1_c00258{letter-spacing:0.032400px;}
.ls9_c00258{letter-spacing:0.036000px;}
.ls3_c00258{letter-spacing:0.043200px;}
.lsa_c00258{letter-spacing:0.050400px;}
.ls4_c00258{letter-spacing:0.054000px;}
.lsf_c00258{letter-spacing:0.057600px;}
.ls0_c00258{letter-spacing:0.067104px;}
.ls11_c00258{letter-spacing:0.072000px;}
.ls12_c00258{letter-spacing:0.079200px;}
.lsd_c00258{letter-spacing:0.108000px;}
.ls1b_c00258{letter-spacing:0.496800px;}
.ls5_c00258{letter-spacing:152.748000px;}
.ls18_c00258{letter-spacing:166.795200px;}
.ls8_c00258{letter-spacing:194.400000px;}
.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:-16.737408px;}
.ws1_c00258{word-spacing:-14.887800px;}
.ws3_c00258{word-spacing:0.000000px;}
.ws2_c00258{word-spacing:0.192384px;}
._3_c00258{margin-left:-166.811400px;}
._12_c00258{margin-left:-2.563200px;}
._2_c00258{margin-left:-1.241928px;}
._0_c00258{width:1.034064px;}
._1_c00258{width:3.029400px;}
._11_c00258{width:4.521600px;}
._10_c00258{width:5.738400px;}
._16_c00258{width:7.891200px;}
._14_c00258{width:11.491200px;}
._15_c00258{width:15.105600px;}
._13_c00258{width:21.542400px;}
._c_c00258{width:132.931800px;}
._7_c00258{width:152.906400px;}
._a_c00258{width:290.646000px;}
._4_c00258{width:378.252000px;}
._f_c00258{width:468.169056px;}
._6_c00258{width:472.489056px;}
._e_c00258{width:520.052400px;}
._5_c00258{width:524.372400px;}
._d_c00258{width:540.691200px;}
._9_c00258{width:721.393200px;}
._8_c00258{width:763.246800px;}
._b_c00258{width:768.049056px;}
.fc3_c00258{color:rgb(38,74,96);}
.fc2_c00258{color:rgb(1,2,5);}
.fc1_c00258{color:rgb(0,0,0);}
.fc0_c00258{color:rgb(32,31,30);}
.fs4_c00258{font-size:2.880000px;}
.fs3_c00258{font-size:54.000000px;}
.fs0_c00258{font-size:60.120000px;}
.fs1_c00258{font-size:72.000000px;}
.fs2_c00258{font-size:83.880000px;}
.y0_c00258{bottom:0.000000px;}
.y5_c00258{bottom:57.360450px;}
.y4_c00258{bottom:78.060450px;}
.y2e_c00258{bottom:138.180450px;}
.y2d_c00258{bottom:169.230450px;}
.y2c_c00258{bottom:200.280450px;}
.y2b_c00258{bottom:231.330450px;}
.y2a_c00258{bottom:262.380450px;}
.y29_c00258{bottom:305.310450px;}
.y28_c00258{bottom:336.450450px;}
.y27_c00258{bottom:367.500450px;}
.y26_c00258{bottom:398.550450px;}
.y25_c00258{bottom:429.600450px;}
.y24_c00258{bottom:460.650450px;}
.y23_c00258{bottom:491.700450px;}
.y22_c00258{bottom:522.750450px;}
.y21_c00258{bottom:553.800450px;}
.y20_c00258{bottom:584.850450px;}
.y1f_c00258{bottom:615.900450px;}
.y1e_c00258{bottom:646.950450px;}
.y17_c00258{bottom:674.760450px;}
.y16_c00258{bottom:698.430450px;}
.y15_c00258{bottom:722.100450px;}
.y14_c00258{bottom:745.770450px;}
.y12_c00258{bottom:779.790600px;}
.y11_c00258{bottom:805.710450px;}
.y13_c00258{bottom:807.150450px;}
.y1d_c00258{bottom:875.190450px;}
.y10_c00258{bottom:884.640450px;}
.y1c_c00258{bottom:898.770450px;}
.yf_c00258{bottom:908.220450px;}
.y1b_c00258{bottom:922.440450px;}
.ye_c00258{bottom:931.890450px;}
.yc_c00258{bottom:956.730450px;}
.y19_c00258{bottom:959.340450px;}
.yb_c00258{bottom:982.650450px;}
.yd_c00258{bottom:984.090450px;}
.y18_c00258{bottom:985.260450px;}
.y1a_c00258{bottom:986.700450px;}
.ya_c00258{bottom:1020.990450px;}
.y9_c00258{bottom:1032.060000px;}
.y8_c00258{bottom:1055.370450px;}
.y7_c00258{bottom:1085.250450px;}
.y6_c00258{bottom:1108.380450px;}
.y3_c00258{bottom:1132.140450px;}
.y2_c00258{bottom:1165.441023px;}
.y1_c00258{bottom:1196.040600px;}
.h5_c00258{height:2.527031px;}
.h4_c00258{height:47.381836px;}
.h7_c00258{height:48.410156px;}
.h1_c00258{height:52.898555px;}
.h6_c00258{height:54.278262px;}
.h2_c00258{height:63.175781px;}
.h3_c00258{height:74.500840px;}
.h0_c00258{height:1263.000000px;}
.w1_c00258{width:892.500000px;}
.w0_c00258{width:892.830000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:127.620000px;}
.x3_c00258{left:135.630000px;}
.x4_c00258{left:143.730000px;}
.x8_c00258{left:177.570000px;}
.x6_c00258{left:189.180000px;}
.x5_c00258{left:341.190000px;}
.x7_c00258{left:403.470000px;}
.x9_c00258{left:489.690000px;}
.xb_c00258{left:530.460000px;}
.xa_c00258{left:681.390000px;}
.x2_c00258{left:738.450000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls20_c00258{letter-spacing:-0.960000pt;}
.ls23_c00258{letter-spacing:-0.211200pt;}
.ls22_c00258{letter-spacing:-0.140800pt;}
.ls19_c00258{letter-spacing:-0.134400pt;}
.ls1d_c00258{letter-spacing:-0.115200pt;}
.ls17_c00258{letter-spacing:-0.110400pt;}
.ls1a_c00258{letter-spacing:-0.105600pt;}
.ls1e_c00258{letter-spacing:-0.096192pt;}
.ls13_c00258{letter-spacing:-0.090848pt;}
.ls1c_c00258{letter-spacing:-0.032064pt;}
.ls16_c00258{letter-spacing:-0.026720pt;}
.ls15_c00258{letter-spacing:-0.021376pt;}
.ls1f_c00258{letter-spacing:-0.010688pt;}
.ls21_c00258{letter-spacing:-0.006400pt;}
.ls14_c00258{letter-spacing:0.000000pt;}
.lsc_c00258{letter-spacing:0.006400pt;}
.ls10_c00258{letter-spacing:0.012800pt;}
.ls2_c00258{letter-spacing:0.014400pt;}
.lsb_c00258{letter-spacing:0.019200pt;}
.ls6_c00258{letter-spacing:0.021376pt;}
.ls7_c00258{letter-spacing:0.024000pt;}
.lse_c00258{letter-spacing:0.025600pt;}
.ls1_c00258{letter-spacing:0.028800pt;}
.ls9_c00258{letter-spacing:0.032000pt;}
.ls3_c00258{letter-spacing:0.038400pt;}
.lsa_c00258{letter-spacing:0.044800pt;}
.ls4_c00258{letter-spacing:0.048000pt;}
.lsf_c00258{letter-spacing:0.051200pt;}
.ls0_c00258{letter-spacing:0.059648pt;}
.ls11_c00258{letter-spacing:0.064000pt;}
.ls12_c00258{letter-spacing:0.070400pt;}
.lsd_c00258{letter-spacing:0.096000pt;}
.ls1b_c00258{letter-spacing:0.441600pt;}
.ls5_c00258{letter-spacing:135.776000pt;}
.ls18_c00258{letter-spacing:148.262400pt;}
.ls8_c00258{letter-spacing:172.800000pt;}
.ws0_c00258{word-spacing:-14.877696pt;}
.ws1_c00258{word-spacing:-13.233600pt;}
.ws3_c00258{word-spacing:0.000000pt;}
.ws2_c00258{word-spacing:0.171008pt;}
._3_c00258{margin-left:-148.276800pt;}
._12_c00258{margin-left:-2.278400pt;}
._2_c00258{margin-left:-1.103936pt;}
._0_c00258{width:0.919168pt;}
._1_c00258{width:2.692800pt;}
._11_c00258{width:4.019200pt;}
._10_c00258{width:5.100800pt;}
._16_c00258{width:7.014400pt;}
._14_c00258{width:10.214400pt;}
._15_c00258{width:13.427200pt;}
._13_c00258{width:19.148800pt;}
._c_c00258{width:118.161600pt;}
._7_c00258{width:135.916800pt;}
._a_c00258{width:258.352000pt;}
._4_c00258{width:336.224000pt;}
._f_c00258{width:416.150272pt;}
._6_c00258{width:419.990272pt;}
._e_c00258{width:462.268800pt;}
._5_c00258{width:466.108800pt;}
._d_c00258{width:480.614400pt;}
._9_c00258{width:641.238400pt;}
._8_c00258{width:678.441600pt;}
._b_c00258{width:682.710272pt;}
.fs4_c00258{font-size:2.560000pt;}
.fs3_c00258{font-size:48.000000pt;}
.fs0_c00258{font-size:53.440000pt;}
.fs1_c00258{font-size:64.000000pt;}
.fs2_c00258{font-size:74.560000pt;}
.y0_c00258{bottom:0.000000pt;}
.y5_c00258{bottom:50.987067pt;}
.y4_c00258{bottom:69.387067pt;}
.y2e_c00258{bottom:122.827067pt;}
.y2d_c00258{bottom:150.427067pt;}
.y2c_c00258{bottom:178.027067pt;}
.y2b_c00258{bottom:205.627067pt;}
.y2a_c00258{bottom:233.227067pt;}
.y29_c00258{bottom:271.387067pt;}
.y28_c00258{bottom:299.067067pt;}
.y27_c00258{bottom:326.667067pt;}
.y26_c00258{bottom:354.267067pt;}
.y25_c00258{bottom:381.867067pt;}
.y24_c00258{bottom:409.467067pt;}
.y23_c00258{bottom:437.067067pt;}
.y22_c00258{bottom:464.667067pt;}
.y21_c00258{bottom:492.267067pt;}
.y20_c00258{bottom:519.867067pt;}
.y1f_c00258{bottom:547.467067pt;}
.y1e_c00258{bottom:575.067067pt;}
.y17_c00258{bottom:599.787067pt;}
.y16_c00258{bottom:620.827067pt;}
.y15_c00258{bottom:641.867067pt;}
.y14_c00258{bottom:662.907067pt;}
.y12_c00258{bottom:693.147200pt;}
.y11_c00258{bottom:716.187067pt;}
.y13_c00258{bottom:717.467067pt;}
.y1d_c00258{bottom:777.947067pt;}
.y10_c00258{bottom:786.347067pt;}
.y1c_c00258{bottom:798.907067pt;}
.yf_c00258{bottom:807.307067pt;}
.y1b_c00258{bottom:819.947067pt;}
.ye_c00258{bottom:828.347067pt;}
.yc_c00258{bottom:850.427067pt;}
.y19_c00258{bottom:852.747067pt;}
.yb_c00258{bottom:873.467067pt;}
.yd_c00258{bottom:874.747067pt;}
.y18_c00258{bottom:875.787067pt;}
.y1a_c00258{bottom:877.067067pt;}
.ya_c00258{bottom:907.547067pt;}
.y9_c00258{bottom:917.386667pt;}
.y8_c00258{bottom:938.107067pt;}
.y7_c00258{bottom:964.667067pt;}
.y6_c00258{bottom:985.227067pt;}
.y3_c00258{bottom:1006.347067pt;}
.y2_c00258{bottom:1035.947576pt;}
.y1_c00258{bottom:1063.147200pt;}
.h5_c00258{height:2.246250pt;}
.h4_c00258{height:42.117188pt;}
.h7_c00258{height:43.031250pt;}
.h1_c00258{height:47.020937pt;}
.h6_c00258{height:48.247344pt;}
.h2_c00258{height:56.156250pt;}
.h3_c00258{height:66.222969pt;}
.h0_c00258{height:1122.666667pt;}
.w1_c00258{width:793.333333pt;}
.w0_c00258{width:793.626667pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:113.440000pt;}
.x3_c00258{left:120.560000pt;}
.x4_c00258{left:127.760000pt;}
.x8_c00258{left:157.840000pt;}
.x6_c00258{left:168.160000pt;}
.x5_c00258{left:303.280000pt;}
.x7_c00258{left:358.640000pt;}
.x9_c00258{left:435.280000pt;}
.xb_c00258{left:471.520000pt;}
.xa_c00258{left:605.680000pt;}
.x2_c00258{left:656.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_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_aca3937ba7a567656fe3ec64.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.095703;font-style:normal;font-weight:normal;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_daa7bb77773d5a69b64ae841.woff2')format("woff");}.ff2_c00259{font-family:ff2_c00259;line-height:1.093262;font-style: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);}
.v0_c00259{vertical-align:0.000000px;}
.ls14_c00259{letter-spacing:-2.160000px;}
.ls15_c00259{letter-spacing:-0.273600px;}
.ls10_c00259{letter-spacing:-0.048096px;}
.ls13_c00259{letter-spacing:-0.036000px;}
.ls16_c00259{letter-spacing:-0.021600px;}
.ls17_c00259{letter-spacing:-0.014400px;}
.ls12_c00259{letter-spacing:-0.007200px;}
.ls11_c00259{letter-spacing:0.000000px;}
.lsd_c00259{letter-spacing:0.005400px;}
.ls2_c00259{letter-spacing:0.007200px;}
.lse_c00259{letter-spacing:0.010800px;}
.ls8_c00259{letter-spacing:0.014400px;}
.ls0_c00259{letter-spacing:0.021600px;}
.ls6_c00259{letter-spacing:0.028800px;}
.ls7_c00259{letter-spacing:0.036000px;}
.ls4_c00259{letter-spacing:0.043200px;}
.ls1_c00259{letter-spacing:0.050400px;}
.ls3_c00259{letter-spacing:0.057600px;}
.ls5_c00259{letter-spacing:0.064800px;}
.lsb_c00259{letter-spacing:0.072000px;}
.lsf_c00259{letter-spacing:0.075600px;}
.lsc_c00259{letter-spacing:0.086400px;}
.ls9_c00259{letter-spacing:0.100800px;}
.lsa_c00259{letter-spacing:0.136800px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00259{word-spacing:0.000000px;}
.ws0_c00259{word-spacing:0.138276px;}
.ws5_c00259{word-spacing:6.647400px;}
.ws4_c00259{word-spacing:6.652800px;}
.ws3_c00259{word-spacing:23.925600px;}
.ws2_c00259{word-spacing:24.004800px;}
._6_c00259{margin-left:-3.218400px;}
._5_c00259{margin-left:-2.210400px;}
._3_c00259{margin-left:-1.123200px;}
._1_c00259{width:1.022400px;}
._4_c00259{width:2.368800px;}
._7_c00259{width:4.608000px;}
._c_c00259{width:7.192800px;}
._d_c00259{width:8.251200px;}
._2_c00259{width:9.295200px;}
._b_c00259{width:10.418400px;}
._e_c00259{width:11.476800px;}
._8_c00259{width:24.062400px;}
._0_c00259{width:25.898400px;}
._a_c00259{width:841.320000px;}
._9_c00259{width:877.320000px;}
.fc1_c00259{color:rgb(68,84,106);}
.fc0_c00259{color:rgb(0,0,0);}
.fs2_c00259{font-size:54.000000px;}
.fs0_c00259{font-size:60.120000px;}
.fs1_c00259{font-size:72.000000px;}
.y0_c00259{bottom:0.000000px;}
.y6_c00259{bottom:57.360450px;}
.y5_c00259{bottom:78.060450px;}
.y20_c00259{bottom:177.600600px;}
.y1f_c00259{bottom:208.740600px;}
.y1e_c00259{bottom:251.670600px;}
.y1d_c00259{bottom:282.810600px;}
.y1c_c00259{bottom:313.860600px;}
.y1b_c00259{bottom:344.910600px;}
.y1a_c00259{bottom:375.960600px;}
.y19_c00259{bottom:407.010600px;}
.y18_c00259{bottom:438.060600px;}
.y17_c00259{bottom:476.940600px;}
.y16_c00259{bottom:622.740450px;}
.y15_c00259{bottom:645.960450px;}
.y14_c00259{bottom:684.660450px;}
.y13_c00259{bottom:727.680450px;}
.y12_c00259{bottom:758.820450px;}
.y11_c00259{bottom:789.870450px;}
.y10_c00259{bottom:820.920450px;}
.yf_c00259{bottom:863.850450px;}
.ye_c00259{bottom:894.990450px;}
.yd_c00259{bottom:926.040450px;}
.yc_c00259{bottom:957.090450px;}
.yb_c00259{bottom:988.140450px;}
.ya_c00259{bottom:1019.190450px;}
.y9_c00259{bottom:1050.240450px;}
.y8_c00259{bottom:1093.170450px;}
.y7_c00259{bottom:1124.310450px;}
.y4_c00259{bottom:1144.380657px;}
.y3_c00259{bottom:1161.660648px;}
.y2_c00259{bottom:1178.850459px;}
.y1_c00259{bottom:1196.130450px;}
.h4_c00259{height:47.513672px;}
.h1_c00259{height:52.898555px;}
.h2_c00259{height:63.175781px;}
.h3_c00259{height:63.351562px;}
.h0_c00259{height:1263.000000px;}
.w1_c00259{width:892.500000px;}
.w0_c00259{width:892.830000px;}
.x0_c00259{left:0.000000px;}
.x4_c00259{left:127.620000px;}
.x1_c00259{left:649.620000px;}
.x3_c00259{left:738.450000px;}
.x2_c00259{left:765.450198px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls14_c00259{letter-spacing:-1.920000pt;}
.ls15_c00259{letter-spacing:-0.243200pt;}
.ls10_c00259{letter-spacing:-0.042752pt;}
.ls13_c00259{letter-spacing:-0.032000pt;}
.ls16_c00259{letter-spacing:-0.019200pt;}
.ls17_c00259{letter-spacing:-0.012800pt;}
.ls12_c00259{letter-spacing:-0.006400pt;}
.ls11_c00259{letter-spacing:0.000000pt;}
.lsd_c00259{letter-spacing:0.004800pt;}
.ls2_c00259{letter-spacing:0.006400pt;}
.lse_c00259{letter-spacing:0.009600pt;}
.ls8_c00259{letter-spacing:0.012800pt;}
.ls0_c00259{letter-spacing:0.019200pt;}
.ls6_c00259{letter-spacing:0.025600pt;}
.ls7_c00259{letter-spacing:0.032000pt;}
.ls4_c00259{letter-spacing:0.038400pt;}
.ls1_c00259{letter-spacing:0.044800pt;}
.ls3_c00259{letter-spacing:0.051200pt;}
.ls5_c00259{letter-spacing:0.057600pt;}
.lsb_c00259{letter-spacing:0.064000pt;}
.lsf_c00259{letter-spacing:0.067200pt;}
.lsc_c00259{letter-spacing:0.076800pt;}
.ls9_c00259{letter-spacing:0.089600pt;}
.lsa_c00259{letter-spacing:0.121600pt;}
.ws1_c00259{word-spacing:0.000000pt;}
.ws0_c00259{word-spacing:0.122912pt;}
.ws5_c00259{word-spacing:5.908800pt;}
.ws4_c00259{word-spacing:5.913600pt;}
.ws3_c00259{word-spacing:21.267200pt;}
.ws2_c00259{word-spacing:21.337600pt;}
._6_c00259{margin-left:-2.860800pt;}
._5_c00259{margin-left:-1.964800pt;}
._3_c00259{margin-left:-0.998400pt;}
._1_c00259{width:0.908800pt;}
._4_c00259{width:2.105600pt;}
._7_c00259{width:4.096000pt;}
._c_c00259{width:6.393600pt;}
._d_c00259{width:7.334400pt;}
._2_c00259{width:8.262400pt;}
._b_c00259{width:9.260800pt;}
._e_c00259{width:10.201600pt;}
._8_c00259{width:21.388800pt;}
._0_c00259{width:23.020800pt;}
._a_c00259{width:747.840000pt;}
._9_c00259{width:779.840000pt;}
.fs2_c00259{font-size:48.000000pt;}
.fs0_c00259{font-size:53.440000pt;}
.fs1_c00259{font-size:64.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.y6_c00259{bottom:50.987067pt;}
.y5_c00259{bottom:69.387067pt;}
.y20_c00259{bottom:157.867200pt;}
.y1f_c00259{bottom:185.547200pt;}
.y1e_c00259{bottom:223.707200pt;}
.y1d_c00259{bottom:251.387200pt;}
.y1c_c00259{bottom:278.987200pt;}
.y1b_c00259{bottom:306.587200pt;}
.y1a_c00259{bottom:334.187200pt;}
.y19_c00259{bottom:361.787200pt;}
.y18_c00259{bottom:389.387200pt;}
.y17_c00259{bottom:423.947200pt;}
.y16_c00259{bottom:553.547067pt;}
.y15_c00259{bottom:574.187067pt;}
.y14_c00259{bottom:608.587067pt;}
.y13_c00259{bottom:646.827067pt;}
.y12_c00259{bottom:674.507067pt;}
.y11_c00259{bottom:702.107067pt;}
.y10_c00259{bottom:729.707067pt;}
.yf_c00259{bottom:767.867067pt;}
.ye_c00259{bottom:795.547067pt;}
.yd_c00259{bottom:823.147067pt;}
.yc_c00259{bottom:850.747067pt;}
.yb_c00259{bottom:878.347067pt;}
.ya_c00259{bottom:905.947067pt;}
.y9_c00259{bottom:933.547067pt;}
.y8_c00259{bottom:971.707067pt;}
.y7_c00259{bottom:999.387067pt;}
.y4_c00259{bottom:1017.227251pt;}
.y3_c00259{bottom:1032.587243pt;}
.y2_c00259{bottom:1047.867075pt;}
.y1_c00259{bottom:1063.227067pt;}
.h4_c00259{height:42.234375pt;}
.h1_c00259{height:47.020937pt;}
.h2_c00259{height:56.156250pt;}
.h3_c00259{height:56.312500pt;}
.h0_c00259{height:1122.666667pt;}
.w1_c00259{width:793.333333pt;}
.w0_c00259{width:793.626667pt;}
.x0_c00259{left:0.000000pt;}
.x4_c00259{left:113.440000pt;}
.x1_c00259{left:577.440000pt;}
.x3_c00259{left:656.400000pt;}
.x2_c00259{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f11e9e69a5c6f72f21b7268.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.095703;font-style:normal;font-weight:normal;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_f95fb4a2d4a185159494d328.woff2')format("woff");}.ff2_c00260{font-family:ff2_c00260;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00260{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls15_c00260{letter-spacing:-3.960000px;}
.ls11_c00260{letter-spacing:-0.102204px;}
.ls16_c00260{letter-spacing:-0.010800px;}
.ls13_c00260{letter-spacing:-0.007200px;}
.ls12_c00260{letter-spacing:0.000000px;}
.lsa_c00260{letter-spacing:0.007200px;}
.lsf_c00260{letter-spacing:0.010800px;}
.ls4_c00260{letter-spacing:0.014400px;}
.lse_c00260{letter-spacing:0.016200px;}
.ls6_c00260{letter-spacing:0.021600px;}
.ls2_c00260{letter-spacing:0.028800px;}
.ls0_c00260{letter-spacing:0.036000px;}
.ls3_c00260{letter-spacing:0.043200px;}
.ls8_c00260{letter-spacing:0.057600px;}
.ls5_c00260{letter-spacing:0.064800px;}
.ls7_c00260{letter-spacing:0.079200px;}
.ls1_c00260{letter-spacing:0.086400px;}
.lsb_c00260{letter-spacing:0.093600px;}
.ls9_c00260{letter-spacing:0.115200px;}
.lsd_c00260{letter-spacing:0.122400px;}
.lsc_c00260{letter-spacing:0.172800px;}
.ls14_c00260{letter-spacing:1.080000px;}
.ls10_c00260{letter-spacing:900.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00260{word-spacing:0.000000px;}
.ws5_c00260{word-spacing:0.167400px;}
.ws6_c00260{word-spacing:0.189000px;}
.ws0_c00260{word-spacing:0.192384px;}
.ws4_c00260{word-spacing:3.375000px;}
.ws2_c00260{word-spacing:3.402000px;}
.ws3_c00260{word-spacing:3.418200px;}
._b_c00260{margin-left:-162.000000px;}
._6_c00260{margin-left:-4.024800px;}
._9_c00260{margin-left:-2.556000px;}
._3_c00260{margin-left:-1.108800px;}
._0_c00260{width:1.034064px;}
._1_c00260{width:2.069136px;}
._7_c00260{width:3.700800px;}
._a_c00260{width:6.084000px;}
._4_c00260{width:9.676800px;}
._2_c00260{width:10.771200px;}
._8_c00260{width:11.880000px;}
._5_c00260{width:13.636800px;}
.fc2_c00260{color:rgb(255,0,0);}
.fc3_c00260{color:rgb(68,84,106);}
.fc1_c00260{color:rgb(0,0,0);}
.fc0_c00260{color:rgb(32,31,30);}
.fs2_c00260{font-size:54.000000px;}
.fs0_c00260{font-size:60.120000px;}
.fs1_c00260{font-size:72.000000px;}
.y0_c00260{bottom:0.000000px;}
.y5_c00260{bottom:57.360450px;}
.y4_c00260{bottom:78.060450px;}
.y1f_c00260{bottom:138.811350px;}
.y1e_c00260{bottom:177.060900px;}
.y1d_c00260{bottom:215.400900px;}
.y1c_c00260{bottom:253.650450px;}
.y1b_c00260{bottom:288.210450px;}
.y1a_c00260{bottom:442.560150px;}
.y19_c00260{bottom:465.870600px;}
.y18_c00260{bottom:504.480450px;}
.y17_c00260{bottom:547.500450px;}
.y16_c00260{bottom:578.640450px;}
.y15_c00260{bottom:609.690450px;}
.y14_c00260{bottom:640.740450px;}
.y13_c00260{bottom:671.790450px;}
.y12_c00260{bottom:702.840450px;}
.y11_c00260{bottom:733.890450px;}
.y10_c00260{bottom:776.820450px;}
.yf_c00260{bottom:807.960450px;}
.ye_c00260{bottom:839.010450px;}
.yd_c00260{bottom:870.060450px;}
.yc_c00260{bottom:901.110450px;}
.yb_c00260{bottom:944.130450px;}
.ya_c00260{bottom:975.180450px;}
.y9_c00260{bottom:1006.230450px;}
.y8_c00260{bottom:1049.250450px;}
.y7_c00260{bottom:1080.390450px;}
.y6_c00260{bottom:1111.440450px;}
.y3_c00260{bottom:1132.140450px;}
.y2_c00260{bottom:1165.441023px;}
.y1_c00260{bottom:1196.040600px;}
.h3_c00260{height:47.513672px;}
.h1_c00260{height:52.898555px;}
.h2_c00260{height:63.175781px;}
.h0_c00260{height:1263.000000px;}
.w1_c00260{width:892.500000px;}
.w0_c00260{width:892.830000px;}
.x0_c00260{left:0.000000px;}
.x1_c00260{left:127.620000px;}
.x3_c00260{left:329.490000px;}
.x2_c00260{left:738.450000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls15_c00260{letter-spacing:-3.520000pt;}
.ls11_c00260{letter-spacing:-0.090848pt;}
.ls16_c00260{letter-spacing:-0.009600pt;}
.ls13_c00260{letter-spacing:-0.006400pt;}
.ls12_c00260{letter-spacing:0.000000pt;}
.lsa_c00260{letter-spacing:0.006400pt;}
.lsf_c00260{letter-spacing:0.009600pt;}
.ls4_c00260{letter-spacing:0.012800pt;}
.lse_c00260{letter-spacing:0.014400pt;}
.ls6_c00260{letter-spacing:0.019200pt;}
.ls2_c00260{letter-spacing:0.025600pt;}
.ls0_c00260{letter-spacing:0.032000pt;}
.ls3_c00260{letter-spacing:0.038400pt;}
.ls8_c00260{letter-spacing:0.051200pt;}
.ls5_c00260{letter-spacing:0.057600pt;}
.ls7_c00260{letter-spacing:0.070400pt;}
.ls1_c00260{letter-spacing:0.076800pt;}
.lsb_c00260{letter-spacing:0.083200pt;}
.ls9_c00260{letter-spacing:0.102400pt;}
.lsd_c00260{letter-spacing:0.108800pt;}
.lsc_c00260{letter-spacing:0.153600pt;}
.ls14_c00260{letter-spacing:0.960000pt;}
.ls10_c00260{letter-spacing:800.000000pt;}
.ws1_c00260{word-spacing:0.000000pt;}
.ws5_c00260{word-spacing:0.148800pt;}
.ws6_c00260{word-spacing:0.168000pt;}
.ws0_c00260{word-spacing:0.171008pt;}
.ws4_c00260{word-spacing:3.000000pt;}
.ws2_c00260{word-spacing:3.024000pt;}
.ws3_c00260{word-spacing:3.038400pt;}
._b_c00260{margin-left:-144.000000pt;}
._6_c00260{margin-left:-3.577600pt;}
._9_c00260{margin-left:-2.272000pt;}
._3_c00260{margin-left:-0.985600pt;}
._0_c00260{width:0.919168pt;}
._1_c00260{width:1.839232pt;}
._7_c00260{width:3.289600pt;}
._a_c00260{width:5.408000pt;}
._4_c00260{width:8.601600pt;}
._2_c00260{width:9.574400pt;}
._8_c00260{width:10.560000pt;}
._5_c00260{width:12.121600pt;}
.fs2_c00260{font-size:48.000000pt;}
.fs0_c00260{font-size:53.440000pt;}
.fs1_c00260{font-size:64.000000pt;}
.y0_c00260{bottom:0.000000pt;}
.y5_c00260{bottom:50.987067pt;}
.y4_c00260{bottom:69.387067pt;}
.y1f_c00260{bottom:123.387867pt;}
.y1e_c00260{bottom:157.387467pt;}
.y1d_c00260{bottom:191.467467pt;}
.y1c_c00260{bottom:225.467067pt;}
.y1b_c00260{bottom:256.187067pt;}
.y1a_c00260{bottom:393.386800pt;}
.y19_c00260{bottom:414.107200pt;}
.y18_c00260{bottom:448.427067pt;}
.y17_c00260{bottom:486.667067pt;}
.y16_c00260{bottom:514.347067pt;}
.y15_c00260{bottom:541.947067pt;}
.y14_c00260{bottom:569.547067pt;}
.y13_c00260{bottom:597.147067pt;}
.y12_c00260{bottom:624.747067pt;}
.y11_c00260{bottom:652.347067pt;}
.y10_c00260{bottom:690.507067pt;}
.yf_c00260{bottom:718.187067pt;}
.ye_c00260{bottom:745.787067pt;}
.yd_c00260{bottom:773.387067pt;}
.yc_c00260{bottom:800.987067pt;}
.yb_c00260{bottom:839.227067pt;}
.ya_c00260{bottom:866.827067pt;}
.y9_c00260{bottom:894.427067pt;}
.y8_c00260{bottom:932.667067pt;}
.y7_c00260{bottom:960.347067pt;}
.y6_c00260{bottom:987.947067pt;}
.y3_c00260{bottom:1006.347067pt;}
.y2_c00260{bottom:1035.947576pt;}
.y1_c00260{bottom:1063.147200pt;}
.h3_c00260{height:42.234375pt;}
.h1_c00260{height:47.020937pt;}
.h2_c00260{height:56.156250pt;}
.h0_c00260{height:1122.666667pt;}
.w1_c00260{width:793.333333pt;}
.w0_c00260{width:793.626667pt;}
.x0_c00260{left:0.000000pt;}
.x1_c00260{left:113.440000pt;}
.x3_c00260{left:292.880000pt;}
.x2_c00260{left:656.400000pt;}
}





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

.ir_c00261:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00261;src:url('chunks/assets/font_09a846a7f67f58b11b159254.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.095703;font-style:normal;font-weight:normal;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_1817e26e591bd0d3b8822a26.woff2')format("woff");}.ff2_c00261{font-family:ff2_c00261;line-height:1.093262;font-style: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;}
.ls12_c00261{letter-spacing:-0.050400px;}
.lsd_c00261{letter-spacing:-0.048096px;}
.ls10_c00261{letter-spacing:-0.036000px;}
.ls11_c00261{letter-spacing:-0.021600px;}
.lsf_c00261{letter-spacing:-0.016200px;}
.lse_c00261{letter-spacing:0.000000px;}
.ls6_c00261{letter-spacing:0.007200px;}
.ls0_c00261{letter-spacing:0.010800px;}
.ls4_c00261{letter-spacing:0.021600px;}
.lsc_c00261{letter-spacing:0.027000px;}
.ls8_c00261{letter-spacing:0.028800px;}
.ls5_c00261{letter-spacing:0.036000px;}
.ls2_c00261{letter-spacing:0.043200px;}
.lsb_c00261{letter-spacing:0.050400px;}
.ls9_c00261{letter-spacing:0.057600px;}
.ls3_c00261{letter-spacing:0.064800px;}
.lsa_c00261{letter-spacing:0.079200px;}
.ls1_c00261{letter-spacing:855.000000px;}
.ls7_c00261{letter-spacing:864.000000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00261{word-spacing:-18.007200px;}
.ws0_c00261{word-spacing:-18.000000px;}
.wsa_c00261{word-spacing:-0.540000px;}
.ws3_c00261{word-spacing:0.000000px;}
.ws9_c00261{word-spacing:0.135000px;}
.ws2_c00261{word-spacing:0.138276px;}
.wsb_c00261{word-spacing:0.151200px;}
.ws6_c00261{word-spacing:0.194400px;}
.ws4_c00261{word-spacing:1.247400px;}
.ws5_c00261{word-spacing:1.274400px;}
.ws8_c00261{word-spacing:3.061800px;}
.ws7_c00261{word-spacing:3.083400px;}
._8_c00261{margin-left:-36.000000px;}
._5_c00261{margin-left:-5.112000px;}
._4_c00261{margin-left:-3.960000px;}
._b_c00261{margin-left:-2.404800px;}
._0_c00261{margin-left:-1.344600px;}
._6_c00261{width:1.044000px;}
._3_c00261{width:2.498400px;}
._7_c00261{width:4.320000px;}
._a_c00261{width:5.385600px;}
._9_c00261{width:6.811200px;}
._2_c00261{width:10.101600px;}
._1_c00261{width:11.116800px;}
._c_c00261{width:41.378400px;}
._d_c00261{width:64.555200px;}
._e_c00261{width:65.858400px;}
.fc1_c00261{color:rgb(68,84,106);}
.fc0_c00261{color:rgb(0,0,0);}
.fs2_c00261{font-size:54.000000px;}
.fs0_c00261{font-size:60.120000px;}
.fs1_c00261{font-size:72.000000px;}
.y0_c00261{bottom:0.000000px;}
.y20_c00261{bottom:3.240450px;}
.y6_c00261{bottom:57.360450px;}
.y5_c00261{bottom:78.060450px;}
.y1e_c00261{bottom:126.570450px;}
.y1d_c00261{bottom:157.710450px;}
.y1c_c00261{bottom:188.760450px;}
.y1b_c00261{bottom:219.810450px;}
.y1a_c00261{bottom:250.860450px;}
.y19_c00261{bottom:293.790450px;}
.y18_c00261{bottom:324.930450px;}
.y22_c00261{bottom:348.420450px;}
.y17_c00261{bottom:355.980450px;}
.y1f_c00261{bottom:368.400000px;}
.y21_c00261{bottom:371.640450px;}
.y16_c00261{bottom:387.030450px;}
.y15_c00261{bottom:418.080450px;}
.y14_c00261{bottom:449.130450px;}
.y13_c00261{bottom:488.010450px;}
.y12_c00261{bottom:645.150450px;}
.y11_c00261{bottom:668.370450px;}
.y10_c00261{bottom:707.070450px;}
.yf_c00261{bottom:738.210450px;}
.ye_c00261{bottom:769.260450px;}
.yd_c00261{bottom:800.310450px;}
.yc_c00261{bottom:831.360450px;}
.yb_c00261{bottom:862.410450px;}
.ya_c00261{bottom:905.340450px;}
.y9_c00261{bottom:944.310450px;}
.y8_c00261{bottom:1105.410450px;}
.y7_c00261{bottom:1128.630450px;}
.y4_c00261{bottom:1144.380657px;}
.y3_c00261{bottom:1161.660648px;}
.y2_c00261{bottom:1178.850459px;}
.y1_c00261{bottom:1196.130450px;}
.h5_c00261{height:15.300000px;}
.h3_c00261{height:47.513672px;}
.h1_c00261{height:52.898555px;}
.h2_c00261{height:63.175781px;}
.h4_c00261{height:63.351562px;}
.h0_c00261{height:1263.000000px;}
.w2_c00261{width:324.000000px;}
.w1_c00261{width:892.500000px;}
.w0_c00261{width:892.830000px;}
.x0_c00261{left:0.000000px;}
.x4_c00261{left:127.620000px;}
.x9_c00261{left:132.120000px;}
.x6_c00261{left:328.950000px;}
.x7_c00261{left:465.120000px;}
.x8_c00261{left:469.620000px;}
.x5_c00261{left:492.030000px;}
.x1_c00261{left:649.620000px;}
.x3_c00261{left:738.450000px;}
.x2_c00261{left:765.450198px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls12_c00261{letter-spacing:-0.044800pt;}
.lsd_c00261{letter-spacing:-0.042752pt;}
.ls10_c00261{letter-spacing:-0.032000pt;}
.ls11_c00261{letter-spacing:-0.019200pt;}
.lsf_c00261{letter-spacing:-0.014400pt;}
.lse_c00261{letter-spacing:0.000000pt;}
.ls6_c00261{letter-spacing:0.006400pt;}
.ls0_c00261{letter-spacing:0.009600pt;}
.ls4_c00261{letter-spacing:0.019200pt;}
.lsc_c00261{letter-spacing:0.024000pt;}
.ls8_c00261{letter-spacing:0.025600pt;}
.ls5_c00261{letter-spacing:0.032000pt;}
.ls2_c00261{letter-spacing:0.038400pt;}
.lsb_c00261{letter-spacing:0.044800pt;}
.ls9_c00261{letter-spacing:0.051200pt;}
.ls3_c00261{letter-spacing:0.057600pt;}
.lsa_c00261{letter-spacing:0.070400pt;}
.ls1_c00261{letter-spacing:760.000000pt;}
.ls7_c00261{letter-spacing:768.000000pt;}
.ws1_c00261{word-spacing:-16.006400pt;}
.ws0_c00261{word-spacing:-16.000000pt;}
.wsa_c00261{word-spacing:-0.480000pt;}
.ws3_c00261{word-spacing:0.000000pt;}
.ws9_c00261{word-spacing:0.120000pt;}
.ws2_c00261{word-spacing:0.122912pt;}
.wsb_c00261{word-spacing:0.134400pt;}
.ws6_c00261{word-spacing:0.172800pt;}
.ws4_c00261{word-spacing:1.108800pt;}
.ws5_c00261{word-spacing:1.132800pt;}
.ws8_c00261{word-spacing:2.721600pt;}
.ws7_c00261{word-spacing:2.740800pt;}
._8_c00261{margin-left:-32.000000pt;}
._5_c00261{margin-left:-4.544000pt;}
._4_c00261{margin-left:-3.520000pt;}
._b_c00261{margin-left:-2.137600pt;}
._0_c00261{margin-left:-1.195200pt;}
._6_c00261{width:0.928000pt;}
._3_c00261{width:2.220800pt;}
._7_c00261{width:3.840000pt;}
._a_c00261{width:4.787200pt;}
._9_c00261{width:6.054400pt;}
._2_c00261{width:8.979200pt;}
._1_c00261{width:9.881600pt;}
._c_c00261{width:36.780800pt;}
._d_c00261{width:57.382400pt;}
._e_c00261{width:58.540800pt;}
.fs2_c00261{font-size:48.000000pt;}
.fs0_c00261{font-size:53.440000pt;}
.fs1_c00261{font-size:64.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y20_c00261{bottom:2.880400pt;}
.y6_c00261{bottom:50.987067pt;}
.y5_c00261{bottom:69.387067pt;}
.y1e_c00261{bottom:112.507067pt;}
.y1d_c00261{bottom:140.187067pt;}
.y1c_c00261{bottom:167.787067pt;}
.y1b_c00261{bottom:195.387067pt;}
.y1a_c00261{bottom:222.987067pt;}
.y19_c00261{bottom:261.147067pt;}
.y18_c00261{bottom:288.827067pt;}
.y22_c00261{bottom:309.707067pt;}
.y17_c00261{bottom:316.427067pt;}
.y1f_c00261{bottom:327.466667pt;}
.y21_c00261{bottom:330.347067pt;}
.y16_c00261{bottom:344.027067pt;}
.y15_c00261{bottom:371.627067pt;}
.y14_c00261{bottom:399.227067pt;}
.y13_c00261{bottom:433.787067pt;}
.y12_c00261{bottom:573.467067pt;}
.y11_c00261{bottom:594.107067pt;}
.y10_c00261{bottom:628.507067pt;}
.yf_c00261{bottom:656.187067pt;}
.ye_c00261{bottom:683.787067pt;}
.yd_c00261{bottom:711.387067pt;}
.yc_c00261{bottom:738.987067pt;}
.yb_c00261{bottom:766.587067pt;}
.ya_c00261{bottom:804.747067pt;}
.y9_c00261{bottom:839.387067pt;}
.y8_c00261{bottom:982.587067pt;}
.y7_c00261{bottom:1003.227067pt;}
.y4_c00261{bottom:1017.227251pt;}
.y3_c00261{bottom:1032.587243pt;}
.y2_c00261{bottom:1047.867075pt;}
.y1_c00261{bottom:1063.227067pt;}
.h5_c00261{height:13.600000pt;}
.h3_c00261{height:42.234375pt;}
.h1_c00261{height:47.020937pt;}
.h2_c00261{height:56.156250pt;}
.h4_c00261{height:56.312500pt;}
.h0_c00261{height:1122.666667pt;}
.w2_c00261{width:288.000000pt;}
.w1_c00261{width:793.333333pt;}
.w0_c00261{width:793.626667pt;}
.x0_c00261{left:0.000000pt;}
.x4_c00261{left:113.440000pt;}
.x9_c00261{left:117.440000pt;}
.x6_c00261{left:292.400000pt;}
.x7_c00261{left:413.440000pt;}
.x8_c00261{left:417.440000pt;}
.x5_c00261{left:437.360000pt;}
.x1_c00261{left:577.440000pt;}
.x3_c00261{left:656.400000pt;}
.x2_c00261{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22f1120832125facaf305a80.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.095703;font-style:normal;font-weight:normal;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_fa89f497ec77c14d38701d68.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.093262;font-style:normal;font-weight:normal;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_975365f2cd5d6a99d686e253.woff2')format("woff");}.ff3_c00262{font-family:ff3_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:ff4_c00262;src:url('chunks/assets/font_b1f0d1a2f8c27d4ad05a2164.woff2')format("woff");}.ff4_c00262{font-family:ff4_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;}
.m0_c00262{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls12_c00262{letter-spacing:-0.151200px;}
.ls10_c00262{letter-spacing:-0.124200px;}
.ls14_c00262{letter-spacing:-0.108000px;}
.lsc_c00262{letter-spacing:-0.102204px;}
.ls16_c00262{letter-spacing:-0.091800px;}
.ls18_c00262{letter-spacing:-0.086400px;}
.ls17_c00262{letter-spacing:-0.075600px;}
.lse_c00262{letter-spacing:-0.064800px;}
.ls11_c00262{letter-spacing:-0.059400px;}
.ls19_c00262{letter-spacing:-0.054000px;}
.ls13_c00262{letter-spacing:-0.048600px;}
.ls1a_c00262{letter-spacing:-0.043200px;}
.ls15_c00262{letter-spacing:-0.032400px;}
.ls21_c00262{letter-spacing:-0.028800px;}
.lsf_c00262{letter-spacing:-0.021600px;}
.ls1b_c00262{letter-spacing:-0.016200px;}
.ls1e_c00262{letter-spacing:-0.014400px;}
.ls1d_c00262{letter-spacing:-0.007200px;}
.lsd_c00262{letter-spacing:0.000000px;}
.ls7_c00262{letter-spacing:0.007200px;}
.ls0_c00262{letter-spacing:0.016200px;}
.ls4_c00262{letter-spacing:0.021600px;}
.ls6_c00262{letter-spacing:0.028800px;}
.ls3_c00262{letter-spacing:0.036000px;}
.ls8_c00262{letter-spacing:0.043200px;}
.ls9_c00262{letter-spacing:0.050400px;}
.lsa_c00262{letter-spacing:0.057600px;}
.ls5_c00262{letter-spacing:0.064800px;}
.lsb_c00262{letter-spacing:0.086400px;}
.ls1c_c00262{letter-spacing:0.496800px;}
.ls20_c00262{letter-spacing:1.800000px;}
.ls2_c00262{letter-spacing:6.120000px;}
.ls1f_c00262{letter-spacing:6.480000px;}
.ls1_c00262{letter-spacing:246.709800px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:-19.994400px;}
.ws1_c00262{word-spacing:-18.000000px;}
.ws3_c00262{word-spacing:0.000000px;}
.ws4_c00262{word-spacing:0.162000px;}
.ws2_c00262{word-spacing:0.192384px;}
.ws5_c00262{word-spacing:6.415200px;}
._17_c00262{margin-left:-7.211664px;}
._12_c00262{margin-left:-6.033600px;}
._11_c00262{margin-left:-5.032800px;}
._13_c00262{margin-left:-3.816000px;}
._4_c00262{margin-left:-2.716200px;}
._1_c00262{margin-left:-1.134000px;}
._0_c00262{width:1.034064px;}
._e_c00262{width:2.167200px;}
._15_c00262{width:3.859200px;}
._10_c00262{width:5.126400px;}
._f_c00262{width:6.156000px;}
._16_c00262{width:7.308000px;}
._14_c00262{width:15.436800px;}
._8_c00262{width:39.733200px;}
._a_c00262{width:63.585000px;}
._2_c00262{width:67.183200px;}
._9_c00262{width:93.069936px;}
._7_c00262{width:135.567936px;}
._6_c00262{width:243.751536px;}
._3_c00262{width:288.869400px;}
._5_c00262{width:306.453600px;}
._b_c00262{width:309.115800px;}
._c_c00262{width:378.500400px;}
._d_c00262{width:602.233200px;}
.fc5_c00262{color:rgb(255,0,0);}
.fc4_c00262{color:rgb(38,74,96);}
.fc3_c00262{color:rgb(1,2,5);}
.fc2_c00262{color:rgb(68,84,106);}
.fc1_c00262{color:rgb(0,0,0);}
.fc0_c00262{color:rgb(32,31,30);}
.fs2_c00262{font-size:54.000000px;}
.fs0_c00262{font-size:60.120000px;}
.fs1_c00262{font-size:72.000000px;}
.y0_c00262{bottom:0.000000px;}
.y5_c00262{bottom:57.360450px;}
.y4_c00262{bottom:78.060450px;}
.y29_c00262{bottom:120.720450px;}
.y28_c00262{bottom:151.860450px;}
.y27_c00262{bottom:182.910450px;}
.y26_c00262{bottom:213.960450px;}
.y25_c00262{bottom:245.010450px;}
.y24_c00262{bottom:287.940450px;}
.y23_c00262{bottom:319.080450px;}
.y22_c00262{bottom:350.130450px;}
.y21_c00262{bottom:393.150450px;}
.y20_c00262{bottom:424.290450px;}
.y1f_c00262{bottom:455.340450px;}
.y1e_c00262{bottom:498.270450px;}
.y1d_c00262{bottom:529.410450px;}
.y1c_c00262{bottom:560.460450px;}
.y1b_c00262{bottom:591.510450px;}
.y1a_c00262{bottom:622.560450px;}
.y19_c00262{bottom:653.610450px;}
.y18_c00262{bottom:681.330450px;}
.y17_c00262{bottom:705.000450px;}
.y16_c00262{bottom:728.580450px;}
.y15_c00262{bottom:752.250450px;}
.y14_c00262{bottom:775.560450px;}
.y13_c00262{bottom:799.230450px;}
.y12_c00262{bottom:822.900450px;}
.y11_c00262{bottom:846.210450px;}
.y10_c00262{bottom:869.790600px;}
.yf_c00262{bottom:893.460450px;}
.ye_c00262{bottom:917.130450px;}
.yd_c00262{bottom:940.800450px;}
.yc_c00262{bottom:964.110450px;}
.yb_c00262{bottom:987.780450px;}
.y9_c00262{bottom:1014.960450px;}
.y8_c00262{bottom:1046.010450px;}
.ya_c00262{bottom:1050.240450px;}
.y7_c00262{bottom:1080.840450px;}
.y6_c00262{bottom:1115.760450px;}
.y3_c00262{bottom:1132.140450px;}
.y2_c00262{bottom:1165.441023px;}
.y1_c00262{bottom:1196.040600px;}
.h3_c00262{height:47.513672px;}
.h5_c00262{height:48.410156px;}
.h1_c00262{height:52.898555px;}
.h2_c00262{height:63.175781px;}
.h6_c00262{height:63.351562px;}
.h4_c00262{height:65.003906px;}
.h0_c00262{height:1263.000000px;}
.w1_c00262{width:892.500000px;}
.w0_c00262{width:892.830000px;}
.x0_c00262{left:0.000000px;}
.x1_c00262{left:127.620000px;}
.x3_c00262{left:285.750000px;}
.x5_c00262{left:351.180000px;}
.x4_c00262{left:535.680000px;}
.x2_c00262{left:738.450000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls12_c00262{letter-spacing:-0.134400pt;}
.ls10_c00262{letter-spacing:-0.110400pt;}
.ls14_c00262{letter-spacing:-0.096000pt;}
.lsc_c00262{letter-spacing:-0.090848pt;}
.ls16_c00262{letter-spacing:-0.081600pt;}
.ls18_c00262{letter-spacing:-0.076800pt;}
.ls17_c00262{letter-spacing:-0.067200pt;}
.lse_c00262{letter-spacing:-0.057600pt;}
.ls11_c00262{letter-spacing:-0.052800pt;}
.ls19_c00262{letter-spacing:-0.048000pt;}
.ls13_c00262{letter-spacing:-0.043200pt;}
.ls1a_c00262{letter-spacing:-0.038400pt;}
.ls15_c00262{letter-spacing:-0.028800pt;}
.ls21_c00262{letter-spacing:-0.025600pt;}
.lsf_c00262{letter-spacing:-0.019200pt;}
.ls1b_c00262{letter-spacing:-0.014400pt;}
.ls1e_c00262{letter-spacing:-0.012800pt;}
.ls1d_c00262{letter-spacing:-0.006400pt;}
.lsd_c00262{letter-spacing:0.000000pt;}
.ls7_c00262{letter-spacing:0.006400pt;}
.ls0_c00262{letter-spacing:0.014400pt;}
.ls4_c00262{letter-spacing:0.019200pt;}
.ls6_c00262{letter-spacing:0.025600pt;}
.ls3_c00262{letter-spacing:0.032000pt;}
.ls8_c00262{letter-spacing:0.038400pt;}
.ls9_c00262{letter-spacing:0.044800pt;}
.lsa_c00262{letter-spacing:0.051200pt;}
.ls5_c00262{letter-spacing:0.057600pt;}
.lsb_c00262{letter-spacing:0.076800pt;}
.ls1c_c00262{letter-spacing:0.441600pt;}
.ls20_c00262{letter-spacing:1.600000pt;}
.ls2_c00262{letter-spacing:5.440000pt;}
.ls1f_c00262{letter-spacing:5.760000pt;}
.ls1_c00262{letter-spacing:219.297600pt;}
.ws0_c00262{word-spacing:-17.772800pt;}
.ws1_c00262{word-spacing:-16.000000pt;}
.ws3_c00262{word-spacing:0.000000pt;}
.ws4_c00262{word-spacing:0.144000pt;}
.ws2_c00262{word-spacing:0.171008pt;}
.ws5_c00262{word-spacing:5.702400pt;}
._17_c00262{margin-left:-6.410368pt;}
._12_c00262{margin-left:-5.363200pt;}
._11_c00262{margin-left:-4.473600pt;}
._13_c00262{margin-left:-3.392000pt;}
._4_c00262{margin-left:-2.414400pt;}
._1_c00262{margin-left:-1.008000pt;}
._0_c00262{width:0.919168pt;}
._e_c00262{width:1.926400pt;}
._15_c00262{width:3.430400pt;}
._10_c00262{width:4.556800pt;}
._f_c00262{width:5.472000pt;}
._16_c00262{width:6.496000pt;}
._14_c00262{width:13.721600pt;}
._8_c00262{width:35.318400pt;}
._a_c00262{width:56.520000pt;}
._2_c00262{width:59.718400pt;}
._9_c00262{width:82.728832pt;}
._7_c00262{width:120.504832pt;}
._6_c00262{width:216.668032pt;}
._3_c00262{width:256.772800pt;}
._5_c00262{width:272.403200pt;}
._b_c00262{width:274.769600pt;}
._c_c00262{width:336.444800pt;}
._d_c00262{width:535.318400pt;}
.fs2_c00262{font-size:48.000000pt;}
.fs0_c00262{font-size:53.440000pt;}
.fs1_c00262{font-size:64.000000pt;}
.y0_c00262{bottom:0.000000pt;}
.y5_c00262{bottom:50.987067pt;}
.y4_c00262{bottom:69.387067pt;}
.y29_c00262{bottom:107.307067pt;}
.y28_c00262{bottom:134.987067pt;}
.y27_c00262{bottom:162.587067pt;}
.y26_c00262{bottom:190.187067pt;}
.y25_c00262{bottom:217.787067pt;}
.y24_c00262{bottom:255.947067pt;}
.y23_c00262{bottom:283.627067pt;}
.y22_c00262{bottom:311.227067pt;}
.y21_c00262{bottom:349.467067pt;}
.y20_c00262{bottom:377.147067pt;}
.y1f_c00262{bottom:404.747067pt;}
.y1e_c00262{bottom:442.907067pt;}
.y1d_c00262{bottom:470.587067pt;}
.y1c_c00262{bottom:498.187067pt;}
.y1b_c00262{bottom:525.787067pt;}
.y1a_c00262{bottom:553.387067pt;}
.y19_c00262{bottom:580.987067pt;}
.y18_c00262{bottom:605.627067pt;}
.y17_c00262{bottom:626.667067pt;}
.y16_c00262{bottom:647.627067pt;}
.y15_c00262{bottom:668.667067pt;}
.y14_c00262{bottom:689.387067pt;}
.y13_c00262{bottom:710.427067pt;}
.y12_c00262{bottom:731.467067pt;}
.y11_c00262{bottom:752.187067pt;}
.y10_c00262{bottom:773.147200pt;}
.yf_c00262{bottom:794.187067pt;}
.ye_c00262{bottom:815.227067pt;}
.yd_c00262{bottom:836.267067pt;}
.yc_c00262{bottom:856.987067pt;}
.yb_c00262{bottom:878.027067pt;}
.y9_c00262{bottom:902.187067pt;}
.y8_c00262{bottom:929.787067pt;}
.ya_c00262{bottom:933.547067pt;}
.y7_c00262{bottom:960.747067pt;}
.y6_c00262{bottom:991.787067pt;}
.y3_c00262{bottom:1006.347067pt;}
.y2_c00262{bottom:1035.947576pt;}
.y1_c00262{bottom:1063.147200pt;}
.h3_c00262{height:42.234375pt;}
.h5_c00262{height:43.031250pt;}
.h1_c00262{height:47.020937pt;}
.h2_c00262{height:56.156250pt;}
.h6_c00262{height:56.312500pt;}
.h4_c00262{height:57.781250pt;}
.h0_c00262{height:1122.666667pt;}
.w1_c00262{width:793.333333pt;}
.w0_c00262{width:793.626667pt;}
.x0_c00262{left:0.000000pt;}
.x1_c00262{left:113.440000pt;}
.x3_c00262{left:254.000000pt;}
.x5_c00262{left:312.160000pt;}
.x4_c00262{left:476.160000pt;}
.x2_c00262{left:656.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_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_8da59a0a90d13ac8ae0b39b7.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.095703;font-style:normal;font-weight:normal;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_0b1e6251dc3da0f110396096.woff2')format("woff");}.ff2_c00263{font-family:ff2_c00263;line-height:1.093262;font-style:normal;font-weight:normal;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_2f8abdd2e96ff8d88db26b75.woff2')format("woff");}.ff3_c00263{font-family:ff3_c00263;line-height:1.104004;font-style:normal;font-weight:normal;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_95dc847e894ec6de17a17008.woff2')format("woff");}.ff4_c00263{font-family:ff4_c00263;line-height:1.113281;font-style:normal;font-weight:normal;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_f09d3f18e8cc08edcd4f4139.woff2')format("woff");}.ff5_c00263{font-family:ff5_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;}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls23_c00263{letter-spacing:-3.240000px;}
.ls15_c00263{letter-spacing:-2.952000px;}
.ls16_c00263{letter-spacing:-1.800000px;}
.ls20_c00263{letter-spacing:-0.151200px;}
.ls1a_c00263{letter-spacing:-0.124200px;}
.ls1b_c00263{letter-spacing:-0.102600px;}
.ls1d_c00263{letter-spacing:-0.091800px;}
.ls18_c00263{letter-spacing:-0.066132px;}
.ls1c_c00263{letter-spacing:-0.064800px;}
.ls13_c00263{letter-spacing:-0.048096px;}
.ls1e_c00263{letter-spacing:-0.032400px;}
.ls19_c00263{letter-spacing:-0.024048px;}
.ls21_c00263{letter-spacing:-0.018036px;}
.ls24_c00263{letter-spacing:-0.014400px;}
.ls17_c00263{letter-spacing:-0.007200px;}
.ls14_c00263{letter-spacing:0.000000px;}
.ls3_c00263{letter-spacing:0.007200px;}
.ls8_c00263{letter-spacing:0.010800px;}
.lsa_c00263{letter-spacing:0.016200px;}
.ls0_c00263{letter-spacing:0.021600px;}
.lsc_c00263{letter-spacing:0.028800px;}
.lse_c00263{letter-spacing:0.036000px;}
.ls6_c00263{letter-spacing:0.043200px;}
.ls1_c00263{letter-spacing:0.048600px;}
.ls4_c00263{letter-spacing:0.050400px;}
.lsd_c00263{letter-spacing:0.057600px;}
.ls7_c00263{letter-spacing:0.058716px;}
.ls9_c00263{letter-spacing:0.064800px;}
.ls10_c00263{letter-spacing:0.072000px;}
.ls5_c00263{letter-spacing:0.079200px;}
.ls12_c00263{letter-spacing:0.108000px;}
.lsf_c00263{letter-spacing:0.115200px;}
.ls25_c00263{letter-spacing:0.259200px;}
.ls1f_c00263{letter-spacing:0.496800px;}
.ls11_c00263{letter-spacing:7.920000px;}
.ls22_c00263{letter-spacing:164.635200px;}
.lsb_c00263{letter-spacing:174.706200px;}
.ls2_c00263{letter-spacing:886.320000px;}
.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;}
}
.ws2_c00263{word-spacing:-18.108000px;}
.ws3_c00263{word-spacing:-18.000000px;}
.ws1_c00263{word-spacing:-17.992800px;}
.ws0_c00263{word-spacing:-16.689312px;}
.ws7_c00263{word-spacing:-0.226800px;}
.ws5_c00263{word-spacing:0.000000px;}
.ws4_c00263{word-spacing:0.138276px;}
.ws6_c00263{word-spacing:0.156600px;}
.ws8_c00263{word-spacing:8.568000px;}
._b_c00263{margin-left:-164.786400px;}
._12_c00263{margin-left:-8.445600px;}
._4_c00263{margin-left:-4.168800px;}
._3_c00263{margin-left:-2.916000px;}
._0_c00263{margin-left:-1.026000px;}
._5_c00263{width:1.159200px;}
._1_c00263{width:2.894400px;}
._2_c00263{width:4.017600px;}
._6_c00263{width:5.083200px;}
._11_c00263{width:7.574400px;}
._f_c00263{width:8.604000px;}
._10_c00263{width:10.483200px;}
._9_c00263{width:259.750800px;}
._8_c00263{width:284.050800px;}
._7_c00263{width:317.165400px;}
._a_c00263{width:330.577200px;}
._c_c00263{width:401.032800px;}
._e_c00263{width:474.577200px;}
._d_c00263{width:565.826400px;}
.fc3_c00263{color:rgb(38,74,96);}
.fc2_c00263{color:rgb(1,2,5);}
.fc1_c00263{color:rgb(68,84,106);}
.fc0_c00263{color:rgb(0,0,0);}
.fs2_c00263{font-size:54.000000px;}
.fs0_c00263{font-size:60.120000px;}
.fs1_c00263{font-size:72.000000px;}
.fs3_c00263{font-size:83.880000px;}
.y0_c00263{bottom:0.000000px;}
.y6_c00263{bottom:57.360450px;}
.y5_c00263{bottom:78.060450px;}
.y2b_c00263{bottom:120.450450px;}
.y2a_c00263{bottom:151.500450px;}
.y29_c00263{bottom:182.550450px;}
.y28_c00263{bottom:213.600450px;}
.y27_c00263{bottom:244.650450px;}
.y26_c00263{bottom:275.610450px;}
.y25_c00263{bottom:306.660450px;}
.y24_c00263{bottom:337.710450px;}
.y23_c00263{bottom:368.760450px;}
.y22_c00263{bottom:441.750450px;}
.y21_c00263{bottom:465.330450px;}
.y20_c00263{bottom:489.000600px;}
.y18_c00263{bottom:506.190600px;}
.y1f_c00263{bottom:512.670450px;}
.y17_c00263{bottom:530.310450px;}
.y1e_c00263{bottom:536.340450px;}
.y16_c00263{bottom:554.520450px;}
.y1d_c00263{bottom:560.010450px;}
.y15_c00263{bottom:578.640450px;}
.y1c_c00263{bottom:583.680450px;}
.y13_c00263{bottom:603.480450px;}
.y1a_c00263{bottom:608.520450px;}
.y12_c00263{bottom:629.310450px;}
.y14_c00263{bottom:630.750450px;}
.y19_c00263{bottom:634.350450px;}
.y1b_c00263{bottom:635.790450px;}
.y11_c00263{bottom:684.120450px;}
.y10_c00263{bottom:714.000450px;}
.yf_c00263{bottom:737.130450px;}
.ye_c00263{bottom:774.210450px;}
.yd_c00263{bottom:805.260450px;}
.yc_c00263{bottom:836.310450px;}
.yb_c00263{bottom:867.360450px;}
.ya_c00263{bottom:898.410450px;}
.y9_c00263{bottom:929.460450px;}
.y8_c00263{bottom:956.460450px;}
.y7_c00263{bottom:1128.630450px;}
.y4_c00263{bottom:1144.380657px;}
.y3_c00263{bottom:1161.660648px;}
.y2_c00263{bottom:1178.850459px;}
.y1_c00263{bottom:1196.130450px;}
.h5_c00263{height:47.381836px;}
.h7_c00263{height:48.410156px;}
.h1_c00263{height:52.898555px;}
.h6_c00263{height:54.278262px;}
.h2_c00263{height:63.175781px;}
.h3_c00263{height:63.351562px;}
.h4_c00263{height:74.500840px;}
.h0_c00263{height:1263.000000px;}
.w1_c00263{width:892.500000px;}
.w0_c00263{width:892.830000px;}
.x0_c00263{left:0.000000px;}
.x4_c00263{left:127.620000px;}
.x6_c00263{left:135.630000px;}
.x7_c00263{left:143.730000px;}
.x9_c00263{left:191.160000px;}
.x8_c00263{left:307.800000px;}
.x5_c00263{left:484.650000px;}
.xa_c00263{left:509.580000px;}
.xc_c00263{left:529.200000px;}
.xd_c00263{left:574.110000px;}
.x1_c00263{left:649.620000px;}
.xb_c00263{left:726.750000px;}
.x3_c00263{left:738.450000px;}
.x2_c00263{left:765.450198px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls23_c00263{letter-spacing:-2.880000pt;}
.ls15_c00263{letter-spacing:-2.624000pt;}
.ls16_c00263{letter-spacing:-1.600000pt;}
.ls20_c00263{letter-spacing:-0.134400pt;}
.ls1a_c00263{letter-spacing:-0.110400pt;}
.ls1b_c00263{letter-spacing:-0.091200pt;}
.ls1d_c00263{letter-spacing:-0.081600pt;}
.ls18_c00263{letter-spacing:-0.058784pt;}
.ls1c_c00263{letter-spacing:-0.057600pt;}
.ls13_c00263{letter-spacing:-0.042752pt;}
.ls1e_c00263{letter-spacing:-0.028800pt;}
.ls19_c00263{letter-spacing:-0.021376pt;}
.ls21_c00263{letter-spacing:-0.016032pt;}
.ls24_c00263{letter-spacing:-0.012800pt;}
.ls17_c00263{letter-spacing:-0.006400pt;}
.ls14_c00263{letter-spacing:0.000000pt;}
.ls3_c00263{letter-spacing:0.006400pt;}
.ls8_c00263{letter-spacing:0.009600pt;}
.lsa_c00263{letter-spacing:0.014400pt;}
.ls0_c00263{letter-spacing:0.019200pt;}
.lsc_c00263{letter-spacing:0.025600pt;}
.lse_c00263{letter-spacing:0.032000pt;}
.ls6_c00263{letter-spacing:0.038400pt;}
.ls1_c00263{letter-spacing:0.043200pt;}
.ls4_c00263{letter-spacing:0.044800pt;}
.lsd_c00263{letter-spacing:0.051200pt;}
.ls7_c00263{letter-spacing:0.052192pt;}
.ls9_c00263{letter-spacing:0.057600pt;}
.ls10_c00263{letter-spacing:0.064000pt;}
.ls5_c00263{letter-spacing:0.070400pt;}
.ls12_c00263{letter-spacing:0.096000pt;}
.lsf_c00263{letter-spacing:0.102400pt;}
.ls25_c00263{letter-spacing:0.230400pt;}
.ls1f_c00263{letter-spacing:0.441600pt;}
.ls11_c00263{letter-spacing:7.040000pt;}
.ls22_c00263{letter-spacing:146.342400pt;}
.lsb_c00263{letter-spacing:155.294400pt;}
.ls2_c00263{letter-spacing:787.840000pt;}
.ws2_c00263{word-spacing:-16.096000pt;}
.ws3_c00263{word-spacing:-16.000000pt;}
.ws1_c00263{word-spacing:-15.993600pt;}
.ws0_c00263{word-spacing:-14.834944pt;}
.ws7_c00263{word-spacing:-0.201600pt;}
.ws5_c00263{word-spacing:0.000000pt;}
.ws4_c00263{word-spacing:0.122912pt;}
.ws6_c00263{word-spacing:0.139200pt;}
.ws8_c00263{word-spacing:7.616000pt;}
._b_c00263{margin-left:-146.476800pt;}
._12_c00263{margin-left:-7.507200pt;}
._4_c00263{margin-left:-3.705600pt;}
._3_c00263{margin-left:-2.592000pt;}
._0_c00263{margin-left:-0.912000pt;}
._5_c00263{width:1.030400pt;}
._1_c00263{width:2.572800pt;}
._2_c00263{width:3.571200pt;}
._6_c00263{width:4.518400pt;}
._11_c00263{width:6.732800pt;}
._f_c00263{width:7.648000pt;}
._10_c00263{width:9.318400pt;}
._9_c00263{width:230.889600pt;}
._8_c00263{width:252.489600pt;}
._7_c00263{width:281.924800pt;}
._a_c00263{width:293.846400pt;}
._c_c00263{width:356.473600pt;}
._e_c00263{width:421.846400pt;}
._d_c00263{width:502.956800pt;}
.fs2_c00263{font-size:48.000000pt;}
.fs0_c00263{font-size:53.440000pt;}
.fs1_c00263{font-size:64.000000pt;}
.fs3_c00263{font-size:74.560000pt;}
.y0_c00263{bottom:0.000000pt;}
.y6_c00263{bottom:50.987067pt;}
.y5_c00263{bottom:69.387067pt;}
.y2b_c00263{bottom:107.067067pt;}
.y2a_c00263{bottom:134.667067pt;}
.y29_c00263{bottom:162.267067pt;}
.y28_c00263{bottom:189.867067pt;}
.y27_c00263{bottom:217.467067pt;}
.y26_c00263{bottom:244.987067pt;}
.y25_c00263{bottom:272.587067pt;}
.y24_c00263{bottom:300.187067pt;}
.y23_c00263{bottom:327.787067pt;}
.y22_c00263{bottom:392.667067pt;}
.y21_c00263{bottom:413.627067pt;}
.y20_c00263{bottom:434.667200pt;}
.y18_c00263{bottom:449.947200pt;}
.y1f_c00263{bottom:455.707067pt;}
.y17_c00263{bottom:471.387067pt;}
.y1e_c00263{bottom:476.747067pt;}
.y16_c00263{bottom:492.907067pt;}
.y1d_c00263{bottom:497.787067pt;}
.y15_c00263{bottom:514.347067pt;}
.y1c_c00263{bottom:518.827067pt;}
.y13_c00263{bottom:536.427067pt;}
.y1a_c00263{bottom:540.907067pt;}
.y12_c00263{bottom:559.387067pt;}
.y14_c00263{bottom:560.667067pt;}
.y19_c00263{bottom:563.867067pt;}
.y1b_c00263{bottom:565.147067pt;}
.y11_c00263{bottom:608.107067pt;}
.y10_c00263{bottom:634.667067pt;}
.yf_c00263{bottom:655.227067pt;}
.ye_c00263{bottom:688.187067pt;}
.yd_c00263{bottom:715.787067pt;}
.yc_c00263{bottom:743.387067pt;}
.yb_c00263{bottom:770.987067pt;}
.ya_c00263{bottom:798.587067pt;}
.y9_c00263{bottom:826.187067pt;}
.y8_c00263{bottom:850.187067pt;}
.y7_c00263{bottom:1003.227067pt;}
.y4_c00263{bottom:1017.227251pt;}
.y3_c00263{bottom:1032.587243pt;}
.y2_c00263{bottom:1047.867075pt;}
.y1_c00263{bottom:1063.227067pt;}
.h5_c00263{height:42.117188pt;}
.h7_c00263{height:43.031250pt;}
.h1_c00263{height:47.020937pt;}
.h6_c00263{height:48.247344pt;}
.h2_c00263{height:56.156250pt;}
.h3_c00263{height:56.312500pt;}
.h4_c00263{height:66.222969pt;}
.h0_c00263{height:1122.666667pt;}
.w1_c00263{width:793.333333pt;}
.w0_c00263{width:793.626667pt;}
.x0_c00263{left:0.000000pt;}
.x4_c00263{left:113.440000pt;}
.x6_c00263{left:120.560000pt;}
.x7_c00263{left:127.760000pt;}
.x9_c00263{left:169.920000pt;}
.x8_c00263{left:273.600000pt;}
.x5_c00263{left:430.800000pt;}
.xa_c00263{left:452.960000pt;}
.xc_c00263{left:470.400000pt;}
.xd_c00263{left:510.320000pt;}
.x1_c00263{left:577.440000pt;}
.xb_c00263{left:646.000000pt;}
.x3_c00263{left:656.400000pt;}
.x2_c00263{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9aa581cb2098a23db339997f.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.095703;font-style:normal;font-weight:normal;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_385cfe1807a6cd45b5cdcde6.woff2')format("woff");}.ff2_c00264{font-family:ff2_c00264;line-height:1.093262;font-style:normal;font-weight:normal;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_2adf9d0bc9bb833b40b03aec.woff2')format("woff");}.ff3_c00264{font-family:ff3_c00264;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00264{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.lse_c00264{letter-spacing:-0.102204px;}
.ls10_c00264{letter-spacing:-0.072000px;}
.ls13_c00264{letter-spacing:-0.014400px;}
.ls12_c00264{letter-spacing:-0.007200px;}
.lsf_c00264{letter-spacing:0.000000px;}
.ls8_c00264{letter-spacing:0.007200px;}
.ls1_c00264{letter-spacing:0.014400px;}
.lsa_c00264{letter-spacing:0.016200px;}
.ls2_c00264{letter-spacing:0.021600px;}
.lsd_c00264{letter-spacing:0.028800px;}
.ls9_c00264{letter-spacing:0.033552px;}
.ls7_c00264{letter-spacing:0.036000px;}
.ls5_c00264{letter-spacing:0.043200px;}
.lsb_c00264{letter-spacing:0.048600px;}
.ls6_c00264{letter-spacing:0.050400px;}
.ls0_c00264{letter-spacing:0.057600px;}
.ls3_c00264{letter-spacing:0.064800px;}
.lsc_c00264{letter-spacing:0.072000px;}
.ls4_c00264{letter-spacing:0.100800px;}
.ls14_c00264{letter-spacing:0.302400px;}
.ls11_c00264{letter-spacing:1.440000px;}
.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:0.000000px;}
.ws0_c00264{word-spacing:0.192384px;}
.ws2_c00264{word-spacing:0.712800px;}
.ws3_c00264{word-spacing:4.125600px;}
.ws4_c00264{word-spacing:5.414400px;}
._5_c00264{margin-left:-3.909600px;}
._3_c00264{margin-left:-2.361600px;}
._2_c00264{margin-left:-1.166400px;}
._0_c00264{width:1.034064px;}
._4_c00264{width:2.266272px;}
._7_c00264{width:3.477600px;}
._1_c00264{width:4.622400px;}
._6_c00264{width:6.300000px;}
._8_c00264{width:9.331200px;}
._9_c00264{width:10.526400px;}
.fc2_c00264{color:rgb(68,84,106);}
.fc1_c00264{color:rgb(0,0,0);}
.fc0_c00264{color:rgb(32,31,30);}
.fs3_c00264{font-size:54.000000px;}
.fs0_c00264{font-size:60.120000px;}
.fs1_c00264{font-size:72.000000px;}
.fs2_c00264{font-size:83.880000px;}
.y0_c00264{bottom:0.000000px;}
.y5_c00264{bottom:57.360450px;}
.y4_c00264{bottom:78.060450px;}
.y1e_c00264{bottom:114.690450px;}
.y1d_c00264{bottom:141.420450px;}
.y1c_c00264{bottom:172.470450px;}
.y1b_c00264{bottom:203.520450px;}
.y1a_c00264{bottom:234.570450px;}
.y19_c00264{bottom:265.620450px;}
.y18_c00264{bottom:296.670450px;}
.y17_c00264{bottom:327.720450px;}
.y16_c00264{bottom:358.770450px;}
.y15_c00264{bottom:389.820450px;}
.y14_c00264{bottom:420.780450px;}
.y13_c00264{bottom:451.830450px;}
.y12_c00264{bottom:482.880450px;}
.y11_c00264{bottom:762.780450px;}
.y10_c00264{bottom:792.660450px;}
.yf_c00264{bottom:825.960450px;}
.ye_c00264{bottom:863.040450px;}
.yd_c00264{bottom:894.090450px;}
.yc_c00264{bottom:925.140450px;}
.yb_c00264{bottom:956.190450px;}
.ya_c00264{bottom:987.240450px;}
.y9_c00264{bottom:1018.290450px;}
.y8_c00264{bottom:1049.340450px;}
.y7_c00264{bottom:1080.390450px;}
.y6_c00264{bottom:1111.440450px;}
.y3_c00264{bottom:1132.140450px;}
.y2_c00264{bottom:1165.441023px;}
.y1_c00264{bottom:1196.040600px;}
.h5_c00264{height:47.381836px;}
.h6_c00264{height:47.513672px;}
.h1_c00264{height:52.898555px;}
.h2_c00264{height:63.175781px;}
.h3_c00264{height:63.351562px;}
.h4_c00264{height:74.500840px;}
.h0_c00264{height:1263.000000px;}
.w1_c00264{width:892.500000px;}
.w0_c00264{width:892.830000px;}
.x0_c00264{left:0.000000px;}
.x1_c00264{left:127.620000px;}
.x3_c00264{left:135.630000px;}
.x2_c00264{left:738.450000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.lse_c00264{letter-spacing:-0.090848pt;}
.ls10_c00264{letter-spacing:-0.064000pt;}
.ls13_c00264{letter-spacing:-0.012800pt;}
.ls12_c00264{letter-spacing:-0.006400pt;}
.lsf_c00264{letter-spacing:0.000000pt;}
.ls8_c00264{letter-spacing:0.006400pt;}
.ls1_c00264{letter-spacing:0.012800pt;}
.lsa_c00264{letter-spacing:0.014400pt;}
.ls2_c00264{letter-spacing:0.019200pt;}
.lsd_c00264{letter-spacing:0.025600pt;}
.ls9_c00264{letter-spacing:0.029824pt;}
.ls7_c00264{letter-spacing:0.032000pt;}
.ls5_c00264{letter-spacing:0.038400pt;}
.lsb_c00264{letter-spacing:0.043200pt;}
.ls6_c00264{letter-spacing:0.044800pt;}
.ls0_c00264{letter-spacing:0.051200pt;}
.ls3_c00264{letter-spacing:0.057600pt;}
.lsc_c00264{letter-spacing:0.064000pt;}
.ls4_c00264{letter-spacing:0.089600pt;}
.ls14_c00264{letter-spacing:0.268800pt;}
.ls11_c00264{letter-spacing:1.280000pt;}
.ws1_c00264{word-spacing:0.000000pt;}
.ws0_c00264{word-spacing:0.171008pt;}
.ws2_c00264{word-spacing:0.633600pt;}
.ws3_c00264{word-spacing:3.667200pt;}
.ws4_c00264{word-spacing:4.812800pt;}
._5_c00264{margin-left:-3.475200pt;}
._3_c00264{margin-left:-2.099200pt;}
._2_c00264{margin-left:-1.036800pt;}
._0_c00264{width:0.919168pt;}
._4_c00264{width:2.014464pt;}
._7_c00264{width:3.091200pt;}
._1_c00264{width:4.108800pt;}
._6_c00264{width:5.600000pt;}
._8_c00264{width:8.294400pt;}
._9_c00264{width:9.356800pt;}
.fs3_c00264{font-size:48.000000pt;}
.fs0_c00264{font-size:53.440000pt;}
.fs1_c00264{font-size:64.000000pt;}
.fs2_c00264{font-size:74.560000pt;}
.y0_c00264{bottom:0.000000pt;}
.y5_c00264{bottom:50.987067pt;}
.y4_c00264{bottom:69.387067pt;}
.y1e_c00264{bottom:101.947067pt;}
.y1d_c00264{bottom:125.707067pt;}
.y1c_c00264{bottom:153.307067pt;}
.y1b_c00264{bottom:180.907067pt;}
.y1a_c00264{bottom:208.507067pt;}
.y19_c00264{bottom:236.107067pt;}
.y18_c00264{bottom:263.707067pt;}
.y17_c00264{bottom:291.307067pt;}
.y16_c00264{bottom:318.907067pt;}
.y15_c00264{bottom:346.507067pt;}
.y14_c00264{bottom:374.027067pt;}
.y13_c00264{bottom:401.627067pt;}
.y12_c00264{bottom:429.227067pt;}
.y11_c00264{bottom:678.027067pt;}
.y10_c00264{bottom:704.587067pt;}
.yf_c00264{bottom:734.187067pt;}
.ye_c00264{bottom:767.147067pt;}
.yd_c00264{bottom:794.747067pt;}
.yc_c00264{bottom:822.347067pt;}
.yb_c00264{bottom:849.947067pt;}
.ya_c00264{bottom:877.547067pt;}
.y9_c00264{bottom:905.147067pt;}
.y8_c00264{bottom:932.747067pt;}
.y7_c00264{bottom:960.347067pt;}
.y6_c00264{bottom:987.947067pt;}
.y3_c00264{bottom:1006.347067pt;}
.y2_c00264{bottom:1035.947576pt;}
.y1_c00264{bottom:1063.147200pt;}
.h5_c00264{height:42.117188pt;}
.h6_c00264{height:42.234375pt;}
.h1_c00264{height:47.020937pt;}
.h2_c00264{height:56.156250pt;}
.h3_c00264{height:56.312500pt;}
.h4_c00264{height:66.222969pt;}
.h0_c00264{height:1122.666667pt;}
.w1_c00264{width:793.333333pt;}
.w0_c00264{width:793.626667pt;}
.x0_c00264{left:0.000000pt;}
.x1_c00264{left:113.440000pt;}
.x3_c00264{left:120.560000pt;}
.x2_c00264{left:656.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_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_d751c6c8396b1d212f1a730d.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.095703;font-style:normal;font-weight:normal;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_6b69b730062d79ca0dff9602.woff2')format("woff");}.ff2_c00265{font-family:ff2_c00265;line-height:1.093262;font-style:normal;font-weight:normal;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_cd6c230003cc3850b9cf713b.woff2')format("woff");}.ff3_c00265{font-family:ff3_c00265;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00265{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls11_c00265{letter-spacing:-0.057600px;}
.ls13_c00265{letter-spacing:-0.050400px;}
.lse_c00265{letter-spacing:-0.048096px;}
.ls14_c00265{letter-spacing:-0.021600px;}
.ls12_c00265{letter-spacing:-0.014400px;}
.ls10_c00265{letter-spacing:-0.010800px;}
.ls17_c00265{letter-spacing:-0.007200px;}
.lsf_c00265{letter-spacing:0.000000px;}
.ls0_c00265{letter-spacing:0.005400px;}
.ls4_c00265{letter-spacing:0.007200px;}
.ls3_c00265{letter-spacing:0.014400px;}
.ls7_c00265{letter-spacing:0.021600px;}
.ls8_c00265{letter-spacing:0.025164px;}
.lsd_c00265{letter-spacing:0.028800px;}
.ls6_c00265{letter-spacing:0.036000px;}
.ls5_c00265{letter-spacing:0.043200px;}
.ls1_c00265{letter-spacing:0.050400px;}
.ls2_c00265{letter-spacing:0.064800px;}
.lsb_c00265{letter-spacing:0.072000px;}
.ls9_c00265{letter-spacing:0.086400px;}
.lsa_c00265{letter-spacing:0.093600px;}
.lsc_c00265{letter-spacing:0.136800px;}
.ls15_c00265{letter-spacing:6.840000px;}
.ls16_c00265{letter-spacing:7.200000px;}
.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;}
}
.ws1_c00265{word-spacing:0.000000px;}
.ws0_c00265{word-spacing:0.138276px;}
.ws2_c00265{word-spacing:0.172800px;}
.ws3_c00265{word-spacing:0.189000px;}
.ws4_c00265{word-spacing:12.463200px;}
._1d_c00265{margin-left:-7.158600px;}
._5_c00265{margin-left:-5.743800px;}
._4_c00265{margin-left:-4.363200px;}
._1e_c00265{margin-left:-2.394000px;}
._0_c00265{margin-left:-1.333800px;}
._1c_c00265{width:1.188000px;}
._2_c00265{width:2.491200px;}
._1_c00265{width:3.549600px;}
._8_c00265{width:5.724000px;}
._1b_c00265{width:6.796800px;}
._6_c00265{width:7.970400px;}
._7_c00265{width:9.014400px;}
._20_c00265{width:11.307600px;}
._1f_c00265{width:12.564000px;}
._21_c00265{width:14.385600px;}
._3_c00265{width:15.465600px;}
._b_c00265{width:69.408000px;}
._a_c00265{width:70.790400px;}
._c_c00265{width:86.716800px;}
._11_c00265{width:177.120000px;}
._18_c00265{width:209.376000px;}
._f_c00265{width:220.334400px;}
._1a_c00265{width:244.065600px;}
._10_c00265{width:250.200000px;}
._14_c00265{width:256.356000px;}
._e_c00265{width:262.800000px;}
._15_c00265{width:286.200000px;}
._13_c00265{width:298.800000px;}
._d_c00265{width:309.456000px;}
._12_c00265{width:349.797600px;}
._16_c00265{width:365.040000px;}
._17_c00265{width:376.027200px;}
._19_c00265{width:449.272800px;}
._9_c00265{width:457.056000px;}
.fc1_c00265{color:rgb(68,84,106);}
.fc0_c00265{color:rgb(0,0,0);}
.fs2_c00265{font-size:54.000000px;}
.fs0_c00265{font-size:60.120000px;}
.fs1_c00265{font-size:72.000000px;}
.fs3_c00265{font-size:83.880000px;}
.y0_c00265{bottom:0.000000px;}
.y6_c00265{bottom:57.360450px;}
.y5_c00265{bottom:78.060450px;}
.y24_c00265{bottom:128.190450px;}
.y23_c00265{bottom:159.240450px;}
.y22_c00265{bottom:190.290450px;}
.y21_c00265{bottom:221.340450px;}
.y20_c00265{bottom:252.390450px;}
.y1f_c00265{bottom:283.440450px;}
.y1e_c00265{bottom:314.490450px;}
.y1d_c00265{bottom:345.540450px;}
.y1c_c00265{bottom:376.590450px;}
.y1b_c00265{bottom:407.550450px;}
.y1a_c00265{bottom:438.600450px;}
.y19_c00265{bottom:469.650450px;}
.y18_c00265{bottom:501.510450px;}
.y17_c00265{bottom:533.280450px;}
.y16_c00265{bottom:565.050450px;}
.y15_c00265{bottom:596.910450px;}
.y14_c00265{bottom:628.680450px;}
.y13_c00265{bottom:660.450450px;}
.y12_c00265{bottom:692.310450px;}
.y11_c00265{bottom:727.860450px;}
.y10_c00265{bottom:757.830450px;}
.yf_c00265{bottom:780.870450px;}
.ye_c00265{bottom:817.950450px;}
.yd_c00265{bottom:849.000450px;}
.yc_c00265{bottom:880.050450px;}
.yb_c00265{bottom:911.100450px;}
.ya_c00265{bottom:942.150450px;}
.y9_c00265{bottom:973.200450px;}
.y8_c00265{bottom:1000.200450px;}
.y7_c00265{bottom:1128.630450px;}
.y4_c00265{bottom:1144.380657px;}
.y3_c00265{bottom:1161.660648px;}
.y2_c00265{bottom:1178.850459px;}
.y1_c00265{bottom:1196.130450px;}
.h3_c00265{height:47.513672px;}
.h1_c00265{height:52.898555px;}
.h2_c00265{height:63.175781px;}
.h5_c00265{height:63.351562px;}
.h4_c00265{height:74.500840px;}
.h0_c00265{height:1263.000000px;}
.w1_c00265{width:892.500000px;}
.w0_c00265{width:892.830000px;}
.x0_c00265{left:0.000000px;}
.x4_c00265{left:127.620000px;}
.x6_c00265{left:183.600000px;}
.x1_c00265{left:649.620000px;}
.x3_c00265{left:738.450000px;}
.x5_c00265{left:759.240000px;}
.x2_c00265{left:765.450198px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls11_c00265{letter-spacing:-0.051200pt;}
.ls13_c00265{letter-spacing:-0.044800pt;}
.lse_c00265{letter-spacing:-0.042752pt;}
.ls14_c00265{letter-spacing:-0.019200pt;}
.ls12_c00265{letter-spacing:-0.012800pt;}
.ls10_c00265{letter-spacing:-0.009600pt;}
.ls17_c00265{letter-spacing:-0.006400pt;}
.lsf_c00265{letter-spacing:0.000000pt;}
.ls0_c00265{letter-spacing:0.004800pt;}
.ls4_c00265{letter-spacing:0.006400pt;}
.ls3_c00265{letter-spacing:0.012800pt;}
.ls7_c00265{letter-spacing:0.019200pt;}
.ls8_c00265{letter-spacing:0.022368pt;}
.lsd_c00265{letter-spacing:0.025600pt;}
.ls6_c00265{letter-spacing:0.032000pt;}
.ls5_c00265{letter-spacing:0.038400pt;}
.ls1_c00265{letter-spacing:0.044800pt;}
.ls2_c00265{letter-spacing:0.057600pt;}
.lsb_c00265{letter-spacing:0.064000pt;}
.ls9_c00265{letter-spacing:0.076800pt;}
.lsa_c00265{letter-spacing:0.083200pt;}
.lsc_c00265{letter-spacing:0.121600pt;}
.ls15_c00265{letter-spacing:6.080000pt;}
.ls16_c00265{letter-spacing:6.400000pt;}
.ws1_c00265{word-spacing:0.000000pt;}
.ws0_c00265{word-spacing:0.122912pt;}
.ws2_c00265{word-spacing:0.153600pt;}
.ws3_c00265{word-spacing:0.168000pt;}
.ws4_c00265{word-spacing:11.078400pt;}
._1d_c00265{margin-left:-6.363200pt;}
._5_c00265{margin-left:-5.105600pt;}
._4_c00265{margin-left:-3.878400pt;}
._1e_c00265{margin-left:-2.128000pt;}
._0_c00265{margin-left:-1.185600pt;}
._1c_c00265{width:1.056000pt;}
._2_c00265{width:2.214400pt;}
._1_c00265{width:3.155200pt;}
._8_c00265{width:5.088000pt;}
._1b_c00265{width:6.041600pt;}
._6_c00265{width:7.084800pt;}
._7_c00265{width:8.012800pt;}
._20_c00265{width:10.051200pt;}
._1f_c00265{width:11.168000pt;}
._21_c00265{width:12.787200pt;}
._3_c00265{width:13.747200pt;}
._b_c00265{width:61.696000pt;}
._a_c00265{width:62.924800pt;}
._c_c00265{width:77.081600pt;}
._11_c00265{width:157.440000pt;}
._18_c00265{width:186.112000pt;}
._f_c00265{width:195.852800pt;}
._1a_c00265{width:216.947200pt;}
._10_c00265{width:222.400000pt;}
._14_c00265{width:227.872000pt;}
._e_c00265{width:233.600000pt;}
._15_c00265{width:254.400000pt;}
._13_c00265{width:265.600000pt;}
._d_c00265{width:275.072000pt;}
._12_c00265{width:310.931200pt;}
._16_c00265{width:324.480000pt;}
._17_c00265{width:334.246400pt;}
._19_c00265{width:399.353600pt;}
._9_c00265{width:406.272000pt;}
.fs2_c00265{font-size:48.000000pt;}
.fs0_c00265{font-size:53.440000pt;}
.fs1_c00265{font-size:64.000000pt;}
.fs3_c00265{font-size:74.560000pt;}
.y0_c00265{bottom:0.000000pt;}
.y6_c00265{bottom:50.987067pt;}
.y5_c00265{bottom:69.387067pt;}
.y24_c00265{bottom:113.947067pt;}
.y23_c00265{bottom:141.547067pt;}
.y22_c00265{bottom:169.147067pt;}
.y21_c00265{bottom:196.747067pt;}
.y20_c00265{bottom:224.347067pt;}
.y1f_c00265{bottom:251.947067pt;}
.y1e_c00265{bottom:279.547067pt;}
.y1d_c00265{bottom:307.147067pt;}
.y1c_c00265{bottom:334.747067pt;}
.y1b_c00265{bottom:362.267067pt;}
.y1a_c00265{bottom:389.867067pt;}
.y19_c00265{bottom:417.467067pt;}
.y18_c00265{bottom:445.787067pt;}
.y17_c00265{bottom:474.027067pt;}
.y16_c00265{bottom:502.267067pt;}
.y15_c00265{bottom:530.587067pt;}
.y14_c00265{bottom:558.827067pt;}
.y13_c00265{bottom:587.067067pt;}
.y12_c00265{bottom:615.387067pt;}
.y11_c00265{bottom:646.987067pt;}
.y10_c00265{bottom:673.627067pt;}
.yf_c00265{bottom:694.107067pt;}
.ye_c00265{bottom:727.067067pt;}
.yd_c00265{bottom:754.667067pt;}
.yc_c00265{bottom:782.267067pt;}
.yb_c00265{bottom:809.867067pt;}
.ya_c00265{bottom:837.467067pt;}
.y9_c00265{bottom:865.067067pt;}
.y8_c00265{bottom:889.067067pt;}
.y7_c00265{bottom:1003.227067pt;}
.y4_c00265{bottom:1017.227251pt;}
.y3_c00265{bottom:1032.587243pt;}
.y2_c00265{bottom:1047.867075pt;}
.y1_c00265{bottom:1063.227067pt;}
.h3_c00265{height:42.234375pt;}
.h1_c00265{height:47.020937pt;}
.h2_c00265{height:56.156250pt;}
.h5_c00265{height:56.312500pt;}
.h4_c00265{height:66.222969pt;}
.h0_c00265{height:1122.666667pt;}
.w1_c00265{width:793.333333pt;}
.w0_c00265{width:793.626667pt;}
.x0_c00265{left:0.000000pt;}
.x4_c00265{left:113.440000pt;}
.x6_c00265{left:163.200000pt;}
.x1_c00265{left:577.440000pt;}
.x3_c00265{left:656.400000pt;}
.x5_c00265{left:674.880000pt;}
.x2_c00265{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7bcad248b285b5660912410d.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.095703;font-style:normal;font-weight:normal;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_6d16f6c9e8880748ff949600.woff2')format("woff");}.ff2_c00266{font-family:ff2_c00266;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00266{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls10_c00266{letter-spacing:-0.252000px;}
.lse_c00266{letter-spacing:-0.102204px;}
.ls12_c00266{letter-spacing:-0.028800px;}
.ls11_c00266{letter-spacing:-0.016200px;}
.ls13_c00266{letter-spacing:-0.014400px;}
.lsf_c00266{letter-spacing:0.000000px;}
.ls5_c00266{letter-spacing:0.007200px;}
.ls9_c00266{letter-spacing:0.010800px;}
.ls4_c00266{letter-spacing:0.014400px;}
.ls6_c00266{letter-spacing:0.021600px;}
.ls1_c00266{letter-spacing:0.028800px;}
.ls0_c00266{letter-spacing:0.036000px;}
.ls8_c00266{letter-spacing:0.037800px;}
.ls2_c00266{letter-spacing:0.043200px;}
.lsc_c00266{letter-spacing:0.050400px;}
.lsa_c00266{letter-spacing:0.054000px;}
.ls3_c00266{letter-spacing:0.057600px;}
.lsb_c00266{letter-spacing:0.072000px;}
.lsd_c00266{letter-spacing:0.093600px;}
.ls7_c00266{letter-spacing:0.100800px;}
.ls14_c00266{letter-spacing:4.320000px;}
.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;}
}
.ws1_c00266{word-spacing:0.000000px;}
.ws5_c00266{word-spacing:0.124200px;}
.ws0_c00266{word-spacing:0.192384px;}
.ws3_c00266{word-spacing:2.300400px;}
.ws4_c00266{word-spacing:2.327400px;}
.ws2_c00266{word-spacing:2.354400px;}
._b_c00266{margin-left:-4.320000px;}
._5_c00266{margin-left:-2.894400px;}
._4_c00266{margin-left:-1.108800px;}
._0_c00266{width:1.034064px;}
._8_c00266{width:3.628800px;}
._7_c00266{width:4.651200px;}
._2_c00266{width:5.940000px;}
._1_c00266{width:7.164000px;}
._6_c00266{width:8.661600px;}
._9_c00266{width:9.820800px;}
._3_c00266{width:11.131200px;}
._a_c00266{width:12.254400px;}
.fc2_c00266{color:rgb(68,84,106);}
.fc1_c00266{color:rgb(0,0,0);}
.fc0_c00266{color:rgb(32,31,30);}
.fs2_c00266{font-size:54.000000px;}
.fs0_c00266{font-size:60.120000px;}
.fs1_c00266{font-size:72.000000px;}
.y0_c00266{bottom:0.000000px;}
.y5_c00266{bottom:57.360450px;}
.y4_c00266{bottom:78.060450px;}
.y21_c00266{bottom:131.880450px;}
.y20_c00266{bottom:174.631800px;}
.y1f_c00266{bottom:212.881350px;}
.y1e_c00266{bottom:251.221350px;}
.y1d_c00266{bottom:289.470900px;}
.y1c_c00266{bottom:327.720450px;}
.y1b_c00266{bottom:366.420450px;}
.y1a_c00266{bottom:397.560450px;}
.y19_c00266{bottom:428.610450px;}
.y18_c00266{bottom:459.660450px;}
.y17_c00266{bottom:490.710450px;}
.y16_c00266{bottom:521.760450px;}
.y15_c00266{bottom:564.690450px;}
.y14_c00266{bottom:595.830450px;}
.y13_c00266{bottom:626.880450px;}
.y12_c00266{bottom:657.930450px;}
.y11_c00266{bottom:688.980450px;}
.y10_c00266{bottom:715.890450px;}
.yf_c00266{bottom:851.791050px;}
.ye_c00266{bottom:867.360600px;}
.yd_c00266{bottom:894.090450px;}
.yc_c00266{bottom:925.140450px;}
.yb_c00266{bottom:956.190450px;}
.ya_c00266{bottom:987.240450px;}
.y9_c00266{bottom:1018.290450px;}
.y8_c00266{bottom:1049.340450px;}
.y7_c00266{bottom:1080.390450px;}
.y6_c00266{bottom:1111.440450px;}
.y3_c00266{bottom:1132.140450px;}
.y2_c00266{bottom:1165.441023px;}
.y1_c00266{bottom:1196.040600px;}
.h3_c00266{height:47.513672px;}
.h1_c00266{height:52.898555px;}
.h2_c00266{height:63.175781px;}
.h0_c00266{height:1263.000000px;}
.w1_c00266{width:892.500000px;}
.w0_c00266{width:892.830000px;}
.x0_c00266{left:0.000000px;}
.x1_c00266{left:127.620000px;}
.x2_c00266{left:738.450000px;}
.x3_c00266{left:755.819850px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls10_c00266{letter-spacing:-0.224000pt;}
.lse_c00266{letter-spacing:-0.090848pt;}
.ls12_c00266{letter-spacing:-0.025600pt;}
.ls11_c00266{letter-spacing:-0.014400pt;}
.ls13_c00266{letter-spacing:-0.012800pt;}
.lsf_c00266{letter-spacing:0.000000pt;}
.ls5_c00266{letter-spacing:0.006400pt;}
.ls9_c00266{letter-spacing:0.009600pt;}
.ls4_c00266{letter-spacing:0.012800pt;}
.ls6_c00266{letter-spacing:0.019200pt;}
.ls1_c00266{letter-spacing:0.025600pt;}
.ls0_c00266{letter-spacing:0.032000pt;}
.ls8_c00266{letter-spacing:0.033600pt;}
.ls2_c00266{letter-spacing:0.038400pt;}
.lsc_c00266{letter-spacing:0.044800pt;}
.lsa_c00266{letter-spacing:0.048000pt;}
.ls3_c00266{letter-spacing:0.051200pt;}
.lsb_c00266{letter-spacing:0.064000pt;}
.lsd_c00266{letter-spacing:0.083200pt;}
.ls7_c00266{letter-spacing:0.089600pt;}
.ls14_c00266{letter-spacing:3.840000pt;}
.ws1_c00266{word-spacing:0.000000pt;}
.ws5_c00266{word-spacing:0.110400pt;}
.ws0_c00266{word-spacing:0.171008pt;}
.ws3_c00266{word-spacing:2.044800pt;}
.ws4_c00266{word-spacing:2.068800pt;}
.ws2_c00266{word-spacing:2.092800pt;}
._b_c00266{margin-left:-3.840000pt;}
._5_c00266{margin-left:-2.572800pt;}
._4_c00266{margin-left:-0.985600pt;}
._0_c00266{width:0.919168pt;}
._8_c00266{width:3.225600pt;}
._7_c00266{width:4.134400pt;}
._2_c00266{width:5.280000pt;}
._1_c00266{width:6.368000pt;}
._6_c00266{width:7.699200pt;}
._9_c00266{width:8.729600pt;}
._3_c00266{width:9.894400pt;}
._a_c00266{width:10.892800pt;}
.fs2_c00266{font-size:48.000000pt;}
.fs0_c00266{font-size:53.440000pt;}
.fs1_c00266{font-size:64.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y5_c00266{bottom:50.987067pt;}
.y4_c00266{bottom:69.387067pt;}
.y21_c00266{bottom:117.227067pt;}
.y20_c00266{bottom:155.228267pt;}
.y1f_c00266{bottom:189.227867pt;}
.y1e_c00266{bottom:223.307867pt;}
.y1d_c00266{bottom:257.307467pt;}
.y1c_c00266{bottom:291.307067pt;}
.y1b_c00266{bottom:325.707067pt;}
.y1a_c00266{bottom:353.387067pt;}
.y19_c00266{bottom:380.987067pt;}
.y18_c00266{bottom:408.587067pt;}
.y17_c00266{bottom:436.187067pt;}
.y16_c00266{bottom:463.787067pt;}
.y15_c00266{bottom:501.947067pt;}
.y14_c00266{bottom:529.627067pt;}
.y13_c00266{bottom:557.227067pt;}
.y12_c00266{bottom:584.827067pt;}
.y11_c00266{bottom:612.427067pt;}
.y10_c00266{bottom:636.347067pt;}
.yf_c00266{bottom:757.147600pt;}
.ye_c00266{bottom:770.987200pt;}
.yd_c00266{bottom:794.747067pt;}
.yc_c00266{bottom:822.347067pt;}
.yb_c00266{bottom:849.947067pt;}
.ya_c00266{bottom:877.547067pt;}
.y9_c00266{bottom:905.147067pt;}
.y8_c00266{bottom:932.747067pt;}
.y7_c00266{bottom:960.347067pt;}
.y6_c00266{bottom:987.947067pt;}
.y3_c00266{bottom:1006.347067pt;}
.y2_c00266{bottom:1035.947576pt;}
.y1_c00266{bottom:1063.147200pt;}
.h3_c00266{height:42.234375pt;}
.h1_c00266{height:47.020937pt;}
.h2_c00266{height:56.156250pt;}
.h0_c00266{height:1122.666667pt;}
.w1_c00266{width:793.333333pt;}
.w0_c00266{width:793.626667pt;}
.x0_c00266{left:0.000000pt;}
.x1_c00266{left:113.440000pt;}
.x2_c00266{left:656.400000pt;}
.x3_c00266{left:671.839867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb34bdd8f90a93d5b27f21dc.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.095703;font-style:normal;font-weight:normal;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_6f8d65a5ff87737a9134ead2.woff2')format("woff");}.ff2_c00267{font-family:ff2_c00267;line-height:1.093262;font-style: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;}
.ls16_c00267{letter-spacing:-0.273600px;}
.ls15_c00267{letter-spacing:-0.244800px;}
.ls10_c00267{letter-spacing:-0.048096px;}
.ls12_c00267{letter-spacing:-0.021600px;}
.ls17_c00267{letter-spacing:-0.014400px;}
.ls11_c00267{letter-spacing:0.000000px;}
.ls1_c00267{letter-spacing:0.005400px;}
.lsc_c00267{letter-spacing:0.007200px;}
.ls7_c00267{letter-spacing:0.014400px;}
.ls0_c00267{letter-spacing:0.016200px;}
.ls4_c00267{letter-spacing:0.021600px;}
.lsd_c00267{letter-spacing:0.028800px;}
.ls5_c00267{letter-spacing:0.036000px;}
.ls2_c00267{letter-spacing:0.043200px;}
.lse_c00267{letter-spacing:0.050400px;}
.ls9_c00267{letter-spacing:0.057600px;}
.ls8_c00267{letter-spacing:0.064800px;}
.lsf_c00267{letter-spacing:0.079200px;}
.lsb_c00267{letter-spacing:0.086400px;}
.ls3_c00267{letter-spacing:0.093600px;}
.ls6_c00267{letter-spacing:0.129600px;}
.ls13_c00267{letter-spacing:2.160000px;}
.lsa_c00267{letter-spacing:8.280000px;}
.ls14_c00267{letter-spacing:14.400000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00267{word-spacing:-18.014400px;}
.ws2_c00267{word-spacing:-18.000000px;}
.ws1_c00267{word-spacing:-17.755200px;}
.ws7_c00267{word-spacing:-1.483200px;}
.ws6_c00267{word-spacing:-0.183600px;}
.ws4_c00267{word-spacing:0.000000px;}
.ws3_c00267{word-spacing:0.138276px;}
.ws5_c00267{word-spacing:0.162000px;}
.ws9_c00267{word-spacing:2.030400px;}
.ws8_c00267{word-spacing:2.181600px;}
._3_c00267{margin-left:-14.328000px;}
._1_c00267{margin-left:-2.203200px;}
._0_c00267{margin-left:-1.112400px;}
._b_c00267{width:1.036800px;}
._2_c00267{width:2.138400px;}
._c_c00267{width:5.356800px;}
._6_c00267{width:6.364800px;}
._7_c00267{width:7.761600px;}
._8_c00267{width:8.812800px;}
._a_c00267{width:10.087200px;}
._9_c00267{width:12.204000px;}
._4_c00267{width:13.406400px;}
._5_c00267{width:14.500800px;}
.fc1_c00267{color:rgb(68,84,106);}
.fc0_c00267{color:rgb(0,0,0);}
.fs2_c00267{font-size:54.000000px;}
.fs0_c00267{font-size:60.120000px;}
.fs1_c00267{font-size:72.000000px;}
.y0_c00267{bottom:0.000000px;}
.y6_c00267{bottom:57.360450px;}
.y5_c00267{bottom:78.060450px;}
.y1f_c00267{bottom:138.180450px;}
.y1e_c00267{bottom:181.200450px;}
.y1d_c00267{bottom:224.220450px;}
.y1c_c00267{bottom:267.240450px;}
.y1b_c00267{bottom:310.350450px;}
.y1a_c00267{bottom:353.370450px;}
.y19_c00267{bottom:384.510450px;}
.y18_c00267{bottom:415.560450px;}
.y17_c00267{bottom:446.610450px;}
.y16_c00267{bottom:477.660450px;}
.y15_c00267{bottom:508.710450px;}
.y14_c00267{bottom:539.760450px;}
.y13_c00267{bottom:570.810450px;}
.y12_c00267{bottom:601.860450px;}
.y11_c00267{bottom:632.910450px;}
.y10_c00267{bottom:663.960450px;}
.yf_c00267{bottom:695.010450px;}
.ye_c00267{bottom:726.060450px;}
.yd_c00267{bottom:757.110450px;}
.yc_c00267{bottom:800.040450px;}
.yb_c00267{bottom:831.180450px;}
.ya_c00267{bottom:862.230450px;}
.y9_c00267{bottom:905.160450px;}
.y8_c00267{bottom:944.670000px;}
.y7_c00267{bottom:1128.630450px;}
.y4_c00267{bottom:1144.380657px;}
.y3_c00267{bottom:1161.660648px;}
.y2_c00267{bottom:1178.850459px;}
.y1_c00267{bottom:1196.130450px;}
.h3_c00267{height:47.513672px;}
.h1_c00267{height:52.898555px;}
.h2_c00267{height:63.175781px;}
.h4_c00267{height:63.351562px;}
.h0_c00267{height:1263.000000px;}
.w1_c00267{width:892.500000px;}
.w0_c00267{width:892.830000px;}
.x0_c00267{left:0.000000px;}
.x4_c00267{left:127.620000px;}
.x1_c00267{left:649.620000px;}
.x3_c00267{left:738.450000px;}
.x5_c00267{left:742.770450px;}
.x2_c00267{left:765.450198px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls16_c00267{letter-spacing:-0.243200pt;}
.ls15_c00267{letter-spacing:-0.217600pt;}
.ls10_c00267{letter-spacing:-0.042752pt;}
.ls12_c00267{letter-spacing:-0.019200pt;}
.ls17_c00267{letter-spacing:-0.012800pt;}
.ls11_c00267{letter-spacing:0.000000pt;}
.ls1_c00267{letter-spacing:0.004800pt;}
.lsc_c00267{letter-spacing:0.006400pt;}
.ls7_c00267{letter-spacing:0.012800pt;}
.ls0_c00267{letter-spacing:0.014400pt;}
.ls4_c00267{letter-spacing:0.019200pt;}
.lsd_c00267{letter-spacing:0.025600pt;}
.ls5_c00267{letter-spacing:0.032000pt;}
.ls2_c00267{letter-spacing:0.038400pt;}
.lse_c00267{letter-spacing:0.044800pt;}
.ls9_c00267{letter-spacing:0.051200pt;}
.ls8_c00267{letter-spacing:0.057600pt;}
.lsf_c00267{letter-spacing:0.070400pt;}
.lsb_c00267{letter-spacing:0.076800pt;}
.ls3_c00267{letter-spacing:0.083200pt;}
.ls6_c00267{letter-spacing:0.115200pt;}
.ls13_c00267{letter-spacing:1.920000pt;}
.lsa_c00267{letter-spacing:7.360000pt;}
.ls14_c00267{letter-spacing:12.800000pt;}
.ws0_c00267{word-spacing:-16.012800pt;}
.ws2_c00267{word-spacing:-16.000000pt;}
.ws1_c00267{word-spacing:-15.782400pt;}
.ws7_c00267{word-spacing:-1.318400pt;}
.ws6_c00267{word-spacing:-0.163200pt;}
.ws4_c00267{word-spacing:0.000000pt;}
.ws3_c00267{word-spacing:0.122912pt;}
.ws5_c00267{word-spacing:0.144000pt;}
.ws9_c00267{word-spacing:1.804800pt;}
.ws8_c00267{word-spacing:1.939200pt;}
._3_c00267{margin-left:-12.736000pt;}
._1_c00267{margin-left:-1.958400pt;}
._0_c00267{margin-left:-0.988800pt;}
._b_c00267{width:0.921600pt;}
._2_c00267{width:1.900800pt;}
._c_c00267{width:4.761600pt;}
._6_c00267{width:5.657600pt;}
._7_c00267{width:6.899200pt;}
._8_c00267{width:7.833600pt;}
._a_c00267{width:8.966400pt;}
._9_c00267{width:10.848000pt;}
._4_c00267{width:11.916800pt;}
._5_c00267{width:12.889600pt;}
.fs2_c00267{font-size:48.000000pt;}
.fs0_c00267{font-size:53.440000pt;}
.fs1_c00267{font-size:64.000000pt;}
.y0_c00267{bottom:0.000000pt;}
.y6_c00267{bottom:50.987067pt;}
.y5_c00267{bottom:69.387067pt;}
.y1f_c00267{bottom:122.827067pt;}
.y1e_c00267{bottom:161.067067pt;}
.y1d_c00267{bottom:199.307067pt;}
.y1c_c00267{bottom:237.547067pt;}
.y1b_c00267{bottom:275.867067pt;}
.y1a_c00267{bottom:314.107067pt;}
.y19_c00267{bottom:341.787067pt;}
.y18_c00267{bottom:369.387067pt;}
.y17_c00267{bottom:396.987067pt;}
.y16_c00267{bottom:424.587067pt;}
.y15_c00267{bottom:452.187067pt;}
.y14_c00267{bottom:479.787067pt;}
.y13_c00267{bottom:507.387067pt;}
.y12_c00267{bottom:534.987067pt;}
.y11_c00267{bottom:562.587067pt;}
.y10_c00267{bottom:590.187067pt;}
.yf_c00267{bottom:617.787067pt;}
.ye_c00267{bottom:645.387067pt;}
.yd_c00267{bottom:672.987067pt;}
.yc_c00267{bottom:711.147067pt;}
.yb_c00267{bottom:738.827067pt;}
.ya_c00267{bottom:766.427067pt;}
.y9_c00267{bottom:804.587067pt;}
.y8_c00267{bottom:839.706667pt;}
.y7_c00267{bottom:1003.227067pt;}
.y4_c00267{bottom:1017.227251pt;}
.y3_c00267{bottom:1032.587243pt;}
.y2_c00267{bottom:1047.867075pt;}
.y1_c00267{bottom:1063.227067pt;}
.h3_c00267{height:42.234375pt;}
.h1_c00267{height:47.020937pt;}
.h2_c00267{height:56.156250pt;}
.h4_c00267{height:56.312500pt;}
.h0_c00267{height:1122.666667pt;}
.w1_c00267{width:793.333333pt;}
.w0_c00267{width:793.626667pt;}
.x0_c00267{left:0.000000pt;}
.x4_c00267{left:113.440000pt;}
.x1_c00267{left:577.440000pt;}
.x3_c00267{left:656.400000pt;}
.x5_c00267{left:660.240400pt;}
.x2_c00267{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc252175672fd81021e58ac6.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.095703;font-style:normal;font-weight:normal;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_1d5afa5112f3bffeba7d1a7e.woff2')format("woff");}.ff2_c00268{font-family:ff2_c00268;line-height:1.093262;font-style:normal;font-weight:normal;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_bf83a3463f75db72a05b4de0.woff2')format("woff");}.ff3_c00268{font-family:ff3_c00268;line-height:1.104004;font-style: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);}
.v0_c00268{vertical-align:0.000000px;}
.ls15_c00268{letter-spacing:-0.237600px;}
.ls16_c00268{letter-spacing:-0.172800px;}
.ls10_c00268{letter-spacing:-0.102204px;}
.ls12_c00268{letter-spacing:-0.057600px;}
.ls14_c00268{letter-spacing:-0.036000px;}
.ls13_c00268{letter-spacing:-0.014400px;}
.ls17_c00268{letter-spacing:-0.007200px;}
.ls11_c00268{letter-spacing:0.000000px;}
.ls3_c00268{letter-spacing:0.005400px;}
.ls4_c00268{letter-spacing:0.007200px;}
.ls2_c00268{letter-spacing:0.010800px;}
.ls6_c00268{letter-spacing:0.014400px;}
.lsc_c00268{letter-spacing:0.021600px;}
.ls9_c00268{letter-spacing:0.028800px;}
.ls0_c00268{letter-spacing:0.033552px;}
.lse_c00268{letter-spacing:0.036000px;}
.lsa_c00268{letter-spacing:0.043200px;}
.lsd_c00268{letter-spacing:0.057600px;}
.ls1_c00268{letter-spacing:0.058716px;}
.lsf_c00268{letter-spacing:0.064800px;}
.ls5_c00268{letter-spacing:0.072000px;}
.ls7_c00268{letter-spacing:0.079200px;}
.ls8_c00268{letter-spacing:0.086400px;}
.lsb_c00268{letter-spacing:0.288000px;}
.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;}
}
.ws1_c00268{word-spacing:0.000000px;}
.ws2_c00268{word-spacing:0.167400px;}
.ws0_c00268{word-spacing:0.192384px;}
.ws3_c00268{word-spacing:1.454400px;}
.ws4_c00268{word-spacing:11.282400px;}
._11_c00268{margin-left:-4.363200px;}
._12_c00268{margin-left:-3.335328px;}
._d_c00268{margin-left:-2.174400px;}
._1_c00268{margin-left:-1.128600px;}
._0_c00268{width:1.034064px;}
._10_c00268{width:2.592000px;}
._f_c00268{width:3.960000px;}
._c_c00268{width:5.256000px;}
._b_c00268{width:6.436800px;}
._e_c00268{width:7.444800px;}
._16_c00268{width:8.654400px;}
._14_c00268{width:9.748800px;}
._15_c00268{width:10.987200px;}
._17_c00268{width:12.268800px;}
._13_c00268{width:16.171200px;}
._3_c00268{width:67.190400px;}
._4_c00268{width:83.880000px;}
._7_c00268{width:134.956800px;}
._9_c00268{width:218.894400px;}
._5_c00268{width:259.200000px;}
._8_c00268{width:295.200000px;}
._6_c00268{width:322.545600px;}
._a_c00268{width:338.904000px;}
._2_c00268{width:342.684000px;}
.fc3_c00268{color:rgb(255,0,0);}
.fc2_c00268{color:rgb(68,84,106);}
.fc1_c00268{color:rgb(0,0,0);}
.fc0_c00268{color:rgb(32,31,30);}
.fs3_c00268{font-size:54.000000px;}
.fs0_c00268{font-size:60.120000px;}
.fs1_c00268{font-size:72.000000px;}
.fs2_c00268{font-size:83.880000px;}
.y0_c00268{bottom:0.000000px;}
.y5_c00268{bottom:57.360450px;}
.y4_c00268{bottom:78.060450px;}
.y25_c00268{bottom:130.620450px;}
.y24_c00268{bottom:161.670450px;}
.y23_c00268{bottom:192.720450px;}
.y22_c00268{bottom:223.770450px;}
.y21_c00268{bottom:254.820450px;}
.y20_c00268{bottom:285.870450px;}
.y1f_c00268{bottom:316.920450px;}
.y1e_c00268{bottom:347.970450px;}
.y1d_c00268{bottom:379.020450px;}
.y1c_c00268{bottom:410.070450px;}
.y1b_c00268{bottom:441.120450px;}
.y1a_c00268{bottom:472.170450px;}
.y19_c00268{bottom:503.220450px;}
.y18_c00268{bottom:534.270450px;}
.y17_c00268{bottom:565.320450px;}
.y16_c00268{bottom:596.370450px;}
.y15_c00268{bottom:627.420450px;}
.y14_c00268{bottom:658.470450px;}
.y13_c00268{bottom:689.520450px;}
.y12_c00268{bottom:720.570450px;}
.y11_c00268{bottom:751.530450px;}
.y10_c00268{bottom:794.550450px;}
.yf_c00268{bottom:826.410450px;}
.ye_c00268{bottom:858.180600px;}
.yd_c00268{bottom:890.040600px;}
.yc_c00268{bottom:921.810450px;}
.yb_c00268{bottom:953.580450px;}
.ya_c00268{bottom:985.440450px;}
.y9_c00268{bottom:1020.360450px;}
.y8_c00268{bottom:1055.370450px;}
.y7_c00268{bottom:1085.250450px;}
.y6_c00268{bottom:1108.380450px;}
.y3_c00268{bottom:1132.140450px;}
.y2_c00268{bottom:1165.441023px;}
.y1_c00268{bottom:1196.040600px;}
.h4_c00268{height:47.513672px;}
.h1_c00268{height:52.898555px;}
.h2_c00268{height:63.175781px;}
.h5_c00268{height:63.351562px;}
.h3_c00268{height:74.500840px;}
.h0_c00268{height:1263.000000px;}
.w1_c00268{width:892.500000px;}
.w0_c00268{width:892.830000px;}
.x0_c00268{left:0.000000px;}
.x1_c00268{left:127.620000px;}
.x3_c00268{left:307.260000px;}
.x2_c00268{left:738.450000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls15_c00268{letter-spacing:-0.211200pt;}
.ls16_c00268{letter-spacing:-0.153600pt;}
.ls10_c00268{letter-spacing:-0.090848pt;}
.ls12_c00268{letter-spacing:-0.051200pt;}
.ls14_c00268{letter-spacing:-0.032000pt;}
.ls13_c00268{letter-spacing:-0.012800pt;}
.ls17_c00268{letter-spacing:-0.006400pt;}
.ls11_c00268{letter-spacing:0.000000pt;}
.ls3_c00268{letter-spacing:0.004800pt;}
.ls4_c00268{letter-spacing:0.006400pt;}
.ls2_c00268{letter-spacing:0.009600pt;}
.ls6_c00268{letter-spacing:0.012800pt;}
.lsc_c00268{letter-spacing:0.019200pt;}
.ls9_c00268{letter-spacing:0.025600pt;}
.ls0_c00268{letter-spacing:0.029824pt;}
.lse_c00268{letter-spacing:0.032000pt;}
.lsa_c00268{letter-spacing:0.038400pt;}
.lsd_c00268{letter-spacing:0.051200pt;}
.ls1_c00268{letter-spacing:0.052192pt;}
.lsf_c00268{letter-spacing:0.057600pt;}
.ls5_c00268{letter-spacing:0.064000pt;}
.ls7_c00268{letter-spacing:0.070400pt;}
.ls8_c00268{letter-spacing:0.076800pt;}
.lsb_c00268{letter-spacing:0.256000pt;}
.ws1_c00268{word-spacing:0.000000pt;}
.ws2_c00268{word-spacing:0.148800pt;}
.ws0_c00268{word-spacing:0.171008pt;}
.ws3_c00268{word-spacing:1.292800pt;}
.ws4_c00268{word-spacing:10.028800pt;}
._11_c00268{margin-left:-3.878400pt;}
._12_c00268{margin-left:-2.964736pt;}
._d_c00268{margin-left:-1.932800pt;}
._1_c00268{margin-left:-1.003200pt;}
._0_c00268{width:0.919168pt;}
._10_c00268{width:2.304000pt;}
._f_c00268{width:3.520000pt;}
._c_c00268{width:4.672000pt;}
._b_c00268{width:5.721600pt;}
._e_c00268{width:6.617600pt;}
._16_c00268{width:7.692800pt;}
._14_c00268{width:8.665600pt;}
._15_c00268{width:9.766400pt;}
._17_c00268{width:10.905600pt;}
._13_c00268{width:14.374400pt;}
._3_c00268{width:59.724800pt;}
._4_c00268{width:74.560000pt;}
._7_c00268{width:119.961600pt;}
._9_c00268{width:194.572800pt;}
._5_c00268{width:230.400000pt;}
._8_c00268{width:262.400000pt;}
._6_c00268{width:286.707200pt;}
._a_c00268{width:301.248000pt;}
._2_c00268{width:304.608000pt;}
.fs3_c00268{font-size:48.000000pt;}
.fs0_c00268{font-size:53.440000pt;}
.fs1_c00268{font-size:64.000000pt;}
.fs2_c00268{font-size:74.560000pt;}
.y0_c00268{bottom:0.000000pt;}
.y5_c00268{bottom:50.987067pt;}
.y4_c00268{bottom:69.387067pt;}
.y25_c00268{bottom:116.107067pt;}
.y24_c00268{bottom:143.707067pt;}
.y23_c00268{bottom:171.307067pt;}
.y22_c00268{bottom:198.907067pt;}
.y21_c00268{bottom:226.507067pt;}
.y20_c00268{bottom:254.107067pt;}
.y1f_c00268{bottom:281.707067pt;}
.y1e_c00268{bottom:309.307067pt;}
.y1d_c00268{bottom:336.907067pt;}
.y1c_c00268{bottom:364.507067pt;}
.y1b_c00268{bottom:392.107067pt;}
.y1a_c00268{bottom:419.707067pt;}
.y19_c00268{bottom:447.307067pt;}
.y18_c00268{bottom:474.907067pt;}
.y17_c00268{bottom:502.507067pt;}
.y16_c00268{bottom:530.107067pt;}
.y15_c00268{bottom:557.707067pt;}
.y14_c00268{bottom:585.307067pt;}
.y13_c00268{bottom:612.907067pt;}
.y12_c00268{bottom:640.507067pt;}
.y11_c00268{bottom:668.027067pt;}
.y10_c00268{bottom:706.267067pt;}
.yf_c00268{bottom:734.587067pt;}
.ye_c00268{bottom:762.827200pt;}
.yd_c00268{bottom:791.147200pt;}
.yc_c00268{bottom:819.387067pt;}
.yb_c00268{bottom:847.627067pt;}
.ya_c00268{bottom:875.947067pt;}
.y9_c00268{bottom:906.987067pt;}
.y8_c00268{bottom:938.107067pt;}
.y7_c00268{bottom:964.667067pt;}
.y6_c00268{bottom:985.227067pt;}
.y3_c00268{bottom:1006.347067pt;}
.y2_c00268{bottom:1035.947576pt;}
.y1_c00268{bottom:1063.147200pt;}
.h4_c00268{height:42.234375pt;}
.h1_c00268{height:47.020937pt;}
.h2_c00268{height:56.156250pt;}
.h5_c00268{height:56.312500pt;}
.h3_c00268{height:66.222969pt;}
.h0_c00268{height:1122.666667pt;}
.w1_c00268{width:793.333333pt;}
.w0_c00268{width:793.626667pt;}
.x0_c00268{left:0.000000pt;}
.x1_c00268{left:113.440000pt;}
.x3_c00268{left:273.120000pt;}
.x2_c00268{left:656.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_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_601894eaf8ef11ec056957be.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00269;src:url('chunks/assets/font_cf24cdea66dae2bf72cbbff6.woff2')format("woff");}.ff2_c00269{font-family:ff2_c00269;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00269;src:url('chunks/assets/font_a8d46422494bbad53913212f.woff2')format("woff");}.ff3_c00269{font-family:ff3_c00269;line-height:1.104004;font-style: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;}
.ls12_c00269{letter-spacing:-0.360000px;}
.ls1a_c00269{letter-spacing:-0.086400px;}
.ls19_c00269{letter-spacing:-0.057600px;}
.lsf_c00269{letter-spacing:-0.048096px;}
.ls13_c00269{letter-spacing:-0.036000px;}
.ls16_c00269{letter-spacing:-0.028800px;}
.ls18_c00269{letter-spacing:-0.021600px;}
.ls15_c00269{letter-spacing:-0.014400px;}
.ls11_c00269{letter-spacing:-0.007200px;}
.ls10_c00269{letter-spacing:0.000000px;}
.ls1_c00269{letter-spacing:0.007200px;}
.lse_c00269{letter-spacing:0.010800px;}
.lsa_c00269{letter-spacing:0.014400px;}
.ls0_c00269{letter-spacing:0.021600px;}
.lsc_c00269{letter-spacing:0.025164px;}
.ls7_c00269{letter-spacing:0.028800px;}
.ls5_c00269{letter-spacing:0.036000px;}
.lsd_c00269{letter-spacing:0.037800px;}
.lsb_c00269{letter-spacing:0.041940px;}
.ls9_c00269{letter-spacing:0.043200px;}
.ls2_c00269{letter-spacing:0.050400px;}
.ls3_c00269{letter-spacing:0.057600px;}
.ls8_c00269{letter-spacing:0.064800px;}
.ls4_c00269{letter-spacing:0.122400px;}
.ls17_c00269{letter-spacing:0.316800px;}
.ls6_c00269{letter-spacing:3.240000px;}
.ls14_c00269{letter-spacing:25.200000px;}
.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:-18.036000px;}
.ws2_c00269{word-spacing:-18.000000px;}
.ws1_c00269{word-spacing:-17.640000px;}
.ws4_c00269{word-spacing:0.000000px;}
.ws3_c00269{word-spacing:0.138276px;}
.ws5_c00269{word-spacing:0.140400px;}
.ws7_c00269{word-spacing:0.167400px;}
.ws6_c00269{word-spacing:0.178200px;}
._f_c00269{margin-left:-26.251200px;}
._e_c00269{margin-left:-25.113600px;}
._15_c00269{margin-left:-2.181600px;}
._9_c00269{margin-left:-1.116000px;}
._c_c00269{width:1.123200px;}
._0_c00269{width:2.138400px;}
._a_c00269{width:3.499200px;}
._b_c00269{width:4.514400px;}
._14_c00269{width:7.920000px;}
._d_c00269{width:8.949600px;}
._13_c00269{width:10.058400px;}
._12_c00269{width:11.548800px;}
._1_c00269{width:14.047200px;}
._7_c00269{width:20.527200px;}
._8_c00269{width:22.140000px;}
._2_c00269{width:36.352800px;}
._5_c00269{width:44.712000px;}
._6_c00269{width:45.914400px;}
._3_c00269{width:59.047200px;}
._4_c00269{width:60.076800px;}
._11_c00269{width:86.342400px;}
._10_c00269{width:225.734400px;}
.fc1_c00269{color:rgb(255,0,0);}
.fc2_c00269{color:rgb(68,84,106);}
.fc0_c00269{color:rgb(0,0,0);}
.fs3_c00269{font-size:54.000000px;}
.fs0_c00269{font-size:60.120000px;}
.fs1_c00269{font-size:72.000000px;}
.fs2_c00269{font-size:83.880000px;}
.y0_c00269{bottom:0.000000px;}
.y28_c00269{bottom:3.240450px;}
.y6_c00269{bottom:57.360450px;}
.y5_c00269{bottom:78.060450px;}
.y26_c00269{bottom:160.590450px;}
.y25_c00269{bottom:191.640450px;}
.y24_c00269{bottom:222.690450px;}
.y23_c00269{bottom:256.890450px;}
.y22_c00269{bottom:280.020450px;}
.y21_c00269{bottom:317.100450px;}
.y20_c00269{bottom:348.150450px;}
.y1f_c00269{bottom:379.200450px;}
.y1e_c00269{bottom:410.250450px;}
.y1d_c00269{bottom:441.300450px;}
.y1c_c00269{bottom:472.350450px;}
.y1b_c00269{bottom:503.400450px;}
.y1a_c00269{bottom:534.450450px;}
.y19_c00269{bottom:565.500450px;}
.y18_c00269{bottom:596.550450px;}
.y17_c00269{bottom:627.600450px;}
.y16_c00269{bottom:658.650450px;}
.y15_c00269{bottom:689.700450px;}
.y2a_c00269{bottom:690.330000px;}
.y2b_c00269{bottom:693.570450px;}
.y14_c00269{bottom:720.750450px;}
.y13_c00269{bottom:751.800450px;}
.y12_c00269{bottom:782.850450px;}
.y11_c00269{bottom:813.900450px;}
.y10_c00269{bottom:844.950450px;}
.yf_c00269{bottom:876.000450px;}
.ye_c00269{bottom:907.050450px;}
.yd_c00269{bottom:938.100450px;}
.yc_c00269{bottom:969.150450px;}
.yb_c00269{bottom:1000.200450px;}
.ya_c00269{bottom:1031.160450px;}
.y9_c00269{bottom:1062.210450px;}
.y8_c00269{bottom:1093.260450px;}
.y27_c00269{bottom:1112.070000px;}
.y29_c00269{bottom:1115.310450px;}
.y7_c00269{bottom:1124.310450px;}
.y4_c00269{bottom:1144.380657px;}
.y3_c00269{bottom:1161.660648px;}
.y2_c00269{bottom:1178.850459px;}
.y1_c00269{bottom:1196.130450px;}
.h5_c00269{height:15.300000px;}
.h6_c00269{height:47.513672px;}
.h1_c00269{height:52.898555px;}
.h2_c00269{height:63.175781px;}
.h3_c00269{height:63.351562px;}
.h4_c00269{height:74.500840px;}
.h0_c00269{height:1263.000000px;}
.w3_c00269{width:302.490000px;}
.w2_c00269{width:325.350000px;}
.w1_c00269{width:892.500000px;}
.w0_c00269{width:892.830000px;}
.x0_c00269{left:0.000000px;}
.x4_c00269{left:127.620000px;}
.x7_c00269{left:130.680000px;}
.x9_c00269{left:132.120000px;}
.x8_c00269{left:135.180000px;}
.x5_c00269{left:531.180000px;}
.x6_c00269{left:581.580000px;}
.x1_c00269{left:649.620000px;}
.x3_c00269{left:738.450000px;}
.x2_c00269{left:765.450198px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls12_c00269{letter-spacing:-0.320000pt;}
.ls1a_c00269{letter-spacing:-0.076800pt;}
.ls19_c00269{letter-spacing:-0.051200pt;}
.lsf_c00269{letter-spacing:-0.042752pt;}
.ls13_c00269{letter-spacing:-0.032000pt;}
.ls16_c00269{letter-spacing:-0.025600pt;}
.ls18_c00269{letter-spacing:-0.019200pt;}
.ls15_c00269{letter-spacing:-0.012800pt;}
.ls11_c00269{letter-spacing:-0.006400pt;}
.ls10_c00269{letter-spacing:0.000000pt;}
.ls1_c00269{letter-spacing:0.006400pt;}
.lse_c00269{letter-spacing:0.009600pt;}
.lsa_c00269{letter-spacing:0.012800pt;}
.ls0_c00269{letter-spacing:0.019200pt;}
.lsc_c00269{letter-spacing:0.022368pt;}
.ls7_c00269{letter-spacing:0.025600pt;}
.ls5_c00269{letter-spacing:0.032000pt;}
.lsd_c00269{letter-spacing:0.033600pt;}
.lsb_c00269{letter-spacing:0.037280pt;}
.ls9_c00269{letter-spacing:0.038400pt;}
.ls2_c00269{letter-spacing:0.044800pt;}
.ls3_c00269{letter-spacing:0.051200pt;}
.ls8_c00269{letter-spacing:0.057600pt;}
.ls4_c00269{letter-spacing:0.108800pt;}
.ls17_c00269{letter-spacing:0.281600pt;}
.ls6_c00269{letter-spacing:2.880000pt;}
.ls14_c00269{letter-spacing:22.400000pt;}
.ws0_c00269{word-spacing:-16.032000pt;}
.ws2_c00269{word-spacing:-16.000000pt;}
.ws1_c00269{word-spacing:-15.680000pt;}
.ws4_c00269{word-spacing:0.000000pt;}
.ws3_c00269{word-spacing:0.122912pt;}
.ws5_c00269{word-spacing:0.124800pt;}
.ws7_c00269{word-spacing:0.148800pt;}
.ws6_c00269{word-spacing:0.158400pt;}
._f_c00269{margin-left:-23.334400pt;}
._e_c00269{margin-left:-22.323200pt;}
._15_c00269{margin-left:-1.939200pt;}
._9_c00269{margin-left:-0.992000pt;}
._c_c00269{width:0.998400pt;}
._0_c00269{width:1.900800pt;}
._a_c00269{width:3.110400pt;}
._b_c00269{width:4.012800pt;}
._14_c00269{width:7.040000pt;}
._d_c00269{width:7.955200pt;}
._13_c00269{width:8.940800pt;}
._12_c00269{width:10.265600pt;}
._1_c00269{width:12.486400pt;}
._7_c00269{width:18.246400pt;}
._8_c00269{width:19.680000pt;}
._2_c00269{width:32.313600pt;}
._5_c00269{width:39.744000pt;}
._6_c00269{width:40.812800pt;}
._3_c00269{width:52.486400pt;}
._4_c00269{width:53.401600pt;}
._11_c00269{width:76.748800pt;}
._10_c00269{width:200.652800pt;}
.fs3_c00269{font-size:48.000000pt;}
.fs0_c00269{font-size:53.440000pt;}
.fs1_c00269{font-size:64.000000pt;}
.fs2_c00269{font-size:74.560000pt;}
.y0_c00269{bottom:0.000000pt;}
.y28_c00269{bottom:2.880400pt;}
.y6_c00269{bottom:50.987067pt;}
.y5_c00269{bottom:69.387067pt;}
.y26_c00269{bottom:142.747067pt;}
.y25_c00269{bottom:170.347067pt;}
.y24_c00269{bottom:197.947067pt;}
.y23_c00269{bottom:228.347067pt;}
.y22_c00269{bottom:248.907067pt;}
.y21_c00269{bottom:281.867067pt;}
.y20_c00269{bottom:309.467067pt;}
.y1f_c00269{bottom:337.067067pt;}
.y1e_c00269{bottom:364.667067pt;}
.y1d_c00269{bottom:392.267067pt;}
.y1c_c00269{bottom:419.867067pt;}
.y1b_c00269{bottom:447.467067pt;}
.y1a_c00269{bottom:475.067067pt;}
.y19_c00269{bottom:502.667067pt;}
.y18_c00269{bottom:530.267067pt;}
.y17_c00269{bottom:557.867067pt;}
.y16_c00269{bottom:585.467067pt;}
.y15_c00269{bottom:613.067067pt;}
.y2a_c00269{bottom:613.626667pt;}
.y2b_c00269{bottom:616.507067pt;}
.y14_c00269{bottom:640.667067pt;}
.y13_c00269{bottom:668.267067pt;}
.y12_c00269{bottom:695.867067pt;}
.y11_c00269{bottom:723.467067pt;}
.y10_c00269{bottom:751.067067pt;}
.yf_c00269{bottom:778.667067pt;}
.ye_c00269{bottom:806.267067pt;}
.yd_c00269{bottom:833.867067pt;}
.yc_c00269{bottom:861.467067pt;}
.yb_c00269{bottom:889.067067pt;}
.ya_c00269{bottom:916.587067pt;}
.y9_c00269{bottom:944.187067pt;}
.y8_c00269{bottom:971.787067pt;}
.y27_c00269{bottom:988.506667pt;}
.y29_c00269{bottom:991.387067pt;}
.y7_c00269{bottom:999.387067pt;}
.y4_c00269{bottom:1017.227251pt;}
.y3_c00269{bottom:1032.587243pt;}
.y2_c00269{bottom:1047.867075pt;}
.y1_c00269{bottom:1063.227067pt;}
.h5_c00269{height:13.600000pt;}
.h6_c00269{height:42.234375pt;}
.h1_c00269{height:47.020937pt;}
.h2_c00269{height:56.156250pt;}
.h3_c00269{height:56.312500pt;}
.h4_c00269{height:66.222969pt;}
.h0_c00269{height:1122.666667pt;}
.w3_c00269{width:268.880000pt;}
.w2_c00269{width:289.200000pt;}
.w1_c00269{width:793.333333pt;}
.w0_c00269{width:793.626667pt;}
.x0_c00269{left:0.000000pt;}
.x4_c00269{left:113.440000pt;}
.x7_c00269{left:116.160000pt;}
.x9_c00269{left:117.440000pt;}
.x8_c00269{left:120.160000pt;}
.x5_c00269{left:472.160000pt;}
.x6_c00269{left:516.960000pt;}
.x1_c00269{left:577.440000pt;}
.x3_c00269{left:656.400000pt;}
.x2_c00269{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32d4f9d2f28b3f157be8beef.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00270;src:url('chunks/assets/font_7c28ce57ea93704c70c30c27.woff2')format("woff");}.ff2_c00270{font-family:ff2_c00270;line-height:1.093262;font-style: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;}
.lsc_c00270{letter-spacing:-0.102204px;}
.ls12_c00270{letter-spacing:-0.050400px;}
.ls14_c00270{letter-spacing:-0.048600px;}
.lsf_c00270{letter-spacing:-0.028800px;}
.ls10_c00270{letter-spacing:-0.021600px;}
.ls11_c00270{letter-spacing:-0.014400px;}
.lse_c00270{letter-spacing:-0.007200px;}
.lsd_c00270{letter-spacing:0.000000px;}
.ls2_c00270{letter-spacing:0.007200px;}
.ls9_c00270{letter-spacing:0.014400px;}
.ls3_c00270{letter-spacing:0.021600px;}
.ls5_c00270{letter-spacing:0.028800px;}
.ls7_c00270{letter-spacing:0.036000px;}
.lsa_c00270{letter-spacing:0.043200px;}
.ls1_c00270{letter-spacing:0.050400px;}
.ls8_c00270{letter-spacing:0.057600px;}
.ls0_c00270{letter-spacing:0.064800px;}
.ls6_c00270{letter-spacing:0.072000px;}
.lsb_c00270{letter-spacing:0.086400px;}
.ls4_c00270{letter-spacing:0.100800px;}
.ls13_c00270{letter-spacing:4.320000px;}
.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:-13.451400px;}
.ws2_c00270{word-spacing:0.000000px;}
.ws1_c00270{word-spacing:0.192384px;}
.ws3_c00270{word-spacing:4.341600px;}
.ws4_c00270{word-spacing:8.440200px;}
._9_c00270{margin-left:-4.910400px;}
._8_c00270{margin-left:-3.614400px;}
._3_c00270{margin-left:-1.800000px;}
._0_c00270{width:1.034064px;}
._7_c00270{width:2.894400px;}
._5_c00270{width:4.492800px;}
._6_c00270{width:5.731200px;}
._1_c00270{width:6.912000px;}
._2_c00270{width:8.373600px;}
._c_c00270{width:10.497600px;}
._d_c00270{width:11.728800px;}
._4_c00270{width:14.371200px;}
._a_c00270{width:16.531200px;}
._e_c00270{width:20.484000px;}
._b_c00270{width:29.851200px;}
.fc2_c00270{color:rgb(68,84,106);}
.fc1_c00270{color:rgb(0,0,0);}
.fc0_c00270{color:rgb(32,31,30);}
.fs2_c00270{font-size:54.000000px;}
.fs0_c00270{font-size:60.120000px;}
.fs1_c00270{font-size:72.000000px;}
.y0_c00270{bottom:0.000000px;}
.y27_c00270{bottom:3.240450px;}
.y5_c00270{bottom:57.360450px;}
.y4_c00270{bottom:78.060450px;}
.y25_c00270{bottom:148.980450px;}
.y24_c00270{bottom:180.030450px;}
.y23_c00270{bottom:211.080450px;}
.y22_c00270{bottom:242.130450px;}
.y21_c00270{bottom:273.090450px;}
.y20_c00270{bottom:304.140450px;}
.y1f_c00270{bottom:335.190450px;}
.y1e_c00270{bottom:366.240450px;}
.y1d_c00270{bottom:397.290450px;}
.y1c_c00270{bottom:428.340450px;}
.y1b_c00270{bottom:459.390450px;}
.y29_c00270{bottom:466.770000px;}
.y2a_c00270{bottom:470.010450px;}
.y26_c00270{bottom:489.990000px;}
.y1a_c00270{bottom:490.440450px;}
.y28_c00270{bottom:493.230450px;}
.y19_c00270{bottom:521.490450px;}
.y18_c00270{bottom:552.540450px;}
.y17_c00270{bottom:583.590450px;}
.y16_c00270{bottom:614.640450px;}
.y15_c00270{bottom:645.690450px;}
.y14_c00270{bottom:676.740450px;}
.y13_c00270{bottom:707.790450px;}
.y12_c00270{bottom:738.840450px;}
.y11_c00270{bottom:769.890450px;}
.y10_c00270{bottom:800.940450px;}
.yf_c00270{bottom:831.990450px;}
.ye_c00270{bottom:863.040450px;}
.yd_c00270{bottom:894.090450px;}
.yc_c00270{bottom:925.140450px;}
.yb_c00270{bottom:956.190450px;}
.ya_c00270{bottom:987.240450px;}
.y9_c00270{bottom:1018.290450px;}
.y8_c00270{bottom:1049.340450px;}
.y7_c00270{bottom:1080.390450px;}
.y6_c00270{bottom:1111.440450px;}
.y3_c00270{bottom:1132.140450px;}
.y2_c00270{bottom:1165.441023px;}
.y1_c00270{bottom:1196.040600px;}
.h4_c00270{height:15.300000px;}
.h5_c00270{height:47.513672px;}
.h1_c00270{height:52.898555px;}
.h2_c00270{height:63.175781px;}
.h3_c00270{height:63.351562px;}
.h0_c00270{height:1263.000000px;}
.w3_c00270{width:40.500000px;}
.w2_c00270{width:393.750000px;}
.w1_c00270{width:892.500000px;}
.w0_c00270{width:892.830000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:127.620000px;}
.x4_c00270{left:132.120000px;}
.x5_c00270{left:135.900000px;}
.x3_c00270{left:534.870000px;}
.x2_c00270{left:738.450000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.lsc_c00270{letter-spacing:-0.090848pt;}
.ls12_c00270{letter-spacing:-0.044800pt;}
.ls14_c00270{letter-spacing:-0.043200pt;}
.lsf_c00270{letter-spacing:-0.025600pt;}
.ls10_c00270{letter-spacing:-0.019200pt;}
.ls11_c00270{letter-spacing:-0.012800pt;}
.lse_c00270{letter-spacing:-0.006400pt;}
.lsd_c00270{letter-spacing:0.000000pt;}
.ls2_c00270{letter-spacing:0.006400pt;}
.ls9_c00270{letter-spacing:0.012800pt;}
.ls3_c00270{letter-spacing:0.019200pt;}
.ls5_c00270{letter-spacing:0.025600pt;}
.ls7_c00270{letter-spacing:0.032000pt;}
.lsa_c00270{letter-spacing:0.038400pt;}
.ls1_c00270{letter-spacing:0.044800pt;}
.ls8_c00270{letter-spacing:0.051200pt;}
.ls0_c00270{letter-spacing:0.057600pt;}
.ls6_c00270{letter-spacing:0.064000pt;}
.lsb_c00270{letter-spacing:0.076800pt;}
.ls4_c00270{letter-spacing:0.089600pt;}
.ls13_c00270{letter-spacing:3.840000pt;}
.ws0_c00270{word-spacing:-11.956800pt;}
.ws2_c00270{word-spacing:0.000000pt;}
.ws1_c00270{word-spacing:0.171008pt;}
.ws3_c00270{word-spacing:3.859200pt;}
.ws4_c00270{word-spacing:7.502400pt;}
._9_c00270{margin-left:-4.364800pt;}
._8_c00270{margin-left:-3.212800pt;}
._3_c00270{margin-left:-1.600000pt;}
._0_c00270{width:0.919168pt;}
._7_c00270{width:2.572800pt;}
._5_c00270{width:3.993600pt;}
._6_c00270{width:5.094400pt;}
._1_c00270{width:6.144000pt;}
._2_c00270{width:7.443200pt;}
._c_c00270{width:9.331200pt;}
._d_c00270{width:10.425600pt;}
._4_c00270{width:12.774400pt;}
._a_c00270{width:14.694400pt;}
._e_c00270{width:18.208000pt;}
._b_c00270{width:26.534400pt;}
.fs2_c00270{font-size:48.000000pt;}
.fs0_c00270{font-size:53.440000pt;}
.fs1_c00270{font-size:64.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y27_c00270{bottom:2.880400pt;}
.y5_c00270{bottom:50.987067pt;}
.y4_c00270{bottom:69.387067pt;}
.y25_c00270{bottom:132.427067pt;}
.y24_c00270{bottom:160.027067pt;}
.y23_c00270{bottom:187.627067pt;}
.y22_c00270{bottom:215.227067pt;}
.y21_c00270{bottom:242.747067pt;}
.y20_c00270{bottom:270.347067pt;}
.y1f_c00270{bottom:297.947067pt;}
.y1e_c00270{bottom:325.547067pt;}
.y1d_c00270{bottom:353.147067pt;}
.y1c_c00270{bottom:380.747067pt;}
.y1b_c00270{bottom:408.347067pt;}
.y29_c00270{bottom:414.906667pt;}
.y2a_c00270{bottom:417.787067pt;}
.y26_c00270{bottom:435.546667pt;}
.y1a_c00270{bottom:435.947067pt;}
.y28_c00270{bottom:438.427067pt;}
.y19_c00270{bottom:463.547067pt;}
.y18_c00270{bottom:491.147067pt;}
.y17_c00270{bottom:518.747067pt;}
.y16_c00270{bottom:546.347067pt;}
.y15_c00270{bottom:573.947067pt;}
.y14_c00270{bottom:601.547067pt;}
.y13_c00270{bottom:629.147067pt;}
.y12_c00270{bottom:656.747067pt;}
.y11_c00270{bottom:684.347067pt;}
.y10_c00270{bottom:711.947067pt;}
.yf_c00270{bottom:739.547067pt;}
.ye_c00270{bottom:767.147067pt;}
.yd_c00270{bottom:794.747067pt;}
.yc_c00270{bottom:822.347067pt;}
.yb_c00270{bottom:849.947067pt;}
.ya_c00270{bottom:877.547067pt;}
.y9_c00270{bottom:905.147067pt;}
.y8_c00270{bottom:932.747067pt;}
.y7_c00270{bottom:960.347067pt;}
.y6_c00270{bottom:987.947067pt;}
.y3_c00270{bottom:1006.347067pt;}
.y2_c00270{bottom:1035.947576pt;}
.y1_c00270{bottom:1063.147200pt;}
.h4_c00270{height:13.600000pt;}
.h5_c00270{height:42.234375pt;}
.h1_c00270{height:47.020937pt;}
.h2_c00270{height:56.156250pt;}
.h3_c00270{height:56.312500pt;}
.h0_c00270{height:1122.666667pt;}
.w3_c00270{width:36.000000pt;}
.w2_c00270{width:350.000000pt;}
.w1_c00270{width:793.333333pt;}
.w0_c00270{width:793.626667pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:113.440000pt;}
.x4_c00270{left:117.440000pt;}
.x5_c00270{left:120.800000pt;}
.x3_c00270{left:475.440000pt;}
.x2_c00270{left:656.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_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_9c5ab22739b22eb9c8a2a404.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.095703;font-style:normal;font-weight:normal;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_eba373c294939343e9a1670c.woff2')format("woff");}.ff2_c00271{font-family:ff2_c00271;line-height:1.093262;font-style: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;}
.ls12_c00271{letter-spacing:-0.230400px;}
.lsd_c00271{letter-spacing:-0.208800px;}
.ls14_c00271{letter-spacing:-0.158400px;}
.ls17_c00271{letter-spacing:-0.064800px;}
.ls16_c00271{letter-spacing:-0.050400px;}
.lsb_c00271{letter-spacing:-0.048096px;}
.ls11_c00271{letter-spacing:-0.043200px;}
.ls13_c00271{letter-spacing:-0.036000px;}
.lsf_c00271{letter-spacing:-0.028800px;}
.lse_c00271{letter-spacing:-0.021600px;}
.ls18_c00271{letter-spacing:-0.014400px;}
.ls10_c00271{letter-spacing:-0.007200px;}
.lsc_c00271{letter-spacing:0.000000px;}
.ls9_c00271{letter-spacing:0.007200px;}
.ls0_c00271{letter-spacing:0.014400px;}
.ls3_c00271{letter-spacing:0.021600px;}
.ls1_c00271{letter-spacing:0.028800px;}
.ls5_c00271{letter-spacing:0.036000px;}
.ls4_c00271{letter-spacing:0.043200px;}
.ls7_c00271{letter-spacing:0.050400px;}
.ls2_c00271{letter-spacing:0.057600px;}
.ls6_c00271{letter-spacing:0.064800px;}
.lsa_c00271{letter-spacing:0.079200px;}
.ls8_c00271{letter-spacing:0.086400px;}
.ls15_c00271{letter-spacing:1.080000px;}
.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:-18.064800px;}
.ws3_c00271{word-spacing:-4.384800px;}
.ws2_c00271{word-spacing:0.000000px;}
.ws1_c00271{word-spacing:0.138276px;}
._8_c00271{margin-left:-4.831200px;}
._5_c00271{margin-left:-3.744000px;}
._4_c00271{margin-left:-2.282400px;}
._1_c00271{margin-left:-1.252800px;}
._0_c00271{width:1.166400px;}
._3_c00271{width:2.750400px;}
._2_c00271{width:4.636800px;}
._6_c00271{width:10.051200px;}
._7_c00271{width:11.116800px;}
._9_c00271{width:12.909600px;}
.fc1_c00271{color:rgb(255,0,0);}
.fc0_c00271{color:rgb(0,0,0);}
.fs0_c00271{font-size:60.120000px;}
.fs1_c00271{font-size:72.000000px;}
.y0_c00271{bottom:0.000000px;}
.y6_c00271{bottom:57.360450px;}
.y5_c00271{bottom:78.060450px;}
.y23_c00271{bottom:255.000450px;}
.y22_c00271{bottom:286.050450px;}
.y21_c00271{bottom:317.100450px;}
.y20_c00271{bottom:348.150450px;}
.y1f_c00271{bottom:379.200450px;}
.y1e_c00271{bottom:410.250450px;}
.y1d_c00271{bottom:441.300450px;}
.y1c_c00271{bottom:472.350450px;}
.y1b_c00271{bottom:503.400450px;}
.y1a_c00271{bottom:534.450450px;}
.y19_c00271{bottom:565.500450px;}
.y18_c00271{bottom:596.550450px;}
.y17_c00271{bottom:627.600450px;}
.y16_c00271{bottom:658.650450px;}
.y15_c00271{bottom:689.700450px;}
.y14_c00271{bottom:720.750450px;}
.y13_c00271{bottom:751.800450px;}
.y12_c00271{bottom:782.850450px;}
.y11_c00271{bottom:813.900450px;}
.y10_c00271{bottom:844.950450px;}
.yf_c00271{bottom:876.000450px;}
.ye_c00271{bottom:907.050450px;}
.yd_c00271{bottom:938.100450px;}
.yc_c00271{bottom:969.150450px;}
.yb_c00271{bottom:1000.200450px;}
.ya_c00271{bottom:1031.160450px;}
.y9_c00271{bottom:1062.210450px;}
.y8_c00271{bottom:1093.260450px;}
.y7_c00271{bottom:1124.310450px;}
.y4_c00271{bottom:1144.380657px;}
.y3_c00271{bottom:1161.660648px;}
.y2_c00271{bottom:1178.850459px;}
.y1_c00271{bottom:1196.130450px;}
.h1_c00271{height:52.898555px;}
.h2_c00271{height:63.175781px;}
.h3_c00271{height:63.351562px;}
.h0_c00271{height:1263.000000px;}
.w1_c00271{width:892.500000px;}
.w0_c00271{width:892.830000px;}
.x0_c00271{left:0.000000px;}
.x4_c00271{left:127.620000px;}
.x1_c00271{left:649.620000px;}
.x3_c00271{left:738.450000px;}
.x2_c00271{left:765.450198px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls12_c00271{letter-spacing:-0.204800pt;}
.lsd_c00271{letter-spacing:-0.185600pt;}
.ls14_c00271{letter-spacing:-0.140800pt;}
.ls17_c00271{letter-spacing:-0.057600pt;}
.ls16_c00271{letter-spacing:-0.044800pt;}
.lsb_c00271{letter-spacing:-0.042752pt;}
.ls11_c00271{letter-spacing:-0.038400pt;}
.ls13_c00271{letter-spacing:-0.032000pt;}
.lsf_c00271{letter-spacing:-0.025600pt;}
.lse_c00271{letter-spacing:-0.019200pt;}
.ls18_c00271{letter-spacing:-0.012800pt;}
.ls10_c00271{letter-spacing:-0.006400pt;}
.lsc_c00271{letter-spacing:0.000000pt;}
.ls9_c00271{letter-spacing:0.006400pt;}
.ls0_c00271{letter-spacing:0.012800pt;}
.ls3_c00271{letter-spacing:0.019200pt;}
.ls1_c00271{letter-spacing:0.025600pt;}
.ls5_c00271{letter-spacing:0.032000pt;}
.ls4_c00271{letter-spacing:0.038400pt;}
.ls7_c00271{letter-spacing:0.044800pt;}
.ls2_c00271{letter-spacing:0.051200pt;}
.ls6_c00271{letter-spacing:0.057600pt;}
.lsa_c00271{letter-spacing:0.070400pt;}
.ls8_c00271{letter-spacing:0.076800pt;}
.ls15_c00271{letter-spacing:0.960000pt;}
.ws0_c00271{word-spacing:-16.057600pt;}
.ws3_c00271{word-spacing:-3.897600pt;}
.ws2_c00271{word-spacing:0.000000pt;}
.ws1_c00271{word-spacing:0.122912pt;}
._8_c00271{margin-left:-4.294400pt;}
._5_c00271{margin-left:-3.328000pt;}
._4_c00271{margin-left:-2.028800pt;}
._1_c00271{margin-left:-1.113600pt;}
._0_c00271{width:1.036800pt;}
._3_c00271{width:2.444800pt;}
._2_c00271{width:4.121600pt;}
._6_c00271{width:8.934400pt;}
._7_c00271{width:9.881600pt;}
._9_c00271{width:11.475200pt;}
.fs0_c00271{font-size:53.440000pt;}
.fs1_c00271{font-size:64.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y6_c00271{bottom:50.987067pt;}
.y5_c00271{bottom:69.387067pt;}
.y23_c00271{bottom:226.667067pt;}
.y22_c00271{bottom:254.267067pt;}
.y21_c00271{bottom:281.867067pt;}
.y20_c00271{bottom:309.467067pt;}
.y1f_c00271{bottom:337.067067pt;}
.y1e_c00271{bottom:364.667067pt;}
.y1d_c00271{bottom:392.267067pt;}
.y1c_c00271{bottom:419.867067pt;}
.y1b_c00271{bottom:447.467067pt;}
.y1a_c00271{bottom:475.067067pt;}
.y19_c00271{bottom:502.667067pt;}
.y18_c00271{bottom:530.267067pt;}
.y17_c00271{bottom:557.867067pt;}
.y16_c00271{bottom:585.467067pt;}
.y15_c00271{bottom:613.067067pt;}
.y14_c00271{bottom:640.667067pt;}
.y13_c00271{bottom:668.267067pt;}
.y12_c00271{bottom:695.867067pt;}
.y11_c00271{bottom:723.467067pt;}
.y10_c00271{bottom:751.067067pt;}
.yf_c00271{bottom:778.667067pt;}
.ye_c00271{bottom:806.267067pt;}
.yd_c00271{bottom:833.867067pt;}
.yc_c00271{bottom:861.467067pt;}
.yb_c00271{bottom:889.067067pt;}
.ya_c00271{bottom:916.587067pt;}
.y9_c00271{bottom:944.187067pt;}
.y8_c00271{bottom:971.787067pt;}
.y7_c00271{bottom:999.387067pt;}
.y4_c00271{bottom:1017.227251pt;}
.y3_c00271{bottom:1032.587243pt;}
.y2_c00271{bottom:1047.867075pt;}
.y1_c00271{bottom:1063.227067pt;}
.h1_c00271{height:47.020937pt;}
.h2_c00271{height:56.156250pt;}
.h3_c00271{height:56.312500pt;}
.h0_c00271{height:1122.666667pt;}
.w1_c00271{width:793.333333pt;}
.w0_c00271{width:793.626667pt;}
.x0_c00271{left:0.000000pt;}
.x4_c00271{left:113.440000pt;}
.x1_c00271{left:577.440000pt;}
.x3_c00271{left:656.400000pt;}
.x2_c00271{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d86c76f464f9088be7f339b8.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.095703;font-style:normal;font-weight:normal;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_ddaeb87a6bc490dbfd0e681c.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.093262;font-style: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;}
.ls15_c00272{letter-spacing:-0.144000px;}
.lse_c00272{letter-spacing:-0.102204px;}
.ls17_c00272{letter-spacing:-0.072000px;}
.ls14_c00272{letter-spacing:-0.057600px;}
.ls11_c00272{letter-spacing:-0.043200px;}
.ls12_c00272{letter-spacing:-0.021600px;}
.ls10_c00272{letter-spacing:-0.014400px;}
.ls13_c00272{letter-spacing:-0.007200px;}
.ls18_c00272{letter-spacing:-0.005400px;}
.lsf_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:0.007200px;}
.ls4_c00272{letter-spacing:0.014400px;}
.ls6_c00272{letter-spacing:0.021600px;}
.ls2_c00272{letter-spacing:0.028800px;}
.lsd_c00272{letter-spacing:0.032400px;}
.lsa_c00272{letter-spacing:0.036000px;}
.ls8_c00272{letter-spacing:0.043200px;}
.ls1_c00272{letter-spacing:0.050400px;}
.ls3_c00272{letter-spacing:0.057600px;}
.ls9_c00272{letter-spacing:0.064800px;}
.ls5_c00272{letter-spacing:0.072000px;}
.ls7_c00272{letter-spacing:0.086400px;}
.lsc_c00272{letter-spacing:0.093600px;}
.lsb_c00272{letter-spacing:0.122400px;}
.ls16_c00272{letter-spacing:2.160000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:-18.007200px;}
.ws1_c00272{word-spacing:-18.000000px;}
.ws2_c00272{word-spacing:-17.928000px;}
.ws4_c00272{word-spacing:0.000000px;}
.ws5_c00272{word-spacing:0.145800px;}
.ws6_c00272{word-spacing:0.183600px;}
.ws3_c00272{word-spacing:0.192384px;}
.ws7_c00272{word-spacing:0.199800px;}
._7_c00272{margin-left:-3.830400px;}
._3_c00272{margin-left:-2.570400px;}
._4_c00272{margin-left:-1.562400px;}
._0_c00272{width:1.034064px;}
._5_c00272{width:2.251872px;}
._8_c00272{width:3.312864px;}
._9_c00272{width:4.578336px;}
._2_c00272{width:10.440000px;}
._1_c00272{width:11.534400px;}
._a_c00272{width:12.549600px;}
._b_c00272{width:13.852800px;}
._6_c00272{width:19.195200px;}
._d_c00272{width:39.960000px;}
._c_c00272{width:40.996800px;}
.fc2_c00272{color:rgb(68,84,106);}
.fc1_c00272{color:rgb(0,0,0);}
.fc0_c00272{color:rgb(32,31,30);}
.fs2_c00272{font-size:54.000000px;}
.fs0_c00272{font-size:60.120000px;}
.fs1_c00272{font-size:72.000000px;}
.y0_c00272{bottom:0.000000px;}
.y22_c00272{bottom:3.240450px;}
.y5_c00272{bottom:57.360450px;}
.y4_c00272{bottom:78.060450px;}
.y20_c00272{bottom:138.090450px;}
.y1f_c00272{bottom:169.140450px;}
.y1e_c00272{bottom:200.190450px;}
.y1d_c00272{bottom:231.240450px;}
.y1c_c00272{bottom:262.290450px;}
.y1b_c00272{bottom:293.340450px;}
.y1a_c00272{bottom:324.390450px;}
.y19_c00272{bottom:355.440450px;}
.y18_c00272{bottom:386.490450px;}
.y17_c00272{bottom:417.540450px;}
.y16_c00272{bottom:448.590450px;}
.y15_c00272{bottom:479.640450px;}
.y14_c00272{bottom:510.690450px;}
.y13_c00272{bottom:541.740450px;}
.y12_c00272{bottom:572.790450px;}
.y11_c00272{bottom:603.840450px;}
.y10_c00272{bottom:634.890450px;}
.yf_c00272{bottom:665.940450px;}
.ye_c00272{bottom:696.990450px;}
.yd_c00272{bottom:728.040450px;}
.yc_c00272{bottom:759.090450px;}
.yb_c00272{bottom:790.140450px;}
.ya_c00272{bottom:821.190450px;}
.y9_c00272{bottom:852.240450px;}
.y8_c00272{bottom:883.290450px;}
.y7_c00272{bottom:914.340450px;}
.y6_c00272{bottom:941.340450px;}
.y21_c00272{bottom:1112.520000px;}
.y23_c00272{bottom:1115.760450px;}
.y3_c00272{bottom:1132.140450px;}
.y2_c00272{bottom:1165.441023px;}
.y1_c00272{bottom:1196.040600px;}
.h4_c00272{height:15.300000px;}
.h5_c00272{height:47.513672px;}
.h1_c00272{height:52.898555px;}
.h2_c00272{height:63.175781px;}
.h3_c00272{height:63.351562px;}
.h0_c00272{height:1263.000000px;}
.w2_c00272{width:200.250000px;}
.w1_c00272{width:892.500000px;}
.w0_c00272{width:892.830000px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:127.620000px;}
.x4_c00272{left:132.120000px;}
.x3_c00272{left:414.810000px;}
.x2_c00272{left:738.450000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls15_c00272{letter-spacing:-0.128000pt;}
.lse_c00272{letter-spacing:-0.090848pt;}
.ls17_c00272{letter-spacing:-0.064000pt;}
.ls14_c00272{letter-spacing:-0.051200pt;}
.ls11_c00272{letter-spacing:-0.038400pt;}
.ls12_c00272{letter-spacing:-0.019200pt;}
.ls10_c00272{letter-spacing:-0.012800pt;}
.ls13_c00272{letter-spacing:-0.006400pt;}
.ls18_c00272{letter-spacing:-0.004800pt;}
.lsf_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:0.006400pt;}
.ls4_c00272{letter-spacing:0.012800pt;}
.ls6_c00272{letter-spacing:0.019200pt;}
.ls2_c00272{letter-spacing:0.025600pt;}
.lsd_c00272{letter-spacing:0.028800pt;}
.lsa_c00272{letter-spacing:0.032000pt;}
.ls8_c00272{letter-spacing:0.038400pt;}
.ls1_c00272{letter-spacing:0.044800pt;}
.ls3_c00272{letter-spacing:0.051200pt;}
.ls9_c00272{letter-spacing:0.057600pt;}
.ls5_c00272{letter-spacing:0.064000pt;}
.ls7_c00272{letter-spacing:0.076800pt;}
.lsc_c00272{letter-spacing:0.083200pt;}
.lsb_c00272{letter-spacing:0.108800pt;}
.ls16_c00272{letter-spacing:1.920000pt;}
.ws0_c00272{word-spacing:-16.006400pt;}
.ws1_c00272{word-spacing:-16.000000pt;}
.ws2_c00272{word-spacing:-15.936000pt;}
.ws4_c00272{word-spacing:0.000000pt;}
.ws5_c00272{word-spacing:0.129600pt;}
.ws6_c00272{word-spacing:0.163200pt;}
.ws3_c00272{word-spacing:0.171008pt;}
.ws7_c00272{word-spacing:0.177600pt;}
._7_c00272{margin-left:-3.404800pt;}
._3_c00272{margin-left:-2.284800pt;}
._4_c00272{margin-left:-1.388800pt;}
._0_c00272{width:0.919168pt;}
._5_c00272{width:2.001664pt;}
._8_c00272{width:2.944768pt;}
._9_c00272{width:4.069632pt;}
._2_c00272{width:9.280000pt;}
._1_c00272{width:10.252800pt;}
._a_c00272{width:11.155200pt;}
._b_c00272{width:12.313600pt;}
._6_c00272{width:17.062400pt;}
._d_c00272{width:35.520000pt;}
._c_c00272{width:36.441600pt;}
.fs2_c00272{font-size:48.000000pt;}
.fs0_c00272{font-size:53.440000pt;}
.fs1_c00272{font-size:64.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y22_c00272{bottom:2.880400pt;}
.y5_c00272{bottom:50.987067pt;}
.y4_c00272{bottom:69.387067pt;}
.y20_c00272{bottom:122.747067pt;}
.y1f_c00272{bottom:150.347067pt;}
.y1e_c00272{bottom:177.947067pt;}
.y1d_c00272{bottom:205.547067pt;}
.y1c_c00272{bottom:233.147067pt;}
.y1b_c00272{bottom:260.747067pt;}
.y1a_c00272{bottom:288.347067pt;}
.y19_c00272{bottom:315.947067pt;}
.y18_c00272{bottom:343.547067pt;}
.y17_c00272{bottom:371.147067pt;}
.y16_c00272{bottom:398.747067pt;}
.y15_c00272{bottom:426.347067pt;}
.y14_c00272{bottom:453.947067pt;}
.y13_c00272{bottom:481.547067pt;}
.y12_c00272{bottom:509.147067pt;}
.y11_c00272{bottom:536.747067pt;}
.y10_c00272{bottom:564.347067pt;}
.yf_c00272{bottom:591.947067pt;}
.ye_c00272{bottom:619.547067pt;}
.yd_c00272{bottom:647.147067pt;}
.yc_c00272{bottom:674.747067pt;}
.yb_c00272{bottom:702.347067pt;}
.ya_c00272{bottom:729.947067pt;}
.y9_c00272{bottom:757.547067pt;}
.y8_c00272{bottom:785.147067pt;}
.y7_c00272{bottom:812.747067pt;}
.y6_c00272{bottom:836.747067pt;}
.y21_c00272{bottom:988.906667pt;}
.y23_c00272{bottom:991.787067pt;}
.y3_c00272{bottom:1006.347067pt;}
.y2_c00272{bottom:1035.947576pt;}
.y1_c00272{bottom:1063.147200pt;}
.h4_c00272{height:13.600000pt;}
.h5_c00272{height:42.234375pt;}
.h1_c00272{height:47.020937pt;}
.h2_c00272{height:56.156250pt;}
.h3_c00272{height:56.312500pt;}
.h0_c00272{height:1122.666667pt;}
.w2_c00272{width:178.000000pt;}
.w1_c00272{width:793.333333pt;}
.w0_c00272{width:793.626667pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:113.440000pt;}
.x4_c00272{left:117.440000pt;}
.x3_c00272{left:368.720000pt;}
.x2_c00272{left:656.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_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_e083339aa5d1b90ca92d9a9a.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.095703;font-style:normal;font-weight:normal;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_649706213b4315a422e7f6c0.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.093262;font-style: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;}
.ls12_c00273{letter-spacing:-0.079200px;}
.lse_c00273{letter-spacing:-0.048096px;}
.ls11_c00273{letter-spacing:-0.043200px;}
.ls16_c00273{letter-spacing:-0.028800px;}
.ls14_c00273{letter-spacing:-0.027000px;}
.ls15_c00273{letter-spacing:-0.021600px;}
.ls13_c00273{letter-spacing:-0.014400px;}
.ls10_c00273{letter-spacing:-0.007200px;}
.lsf_c00273{letter-spacing:0.000000px;}
.ls6_c00273{letter-spacing:0.007200px;}
.lsa_c00273{letter-spacing:0.014400px;}
.ls5_c00273{letter-spacing:0.021600px;}
.ls7_c00273{letter-spacing:0.028800px;}
.ls4_c00273{letter-spacing:0.036000px;}
.lsc_c00273{letter-spacing:0.043200px;}
.ls9_c00273{letter-spacing:0.050400px;}
.ls8_c00273{letter-spacing:0.057600px;}
.ls3_c00273{letter-spacing:0.072000px;}
.lsb_c00273{letter-spacing:0.086400px;}
.ls0_c00273{letter-spacing:0.100800px;}
.ls2_c00273{letter-spacing:0.108000px;}
.ls1_c00273{letter-spacing:0.129600px;}
.lsd_c00273{letter-spacing:0.151200px;}
.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:-18.100800px;}
.ws2_c00273{word-spacing:0.000000px;}
.ws1_c00273{word-spacing:0.138276px;}
.ws6_c00273{word-spacing:0.194400px;}
.ws3_c00273{word-spacing:0.367200px;}
.ws5_c00273{word-spacing:5.599800px;}
.ws4_c00273{word-spacing:5.605200px;}
._1_c00273{margin-left:-3.708000px;}
._2_c00273{margin-left:-2.577600px;}
._0_c00273{margin-left:-1.094400px;}
._4_c00273{width:1.036800px;}
._6_c00273{width:2.592000px;}
._5_c00273{width:3.600000px;}
._3_c00273{width:10.238400px;}
._7_c00273{width:16.502400px;}
.fc1_c00273{color:rgb(68,84,106);}
.fc0_c00273{color:rgb(0,0,0);}
.fs2_c00273{font-size:54.000000px;}
.fs0_c00273{font-size:60.120000px;}
.fs1_c00273{font-size:72.000000px;}
.y0_c00273{bottom:0.000000px;}
.y6_c00273{bottom:57.360450px;}
.y5_c00273{bottom:78.060450px;}
.y23_c00273{bottom:138.360600px;}
.y22_c00273{bottom:172.650600px;}
.y21_c00273{bottom:207.030600px;}
.y20_c00273{bottom:249.690450px;}
.y1f_c00273{bottom:276.420450px;}
.y1e_c00273{bottom:307.470450px;}
.y1d_c00273{bottom:338.520450px;}
.y1c_c00273{bottom:369.570450px;}
.y1b_c00273{bottom:400.620450px;}
.y1a_c00273{bottom:431.670450px;}
.y19_c00273{bottom:462.720450px;}
.y18_c00273{bottom:489.720450px;}
.y17_c00273{bottom:647.400900px;}
.y16_c00273{bottom:662.970450px;}
.y15_c00273{bottom:689.700450px;}
.y14_c00273{bottom:720.750450px;}
.y13_c00273{bottom:751.800450px;}
.y12_c00273{bottom:782.850450px;}
.y11_c00273{bottom:813.900450px;}
.y10_c00273{bottom:844.950450px;}
.yf_c00273{bottom:876.000450px;}
.ye_c00273{bottom:907.050450px;}
.yd_c00273{bottom:938.100450px;}
.yc_c00273{bottom:969.150450px;}
.yb_c00273{bottom:1000.200450px;}
.ya_c00273{bottom:1031.160450px;}
.y9_c00273{bottom:1062.210450px;}
.y8_c00273{bottom:1093.260450px;}
.y7_c00273{bottom:1124.310450px;}
.y4_c00273{bottom:1144.380657px;}
.y3_c00273{bottom:1161.660648px;}
.y2_c00273{bottom:1178.850459px;}
.y1_c00273{bottom:1196.130450px;}
.h4_c00273{height:47.513672px;}
.h1_c00273{height:52.898555px;}
.h2_c00273{height:63.175781px;}
.h3_c00273{height:63.351562px;}
.h0_c00273{height:1263.000000px;}
.w1_c00273{width:892.500000px;}
.w0_c00273{width:892.830000px;}
.x0_c00273{left:0.000000px;}
.x4_c00273{left:127.620000px;}
.x6_c00273{left:446.489850px;}
.x1_c00273{left:649.620000px;}
.x3_c00273{left:738.450000px;}
.x5_c00273{left:751.319850px;}
.x2_c00273{left:765.450198px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls12_c00273{letter-spacing:-0.070400pt;}
.lse_c00273{letter-spacing:-0.042752pt;}
.ls11_c00273{letter-spacing:-0.038400pt;}
.ls16_c00273{letter-spacing:-0.025600pt;}
.ls14_c00273{letter-spacing:-0.024000pt;}
.ls15_c00273{letter-spacing:-0.019200pt;}
.ls13_c00273{letter-spacing:-0.012800pt;}
.ls10_c00273{letter-spacing:-0.006400pt;}
.lsf_c00273{letter-spacing:0.000000pt;}
.ls6_c00273{letter-spacing:0.006400pt;}
.lsa_c00273{letter-spacing:0.012800pt;}
.ls5_c00273{letter-spacing:0.019200pt;}
.ls7_c00273{letter-spacing:0.025600pt;}
.ls4_c00273{letter-spacing:0.032000pt;}
.lsc_c00273{letter-spacing:0.038400pt;}
.ls9_c00273{letter-spacing:0.044800pt;}
.ls8_c00273{letter-spacing:0.051200pt;}
.ls3_c00273{letter-spacing:0.064000pt;}
.lsb_c00273{letter-spacing:0.076800pt;}
.ls0_c00273{letter-spacing:0.089600pt;}
.ls2_c00273{letter-spacing:0.096000pt;}
.ls1_c00273{letter-spacing:0.115200pt;}
.lsd_c00273{letter-spacing:0.134400pt;}
.ws0_c00273{word-spacing:-16.089600pt;}
.ws2_c00273{word-spacing:0.000000pt;}
.ws1_c00273{word-spacing:0.122912pt;}
.ws6_c00273{word-spacing:0.172800pt;}
.ws3_c00273{word-spacing:0.326400pt;}
.ws5_c00273{word-spacing:4.977600pt;}
.ws4_c00273{word-spacing:4.982400pt;}
._1_c00273{margin-left:-3.296000pt;}
._2_c00273{margin-left:-2.291200pt;}
._0_c00273{margin-left:-0.972800pt;}
._4_c00273{width:0.921600pt;}
._6_c00273{width:2.304000pt;}
._5_c00273{width:3.200000pt;}
._3_c00273{width:9.100800pt;}
._7_c00273{width:14.668800pt;}
.fs2_c00273{font-size:48.000000pt;}
.fs0_c00273{font-size:53.440000pt;}
.fs1_c00273{font-size:64.000000pt;}
.y0_c00273{bottom:0.000000pt;}
.y6_c00273{bottom:50.987067pt;}
.y5_c00273{bottom:69.387067pt;}
.y23_c00273{bottom:122.987200pt;}
.y22_c00273{bottom:153.467200pt;}
.y21_c00273{bottom:184.027200pt;}
.y20_c00273{bottom:221.947067pt;}
.y1f_c00273{bottom:245.707067pt;}
.y1e_c00273{bottom:273.307067pt;}
.y1d_c00273{bottom:300.907067pt;}
.y1c_c00273{bottom:328.507067pt;}
.y1b_c00273{bottom:356.107067pt;}
.y1a_c00273{bottom:383.707067pt;}
.y19_c00273{bottom:411.307067pt;}
.y18_c00273{bottom:435.307067pt;}
.y17_c00273{bottom:575.467467pt;}
.y16_c00273{bottom:589.307067pt;}
.y15_c00273{bottom:613.067067pt;}
.y14_c00273{bottom:640.667067pt;}
.y13_c00273{bottom:668.267067pt;}
.y12_c00273{bottom:695.867067pt;}
.y11_c00273{bottom:723.467067pt;}
.y10_c00273{bottom:751.067067pt;}
.yf_c00273{bottom:778.667067pt;}
.ye_c00273{bottom:806.267067pt;}
.yd_c00273{bottom:833.867067pt;}
.yc_c00273{bottom:861.467067pt;}
.yb_c00273{bottom:889.067067pt;}
.ya_c00273{bottom:916.587067pt;}
.y9_c00273{bottom:944.187067pt;}
.y8_c00273{bottom:971.787067pt;}
.y7_c00273{bottom:999.387067pt;}
.y4_c00273{bottom:1017.227251pt;}
.y3_c00273{bottom:1032.587243pt;}
.y2_c00273{bottom:1047.867075pt;}
.y1_c00273{bottom:1063.227067pt;}
.h4_c00273{height:42.234375pt;}
.h1_c00273{height:47.020937pt;}
.h2_c00273{height:56.156250pt;}
.h3_c00273{height:56.312500pt;}
.h0_c00273{height:1122.666667pt;}
.w1_c00273{width:793.333333pt;}
.w0_c00273{width:793.626667pt;}
.x0_c00273{left:0.000000pt;}
.x4_c00273{left:113.440000pt;}
.x6_c00273{left:396.879867pt;}
.x1_c00273{left:577.440000pt;}
.x3_c00273{left:656.400000pt;}
.x5_c00273{left:667.839867pt;}
.x2_c00273{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60cdf138360b00e648b98a81.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.095703;font-style:normal;font-weight:normal;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_5a1059d96a2df8f4bef80304.woff2')format("woff");}.ff2_c00274{font-family:ff2_c00274;line-height:1.093262;font-style: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;}
.lsa_c00274{letter-spacing:-0.102204px;}
.ls10_c00274{letter-spacing:-0.093600px;}
.lse_c00274{letter-spacing:-0.086400px;}
.ls14_c00274{letter-spacing:-0.050400px;}
.ls12_c00274{letter-spacing:-0.043200px;}
.lsf_c00274{letter-spacing:-0.036000px;}
.lsc_c00274{letter-spacing:-0.028800px;}
.lsd_c00274{letter-spacing:-0.021600px;}
.ls13_c00274{letter-spacing:-0.014400px;}
.ls11_c00274{letter-spacing:-0.007200px;}
.lsb_c00274{letter-spacing:0.000000px;}
.ls8_c00274{letter-spacing:0.007200px;}
.ls6_c00274{letter-spacing:0.014400px;}
.ls0_c00274{letter-spacing:0.021600px;}
.ls1_c00274{letter-spacing:0.028800px;}
.ls4_c00274{letter-spacing:0.036000px;}
.ls7_c00274{letter-spacing:0.043200px;}
.ls5_c00274{letter-spacing:0.050400px;}
.ls3_c00274{letter-spacing:0.057600px;}
.ls2_c00274{letter-spacing:0.079200px;}
.ls9_c00274{letter-spacing:0.108000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00274{word-spacing:-18.021600px;}
.ws2_c00274{word-spacing:0.000000px;}
.ws3_c00274{word-spacing:0.156600px;}
.ws1_c00274{word-spacing:0.192384px;}
._10_c00274{margin-left:-4.982400px;}
._e_c00274{margin-left:-3.700800px;}
._9_c00274{margin-left:-2.188800px;}
._1_c00274{margin-left:-1.123200px;}
._0_c00274{width:1.034064px;}
._a_c00274{width:2.050560px;}
._d_c00274{width:3.375360px;}
._c_c00274{width:5.018400px;}
._b_c00274{width:6.084000px;}
._6_c00274{width:7.502400px;}
._12_c00274{width:9.230400px;}
._11_c00274{width:10.389600px;}
._2_c00274{width:11.491200px;}
._8_c00274{width:12.952800px;}
._f_c00274{width:14.450400px;}
._7_c00274{width:25.502400px;}
._5_c00274{width:26.920800px;}
._3_c00274{width:29.188800px;}
._4_c00274{width:30.470400px;}
.fc2_c00274{color:rgb(68,84,106);}
.fc1_c00274{color:rgb(0,0,0);}
.fc0_c00274{color:rgb(32,31,30);}
.fs2_c00274{font-size:54.000000px;}
.fs0_c00274{font-size:60.120000px;}
.fs1_c00274{font-size:72.000000px;}
.y0_c00274{bottom:0.000000px;}
.y5_c00274{bottom:57.360450px;}
.y4_c00274{bottom:78.060450px;}
.y26_c00274{bottom:110.640450px;}
.y25_c00274{bottom:141.690450px;}
.y24_c00274{bottom:172.740450px;}
.y23_c00274{bottom:203.790450px;}
.y22_c00274{bottom:234.840450px;}
.y21_c00274{bottom:265.890450px;}
.y20_c00274{bottom:296.940450px;}
.y1f_c00274{bottom:327.990450px;}
.y1e_c00274{bottom:359.040450px;}
.y1d_c00274{bottom:390.090450px;}
.y1c_c00274{bottom:421.140450px;}
.y1b_c00274{bottom:452.190450px;}
.y1a_c00274{bottom:483.240450px;}
.y19_c00274{bottom:514.290450px;}
.y18_c00274{bottom:545.340450px;}
.y17_c00274{bottom:576.390450px;}
.y16_c00274{bottom:607.440450px;}
.y15_c00274{bottom:638.490450px;}
.y14_c00274{bottom:669.540450px;}
.y13_c00274{bottom:700.590450px;}
.y12_c00274{bottom:731.640450px;}
.y11_c00274{bottom:762.690450px;}
.y10_c00274{bottom:793.740450px;}
.yf_c00274{bottom:824.790450px;}
.ye_c00274{bottom:855.840450px;}
.yd_c00274{bottom:886.800450px;}
.yc_c00274{bottom:917.850450px;}
.yb_c00274{bottom:948.900450px;}
.ya_c00274{bottom:979.950450px;}
.y9_c00274{bottom:1011.000450px;}
.y8_c00274{bottom:1042.050450px;}
.y7_c00274{bottom:1073.100450px;}
.y6_c00274{bottom:1115.760450px;}
.y3_c00274{bottom:1132.140450px;}
.y2_c00274{bottom:1165.441023px;}
.y1_c00274{bottom:1196.040600px;}
.h3_c00274{height:47.513672px;}
.h1_c00274{height:52.898555px;}
.h2_c00274{height:63.175781px;}
.h4_c00274{height:63.351562px;}
.h0_c00274{height:1263.000000px;}
.w1_c00274{width:892.500000px;}
.w0_c00274{width:892.830000px;}
.x0_c00274{left:0.000000px;}
.x1_c00274{left:127.620000px;}
.x3_c00274{left:460.980000px;}
.x2_c00274{left:738.450000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.lsa_c00274{letter-spacing:-0.090848pt;}
.ls10_c00274{letter-spacing:-0.083200pt;}
.lse_c00274{letter-spacing:-0.076800pt;}
.ls14_c00274{letter-spacing:-0.044800pt;}
.ls12_c00274{letter-spacing:-0.038400pt;}
.lsf_c00274{letter-spacing:-0.032000pt;}
.lsc_c00274{letter-spacing:-0.025600pt;}
.lsd_c00274{letter-spacing:-0.019200pt;}
.ls13_c00274{letter-spacing:-0.012800pt;}
.ls11_c00274{letter-spacing:-0.006400pt;}
.lsb_c00274{letter-spacing:0.000000pt;}
.ls8_c00274{letter-spacing:0.006400pt;}
.ls6_c00274{letter-spacing:0.012800pt;}
.ls0_c00274{letter-spacing:0.019200pt;}
.ls1_c00274{letter-spacing:0.025600pt;}
.ls4_c00274{letter-spacing:0.032000pt;}
.ls7_c00274{letter-spacing:0.038400pt;}
.ls5_c00274{letter-spacing:0.044800pt;}
.ls3_c00274{letter-spacing:0.051200pt;}
.ls2_c00274{letter-spacing:0.070400pt;}
.ls9_c00274{letter-spacing:0.096000pt;}
.ws0_c00274{word-spacing:-16.019200pt;}
.ws2_c00274{word-spacing:0.000000pt;}
.ws3_c00274{word-spacing:0.139200pt;}
.ws1_c00274{word-spacing:0.171008pt;}
._10_c00274{margin-left:-4.428800pt;}
._e_c00274{margin-left:-3.289600pt;}
._9_c00274{margin-left:-1.945600pt;}
._1_c00274{margin-left:-0.998400pt;}
._0_c00274{width:0.919168pt;}
._a_c00274{width:1.822720pt;}
._d_c00274{width:3.000320pt;}
._c_c00274{width:4.460800pt;}
._b_c00274{width:5.408000pt;}
._6_c00274{width:6.668800pt;}
._12_c00274{width:8.204800pt;}
._11_c00274{width:9.235200pt;}
._2_c00274{width:10.214400pt;}
._8_c00274{width:11.513600pt;}
._f_c00274{width:12.844800pt;}
._7_c00274{width:22.668800pt;}
._5_c00274{width:23.929600pt;}
._3_c00274{width:25.945600pt;}
._4_c00274{width:27.084800pt;}
.fs2_c00274{font-size:48.000000pt;}
.fs0_c00274{font-size:53.440000pt;}
.fs1_c00274{font-size:64.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y5_c00274{bottom:50.987067pt;}
.y4_c00274{bottom:69.387067pt;}
.y26_c00274{bottom:98.347067pt;}
.y25_c00274{bottom:125.947067pt;}
.y24_c00274{bottom:153.547067pt;}
.y23_c00274{bottom:181.147067pt;}
.y22_c00274{bottom:208.747067pt;}
.y21_c00274{bottom:236.347067pt;}
.y20_c00274{bottom:263.947067pt;}
.y1f_c00274{bottom:291.547067pt;}
.y1e_c00274{bottom:319.147067pt;}
.y1d_c00274{bottom:346.747067pt;}
.y1c_c00274{bottom:374.347067pt;}
.y1b_c00274{bottom:401.947067pt;}
.y1a_c00274{bottom:429.547067pt;}
.y19_c00274{bottom:457.147067pt;}
.y18_c00274{bottom:484.747067pt;}
.y17_c00274{bottom:512.347067pt;}
.y16_c00274{bottom:539.947067pt;}
.y15_c00274{bottom:567.547067pt;}
.y14_c00274{bottom:595.147067pt;}
.y13_c00274{bottom:622.747067pt;}
.y12_c00274{bottom:650.347067pt;}
.y11_c00274{bottom:677.947067pt;}
.y10_c00274{bottom:705.547067pt;}
.yf_c00274{bottom:733.147067pt;}
.ye_c00274{bottom:760.747067pt;}
.yd_c00274{bottom:788.267067pt;}
.yc_c00274{bottom:815.867067pt;}
.yb_c00274{bottom:843.467067pt;}
.ya_c00274{bottom:871.067067pt;}
.y9_c00274{bottom:898.667067pt;}
.y8_c00274{bottom:926.267067pt;}
.y7_c00274{bottom:953.867067pt;}
.y6_c00274{bottom:991.787067pt;}
.y3_c00274{bottom:1006.347067pt;}
.y2_c00274{bottom:1035.947576pt;}
.y1_c00274{bottom:1063.147200pt;}
.h3_c00274{height:42.234375pt;}
.h1_c00274{height:47.020937pt;}
.h2_c00274{height:56.156250pt;}
.h4_c00274{height:56.312500pt;}
.h0_c00274{height:1122.666667pt;}
.w1_c00274{width:793.333333pt;}
.w0_c00274{width:793.626667pt;}
.x0_c00274{left:0.000000pt;}
.x1_c00274{left:113.440000pt;}
.x3_c00274{left:409.760000pt;}
.x2_c00274{left:656.400000pt;}
}





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

.ir_c00275:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00275;src:url('chunks/assets/font_3d7376056e4e3ff0be161ff5.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.095703;font-style:normal;font-weight:normal;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_c402b1891be2636457a135a3.woff2')format("woff");}.ff2_c00275{font-family:ff2_c00275;line-height:1.093262;font-style:normal;font-weight:normal;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_28600fc01362b1bf170d06bb.woff2')format("woff");}.ff3_c00275{font-family:ff3_c00275;line-height:1.104004;font-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_c00275{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls12_c00275{letter-spacing:-0.288000px;}
.ls15_c00275{letter-spacing:-0.057600px;}
.lsf_c00275{letter-spacing:-0.042084px;}
.ls13_c00275{letter-spacing:-0.021600px;}
.ls11_c00275{letter-spacing:-0.014400px;}
.ls10_c00275{letter-spacing:0.000000px;}
.lse_c00275{letter-spacing:0.010800px;}
.ls0_c00275{letter-spacing:0.014400px;}
.ls7_c00275{letter-spacing:0.021600px;}
.ls4_c00275{letter-spacing:0.028800px;}
.lsa_c00275{letter-spacing:0.036000px;}
.ls5_c00275{letter-spacing:0.043200px;}
.ls3_c00275{letter-spacing:0.050400px;}
.ls1_c00275{letter-spacing:0.057600px;}
.lsb_c00275{letter-spacing:0.058716px;}
.ls6_c00275{letter-spacing:0.064800px;}
.ls2_c00275{letter-spacing:0.072000px;}
.ls9_c00275{letter-spacing:0.079200px;}
.ls8_c00275{letter-spacing:0.108000px;}
.lsc_c00275{letter-spacing:0.144000px;}
.ls14_c00275{letter-spacing:0.165600px;}
.lsd_c00275{letter-spacing:0.367200px;}
.ls16_c00275{letter-spacing:3.607200px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00275{word-spacing:-18.165600px;}
.ws0_c00275{word-spacing:-18.021600px;}
.ws3_c00275{word-spacing:0.000000px;}
.ws2_c00275{word-spacing:0.138276px;}
.ws7_c00275{word-spacing:0.156600px;}
.ws6_c00275{word-spacing:0.167400px;}
.ws4_c00275{word-spacing:2.901600px;}
.ws5_c00275{word-spacing:14.025600px;}
._3_c00275{margin-left:-4.586400px;}
._2_c00275{margin-left:-3.283200px;}
._8_c00275{margin-left:-1.965600px;}
._7_c00275{width:1.029600px;}
._c_c00275{width:2.599200px;}
._9_c00275{width:3.729600px;}
._1_c00275{width:4.874400px;}
._0_c00275{width:6.069600px;}
._4_c00275{width:7.178400px;}
._a_c00275{width:11.426400px;}
._12_c00275{width:13.327200px;}
._b_c00275{width:14.392800px;}
._11_c00275{width:16.790400px;}
._f_c00275{width:19.720800px;}
._5_c00275{width:38.635200px;}
._6_c00275{width:40.024800px;}
._10_c00275{width:58.010400px;}
._d_c00275{width:68.731200px;}
._e_c00275{width:69.897600px;}
.fc1_c00275{color:rgb(255,0,0);}
.fc2_c00275{color:rgb(68,84,106);}
.fc0_c00275{color:rgb(0,0,0);}
.fs3_c00275{font-size:54.000000px;}
.fs0_c00275{font-size:60.120000px;}
.fs1_c00275{font-size:72.000000px;}
.fs2_c00275{font-size:83.880000px;}
.y0_c00275{bottom:0.000000px;}
.y29_c00275{bottom:3.240450px;}
.y6_c00275{bottom:57.360450px;}
.y5_c00275{bottom:78.060450px;}
.y27_c00275{bottom:134.940450px;}
.y26_c00275{bottom:165.990450px;}
.y25_c00275{bottom:197.040450px;}
.y24_c00275{bottom:228.090450px;}
.y23_c00275{bottom:259.140450px;}
.y22_c00275{bottom:290.190450px;}
.y21_c00275{bottom:321.240450px;}
.y20_c00275{bottom:355.440450px;}
.y1f_c00275{bottom:378.570450px;}
.y1e_c00275{bottom:415.920450px;}
.y1d_c00275{bottom:438.240450px;}
.y1c_c00275{bottom:472.350450px;}
.y1b_c00275{bottom:503.400450px;}
.y1a_c00275{bottom:534.450450px;}
.y19_c00275{bottom:565.500450px;}
.y18_c00275{bottom:596.550450px;}
.y17_c00275{bottom:627.600450px;}
.y16_c00275{bottom:658.650450px;}
.y2b_c00275{bottom:677.100000px;}
.y2c_c00275{bottom:680.340450px;}
.y15_c00275{bottom:689.700450px;}
.y14_c00275{bottom:720.750450px;}
.y13_c00275{bottom:751.800450px;}
.y12_c00275{bottom:782.850450px;}
.y11_c00275{bottom:813.900450px;}
.y10_c00275{bottom:844.950450px;}
.yf_c00275{bottom:876.000450px;}
.ye_c00275{bottom:907.050450px;}
.yd_c00275{bottom:938.100450px;}
.y28_c00275{bottom:965.370000px;}
.y2a_c00275{bottom:968.610450px;}
.yc_c00275{bottom:969.150450px;}
.yb_c00275{bottom:1000.200450px;}
.ya_c00275{bottom:1031.160450px;}
.y9_c00275{bottom:1062.210450px;}
.y8_c00275{bottom:1093.260450px;}
.y7_c00275{bottom:1124.310450px;}
.y4_c00275{bottom:1144.380657px;}
.y3_c00275{bottom:1161.660648px;}
.y2_c00275{bottom:1178.850459px;}
.y1_c00275{bottom:1196.130450px;}
.h5_c00275{height:15.300000px;}
.h6_c00275{height:47.513672px;}
.h1_c00275{height:52.898555px;}
.h2_c00275{height:63.175781px;}
.h3_c00275{height:63.351562px;}
.h4_c00275{height:74.500840px;}
.h0_c00275{height:1263.000000px;}
.w3_c00275{width:43.920000px;}
.w2_c00275{width:347.670000px;}
.w1_c00275{width:892.500000px;}
.w0_c00275{width:892.830000px;}
.x0_c00275{left:0.000000px;}
.x4_c00275{left:127.619324px;}
.x7_c00275{left:131.850000px;}
.x8_c00275{left:342.450000px;}
.x6_c00275{left:472.680567px;}
.x5_c00275{left:498.600778px;}
.x1_c00275{left:649.620000px;}
.x3_c00275{left:738.450000px;}
.x2_c00275{left:765.449030px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls12_c00275{letter-spacing:-0.256000pt;}
.ls15_c00275{letter-spacing:-0.051200pt;}
.lsf_c00275{letter-spacing:-0.037408pt;}
.ls13_c00275{letter-spacing:-0.019200pt;}
.ls11_c00275{letter-spacing:-0.012800pt;}
.ls10_c00275{letter-spacing:0.000000pt;}
.lse_c00275{letter-spacing:0.009600pt;}
.ls0_c00275{letter-spacing:0.012800pt;}
.ls7_c00275{letter-spacing:0.019200pt;}
.ls4_c00275{letter-spacing:0.025600pt;}
.lsa_c00275{letter-spacing:0.032000pt;}
.ls5_c00275{letter-spacing:0.038400pt;}
.ls3_c00275{letter-spacing:0.044800pt;}
.ls1_c00275{letter-spacing:0.051200pt;}
.lsb_c00275{letter-spacing:0.052192pt;}
.ls6_c00275{letter-spacing:0.057600pt;}
.ls2_c00275{letter-spacing:0.064000pt;}
.ls9_c00275{letter-spacing:0.070400pt;}
.ls8_c00275{letter-spacing:0.096000pt;}
.lsc_c00275{letter-spacing:0.128000pt;}
.ls14_c00275{letter-spacing:0.147200pt;}
.lsd_c00275{letter-spacing:0.326400pt;}
.ls16_c00275{letter-spacing:3.206400pt;}
.ws1_c00275{word-spacing:-16.147200pt;}
.ws0_c00275{word-spacing:-16.019200pt;}
.ws3_c00275{word-spacing:0.000000pt;}
.ws2_c00275{word-spacing:0.122912pt;}
.ws7_c00275{word-spacing:0.139200pt;}
.ws6_c00275{word-spacing:0.148800pt;}
.ws4_c00275{word-spacing:2.579200pt;}
.ws5_c00275{word-spacing:12.467200pt;}
._3_c00275{margin-left:-4.076800pt;}
._2_c00275{margin-left:-2.918400pt;}
._8_c00275{margin-left:-1.747200pt;}
._7_c00275{width:0.915200pt;}
._c_c00275{width:2.310400pt;}
._9_c00275{width:3.315200pt;}
._1_c00275{width:4.332800pt;}
._0_c00275{width:5.395200pt;}
._4_c00275{width:6.380800pt;}
._a_c00275{width:10.156800pt;}
._12_c00275{width:11.846400pt;}
._b_c00275{width:12.793600pt;}
._11_c00275{width:14.924800pt;}
._f_c00275{width:17.529600pt;}
._5_c00275{width:34.342400pt;}
._6_c00275{width:35.577600pt;}
._10_c00275{width:51.564800pt;}
._d_c00275{width:61.094400pt;}
._e_c00275{width:62.131200pt;}
.fs3_c00275{font-size:48.000000pt;}
.fs0_c00275{font-size:53.440000pt;}
.fs1_c00275{font-size:64.000000pt;}
.fs2_c00275{font-size:74.560000pt;}
.y0_c00275{bottom:0.000000pt;}
.y29_c00275{bottom:2.880400pt;}
.y6_c00275{bottom:50.987067pt;}
.y5_c00275{bottom:69.387067pt;}
.y27_c00275{bottom:119.947067pt;}
.y26_c00275{bottom:147.547067pt;}
.y25_c00275{bottom:175.147067pt;}
.y24_c00275{bottom:202.747067pt;}
.y23_c00275{bottom:230.347067pt;}
.y22_c00275{bottom:257.947067pt;}
.y21_c00275{bottom:285.547067pt;}
.y20_c00275{bottom:315.947067pt;}
.y1f_c00275{bottom:336.507067pt;}
.y1e_c00275{bottom:369.707067pt;}
.y1d_c00275{bottom:389.547067pt;}
.y1c_c00275{bottom:419.867067pt;}
.y1b_c00275{bottom:447.467067pt;}
.y1a_c00275{bottom:475.067067pt;}
.y19_c00275{bottom:502.667067pt;}
.y18_c00275{bottom:530.267067pt;}
.y17_c00275{bottom:557.867067pt;}
.y16_c00275{bottom:585.467067pt;}
.y2b_c00275{bottom:601.866667pt;}
.y2c_c00275{bottom:604.747067pt;}
.y15_c00275{bottom:613.067067pt;}
.y14_c00275{bottom:640.667067pt;}
.y13_c00275{bottom:668.267067pt;}
.y12_c00275{bottom:695.867067pt;}
.y11_c00275{bottom:723.467067pt;}
.y10_c00275{bottom:751.067067pt;}
.yf_c00275{bottom:778.667067pt;}
.ye_c00275{bottom:806.267067pt;}
.yd_c00275{bottom:833.867067pt;}
.y28_c00275{bottom:858.106667pt;}
.y2a_c00275{bottom:860.987067pt;}
.yc_c00275{bottom:861.467067pt;}
.yb_c00275{bottom:889.067067pt;}
.ya_c00275{bottom:916.587067pt;}
.y9_c00275{bottom:944.187067pt;}
.y8_c00275{bottom:971.787067pt;}
.y7_c00275{bottom:999.387067pt;}
.y4_c00275{bottom:1017.227251pt;}
.y3_c00275{bottom:1032.587243pt;}
.y2_c00275{bottom:1047.867075pt;}
.y1_c00275{bottom:1063.227067pt;}
.h5_c00275{height:13.600000pt;}
.h6_c00275{height:42.234375pt;}
.h1_c00275{height:47.020937pt;}
.h2_c00275{height:56.156250pt;}
.h3_c00275{height:56.312500pt;}
.h4_c00275{height:66.222969pt;}
.h0_c00275{height:1122.666667pt;}
.w3_c00275{width:39.040000pt;}
.w2_c00275{width:309.040000pt;}
.w1_c00275{width:793.333333pt;}
.w0_c00275{width:793.626667pt;}
.x0_c00275{left:0.000000pt;}
.x4_c00275{left:113.439399pt;}
.x7_c00275{left:117.200000pt;}
.x8_c00275{left:304.400000pt;}
.x6_c00275{left:420.160504pt;}
.x5_c00275{left:443.200692pt;}
.x1_c00275{left:577.440000pt;}
.x3_c00275{left:656.400000pt;}
.x2_c00275{left:680.399138pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.095703;font-style:normal;font-weight:normal;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_15aef7ee7ec64d9e126e7e10.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00276{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls11_c00276{letter-spacing:-1.080000px;}
.ls14_c00276{letter-spacing:-0.230400px;}
.lsd_c00276{letter-spacing:-0.102204px;}
.ls15_c00276{letter-spacing:-0.043200px;}
.ls13_c00276{letter-spacing:-0.036000px;}
.ls10_c00276{letter-spacing:-0.021600px;}
.ls12_c00276{letter-spacing:-0.014400px;}
.lsf_c00276{letter-spacing:-0.007200px;}
.lse_c00276{letter-spacing:0.000000px;}
.ls7_c00276{letter-spacing:0.007200px;}
.ls2_c00276{letter-spacing:0.014400px;}
.ls6_c00276{letter-spacing:0.021600px;}
.ls4_c00276{letter-spacing:0.028800px;}
.ls0_c00276{letter-spacing:0.036000px;}
.lsa_c00276{letter-spacing:0.043200px;}
.ls3_c00276{letter-spacing:0.050400px;}
.ls1_c00276{letter-spacing:0.057600px;}
.ls9_c00276{letter-spacing:0.064800px;}
.ls8_c00276{letter-spacing:0.072000px;}
.lsc_c00276{letter-spacing:0.079200px;}
.ls5_c00276{letter-spacing:0.093600px;}
.lsb_c00276{letter-spacing:0.122400px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00276{word-spacing:0.000000px;}
.ws0_c00276{word-spacing:0.192384px;}
._1_c00276{margin-left:-3.636000px;}
._6_c00276{margin-left:-2.340000px;}
._2_c00276{margin-left:-1.144800px;}
._0_c00276{width:1.034064px;}
._4_c00276{width:2.908800px;}
._5_c00276{width:4.003200px;}
._3_c00276{width:5.724000px;}
._7_c00276{width:6.933600px;}
._8_c00276{width:8.035200px;}
._e_c00276{width:9.187200px;}
._c_c00276{width:10.195200px;}
._b_c00276{width:11.476800px;}
._a_c00276{width:12.592800px;}
._9_c00276{width:13.629600px;}
._d_c00276{width:15.768000px;}
._f_c00276{width:20.865600px;}
.fc1_c00276{color:rgb(0,0,0);}
.fc0_c00276{color:rgb(32,31,30);}
.fs0_c00276{font-size:60.120000px;}
.fs1_c00276{font-size:72.000000px;}
.y0_c00276{bottom:0.000000px;}
.y5_c00276{bottom:57.360450px;}
.y4_c00276{bottom:78.060450px;}
.y26_c00276{bottom:117.930450px;}
.y25_c00276{bottom:148.980450px;}
.y24_c00276{bottom:180.030450px;}
.y23_c00276{bottom:211.080450px;}
.y22_c00276{bottom:242.130450px;}
.y21_c00276{bottom:273.090450px;}
.y20_c00276{bottom:304.140450px;}
.y1f_c00276{bottom:335.190450px;}
.y1e_c00276{bottom:366.240450px;}
.y1d_c00276{bottom:397.290450px;}
.y1c_c00276{bottom:428.340450px;}
.y1b_c00276{bottom:459.390450px;}
.y1a_c00276{bottom:490.440450px;}
.y19_c00276{bottom:521.490450px;}
.y18_c00276{bottom:552.540450px;}
.y17_c00276{bottom:583.590450px;}
.y16_c00276{bottom:614.640450px;}
.y15_c00276{bottom:645.690450px;}
.y14_c00276{bottom:676.740450px;}
.y13_c00276{bottom:707.790450px;}
.y12_c00276{bottom:738.840450px;}
.y11_c00276{bottom:769.890450px;}
.y10_c00276{bottom:800.940450px;}
.yf_c00276{bottom:831.990450px;}
.ye_c00276{bottom:863.040450px;}
.yd_c00276{bottom:894.090450px;}
.yc_c00276{bottom:925.140450px;}
.yb_c00276{bottom:956.190450px;}
.ya_c00276{bottom:987.240450px;}
.y9_c00276{bottom:1018.290450px;}
.y8_c00276{bottom:1049.340450px;}
.y7_c00276{bottom:1080.390450px;}
.y6_c00276{bottom:1111.440450px;}
.y3_c00276{bottom:1132.140450px;}
.y2_c00276{bottom:1165.441023px;}
.y1_c00276{bottom:1196.040600px;}
.h1_c00276{height:52.898555px;}
.h2_c00276{height:63.175781px;}
.h0_c00276{height:1263.000000px;}
.w1_c00276{width:892.500000px;}
.w0_c00276{width:892.830000px;}
.x0_c00276{left:0.000000px;}
.x1_c00276{left:127.620000px;}
.x2_c00276{left:738.450000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls11_c00276{letter-spacing:-0.960000pt;}
.ls14_c00276{letter-spacing:-0.204800pt;}
.lsd_c00276{letter-spacing:-0.090848pt;}
.ls15_c00276{letter-spacing:-0.038400pt;}
.ls13_c00276{letter-spacing:-0.032000pt;}
.ls10_c00276{letter-spacing:-0.019200pt;}
.ls12_c00276{letter-spacing:-0.012800pt;}
.lsf_c00276{letter-spacing:-0.006400pt;}
.lse_c00276{letter-spacing:0.000000pt;}
.ls7_c00276{letter-spacing:0.006400pt;}
.ls2_c00276{letter-spacing:0.012800pt;}
.ls6_c00276{letter-spacing:0.019200pt;}
.ls4_c00276{letter-spacing:0.025600pt;}
.ls0_c00276{letter-spacing:0.032000pt;}
.lsa_c00276{letter-spacing:0.038400pt;}
.ls3_c00276{letter-spacing:0.044800pt;}
.ls1_c00276{letter-spacing:0.051200pt;}
.ls9_c00276{letter-spacing:0.057600pt;}
.ls8_c00276{letter-spacing:0.064000pt;}
.lsc_c00276{letter-spacing:0.070400pt;}
.ls5_c00276{letter-spacing:0.083200pt;}
.lsb_c00276{letter-spacing:0.108800pt;}
.ws1_c00276{word-spacing:0.000000pt;}
.ws0_c00276{word-spacing:0.171008pt;}
._1_c00276{margin-left:-3.232000pt;}
._6_c00276{margin-left:-2.080000pt;}
._2_c00276{margin-left:-1.017600pt;}
._0_c00276{width:0.919168pt;}
._4_c00276{width:2.585600pt;}
._5_c00276{width:3.558400pt;}
._3_c00276{width:5.088000pt;}
._7_c00276{width:6.163200pt;}
._8_c00276{width:7.142400pt;}
._e_c00276{width:8.166400pt;}
._c_c00276{width:9.062400pt;}
._b_c00276{width:10.201600pt;}
._a_c00276{width:11.193600pt;}
._9_c00276{width:12.115200pt;}
._d_c00276{width:14.016000pt;}
._f_c00276{width:18.547200pt;}
.fs0_c00276{font-size:53.440000pt;}
.fs1_c00276{font-size:64.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y5_c00276{bottom:50.987067pt;}
.y4_c00276{bottom:69.387067pt;}
.y26_c00276{bottom:104.827067pt;}
.y25_c00276{bottom:132.427067pt;}
.y24_c00276{bottom:160.027067pt;}
.y23_c00276{bottom:187.627067pt;}
.y22_c00276{bottom:215.227067pt;}
.y21_c00276{bottom:242.747067pt;}
.y20_c00276{bottom:270.347067pt;}
.y1f_c00276{bottom:297.947067pt;}
.y1e_c00276{bottom:325.547067pt;}
.y1d_c00276{bottom:353.147067pt;}
.y1c_c00276{bottom:380.747067pt;}
.y1b_c00276{bottom:408.347067pt;}
.y1a_c00276{bottom:435.947067pt;}
.y19_c00276{bottom:463.547067pt;}
.y18_c00276{bottom:491.147067pt;}
.y17_c00276{bottom:518.747067pt;}
.y16_c00276{bottom:546.347067pt;}
.y15_c00276{bottom:573.947067pt;}
.y14_c00276{bottom:601.547067pt;}
.y13_c00276{bottom:629.147067pt;}
.y12_c00276{bottom:656.747067pt;}
.y11_c00276{bottom:684.347067pt;}
.y10_c00276{bottom:711.947067pt;}
.yf_c00276{bottom:739.547067pt;}
.ye_c00276{bottom:767.147067pt;}
.yd_c00276{bottom:794.747067pt;}
.yc_c00276{bottom:822.347067pt;}
.yb_c00276{bottom:849.947067pt;}
.ya_c00276{bottom:877.547067pt;}
.y9_c00276{bottom:905.147067pt;}
.y8_c00276{bottom:932.747067pt;}
.y7_c00276{bottom:960.347067pt;}
.y6_c00276{bottom:987.947067pt;}
.y3_c00276{bottom:1006.347067pt;}
.y2_c00276{bottom:1035.947576pt;}
.y1_c00276{bottom:1063.147200pt;}
.h1_c00276{height:47.020937pt;}
.h2_c00276{height:56.156250pt;}
.h0_c00276{height:1122.666667pt;}
.w1_c00276{width:793.333333pt;}
.w0_c00276{width:793.626667pt;}
.x0_c00276{left:0.000000pt;}
.x1_c00276{left:113.440000pt;}
.x2_c00276{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.095703;font-style:normal;font-weight:normal;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_d253d847b0d9f68a570d7a9b.woff2')format("woff");}.ff2_c00277{font-family:ff2_c00277;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls19_c00277{letter-spacing:-1.440000px;}
.ls18_c00277{letter-spacing:-0.144000px;}
.ls11_c00277{letter-spacing:-0.093600px;}
.ls12_c00277{letter-spacing:-0.050400px;}
.lse_c00277{letter-spacing:-0.048096px;}
.ls16_c00277{letter-spacing:-0.043200px;}
.ls10_c00277{letter-spacing:-0.036000px;}
.ls15_c00277{letter-spacing:-0.028800px;}
.ls13_c00277{letter-spacing:-0.021600px;}
.ls17_c00277{letter-spacing:-0.014400px;}
.ls14_c00277{letter-spacing:-0.007200px;}
.lsf_c00277{letter-spacing:0.000000px;}
.ls7_c00277{letter-spacing:0.007200px;}
.ls1_c00277{letter-spacing:0.014400px;}
.ls4_c00277{letter-spacing:0.021600px;}
.ls6_c00277{letter-spacing:0.028800px;}
.ls2_c00277{letter-spacing:0.036000px;}
.ls8_c00277{letter-spacing:0.043200px;}
.ls0_c00277{letter-spacing:0.050400px;}
.ls5_c00277{letter-spacing:0.057600px;}
.ls3_c00277{letter-spacing:0.064800px;}
.ls9_c00277{letter-spacing:0.079200px;}
.lsd_c00277{letter-spacing:0.108000px;}
.lsc_c00277{letter-spacing:0.122400px;}
.lsa_c00277{letter-spacing:0.129600px;}
.lsb_c00277{letter-spacing:4.320000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00277{word-spacing:-18.129600px;}
.ws2_c00277{word-spacing:0.000000px;}
.ws1_c00277{word-spacing:0.138276px;}
._e_c00277{margin-left:-3.225600px;}
._0_c00277{margin-left:-1.490400px;}
._4_c00277{width:1.771200px;}
._3_c00277{width:3.211200px;}
._2_c00277{width:5.025600px;}
._f_c00277{width:6.235200px;}
._9_c00277{width:8.611200px;}
._10_c00277{width:10.929600px;}
._b_c00277{width:12.254400px;}
._d_c00277{width:13.521600px;}
._c_c00277{width:14.731200px;}
._1_c00277{width:15.804000px;}
._a_c00277{width:19.044000px;}
._8_c00277{width:21.470400px;}
._7_c00277{width:22.672800px;}
._5_c00277{width:26.553600px;}
._6_c00277{width:28.108800px;}
.fc1_c00277{color:rgb(255,0,0);}
.fc0_c00277{color:rgb(0,0,0);}
.fs0_c00277{font-size:60.120000px;}
.fs1_c00277{font-size:72.000000px;}
.y0_c00277{bottom:0.000000px;}
.y6_c00277{bottom:57.360450px;}
.y5_c00277{bottom:78.060450px;}
.y25_c00277{bottom:192.900450px;}
.y24_c00277{bottom:223.950450px;}
.y23_c00277{bottom:255.000450px;}
.y22_c00277{bottom:286.050450px;}
.y21_c00277{bottom:317.100450px;}
.y20_c00277{bottom:348.150450px;}
.y1f_c00277{bottom:379.200450px;}
.y1e_c00277{bottom:410.250450px;}
.y1d_c00277{bottom:441.300450px;}
.y1c_c00277{bottom:472.350450px;}
.y1b_c00277{bottom:503.400450px;}
.y1a_c00277{bottom:534.450450px;}
.y19_c00277{bottom:565.500450px;}
.y18_c00277{bottom:596.550450px;}
.y17_c00277{bottom:627.600450px;}
.y16_c00277{bottom:658.650450px;}
.y15_c00277{bottom:689.700450px;}
.y14_c00277{bottom:720.750450px;}
.y13_c00277{bottom:751.800450px;}
.y12_c00277{bottom:782.850450px;}
.y11_c00277{bottom:813.900450px;}
.y10_c00277{bottom:844.950450px;}
.yf_c00277{bottom:876.000450px;}
.ye_c00277{bottom:907.050450px;}
.yd_c00277{bottom:938.100450px;}
.yc_c00277{bottom:969.150450px;}
.yb_c00277{bottom:1000.200450px;}
.ya_c00277{bottom:1031.160450px;}
.y9_c00277{bottom:1062.210450px;}
.y8_c00277{bottom:1093.260450px;}
.y7_c00277{bottom:1124.310450px;}
.y4_c00277{bottom:1144.380657px;}
.y3_c00277{bottom:1161.660648px;}
.y2_c00277{bottom:1178.850459px;}
.y1_c00277{bottom:1196.130450px;}
.h1_c00277{height:52.898555px;}
.h2_c00277{height:63.175781px;}
.h0_c00277{height:1263.000000px;}
.w1_c00277{width:892.500000px;}
.w0_c00277{width:892.830000px;}
.x0_c00277{left:0.000000px;}
.x4_c00277{left:127.620000px;}
.x1_c00277{left:649.620000px;}
.x3_c00277{left:738.450000px;}
.x2_c00277{left:765.450198px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls19_c00277{letter-spacing:-1.280000pt;}
.ls18_c00277{letter-spacing:-0.128000pt;}
.ls11_c00277{letter-spacing:-0.083200pt;}
.ls12_c00277{letter-spacing:-0.044800pt;}
.lse_c00277{letter-spacing:-0.042752pt;}
.ls16_c00277{letter-spacing:-0.038400pt;}
.ls10_c00277{letter-spacing:-0.032000pt;}
.ls15_c00277{letter-spacing:-0.025600pt;}
.ls13_c00277{letter-spacing:-0.019200pt;}
.ls17_c00277{letter-spacing:-0.012800pt;}
.ls14_c00277{letter-spacing:-0.006400pt;}
.lsf_c00277{letter-spacing:0.000000pt;}
.ls7_c00277{letter-spacing:0.006400pt;}
.ls1_c00277{letter-spacing:0.012800pt;}
.ls4_c00277{letter-spacing:0.019200pt;}
.ls6_c00277{letter-spacing:0.025600pt;}
.ls2_c00277{letter-spacing:0.032000pt;}
.ls8_c00277{letter-spacing:0.038400pt;}
.ls0_c00277{letter-spacing:0.044800pt;}
.ls5_c00277{letter-spacing:0.051200pt;}
.ls3_c00277{letter-spacing:0.057600pt;}
.ls9_c00277{letter-spacing:0.070400pt;}
.lsd_c00277{letter-spacing:0.096000pt;}
.lsc_c00277{letter-spacing:0.108800pt;}
.lsa_c00277{letter-spacing:0.115200pt;}
.lsb_c00277{letter-spacing:3.840000pt;}
.ws0_c00277{word-spacing:-16.115200pt;}
.ws2_c00277{word-spacing:0.000000pt;}
.ws1_c00277{word-spacing:0.122912pt;}
._e_c00277{margin-left:-2.867200pt;}
._0_c00277{margin-left:-1.324800pt;}
._4_c00277{width:1.574400pt;}
._3_c00277{width:2.854400pt;}
._2_c00277{width:4.467200pt;}
._f_c00277{width:5.542400pt;}
._9_c00277{width:7.654400pt;}
._10_c00277{width:9.715200pt;}
._b_c00277{width:10.892800pt;}
._d_c00277{width:12.019200pt;}
._c_c00277{width:13.094400pt;}
._1_c00277{width:14.048000pt;}
._a_c00277{width:16.928000pt;}
._8_c00277{width:19.084800pt;}
._7_c00277{width:20.153600pt;}
._5_c00277{width:23.603200pt;}
._6_c00277{width:24.985600pt;}
.fs0_c00277{font-size:53.440000pt;}
.fs1_c00277{font-size:64.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y6_c00277{bottom:50.987067pt;}
.y5_c00277{bottom:69.387067pt;}
.y25_c00277{bottom:171.467067pt;}
.y24_c00277{bottom:199.067067pt;}
.y23_c00277{bottom:226.667067pt;}
.y22_c00277{bottom:254.267067pt;}
.y21_c00277{bottom:281.867067pt;}
.y20_c00277{bottom:309.467067pt;}
.y1f_c00277{bottom:337.067067pt;}
.y1e_c00277{bottom:364.667067pt;}
.y1d_c00277{bottom:392.267067pt;}
.y1c_c00277{bottom:419.867067pt;}
.y1b_c00277{bottom:447.467067pt;}
.y1a_c00277{bottom:475.067067pt;}
.y19_c00277{bottom:502.667067pt;}
.y18_c00277{bottom:530.267067pt;}
.y17_c00277{bottom:557.867067pt;}
.y16_c00277{bottom:585.467067pt;}
.y15_c00277{bottom:613.067067pt;}
.y14_c00277{bottom:640.667067pt;}
.y13_c00277{bottom:668.267067pt;}
.y12_c00277{bottom:695.867067pt;}
.y11_c00277{bottom:723.467067pt;}
.y10_c00277{bottom:751.067067pt;}
.yf_c00277{bottom:778.667067pt;}
.ye_c00277{bottom:806.267067pt;}
.yd_c00277{bottom:833.867067pt;}
.yc_c00277{bottom:861.467067pt;}
.yb_c00277{bottom:889.067067pt;}
.ya_c00277{bottom:916.587067pt;}
.y9_c00277{bottom:944.187067pt;}
.y8_c00277{bottom:971.787067pt;}
.y7_c00277{bottom:999.387067pt;}
.y4_c00277{bottom:1017.227251pt;}
.y3_c00277{bottom:1032.587243pt;}
.y2_c00277{bottom:1047.867075pt;}
.y1_c00277{bottom:1063.227067pt;}
.h1_c00277{height:47.020937pt;}
.h2_c00277{height:56.156250pt;}
.h0_c00277{height:1122.666667pt;}
.w1_c00277{width:793.333333pt;}
.w0_c00277{width:793.626667pt;}
.x0_c00277{left:0.000000pt;}
.x4_c00277{left:113.440000pt;}
.x1_c00277{left:577.440000pt;}
.x3_c00277{left:656.400000pt;}
.x2_c00277{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fb445cdee9c6cd0404d3296.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.095703;font-style:normal;font-weight:normal;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_174055fa470fd88ab516343d.woff2')format("woff");}.ff2_c00278{font-family:ff2_c00278;line-height:1.093262;font-style:normal;font-weight:normal;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_f87c0112e14a0cf62b7b7845.woff2')format("woff");}.ff3_c00278{font-family:ff3_c00278;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00278{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls13_c00278{letter-spacing:-1.440000px;}
.lsf_c00278{letter-spacing:-0.102204px;}
.ls12_c00278{letter-spacing:-0.014400px;}
.ls11_c00278{letter-spacing:-0.007200px;}
.ls10_c00278{letter-spacing:0.000000px;}
.ls4_c00278{letter-spacing:0.007200px;}
.ls9_c00278{letter-spacing:0.014400px;}
.lsa_c00278{letter-spacing:0.021600px;}
.lse_c00278{letter-spacing:0.027000px;}
.ls5_c00278{letter-spacing:0.028800px;}
.ls1_c00278{letter-spacing:0.033552px;}
.ls6_c00278{letter-spacing:0.036000px;}
.ls0_c00278{letter-spacing:0.041940px;}
.ls8_c00278{letter-spacing:0.043200px;}
.lsd_c00278{letter-spacing:0.050400px;}
.ls2_c00278{letter-spacing:0.057600px;}
.ls3_c00278{letter-spacing:0.064800px;}
.lsc_c00278{letter-spacing:0.075492px;}
.ls7_c00278{letter-spacing:0.086400px;}
.lsb_c00278{letter-spacing:0.100800px;}
.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:0.000000px;}
.ws2_c00278{word-spacing:0.151200px;}
.ws0_c00278{word-spacing:0.192384px;}
._b_c00278{margin-left:-4.521600px;}
._4_c00278{margin-left:-3.384000px;}
._3_c00278{margin-left:-2.224800px;}
._2_c00278{margin-left:-1.195200px;}
._0_c00278{width:1.034064px;}
._9_c00278{width:2.376000px;}
._8_c00278{width:3.592800px;}
._1_c00278{width:5.047200px;}
._c_c00278{width:6.638400px;}
._7_c00278{width:8.244000px;}
._a_c00278{width:9.684000px;}
._5_c00278{width:14.364000px;}
._6_c00278{width:19.310400px;}
.fc2_c00278{color:rgb(68,84,106);}
.fc1_c00278{color:rgb(0,0,0);}
.fc0_c00278{color:rgb(32,31,30);}
.fs3_c00278{font-size:54.000000px;}
.fs0_c00278{font-size:60.120000px;}
.fs1_c00278{font-size:72.000000px;}
.fs2_c00278{font-size:83.880000px;}
.y0_c00278{bottom:0.000000px;}
.y26_c00278{bottom:3.240450px;}
.y5_c00278{bottom:57.360450px;}
.y4_c00278{bottom:78.060450px;}
.y24_c00278{bottom:136.020450px;}
.y23_c00278{bottom:167.070450px;}
.y22_c00278{bottom:198.120450px;}
.y21_c00278{bottom:232.320450px;}
.y20_c00278{bottom:255.450450px;}
.y1f_c00278{bottom:292.530450px;}
.y1e_c00278{bottom:323.580450px;}
.y1d_c00278{bottom:354.630450px;}
.y1c_c00278{bottom:385.680450px;}
.y1b_c00278{bottom:416.730450px;}
.y1a_c00278{bottom:447.780450px;}
.y19_c00278{bottom:478.830450px;}
.y18_c00278{bottom:509.880450px;}
.y17_c00278{bottom:540.930450px;}
.y16_c00278{bottom:571.980450px;}
.y15_c00278{bottom:603.030450px;}
.y14_c00278{bottom:634.080450px;}
.y13_c00278{bottom:665.130450px;}
.y12_c00278{bottom:696.180450px;}
.y11_c00278{bottom:727.230450px;}
.y10_c00278{bottom:758.280450px;}
.yf_c00278{bottom:792.480450px;}
.ye_c00278{bottom:815.611989px;}
.yd_c00278{bottom:854.762979px;}
.yc_c00278{bottom:891.032691px;}
.yb_c00278{bottom:927.212232px;}
.ya_c00278{bottom:963.481944px;}
.y9_c00278{bottom:999.661485px;}
.y8_c00278{bottom:1035.931197px;}
.y7_c00278{bottom:1072.110738px;}
.y6_c00278{bottom:1108.380450px;}
.y25_c00278{bottom:1110.270000px;}
.y27_c00278{bottom:1113.510450px;}
.y3_c00278{bottom:1132.140450px;}
.y2_c00278{bottom:1165.441023px;}
.y1_c00278{bottom:1196.040600px;}
.h4_c00278{height:15.300000px;}
.h5_c00278{height:47.513672px;}
.h1_c00278{height:52.898555px;}
.h2_c00278{height:63.175781px;}
.h6_c00278{height:63.351562px;}
.h3_c00278{height:74.500840px;}
.h0_c00278{height:1263.000000px;}
.w2_c00278{width:229.860000px;}
.w1_c00278{width:892.500000px;}
.w0_c00278{width:892.830000px;}
.x0_c00278{left:0.000000px;}
.x1_c00278{left:127.620000px;}
.x4_c00278{left:132.120000px;}
.x3_c00278{left:523.620000px;}
.x2_c00278{left:738.450000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls13_c00278{letter-spacing:-1.280000pt;}
.lsf_c00278{letter-spacing:-0.090848pt;}
.ls12_c00278{letter-spacing:-0.012800pt;}
.ls11_c00278{letter-spacing:-0.006400pt;}
.ls10_c00278{letter-spacing:0.000000pt;}
.ls4_c00278{letter-spacing:0.006400pt;}
.ls9_c00278{letter-spacing:0.012800pt;}
.lsa_c00278{letter-spacing:0.019200pt;}
.lse_c00278{letter-spacing:0.024000pt;}
.ls5_c00278{letter-spacing:0.025600pt;}
.ls1_c00278{letter-spacing:0.029824pt;}
.ls6_c00278{letter-spacing:0.032000pt;}
.ls0_c00278{letter-spacing:0.037280pt;}
.ls8_c00278{letter-spacing:0.038400pt;}
.lsd_c00278{letter-spacing:0.044800pt;}
.ls2_c00278{letter-spacing:0.051200pt;}
.ls3_c00278{letter-spacing:0.057600pt;}
.lsc_c00278{letter-spacing:0.067104pt;}
.ls7_c00278{letter-spacing:0.076800pt;}
.lsb_c00278{letter-spacing:0.089600pt;}
.ws1_c00278{word-spacing:0.000000pt;}
.ws2_c00278{word-spacing:0.134400pt;}
.ws0_c00278{word-spacing:0.171008pt;}
._b_c00278{margin-left:-4.019200pt;}
._4_c00278{margin-left:-3.008000pt;}
._3_c00278{margin-left:-1.977600pt;}
._2_c00278{margin-left:-1.062400pt;}
._0_c00278{width:0.919168pt;}
._9_c00278{width:2.112000pt;}
._8_c00278{width:3.193600pt;}
._1_c00278{width:4.486400pt;}
._c_c00278{width:5.900800pt;}
._7_c00278{width:7.328000pt;}
._a_c00278{width:8.608000pt;}
._5_c00278{width:12.768000pt;}
._6_c00278{width:17.164800pt;}
.fs3_c00278{font-size:48.000000pt;}
.fs0_c00278{font-size:53.440000pt;}
.fs1_c00278{font-size:64.000000pt;}
.fs2_c00278{font-size:74.560000pt;}
.y0_c00278{bottom:0.000000pt;}
.y26_c00278{bottom:2.880400pt;}
.y5_c00278{bottom:50.987067pt;}
.y4_c00278{bottom:69.387067pt;}
.y24_c00278{bottom:120.907067pt;}
.y23_c00278{bottom:148.507067pt;}
.y22_c00278{bottom:176.107067pt;}
.y21_c00278{bottom:206.507067pt;}
.y20_c00278{bottom:227.067067pt;}
.y1f_c00278{bottom:260.027067pt;}
.y1e_c00278{bottom:287.627067pt;}
.y1d_c00278{bottom:315.227067pt;}
.y1c_c00278{bottom:342.827067pt;}
.y1b_c00278{bottom:370.427067pt;}
.y1a_c00278{bottom:398.027067pt;}
.y19_c00278{bottom:425.627067pt;}
.y18_c00278{bottom:453.227067pt;}
.y17_c00278{bottom:480.827067pt;}
.y16_c00278{bottom:508.427067pt;}
.y15_c00278{bottom:536.027067pt;}
.y14_c00278{bottom:563.627067pt;}
.y13_c00278{bottom:591.227067pt;}
.y12_c00278{bottom:618.827067pt;}
.y11_c00278{bottom:646.427067pt;}
.y10_c00278{bottom:674.027067pt;}
.yf_c00278{bottom:704.427067pt;}
.ye_c00278{bottom:724.988435pt;}
.yd_c00278{bottom:759.789315pt;}
.yc_c00278{bottom:792.029059pt;}
.yb_c00278{bottom:824.188651pt;}
.ya_c00278{bottom:856.428395pt;}
.y9_c00278{bottom:888.587987pt;}
.y8_c00278{bottom:920.827731pt;}
.y7_c00278{bottom:952.987323pt;}
.y6_c00278{bottom:985.227067pt;}
.y25_c00278{bottom:986.906667pt;}
.y27_c00278{bottom:989.787067pt;}
.y3_c00278{bottom:1006.347067pt;}
.y2_c00278{bottom:1035.947576pt;}
.y1_c00278{bottom:1063.147200pt;}
.h4_c00278{height:13.600000pt;}
.h5_c00278{height:42.234375pt;}
.h1_c00278{height:47.020937pt;}
.h2_c00278{height:56.156250pt;}
.h6_c00278{height:56.312500pt;}
.h3_c00278{height:66.222969pt;}
.h0_c00278{height:1122.666667pt;}
.w2_c00278{width:204.320000pt;}
.w1_c00278{width:793.333333pt;}
.w0_c00278{width:793.626667pt;}
.x0_c00278{left:0.000000pt;}
.x1_c00278{left:113.440000pt;}
.x4_c00278{left:117.440000pt;}
.x3_c00278{left:465.440000pt;}
.x2_c00278{left:656.400000pt;}
}





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

.ir_c00279:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00279;src:url('chunks/assets/font_736b891d343aaaef02d1ff4c.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.095703;font-style:normal;font-weight:normal;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_c47c00feb70fd5ee97b14504.woff2')format("woff");}.ff2_c00279{font-family:ff2_c00279;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00279{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls16_c00279{letter-spacing:-1.504800px;}
.ls19_c00279{letter-spacing:-0.561600px;}
.ls13_c00279{letter-spacing:-0.064800px;}
.ls11_c00279{letter-spacing:-0.048096px;}
.ls17_c00279{letter-spacing:-0.036000px;}
.ls1b_c00279{letter-spacing:-0.028800px;}
.ls1a_c00279{letter-spacing:-0.021600px;}
.ls18_c00279{letter-spacing:-0.014400px;}
.ls14_c00279{letter-spacing:-0.007200px;}
.ls12_c00279{letter-spacing:0.000000px;}
.ls8_c00279{letter-spacing:0.005400px;}
.ls2_c00279{letter-spacing:0.007200px;}
.ls7_c00279{letter-spacing:0.010800px;}
.ls6_c00279{letter-spacing:0.014400px;}
.ls0_c00279{letter-spacing:0.021600px;}
.ls5_c00279{letter-spacing:0.028800px;}
.ls9_c00279{letter-spacing:0.032400px;}
.ls4_c00279{letter-spacing:0.036000px;}
.lse_c00279{letter-spacing:0.043200px;}
.lsa_c00279{letter-spacing:0.050400px;}
.ls3_c00279{letter-spacing:0.057600px;}
.lsd_c00279{letter-spacing:0.064800px;}
.ls1_c00279{letter-spacing:0.072000px;}
.lsf_c00279{letter-spacing:0.079200px;}
.lsc_c00279{letter-spacing:0.086400px;}
.ls10_c00279{letter-spacing:0.093600px;}
.lsb_c00279{letter-spacing:0.100800px;}
.ls15_c00279{letter-spacing:913.140000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00279{word-spacing:0.000000px;}
.ws0_c00279{word-spacing:0.138276px;}
.ws3_c00279{word-spacing:0.145800px;}
.ws2_c00279{word-spacing:0.529200px;}
._5_c00279{margin-left:-138.958200px;}
._6_c00279{margin-left:-108.000000px;}
._b_c00279{margin-left:-4.629600px;}
._2_c00279{margin-left:-3.376800px;}
._0_c00279{margin-left:-2.181600px;}
._4_c00279{margin-left:-1.094400px;}
._1_c00279{width:1.224000px;}
._3_c00279{width:2.484000px;}
._e_c00279{width:3.736800px;}
._d_c00279{width:5.781600px;}
._c_c00279{width:6.818400px;}
._7_c00279{width:9.295200px;}
._9_c00279{width:11.829600px;}
._a_c00279{width:12.873600px;}
._f_c00279{width:14.760000px;}
._8_c00279{width:16.516800px;}
.fc1_c00279{color:rgb(68,84,106);}
.fc0_c00279{color:rgb(0,0,0);}
.fs2_c00279{font-size:54.000000px;}
.fs0_c00279{font-size:60.120000px;}
.fs1_c00279{font-size:72.000000px;}
.y0_c00279{bottom:0.000000px;}
.y6_c00279{bottom:57.360450px;}
.y5_c00279{bottom:78.060450px;}
.y24_c00279{bottom:117.120450px;}
.y23_c00279{bottom:148.170450px;}
.y22_c00279{bottom:179.220450px;}
.y21_c00279{bottom:210.270450px;}
.y20_c00279{bottom:241.320450px;}
.y1f_c00279{bottom:272.370450px;}
.y1e_c00279{bottom:303.420450px;}
.y1d_c00279{bottom:334.380450px;}
.y1c_c00279{bottom:365.430450px;}
.y1b_c00279{bottom:396.480450px;}
.y1a_c00279{bottom:427.530450px;}
.y19_c00279{bottom:458.580450px;}
.y18_c00279{bottom:489.630450px;}
.y17_c00279{bottom:520.680450px;}
.y16_c00279{bottom:551.730450px;}
.y15_c00279{bottom:582.780450px;}
.y14_c00279{bottom:613.830450px;}
.y13_c00279{bottom:644.880450px;}
.y12_c00279{bottom:675.930450px;}
.y11_c00279{bottom:707.609550px;}
.y10_c00279{bottom:865.289550px;}
.yf_c00279{bottom:880.770000px;}
.ye_c00279{bottom:911.370450px;}
.yd_c00279{bottom:938.100450px;}
.yc_c00279{bottom:969.150450px;}
.yb_c00279{bottom:1000.200450px;}
.ya_c00279{bottom:1031.160450px;}
.y9_c00279{bottom:1062.210450px;}
.y8_c00279{bottom:1093.260450px;}
.y7_c00279{bottom:1124.310450px;}
.y4_c00279{bottom:1144.380657px;}
.y3_c00279{bottom:1161.660648px;}
.y2_c00279{bottom:1178.850459px;}
.y1_c00279{bottom:1196.130450px;}
.h3_c00279{height:47.513672px;}
.h1_c00279{height:52.898555px;}
.h2_c00279{height:63.175781px;}
.h0_c00279{height:1263.000000px;}
.w1_c00279{width:892.500000px;}
.w0_c00279{width:892.830000px;}
.x0_c00279{left:0.000000px;}
.x4_c00279{left:127.620000px;}
.x1_c00279{left:649.620000px;}
.x3_c00279{left:738.450000px;}
.x2_c00279{left:765.450198px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls16_c00279{letter-spacing:-1.337600pt;}
.ls19_c00279{letter-spacing:-0.499200pt;}
.ls13_c00279{letter-spacing:-0.057600pt;}
.ls11_c00279{letter-spacing:-0.042752pt;}
.ls17_c00279{letter-spacing:-0.032000pt;}
.ls1b_c00279{letter-spacing:-0.025600pt;}
.ls1a_c00279{letter-spacing:-0.019200pt;}
.ls18_c00279{letter-spacing:-0.012800pt;}
.ls14_c00279{letter-spacing:-0.006400pt;}
.ls12_c00279{letter-spacing:0.000000pt;}
.ls8_c00279{letter-spacing:0.004800pt;}
.ls2_c00279{letter-spacing:0.006400pt;}
.ls7_c00279{letter-spacing:0.009600pt;}
.ls6_c00279{letter-spacing:0.012800pt;}
.ls0_c00279{letter-spacing:0.019200pt;}
.ls5_c00279{letter-spacing:0.025600pt;}
.ls9_c00279{letter-spacing:0.028800pt;}
.ls4_c00279{letter-spacing:0.032000pt;}
.lse_c00279{letter-spacing:0.038400pt;}
.lsa_c00279{letter-spacing:0.044800pt;}
.ls3_c00279{letter-spacing:0.051200pt;}
.lsd_c00279{letter-spacing:0.057600pt;}
.ls1_c00279{letter-spacing:0.064000pt;}
.lsf_c00279{letter-spacing:0.070400pt;}
.lsc_c00279{letter-spacing:0.076800pt;}
.ls10_c00279{letter-spacing:0.083200pt;}
.lsb_c00279{letter-spacing:0.089600pt;}
.ls15_c00279{letter-spacing:811.680000pt;}
.ws1_c00279{word-spacing:0.000000pt;}
.ws0_c00279{word-spacing:0.122912pt;}
.ws3_c00279{word-spacing:0.129600pt;}
.ws2_c00279{word-spacing:0.470400pt;}
._5_c00279{margin-left:-123.518400pt;}
._6_c00279{margin-left:-96.000000pt;}
._b_c00279{margin-left:-4.115200pt;}
._2_c00279{margin-left:-3.001600pt;}
._0_c00279{margin-left:-1.939200pt;}
._4_c00279{margin-left:-0.972800pt;}
._1_c00279{width:1.088000pt;}
._3_c00279{width:2.208000pt;}
._e_c00279{width:3.321600pt;}
._d_c00279{width:5.139200pt;}
._c_c00279{width:6.060800pt;}
._7_c00279{width:8.262400pt;}
._9_c00279{width:10.515200pt;}
._a_c00279{width:11.443200pt;}
._f_c00279{width:13.120000pt;}
._8_c00279{width:14.681600pt;}
.fs2_c00279{font-size:48.000000pt;}
.fs0_c00279{font-size:53.440000pt;}
.fs1_c00279{font-size:64.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y6_c00279{bottom:50.987067pt;}
.y5_c00279{bottom:69.387067pt;}
.y24_c00279{bottom:104.107067pt;}
.y23_c00279{bottom:131.707067pt;}
.y22_c00279{bottom:159.307067pt;}
.y21_c00279{bottom:186.907067pt;}
.y20_c00279{bottom:214.507067pt;}
.y1f_c00279{bottom:242.107067pt;}
.y1e_c00279{bottom:269.707067pt;}
.y1d_c00279{bottom:297.227067pt;}
.y1c_c00279{bottom:324.827067pt;}
.y1b_c00279{bottom:352.427067pt;}
.y1a_c00279{bottom:380.027067pt;}
.y19_c00279{bottom:407.627067pt;}
.y18_c00279{bottom:435.227067pt;}
.y17_c00279{bottom:462.827067pt;}
.y16_c00279{bottom:490.427067pt;}
.y15_c00279{bottom:518.027067pt;}
.y14_c00279{bottom:545.627067pt;}
.y13_c00279{bottom:573.227067pt;}
.y12_c00279{bottom:600.827067pt;}
.y11_c00279{bottom:628.986267pt;}
.y10_c00279{bottom:769.146267pt;}
.yf_c00279{bottom:782.906667pt;}
.ye_c00279{bottom:810.107067pt;}
.yd_c00279{bottom:833.867067pt;}
.yc_c00279{bottom:861.467067pt;}
.yb_c00279{bottom:889.067067pt;}
.ya_c00279{bottom:916.587067pt;}
.y9_c00279{bottom:944.187067pt;}
.y8_c00279{bottom:971.787067pt;}
.y7_c00279{bottom:999.387067pt;}
.y4_c00279{bottom:1017.227251pt;}
.y3_c00279{bottom:1032.587243pt;}
.y2_c00279{bottom:1047.867075pt;}
.y1_c00279{bottom:1063.227067pt;}
.h3_c00279{height:42.234375pt;}
.h1_c00279{height:47.020937pt;}
.h2_c00279{height:56.156250pt;}
.h0_c00279{height:1122.666667pt;}
.w1_c00279{width:793.333333pt;}
.w0_c00279{width:793.626667pt;}
.x0_c00279{left:0.000000pt;}
.x4_c00279{left:113.440000pt;}
.x1_c00279{left:577.440000pt;}
.x3_c00279{left:656.400000pt;}
.x2_c00279{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_854a87b5db637cea4284c969.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.095703;font-style:normal;font-weight:normal;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_20ee9fa7de315cb913e8c17d.woff2')format("woff");}.ff2_c00280{font-family:ff2_c00280;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00280{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls11_c00280{letter-spacing:-0.102204px;}
.ls15_c00280{letter-spacing:-0.043200px;}
.ls16_c00280{letter-spacing:-0.028800px;}
.ls13_c00280{letter-spacing:-0.021600px;}
.ls17_c00280{letter-spacing:-0.007200px;}
.ls12_c00280{letter-spacing:0.000000px;}
.ls1_c00280{letter-spacing:0.007200px;}
.ls4_c00280{letter-spacing:0.014400px;}
.ls3_c00280{letter-spacing:0.021600px;}
.lsa_c00280{letter-spacing:0.028800px;}
.ls6_c00280{letter-spacing:0.036000px;}
.lsb_c00280{letter-spacing:0.043200px;}
.ls0_c00280{letter-spacing:0.050400px;}
.ls9_c00280{letter-spacing:0.057600px;}
.ls2_c00280{letter-spacing:0.064800px;}
.ls5_c00280{letter-spacing:0.072000px;}
.ls8_c00280{letter-spacing:0.079200px;}
.lsf_c00280{letter-spacing:0.086400px;}
.ls7_c00280{letter-spacing:0.100800px;}
.lsd_c00280{letter-spacing:0.108000px;}
.lsc_c00280{letter-spacing:0.122400px;}
.lse_c00280{letter-spacing:0.129600px;}
.ls10_c00280{letter-spacing:0.180000px;}
.ls14_c00280{letter-spacing:27.720000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00280{word-spacing:-18.000000px;}
.ws0_c00280{word-spacing:-17.978400px;}
.ws3_c00280{word-spacing:0.000000px;}
.ws2_c00280{word-spacing:0.192384px;}
.ws4_c00280{word-spacing:27.712800px;}
._8_c00280{margin-left:-28.612800px;}
._7_c00280{margin-left:-27.230400px;}
._c_c00280{margin-left:-4.737600px;}
._1_c00280{margin-left:-3.290400px;}
._10_c00280{margin-left:-2.253600px;}
._3_c00280{margin-left:-1.015200px;}
._0_c00280{width:1.034064px;}
._d_c00280{width:2.712672px;}
._2_c00280{width:3.924000px;}
._a_c00280{width:5.011200px;}
._e_c00280{width:6.177600px;}
._4_c00280{width:7.502400px;}
._5_c00280{width:8.856000px;}
._b_c00280{width:9.907200px;}
._12_c00280{width:13.089600px;}
._11_c00280{width:14.371200px;}
._13_c00280{width:15.429600px;}
._14_c00280{width:16.545600px;}
._f_c00280{width:25.545600px;}
._6_c00280{width:26.870400px;}
._9_c00280{width:28.288800px;}
.fc1_c00280{color:rgb(0,0,0);}
.fc0_c00280{color:rgb(32,31,30);}
.fs0_c00280{font-size:60.120000px;}
.fs1_c00280{font-size:72.000000px;}
.y0_c00280{bottom:0.000000px;}
.y5_c00280{bottom:57.360450px;}
.y4_c00280{bottom:78.060450px;}
.y26_c00280{bottom:117.930450px;}
.y25_c00280{bottom:148.980450px;}
.y24_c00280{bottom:180.030450px;}
.y23_c00280{bottom:211.080450px;}
.y22_c00280{bottom:242.130450px;}
.y21_c00280{bottom:273.090450px;}
.y20_c00280{bottom:304.140450px;}
.y1f_c00280{bottom:335.190450px;}
.y1e_c00280{bottom:366.240450px;}
.y1d_c00280{bottom:397.290450px;}
.y1c_c00280{bottom:428.340450px;}
.y1b_c00280{bottom:459.390450px;}
.y1a_c00280{bottom:490.440450px;}
.y19_c00280{bottom:521.490450px;}
.y18_c00280{bottom:552.540450px;}
.y17_c00280{bottom:583.590450px;}
.y16_c00280{bottom:614.640450px;}
.y15_c00280{bottom:645.690450px;}
.y14_c00280{bottom:676.740450px;}
.y13_c00280{bottom:707.790450px;}
.y12_c00280{bottom:738.840450px;}
.y11_c00280{bottom:769.890450px;}
.y10_c00280{bottom:800.940450px;}
.yf_c00280{bottom:831.990450px;}
.ye_c00280{bottom:863.040450px;}
.yd_c00280{bottom:894.090450px;}
.yc_c00280{bottom:925.140450px;}
.yb_c00280{bottom:956.190450px;}
.ya_c00280{bottom:987.240450px;}
.y9_c00280{bottom:1018.290450px;}
.y8_c00280{bottom:1049.340450px;}
.y7_c00280{bottom:1080.390450px;}
.y6_c00280{bottom:1111.440450px;}
.y3_c00280{bottom:1132.140450px;}
.y2_c00280{bottom:1165.441023px;}
.y1_c00280{bottom:1196.040600px;}
.h1_c00280{height:52.898555px;}
.h2_c00280{height:63.175781px;}
.h3_c00280{height:63.351562px;}
.h0_c00280{height:1263.000000px;}
.w1_c00280{width:892.500000px;}
.w0_c00280{width:892.830000px;}
.x0_c00280{left:0.000000px;}
.x1_c00280{left:127.620000px;}
.x2_c00280{left:738.450000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls11_c00280{letter-spacing:-0.090848pt;}
.ls15_c00280{letter-spacing:-0.038400pt;}
.ls16_c00280{letter-spacing:-0.025600pt;}
.ls13_c00280{letter-spacing:-0.019200pt;}
.ls17_c00280{letter-spacing:-0.006400pt;}
.ls12_c00280{letter-spacing:0.000000pt;}
.ls1_c00280{letter-spacing:0.006400pt;}
.ls4_c00280{letter-spacing:0.012800pt;}
.ls3_c00280{letter-spacing:0.019200pt;}
.lsa_c00280{letter-spacing:0.025600pt;}
.ls6_c00280{letter-spacing:0.032000pt;}
.lsb_c00280{letter-spacing:0.038400pt;}
.ls0_c00280{letter-spacing:0.044800pt;}
.ls9_c00280{letter-spacing:0.051200pt;}
.ls2_c00280{letter-spacing:0.057600pt;}
.ls5_c00280{letter-spacing:0.064000pt;}
.ls8_c00280{letter-spacing:0.070400pt;}
.lsf_c00280{letter-spacing:0.076800pt;}
.ls7_c00280{letter-spacing:0.089600pt;}
.lsd_c00280{letter-spacing:0.096000pt;}
.lsc_c00280{letter-spacing:0.108800pt;}
.lse_c00280{letter-spacing:0.115200pt;}
.ls10_c00280{letter-spacing:0.160000pt;}
.ls14_c00280{letter-spacing:24.640000pt;}
.ws1_c00280{word-spacing:-16.000000pt;}
.ws0_c00280{word-spacing:-15.980800pt;}
.ws3_c00280{word-spacing:0.000000pt;}
.ws2_c00280{word-spacing:0.171008pt;}
.ws4_c00280{word-spacing:24.633600pt;}
._8_c00280{margin-left:-25.433600pt;}
._7_c00280{margin-left:-24.204800pt;}
._c_c00280{margin-left:-4.211200pt;}
._1_c00280{margin-left:-2.924800pt;}
._10_c00280{margin-left:-2.003200pt;}
._3_c00280{margin-left:-0.902400pt;}
._0_c00280{width:0.919168pt;}
._d_c00280{width:2.411264pt;}
._2_c00280{width:3.488000pt;}
._a_c00280{width:4.454400pt;}
._e_c00280{width:5.491200pt;}
._4_c00280{width:6.668800pt;}
._5_c00280{width:7.872000pt;}
._b_c00280{width:8.806400pt;}
._12_c00280{width:11.635200pt;}
._11_c00280{width:12.774400pt;}
._13_c00280{width:13.715200pt;}
._14_c00280{width:14.707200pt;}
._f_c00280{width:22.707200pt;}
._6_c00280{width:23.884800pt;}
._9_c00280{width:25.145600pt;}
.fs0_c00280{font-size:53.440000pt;}
.fs1_c00280{font-size:64.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y5_c00280{bottom:50.987067pt;}
.y4_c00280{bottom:69.387067pt;}
.y26_c00280{bottom:104.827067pt;}
.y25_c00280{bottom:132.427067pt;}
.y24_c00280{bottom:160.027067pt;}
.y23_c00280{bottom:187.627067pt;}
.y22_c00280{bottom:215.227067pt;}
.y21_c00280{bottom:242.747067pt;}
.y20_c00280{bottom:270.347067pt;}
.y1f_c00280{bottom:297.947067pt;}
.y1e_c00280{bottom:325.547067pt;}
.y1d_c00280{bottom:353.147067pt;}
.y1c_c00280{bottom:380.747067pt;}
.y1b_c00280{bottom:408.347067pt;}
.y1a_c00280{bottom:435.947067pt;}
.y19_c00280{bottom:463.547067pt;}
.y18_c00280{bottom:491.147067pt;}
.y17_c00280{bottom:518.747067pt;}
.y16_c00280{bottom:546.347067pt;}
.y15_c00280{bottom:573.947067pt;}
.y14_c00280{bottom:601.547067pt;}
.y13_c00280{bottom:629.147067pt;}
.y12_c00280{bottom:656.747067pt;}
.y11_c00280{bottom:684.347067pt;}
.y10_c00280{bottom:711.947067pt;}
.yf_c00280{bottom:739.547067pt;}
.ye_c00280{bottom:767.147067pt;}
.yd_c00280{bottom:794.747067pt;}
.yc_c00280{bottom:822.347067pt;}
.yb_c00280{bottom:849.947067pt;}
.ya_c00280{bottom:877.547067pt;}
.y9_c00280{bottom:905.147067pt;}
.y8_c00280{bottom:932.747067pt;}
.y7_c00280{bottom:960.347067pt;}
.y6_c00280{bottom:987.947067pt;}
.y3_c00280{bottom:1006.347067pt;}
.y2_c00280{bottom:1035.947576pt;}
.y1_c00280{bottom:1063.147200pt;}
.h1_c00280{height:47.020937pt;}
.h2_c00280{height:56.156250pt;}
.h3_c00280{height:56.312500pt;}
.h0_c00280{height:1122.666667pt;}
.w1_c00280{width:793.333333pt;}
.w0_c00280{width:793.626667pt;}
.x0_c00280{left:0.000000pt;}
.x1_c00280{left:113.440000pt;}
.x2_c00280{left:656.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_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_02bfb71659fcd4286979c742.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.095703;font-style:normal;font-weight:normal;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_8a515898249b8e08d566a34d.woff2')format("woff");}.ff2_c00281{font-family:ff2_c00281;line-height:1.093262;font-style:normal;font-weight:normal;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_00f1d391484387c4800bc013.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00281{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls13_c00281{letter-spacing:-0.180000px;}
.ls16_c00281{letter-spacing:-0.158400px;}
.ls10_c00281{letter-spacing:-0.048096px;}
.ls15_c00281{letter-spacing:-0.036000px;}
.ls14_c00281{letter-spacing:-0.014400px;}
.ls12_c00281{letter-spacing:-0.010800px;}
.ls11_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:0.005400px;}
.lsc_c00281{letter-spacing:0.007200px;}
.lsf_c00281{letter-spacing:0.014400px;}
.ls5_c00281{letter-spacing:0.021600px;}
.ls1_c00281{letter-spacing:0.027000px;}
.ls9_c00281{letter-spacing:0.028800px;}
.lsa_c00281{letter-spacing:0.036000px;}
.ls6_c00281{letter-spacing:0.041940px;}
.ls7_c00281{letter-spacing:0.043200px;}
.ls3_c00281{letter-spacing:0.050400px;}
.ls4_c00281{letter-spacing:0.057600px;}
.lse_c00281{letter-spacing:0.064800px;}
.lsb_c00281{letter-spacing:0.072000px;}
.ls8_c00281{letter-spacing:0.100800px;}
.lsd_c00281{letter-spacing:0.122400px;}
.ls2_c00281{letter-spacing:801.000000px;}
.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;}
}
.ws1_c00281{word-spacing:0.000000px;}
.ws0_c00281{word-spacing:0.138276px;}
.ws3_c00281{word-spacing:0.151200px;}
.ws2_c00281{word-spacing:0.172800px;}
.ws4_c00281{word-spacing:0.189000px;}
._1_c00281{margin-left:-36.000000px;}
._0_c00281{margin-left:-1.101600px;}
._3_c00281{width:1.245600px;}
._2_c00281{width:2.469600px;}
._9_c00281{width:4.089600px;}
._6_c00281{width:5.976000px;}
._4_c00281{width:7.509600px;}
._5_c00281{width:8.956800px;}
._a_c00281{width:14.414400px;}
._8_c00281{width:15.782400px;}
._7_c00281{width:16.848000px;}
.fc1_c00281{color:rgb(68,84,106);}
.fc0_c00281{color:rgb(0,0,0);}
.fs2_c00281{font-size:54.000000px;}
.fs0_c00281{font-size:60.120000px;}
.fs1_c00281{font-size:72.000000px;}
.fs3_c00281{font-size:83.880000px;}
.y0_c00281{bottom:0.000000px;}
.y6_c00281{bottom:57.360450px;}
.y5_c00281{bottom:78.060450px;}
.y21_c00281{bottom:130.530450px;}
.y20_c00281{bottom:161.580450px;}
.y1f_c00281{bottom:192.630450px;}
.y1e_c00281{bottom:223.680450px;}
.y1d_c00281{bottom:254.730450px;}
.y1c_c00281{bottom:285.780450px;}
.y1b_c00281{bottom:316.830450px;}
.y1a_c00281{bottom:347.880450px;}
.y19_c00281{bottom:378.930450px;}
.y18_c00281{bottom:409.980450px;}
.y17_c00281{bottom:441.030450px;}
.y16_c00281{bottom:472.080450px;}
.y15_c00281{bottom:503.130450px;}
.y14_c00281{bottom:534.180450px;}
.y13_c00281{bottom:565.230450px;}
.y12_c00281{bottom:596.190450px;}
.y11_c00281{bottom:627.240450px;}
.y10_c00281{bottom:658.290450px;}
.yf_c00281{bottom:692.580450px;}
.ye_c00281{bottom:715.620450px;}
.yd_c00281{bottom:761.700450px;}
.yc_c00281{bottom:804.720450px;}
.yb_c00281{bottom:835.860450px;}
.ya_c00281{bottom:866.910450px;}
.y9_c00281{bottom:897.960450px;}
.y8_c00281{bottom:924.960450px;}
.y7_c00281{bottom:1128.630450px;}
.y4_c00281{bottom:1144.380657px;}
.y3_c00281{bottom:1161.660648px;}
.y2_c00281{bottom:1178.850459px;}
.y1_c00281{bottom:1196.130450px;}
.h3_c00281{height:47.513672px;}
.h1_c00281{height:52.898555px;}
.h2_c00281{height:63.175781px;}
.h4_c00281{height:74.500840px;}
.h0_c00281{height:1263.000000px;}
.w1_c00281{width:892.500000px;}
.w0_c00281{width:892.830000px;}
.x0_c00281{left:0.000000px;}
.x4_c00281{left:127.620000px;}
.x5_c00281{left:351.450000px;}
.x1_c00281{left:649.620000px;}
.x3_c00281{left:738.450000px;}
.x2_c00281{left:765.450198px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls13_c00281{letter-spacing:-0.160000pt;}
.ls16_c00281{letter-spacing:-0.140800pt;}
.ls10_c00281{letter-spacing:-0.042752pt;}
.ls15_c00281{letter-spacing:-0.032000pt;}
.ls14_c00281{letter-spacing:-0.012800pt;}
.ls12_c00281{letter-spacing:-0.009600pt;}
.ls11_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:0.004800pt;}
.lsc_c00281{letter-spacing:0.006400pt;}
.lsf_c00281{letter-spacing:0.012800pt;}
.ls5_c00281{letter-spacing:0.019200pt;}
.ls1_c00281{letter-spacing:0.024000pt;}
.ls9_c00281{letter-spacing:0.025600pt;}
.lsa_c00281{letter-spacing:0.032000pt;}
.ls6_c00281{letter-spacing:0.037280pt;}
.ls7_c00281{letter-spacing:0.038400pt;}
.ls3_c00281{letter-spacing:0.044800pt;}
.ls4_c00281{letter-spacing:0.051200pt;}
.lse_c00281{letter-spacing:0.057600pt;}
.lsb_c00281{letter-spacing:0.064000pt;}
.ls8_c00281{letter-spacing:0.089600pt;}
.lsd_c00281{letter-spacing:0.108800pt;}
.ls2_c00281{letter-spacing:712.000000pt;}
.ws1_c00281{word-spacing:0.000000pt;}
.ws0_c00281{word-spacing:0.122912pt;}
.ws3_c00281{word-spacing:0.134400pt;}
.ws2_c00281{word-spacing:0.153600pt;}
.ws4_c00281{word-spacing:0.168000pt;}
._1_c00281{margin-left:-32.000000pt;}
._0_c00281{margin-left:-0.979200pt;}
._3_c00281{width:1.107200pt;}
._2_c00281{width:2.195200pt;}
._9_c00281{width:3.635200pt;}
._6_c00281{width:5.312000pt;}
._4_c00281{width:6.675200pt;}
._5_c00281{width:7.961600pt;}
._a_c00281{width:12.812800pt;}
._8_c00281{width:14.028800pt;}
._7_c00281{width:14.976000pt;}
.fs2_c00281{font-size:48.000000pt;}
.fs0_c00281{font-size:53.440000pt;}
.fs1_c00281{font-size:64.000000pt;}
.fs3_c00281{font-size:74.560000pt;}
.y0_c00281{bottom:0.000000pt;}
.y6_c00281{bottom:50.987067pt;}
.y5_c00281{bottom:69.387067pt;}
.y21_c00281{bottom:116.027067pt;}
.y20_c00281{bottom:143.627067pt;}
.y1f_c00281{bottom:171.227067pt;}
.y1e_c00281{bottom:198.827067pt;}
.y1d_c00281{bottom:226.427067pt;}
.y1c_c00281{bottom:254.027067pt;}
.y1b_c00281{bottom:281.627067pt;}
.y1a_c00281{bottom:309.227067pt;}
.y19_c00281{bottom:336.827067pt;}
.y18_c00281{bottom:364.427067pt;}
.y17_c00281{bottom:392.027067pt;}
.y16_c00281{bottom:419.627067pt;}
.y15_c00281{bottom:447.227067pt;}
.y14_c00281{bottom:474.827067pt;}
.y13_c00281{bottom:502.427067pt;}
.y12_c00281{bottom:529.947067pt;}
.y11_c00281{bottom:557.547067pt;}
.y10_c00281{bottom:585.147067pt;}
.yf_c00281{bottom:615.627067pt;}
.ye_c00281{bottom:636.107067pt;}
.yd_c00281{bottom:677.067067pt;}
.yc_c00281{bottom:715.307067pt;}
.yb_c00281{bottom:742.987067pt;}
.ya_c00281{bottom:770.587067pt;}
.y9_c00281{bottom:798.187067pt;}
.y8_c00281{bottom:822.187067pt;}
.y7_c00281{bottom:1003.227067pt;}
.y4_c00281{bottom:1017.227251pt;}
.y3_c00281{bottom:1032.587243pt;}
.y2_c00281{bottom:1047.867075pt;}
.y1_c00281{bottom:1063.227067pt;}
.h3_c00281{height:42.234375pt;}
.h1_c00281{height:47.020937pt;}
.h2_c00281{height:56.156250pt;}
.h4_c00281{height:66.222969pt;}
.h0_c00281{height:1122.666667pt;}
.w1_c00281{width:793.333333pt;}
.w0_c00281{width:793.626667pt;}
.x0_c00281{left:0.000000pt;}
.x4_c00281{left:113.440000pt;}
.x5_c00281{left:312.400000pt;}
.x1_c00281{left:577.440000pt;}
.x3_c00281{left:656.400000pt;}
.x2_c00281{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_38e6338f946f5c68ce442b08.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.095703;font-style:normal;font-weight:normal;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_211ea968803d5428b81d8130.woff2')format("woff");}.ff2_c00282{font-family:ff2_c00282;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00282{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls15_c00282{letter-spacing:-0.216000px;}
.lse_c00282{letter-spacing:-0.102204px;}
.ls17_c00282{letter-spacing:-0.064800px;}
.ls11_c00282{letter-spacing:-0.057600px;}
.ls12_c00282{letter-spacing:-0.050400px;}
.ls18_c00282{letter-spacing:-0.043200px;}
.ls14_c00282{letter-spacing:-0.036000px;}
.ls10_c00282{letter-spacing:-0.021600px;}
.ls16_c00282{letter-spacing:-0.014400px;}
.ls13_c00282{letter-spacing:-0.007200px;}
.lsf_c00282{letter-spacing:0.000000px;}
.ls0_c00282{letter-spacing:0.005400px;}
.ls7_c00282{letter-spacing:0.007200px;}
.ls9_c00282{letter-spacing:0.014400px;}
.ls1_c00282{letter-spacing:0.016200px;}
.lsa_c00282{letter-spacing:0.021600px;}
.ls5_c00282{letter-spacing:0.028800px;}
.ls4_c00282{letter-spacing:0.036000px;}
.lsb_c00282{letter-spacing:0.043200px;}
.ls2_c00282{letter-spacing:0.050400px;}
.lsc_c00282{letter-spacing:0.057600px;}
.ls3_c00282{letter-spacing:0.064800px;}
.lsd_c00282{letter-spacing:0.072000px;}
.ls6_c00282{letter-spacing:0.079200px;}
.ls8_c00282{letter-spacing:0.208800px;}
.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:-18.072000px;}
.ws1_c00282{word-spacing:-18.014400px;}
.ws0_c00282{word-spacing:-18.000000px;}
.ws4_c00282{word-spacing:0.000000px;}
.ws6_c00282{word-spacing:0.162000px;}
.ws5_c00282{word-spacing:0.172800px;}
.ws3_c00282{word-spacing:0.192384px;}
._4_c00282{margin-left:-4.248000px;}
._5_c00282{margin-left:-2.952000px;}
._1_c00282{margin-left:-1.096200px;}
._0_c00282{width:1.034064px;}
._b_c00282{width:2.167200px;}
._7_c00282{width:3.232800px;}
._9_c00282{width:4.629600px;}
._e_c00282{width:5.705136px;}
._d_c00282{width:8.251200px;}
._3_c00282{width:10.101600px;}
._6_c00282{width:11.332800px;}
._2_c00282{width:12.549600px;}
._8_c00282{width:14.107536px;}
._c_c00282{width:16.927200px;}
._a_c00282{width:20.858400px;}
.fc2_c00282{color:rgb(68,84,106);}
.fc1_c00282{color:rgb(0,0,0);}
.fc0_c00282{color:rgb(32,31,30);}
.fs2_c00282{font-size:54.000000px;}
.fs0_c00282{font-size:60.120000px;}
.fs1_c00282{font-size:72.000000px;}
.y0_c00282{bottom:0.000000px;}
.y5_c00282{bottom:57.360450px;}
.y4_c00282{bottom:78.060450px;}
.y22_c00282{bottom:111.540450px;}
.y21_c00282{bottom:142.590450px;}
.y20_c00282{bottom:173.640450px;}
.y1f_c00282{bottom:204.690450px;}
.y1e_c00282{bottom:235.740450px;}
.y1d_c00282{bottom:266.790450px;}
.y1c_c00282{bottom:297.840450px;}
.y1b_c00282{bottom:328.890450px;}
.y1a_c00282{bottom:359.940450px;}
.y19_c00282{bottom:390.990450px;}
.y18_c00282{bottom:422.040450px;}
.y17_c00282{bottom:453.090450px;}
.y16_c00282{bottom:484.140450px;}
.y15_c00282{bottom:515.190450px;}
.y14_c00282{bottom:546.240450px;}
.y13_c00282{bottom:577.290450px;}
.y12_c00282{bottom:608.340450px;}
.y11_c00282{bottom:639.390450px;}
.y10_c00282{bottom:670.440450px;}
.yf_c00282{bottom:701.490450px;}
.ye_c00282{bottom:732.450450px;}
.yd_c00282{bottom:763.500450px;}
.yc_c00282{bottom:794.550450px;}
.yb_c00282{bottom:825.600450px;}
.ya_c00282{bottom:856.650450px;}
.y9_c00282{bottom:887.700450px;}
.y8_c00282{bottom:918.750450px;}
.y7_c00282{bottom:945.750450px;}
.y6_c00282{bottom:1115.760450px;}
.y3_c00282{bottom:1132.140450px;}
.y2_c00282{bottom:1165.441023px;}
.y1_c00282{bottom:1196.040600px;}
.h1_c00282{height:52.898555px;}
.h2_c00282{height:63.175781px;}
.h3_c00282{height:63.351562px;}
.h0_c00282{height:1263.000000px;}
.w1_c00282{width:892.500000px;}
.w0_c00282{width:892.830000px;}
.x0_c00282{left:0.000000px;}
.x1_c00282{left:127.620000px;}
.x2_c00282{left:738.450000px;}
.x3_c00282{left:755.190000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls15_c00282{letter-spacing:-0.192000pt;}
.lse_c00282{letter-spacing:-0.090848pt;}
.ls17_c00282{letter-spacing:-0.057600pt;}
.ls11_c00282{letter-spacing:-0.051200pt;}
.ls12_c00282{letter-spacing:-0.044800pt;}
.ls18_c00282{letter-spacing:-0.038400pt;}
.ls14_c00282{letter-spacing:-0.032000pt;}
.ls10_c00282{letter-spacing:-0.019200pt;}
.ls16_c00282{letter-spacing:-0.012800pt;}
.ls13_c00282{letter-spacing:-0.006400pt;}
.lsf_c00282{letter-spacing:0.000000pt;}
.ls0_c00282{letter-spacing:0.004800pt;}
.ls7_c00282{letter-spacing:0.006400pt;}
.ls9_c00282{letter-spacing:0.012800pt;}
.ls1_c00282{letter-spacing:0.014400pt;}
.lsa_c00282{letter-spacing:0.019200pt;}
.ls5_c00282{letter-spacing:0.025600pt;}
.ls4_c00282{letter-spacing:0.032000pt;}
.lsb_c00282{letter-spacing:0.038400pt;}
.ls2_c00282{letter-spacing:0.044800pt;}
.lsc_c00282{letter-spacing:0.051200pt;}
.ls3_c00282{letter-spacing:0.057600pt;}
.lsd_c00282{letter-spacing:0.064000pt;}
.ls6_c00282{letter-spacing:0.070400pt;}
.ls8_c00282{letter-spacing:0.185600pt;}
.ws2_c00282{word-spacing:-16.064000pt;}
.ws1_c00282{word-spacing:-16.012800pt;}
.ws0_c00282{word-spacing:-16.000000pt;}
.ws4_c00282{word-spacing:0.000000pt;}
.ws6_c00282{word-spacing:0.144000pt;}
.ws5_c00282{word-spacing:0.153600pt;}
.ws3_c00282{word-spacing:0.171008pt;}
._4_c00282{margin-left:-3.776000pt;}
._5_c00282{margin-left:-2.624000pt;}
._1_c00282{margin-left:-0.974400pt;}
._0_c00282{width:0.919168pt;}
._b_c00282{width:1.926400pt;}
._7_c00282{width:2.873600pt;}
._9_c00282{width:4.115200pt;}
._e_c00282{width:5.071232pt;}
._d_c00282{width:7.334400pt;}
._3_c00282{width:8.979200pt;}
._6_c00282{width:10.073600pt;}
._2_c00282{width:11.155200pt;}
._8_c00282{width:12.540032pt;}
._c_c00282{width:15.046400pt;}
._a_c00282{width:18.540800pt;}
.fs2_c00282{font-size:48.000000pt;}
.fs0_c00282{font-size:53.440000pt;}
.fs1_c00282{font-size:64.000000pt;}
.y0_c00282{bottom:0.000000pt;}
.y5_c00282{bottom:50.987067pt;}
.y4_c00282{bottom:69.387067pt;}
.y22_c00282{bottom:99.147067pt;}
.y21_c00282{bottom:126.747067pt;}
.y20_c00282{bottom:154.347067pt;}
.y1f_c00282{bottom:181.947067pt;}
.y1e_c00282{bottom:209.547067pt;}
.y1d_c00282{bottom:237.147067pt;}
.y1c_c00282{bottom:264.747067pt;}
.y1b_c00282{bottom:292.347067pt;}
.y1a_c00282{bottom:319.947067pt;}
.y19_c00282{bottom:347.547067pt;}
.y18_c00282{bottom:375.147067pt;}
.y17_c00282{bottom:402.747067pt;}
.y16_c00282{bottom:430.347067pt;}
.y15_c00282{bottom:457.947067pt;}
.y14_c00282{bottom:485.547067pt;}
.y13_c00282{bottom:513.147067pt;}
.y12_c00282{bottom:540.747067pt;}
.y11_c00282{bottom:568.347067pt;}
.y10_c00282{bottom:595.947067pt;}
.yf_c00282{bottom:623.547067pt;}
.ye_c00282{bottom:651.067067pt;}
.yd_c00282{bottom:678.667067pt;}
.yc_c00282{bottom:706.267067pt;}
.yb_c00282{bottom:733.867067pt;}
.ya_c00282{bottom:761.467067pt;}
.y9_c00282{bottom:789.067067pt;}
.y8_c00282{bottom:816.667067pt;}
.y7_c00282{bottom:840.667067pt;}
.y6_c00282{bottom:991.787067pt;}
.y3_c00282{bottom:1006.347067pt;}
.y2_c00282{bottom:1035.947576pt;}
.y1_c00282{bottom:1063.147200pt;}
.h1_c00282{height:47.020937pt;}
.h2_c00282{height:56.156250pt;}
.h3_c00282{height:56.312500pt;}
.h0_c00282{height:1122.666667pt;}
.w1_c00282{width:793.333333pt;}
.w0_c00282{width:793.626667pt;}
.x0_c00282{left:0.000000pt;}
.x1_c00282{left:113.440000pt;}
.x2_c00282{left:656.400000pt;}
.x3_c00282{left:671.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_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_7d449aa5ee70b30af4eb2287.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.095703;font-style:normal;font-weight:normal;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_d4c364f5f0501ed9acd21d31.woff2')format("woff");}.ff2_c00283{font-family:ff2_c00283;line-height:1.093262;font-style:normal;font-weight:normal;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_febf8b0764249eef6e09a1f2.woff2')format("woff");}.ff3_c00283{font-family:ff3_c00283;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls14_c00283{letter-spacing:-0.072000px;}
.ls16_c00283{letter-spacing:-0.064800px;}
.lsf_c00283{letter-spacing:-0.048096px;}
.ls12_c00283{letter-spacing:-0.028800px;}
.ls11_c00283{letter-spacing:-0.021600px;}
.ls13_c00283{letter-spacing:-0.014400px;}
.ls17_c00283{letter-spacing:-0.007200px;}
.ls10_c00283{letter-spacing:0.000000px;}
.ls0_c00283{letter-spacing:0.005400px;}
.ls5_c00283{letter-spacing:0.007200px;}
.lsb_c00283{letter-spacing:0.014400px;}
.ls1_c00283{letter-spacing:0.016200px;}
.ls7_c00283{letter-spacing:0.028800px;}
.ls6_c00283{letter-spacing:0.036000px;}
.ls9_c00283{letter-spacing:0.043200px;}
.lsa_c00283{letter-spacing:0.050400px;}
.ls8_c00283{letter-spacing:0.057600px;}
.lsc_c00283{letter-spacing:0.064800px;}
.lse_c00283{letter-spacing:0.072000px;}
.ls4_c00283{letter-spacing:0.079200px;}
.lsd_c00283{letter-spacing:0.093600px;}
.ls3_c00283{letter-spacing:0.117432px;}
.ls15_c00283{letter-spacing:9.720000px;}
.ls2_c00283{letter-spacing:1183.320000px;}
.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:0.000000px;}
.ws0_c00283{word-spacing:0.138276px;}
.ws3_c00283{word-spacing:0.162000px;}
.ws2_c00283{word-spacing:0.172800px;}
._6_c00283{margin-left:-10.166400px;}
._7_c00283{margin-left:-9.057600px;}
._a_c00283{margin-left:-3.974400px;}
._9_c00283{margin-left:-2.937600px;}
._0_c00283{margin-left:-1.090800px;}
._3_c00283{width:1.123200px;}
._4_c00283{width:2.836800px;}
._b_c00283{width:4.032000px;}
._2_c00283{width:5.414400px;}
._5_c00283{width:9.669600px;}
._8_c00283{width:11.152800px;}
._1_c00283{width:12.592800px;}
.fc1_c00283{color:rgb(68,84,106);}
.fc0_c00283{color:rgb(0,0,0);}
.fs2_c00283{font-size:54.000000px;}
.fs0_c00283{font-size:60.120000px;}
.fs1_c00283{font-size:72.000000px;}
.fs3_c00283{font-size:83.880000px;}
.y0_c00283{bottom:0.000000px;}
.y6_c00283{bottom:57.360450px;}
.y5_c00283{bottom:78.060450px;}
.y22_c00283{bottom:133.950600px;}
.y21_c00283{bottom:165.000600px;}
.y20_c00283{bottom:196.050600px;}
.y1f_c00283{bottom:227.100600px;}
.y1e_c00283{bottom:258.150600px;}
.y1d_c00283{bottom:289.200600px;}
.y1c_c00283{bottom:320.250600px;}
.y1b_c00283{bottom:351.300600px;}
.y1a_c00283{bottom:382.350600px;}
.y19_c00283{bottom:413.400600px;}
.y18_c00283{bottom:444.450600px;}
.y17_c00283{bottom:475.500600px;}
.y16_c00283{bottom:506.550600px;}
.y15_c00283{bottom:537.600600px;}
.y14_c00283{bottom:568.650600px;}
.y13_c00283{bottom:599.700600px;}
.y12_c00283{bottom:630.750600px;}
.y11_c00283{bottom:661.800600px;}
.y10_c00283{bottom:692.850600px;}
.yf_c00283{bottom:723.900600px;}
.ye_c00283{bottom:754.950600px;}
.yd_c00283{bottom:786.000600px;}
.yc_c00283{bottom:817.050600px;}
.yb_c00283{bottom:851.250600px;}
.ya_c00283{bottom:874.380450px;}
.y9_c00283{bottom:911.460450px;}
.y8_c00283{bottom:938.460450px;}
.y7_c00283{bottom:1128.630450px;}
.y4_c00283{bottom:1144.380657px;}
.y3_c00283{bottom:1161.660648px;}
.y2_c00283{bottom:1178.850459px;}
.y1_c00283{bottom:1196.130450px;}
.h3_c00283{height:47.513672px;}
.h1_c00283{height:52.898555px;}
.h2_c00283{height:63.175781px;}
.h4_c00283{height:74.500840px;}
.h0_c00283{height:1263.000000px;}
.w1_c00283{width:892.500000px;}
.w0_c00283{width:892.830000px;}
.x0_c00283{left:0.000000px;}
.x4_c00283{left:127.620000px;}
.x5_c00283{left:430.200000px;}
.x1_c00283{left:649.620000px;}
.x3_c00283{left:738.450000px;}
.x2_c00283{left:765.450198px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls14_c00283{letter-spacing:-0.064000pt;}
.ls16_c00283{letter-spacing:-0.057600pt;}
.lsf_c00283{letter-spacing:-0.042752pt;}
.ls12_c00283{letter-spacing:-0.025600pt;}
.ls11_c00283{letter-spacing:-0.019200pt;}
.ls13_c00283{letter-spacing:-0.012800pt;}
.ls17_c00283{letter-spacing:-0.006400pt;}
.ls10_c00283{letter-spacing:0.000000pt;}
.ls0_c00283{letter-spacing:0.004800pt;}
.ls5_c00283{letter-spacing:0.006400pt;}
.lsb_c00283{letter-spacing:0.012800pt;}
.ls1_c00283{letter-spacing:0.014400pt;}
.ls7_c00283{letter-spacing:0.025600pt;}
.ls6_c00283{letter-spacing:0.032000pt;}
.ls9_c00283{letter-spacing:0.038400pt;}
.lsa_c00283{letter-spacing:0.044800pt;}
.ls8_c00283{letter-spacing:0.051200pt;}
.lsc_c00283{letter-spacing:0.057600pt;}
.lse_c00283{letter-spacing:0.064000pt;}
.ls4_c00283{letter-spacing:0.070400pt;}
.lsd_c00283{letter-spacing:0.083200pt;}
.ls3_c00283{letter-spacing:0.104384pt;}
.ls15_c00283{letter-spacing:8.640000pt;}
.ls2_c00283{letter-spacing:1051.840000pt;}
.ws1_c00283{word-spacing:0.000000pt;}
.ws0_c00283{word-spacing:0.122912pt;}
.ws3_c00283{word-spacing:0.144000pt;}
.ws2_c00283{word-spacing:0.153600pt;}
._6_c00283{margin-left:-9.036800pt;}
._7_c00283{margin-left:-8.051200pt;}
._a_c00283{margin-left:-3.532800pt;}
._9_c00283{margin-left:-2.611200pt;}
._0_c00283{margin-left:-0.969600pt;}
._3_c00283{width:0.998400pt;}
._4_c00283{width:2.521600pt;}
._b_c00283{width:3.584000pt;}
._2_c00283{width:4.812800pt;}
._5_c00283{width:8.595200pt;}
._8_c00283{width:9.913600pt;}
._1_c00283{width:11.193600pt;}
.fs2_c00283{font-size:48.000000pt;}
.fs0_c00283{font-size:53.440000pt;}
.fs1_c00283{font-size:64.000000pt;}
.fs3_c00283{font-size:74.560000pt;}
.y0_c00283{bottom:0.000000pt;}
.y6_c00283{bottom:50.987067pt;}
.y5_c00283{bottom:69.387067pt;}
.y22_c00283{bottom:119.067200pt;}
.y21_c00283{bottom:146.667200pt;}
.y20_c00283{bottom:174.267200pt;}
.y1f_c00283{bottom:201.867200pt;}
.y1e_c00283{bottom:229.467200pt;}
.y1d_c00283{bottom:257.067200pt;}
.y1c_c00283{bottom:284.667200pt;}
.y1b_c00283{bottom:312.267200pt;}
.y1a_c00283{bottom:339.867200pt;}
.y19_c00283{bottom:367.467200pt;}
.y18_c00283{bottom:395.067200pt;}
.y17_c00283{bottom:422.667200pt;}
.y16_c00283{bottom:450.267200pt;}
.y15_c00283{bottom:477.867200pt;}
.y14_c00283{bottom:505.467200pt;}
.y13_c00283{bottom:533.067200pt;}
.y12_c00283{bottom:560.667200pt;}
.y11_c00283{bottom:588.267200pt;}
.y10_c00283{bottom:615.867200pt;}
.yf_c00283{bottom:643.467200pt;}
.ye_c00283{bottom:671.067200pt;}
.yd_c00283{bottom:698.667200pt;}
.yc_c00283{bottom:726.267200pt;}
.yb_c00283{bottom:756.667200pt;}
.ya_c00283{bottom:777.227067pt;}
.y9_c00283{bottom:810.187067pt;}
.y8_c00283{bottom:834.187067pt;}
.y7_c00283{bottom:1003.227067pt;}
.y4_c00283{bottom:1017.227251pt;}
.y3_c00283{bottom:1032.587243pt;}
.y2_c00283{bottom:1047.867075pt;}
.y1_c00283{bottom:1063.227067pt;}
.h3_c00283{height:42.234375pt;}
.h1_c00283{height:47.020937pt;}
.h2_c00283{height:56.156250pt;}
.h4_c00283{height:66.222969pt;}
.h0_c00283{height:1122.666667pt;}
.w1_c00283{width:793.333333pt;}
.w0_c00283{width:793.626667pt;}
.x0_c00283{left:0.000000pt;}
.x4_c00283{left:113.440000pt;}
.x5_c00283{left:382.400000pt;}
.x1_c00283{left:577.440000pt;}
.x3_c00283{left:656.400000pt;}
.x2_c00283{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd14a5de6cf8fccb324e70df.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.095703;font-style:normal;font-weight:normal;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_2ad66664f37fb4371ab707ba.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00284{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls17_c00284{letter-spacing:-3.240000px;}
.ls15_c00284{letter-spacing:-0.172800px;}
.ls11_c00284{letter-spacing:-0.102204px;}
.ls18_c00284{letter-spacing:-0.050400px;}
.ls19_c00284{letter-spacing:-0.036000px;}
.ls1b_c00284{letter-spacing:-0.032400px;}
.ls1a_c00284{letter-spacing:-0.028800px;}
.ls13_c00284{letter-spacing:-0.021600px;}
.ls14_c00284{letter-spacing:-0.014400px;}
.ls16_c00284{letter-spacing:-0.007200px;}
.ls12_c00284{letter-spacing:0.000000px;}
.lsc_c00284{letter-spacing:0.007200px;}
.ls4_c00284{letter-spacing:0.014400px;}
.lsd_c00284{letter-spacing:0.021600px;}
.ls9_c00284{letter-spacing:0.028800px;}
.ls5_c00284{letter-spacing:0.036000px;}
.lsb_c00284{letter-spacing:0.043200px;}
.ls3_c00284{letter-spacing:0.050400px;}
.lsa_c00284{letter-spacing:0.057600px;}
.lsf_c00284{letter-spacing:0.064800px;}
.ls6_c00284{letter-spacing:0.072000px;}
.ls1_c00284{letter-spacing:0.086400px;}
.ls7_c00284{letter-spacing:0.093600px;}
.ls0_c00284{letter-spacing:0.100800px;}
.ls8_c00284{letter-spacing:0.115200px;}
.ls2_c00284{letter-spacing:0.158400px;}
.ls10_c00284{letter-spacing:0.720000px;}
.lse_c00284{letter-spacing:729.720000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00284{word-spacing:-18.115200px;}
.ws0_c00284{word-spacing:-18.064800px;}
.ws2_c00284{word-spacing:-18.000000px;}
.ws4_c00284{word-spacing:0.000000px;}
.ws6_c00284{word-spacing:0.156600px;}
.ws3_c00284{word-spacing:0.192384px;}
.ws7_c00284{word-spacing:0.210600px;}
.ws8_c00284{word-spacing:0.756000px;}
.ws5_c00284{word-spacing:9.712800px;}
._a_c00284{margin-left:-27.720000px;}
._8_c00284{margin-left:-3.232800px;}
._1_c00284{margin-left:-1.569600px;}
._0_c00284{width:1.034064px;}
._3_c00284{width:2.059200px;}
._2_c00284{width:3.261600px;}
._4_c00284{width:4.327200px;}
._9_c00284{width:5.400000px;}
._7_c00284{width:6.465600px;}
._5_c00284{width:9.316800px;}
._6_c00284{width:10.396800px;}
._c_c00284{width:11.707200px;}
._b_c00284{width:16.524000px;}
.fc3_c00284{color:rgb(255,0,0);}
.fc2_c00284{color:rgb(68,84,106);}
.fc1_c00284{color:rgb(0,0,0);}
.fc0_c00284{color:rgb(32,31,30);}
.fs2_c00284{font-size:54.000000px;}
.fs0_c00284{font-size:60.120000px;}
.fs1_c00284{font-size:72.000000px;}
.y0_c00284{bottom:0.000000px;}
.y5_c00284{bottom:57.360450px;}
.y4_c00284{bottom:78.060450px;}
.y22_c00284{bottom:132.690450px;}
.y21_c00284{bottom:163.740450px;}
.y20_c00284{bottom:194.790450px;}
.y1f_c00284{bottom:225.840450px;}
.y1e_c00284{bottom:256.890450px;}
.y1d_c00284{bottom:287.940450px;}
.y1c_c00284{bottom:318.900450px;}
.y1b_c00284{bottom:349.950450px;}
.y1a_c00284{bottom:376.950450px;}
.y19_c00284{bottom:525.810450px;}
.y18_c00284{bottom:552.540450px;}
.y17_c00284{bottom:583.590450px;}
.y16_c00284{bottom:614.640450px;}
.y15_c00284{bottom:645.690450px;}
.y14_c00284{bottom:676.740450px;}
.y13_c00284{bottom:707.790450px;}
.y12_c00284{bottom:738.840450px;}
.y11_c00284{bottom:769.890450px;}
.y10_c00284{bottom:800.940450px;}
.yf_c00284{bottom:831.990450px;}
.ye_c00284{bottom:863.040450px;}
.yd_c00284{bottom:894.090450px;}
.yc_c00284{bottom:925.140450px;}
.yb_c00284{bottom:956.190450px;}
.ya_c00284{bottom:987.240450px;}
.y9_c00284{bottom:1018.290450px;}
.y8_c00284{bottom:1049.340450px;}
.y7_c00284{bottom:1080.390450px;}
.y6_c00284{bottom:1111.440450px;}
.y3_c00284{bottom:1132.140450px;}
.y2_c00284{bottom:1165.441023px;}
.y1_c00284{bottom:1196.040600px;}
.h4_c00284{height:47.513672px;}
.h1_c00284{height:52.898555px;}
.h2_c00284{height:63.175781px;}
.h3_c00284{height:63.351562px;}
.h0_c00284{height:1263.000000px;}
.w1_c00284{width:892.500000px;}
.w0_c00284{width:892.830000px;}
.x0_c00284{left:0.000000px;}
.x1_c00284{left:127.620000px;}
.x3_c00284{left:389.070000px;}
.x2_c00284{left:738.450000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls17_c00284{letter-spacing:-2.880000pt;}
.ls15_c00284{letter-spacing:-0.153600pt;}
.ls11_c00284{letter-spacing:-0.090848pt;}
.ls18_c00284{letter-spacing:-0.044800pt;}
.ls19_c00284{letter-spacing:-0.032000pt;}
.ls1b_c00284{letter-spacing:-0.028800pt;}
.ls1a_c00284{letter-spacing:-0.025600pt;}
.ls13_c00284{letter-spacing:-0.019200pt;}
.ls14_c00284{letter-spacing:-0.012800pt;}
.ls16_c00284{letter-spacing:-0.006400pt;}
.ls12_c00284{letter-spacing:0.000000pt;}
.lsc_c00284{letter-spacing:0.006400pt;}
.ls4_c00284{letter-spacing:0.012800pt;}
.lsd_c00284{letter-spacing:0.019200pt;}
.ls9_c00284{letter-spacing:0.025600pt;}
.ls5_c00284{letter-spacing:0.032000pt;}
.lsb_c00284{letter-spacing:0.038400pt;}
.ls3_c00284{letter-spacing:0.044800pt;}
.lsa_c00284{letter-spacing:0.051200pt;}
.lsf_c00284{letter-spacing:0.057600pt;}
.ls6_c00284{letter-spacing:0.064000pt;}
.ls1_c00284{letter-spacing:0.076800pt;}
.ls7_c00284{letter-spacing:0.083200pt;}
.ls0_c00284{letter-spacing:0.089600pt;}
.ls8_c00284{letter-spacing:0.102400pt;}
.ls2_c00284{letter-spacing:0.140800pt;}
.ls10_c00284{letter-spacing:0.640000pt;}
.lse_c00284{letter-spacing:648.640000pt;}
.ws1_c00284{word-spacing:-16.102400pt;}
.ws0_c00284{word-spacing:-16.057600pt;}
.ws2_c00284{word-spacing:-16.000000pt;}
.ws4_c00284{word-spacing:0.000000pt;}
.ws6_c00284{word-spacing:0.139200pt;}
.ws3_c00284{word-spacing:0.171008pt;}
.ws7_c00284{word-spacing:0.187200pt;}
.ws8_c00284{word-spacing:0.672000pt;}
.ws5_c00284{word-spacing:8.633600pt;}
._a_c00284{margin-left:-24.640000pt;}
._8_c00284{margin-left:-2.873600pt;}
._1_c00284{margin-left:-1.395200pt;}
._0_c00284{width:0.919168pt;}
._3_c00284{width:1.830400pt;}
._2_c00284{width:2.899200pt;}
._4_c00284{width:3.846400pt;}
._9_c00284{width:4.800000pt;}
._7_c00284{width:5.747200pt;}
._5_c00284{width:8.281600pt;}
._6_c00284{width:9.241600pt;}
._c_c00284{width:10.406400pt;}
._b_c00284{width:14.688000pt;}
.fs2_c00284{font-size:48.000000pt;}
.fs0_c00284{font-size:53.440000pt;}
.fs1_c00284{font-size:64.000000pt;}
.y0_c00284{bottom:0.000000pt;}
.y5_c00284{bottom:50.987067pt;}
.y4_c00284{bottom:69.387067pt;}
.y22_c00284{bottom:117.947067pt;}
.y21_c00284{bottom:145.547067pt;}
.y20_c00284{bottom:173.147067pt;}
.y1f_c00284{bottom:200.747067pt;}
.y1e_c00284{bottom:228.347067pt;}
.y1d_c00284{bottom:255.947067pt;}
.y1c_c00284{bottom:283.467067pt;}
.y1b_c00284{bottom:311.067067pt;}
.y1a_c00284{bottom:335.067067pt;}
.y19_c00284{bottom:467.387067pt;}
.y18_c00284{bottom:491.147067pt;}
.y17_c00284{bottom:518.747067pt;}
.y16_c00284{bottom:546.347067pt;}
.y15_c00284{bottom:573.947067pt;}
.y14_c00284{bottom:601.547067pt;}
.y13_c00284{bottom:629.147067pt;}
.y12_c00284{bottom:656.747067pt;}
.y11_c00284{bottom:684.347067pt;}
.y10_c00284{bottom:711.947067pt;}
.yf_c00284{bottom:739.547067pt;}
.ye_c00284{bottom:767.147067pt;}
.yd_c00284{bottom:794.747067pt;}
.yc_c00284{bottom:822.347067pt;}
.yb_c00284{bottom:849.947067pt;}
.ya_c00284{bottom:877.547067pt;}
.y9_c00284{bottom:905.147067pt;}
.y8_c00284{bottom:932.747067pt;}
.y7_c00284{bottom:960.347067pt;}
.y6_c00284{bottom:987.947067pt;}
.y3_c00284{bottom:1006.347067pt;}
.y2_c00284{bottom:1035.947576pt;}
.y1_c00284{bottom:1063.147200pt;}
.h4_c00284{height:42.234375pt;}
.h1_c00284{height:47.020937pt;}
.h2_c00284{height:56.156250pt;}
.h3_c00284{height:56.312500pt;}
.h0_c00284{height:1122.666667pt;}
.w1_c00284{width:793.333333pt;}
.w0_c00284{width:793.626667pt;}
.x0_c00284{left:0.000000pt;}
.x1_c00284{left:113.440000pt;}
.x3_c00284{left:345.840000pt;}
.x2_c00284{left:656.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_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_4548a09c5347443c627119b9.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.095703;font-style:normal;font-weight:normal;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_3d739fdffd9172b67c595e6d.woff2')format("woff");}.ff2_c00285{font-family:ff2_c00285;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls14_c00285{letter-spacing:-2.160000px;}
.ls15_c00285{letter-spacing:-1.800000px;}
.ls19_c00285{letter-spacing:-0.115200px;}
.ls11_c00285{letter-spacing:-0.048096px;}
.ls13_c00285{letter-spacing:-0.043200px;}
.ls1c_c00285{letter-spacing:-0.036000px;}
.ls17_c00285{letter-spacing:-0.021600px;}
.ls1a_c00285{letter-spacing:-0.014400px;}
.ls16_c00285{letter-spacing:-0.007200px;}
.ls18_c00285{letter-spacing:-0.005400px;}
.ls12_c00285{letter-spacing:0.000000px;}
.ls9_c00285{letter-spacing:0.005400px;}
.ls2_c00285{letter-spacing:0.007200px;}
.ls5_c00285{letter-spacing:0.014400px;}
.ls8_c00285{letter-spacing:0.016200px;}
.ls1_c00285{letter-spacing:0.021600px;}
.lsf_c00285{letter-spacing:0.028800px;}
.ls7_c00285{letter-spacing:0.036000px;}
.ls3_c00285{letter-spacing:0.043200px;}
.lsb_c00285{letter-spacing:0.050400px;}
.lsa_c00285{letter-spacing:0.057600px;}
.ls0_c00285{letter-spacing:0.064800px;}
.ls10_c00285{letter-spacing:0.072000px;}
.lsd_c00285{letter-spacing:0.079200px;}
.ls4_c00285{letter-spacing:0.093600px;}
.lsc_c00285{letter-spacing:0.100800px;}
.ls6_c00285{letter-spacing:0.122400px;}
.lse_c00285{letter-spacing:0.144000px;}
.ls1b_c00285{letter-spacing:2.520000px;}
.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;}
}
.ws1_c00285{word-spacing:-18.000000px;}
.ws2_c00285{word-spacing:-17.985600px;}
.ws0_c00285{word-spacing:-17.956800px;}
.ws8_c00285{word-spacing:-3.592800px;}
.ws4_c00285{word-spacing:0.000000px;}
.ws3_c00285{word-spacing:0.138276px;}
.ws5_c00285{word-spacing:0.162000px;}
.ws7_c00285{word-spacing:0.172800px;}
.ws6_c00285{word-spacing:0.183600px;}
._c_c00285{margin-left:-4.471200px;}
._8_c00285{margin-left:-3.405600px;}
._5_c00285{margin-left:-2.253600px;}
._1_c00285{margin-left:-1.238400px;}
._4_c00285{width:1.224000px;}
._6_c00285{width:2.527200px;}
._0_c00285{width:3.535200px;}
._b_c00285{width:4.788000px;}
._7_c00285{width:6.818400px;}
._d_c00285{width:7.984800px;}
._a_c00285{width:9.964800px;}
._3_c00285{width:11.952000px;}
._2_c00285{width:12.952800px;}
._9_c00285{width:14.695200px;}
.fc1_c00285{color:rgb(68,84,106);}
.fc0_c00285{color:rgb(0,0,0);}
.fs2_c00285{font-size:54.000000px;}
.fs0_c00285{font-size:60.120000px;}
.fs1_c00285{font-size:72.000000px;}
.y0_c00285{bottom:0.000000px;}
.y6_c00285{bottom:57.360450px;}
.y5_c00285{bottom:78.060450px;}
.y24_c00285{bottom:125.940450px;}
.y23_c00285{bottom:156.990450px;}
.y22_c00285{bottom:188.040450px;}
.y21_c00285{bottom:219.090450px;}
.y20_c00285{bottom:250.140450px;}
.y1f_c00285{bottom:281.190450px;}
.y1e_c00285{bottom:312.240450px;}
.y1d_c00285{bottom:343.290450px;}
.y1c_c00285{bottom:374.340450px;}
.y1b_c00285{bottom:405.390450px;}
.y1a_c00285{bottom:436.440450px;}
.y19_c00285{bottom:467.490450px;}
.y18_c00285{bottom:498.540450px;}
.y17_c00285{bottom:529.590450px;}
.y16_c00285{bottom:560.640450px;}
.y15_c00285{bottom:591.690450px;}
.y14_c00285{bottom:622.740450px;}
.y13_c00285{bottom:653.790450px;}
.y12_c00285{bottom:684.840450px;}
.y11_c00285{bottom:711.840450px;}
.y10_c00285{bottom:849.270450px;}
.yf_c00285{bottom:876.000450px;}
.ye_c00285{bottom:907.050450px;}
.yd_c00285{bottom:938.100450px;}
.yc_c00285{bottom:969.150450px;}
.yb_c00285{bottom:1000.200450px;}
.ya_c00285{bottom:1031.160450px;}
.y9_c00285{bottom:1062.210450px;}
.y8_c00285{bottom:1093.260450px;}
.y7_c00285{bottom:1124.310450px;}
.y4_c00285{bottom:1144.380657px;}
.y3_c00285{bottom:1161.660648px;}
.y2_c00285{bottom:1178.850459px;}
.y1_c00285{bottom:1196.130450px;}
.h4_c00285{height:47.513672px;}
.h1_c00285{height:52.898555px;}
.h2_c00285{height:63.175781px;}
.h3_c00285{height:63.351562px;}
.h0_c00285{height:1263.000000px;}
.w1_c00285{width:892.500000px;}
.w0_c00285{width:892.830000px;}
.x0_c00285{left:0.000000px;}
.x4_c00285{left:127.620000px;}
.x1_c00285{left:649.620000px;}
.x3_c00285{left:738.450000px;}
.x5_c00285{left:754.200000px;}
.x2_c00285{left:765.450198px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls14_c00285{letter-spacing:-1.920000pt;}
.ls15_c00285{letter-spacing:-1.600000pt;}
.ls19_c00285{letter-spacing:-0.102400pt;}
.ls11_c00285{letter-spacing:-0.042752pt;}
.ls13_c00285{letter-spacing:-0.038400pt;}
.ls1c_c00285{letter-spacing:-0.032000pt;}
.ls17_c00285{letter-spacing:-0.019200pt;}
.ls1a_c00285{letter-spacing:-0.012800pt;}
.ls16_c00285{letter-spacing:-0.006400pt;}
.ls18_c00285{letter-spacing:-0.004800pt;}
.ls12_c00285{letter-spacing:0.000000pt;}
.ls9_c00285{letter-spacing:0.004800pt;}
.ls2_c00285{letter-spacing:0.006400pt;}
.ls5_c00285{letter-spacing:0.012800pt;}
.ls8_c00285{letter-spacing:0.014400pt;}
.ls1_c00285{letter-spacing:0.019200pt;}
.lsf_c00285{letter-spacing:0.025600pt;}
.ls7_c00285{letter-spacing:0.032000pt;}
.ls3_c00285{letter-spacing:0.038400pt;}
.lsb_c00285{letter-spacing:0.044800pt;}
.lsa_c00285{letter-spacing:0.051200pt;}
.ls0_c00285{letter-spacing:0.057600pt;}
.ls10_c00285{letter-spacing:0.064000pt;}
.lsd_c00285{letter-spacing:0.070400pt;}
.ls4_c00285{letter-spacing:0.083200pt;}
.lsc_c00285{letter-spacing:0.089600pt;}
.ls6_c00285{letter-spacing:0.108800pt;}
.lse_c00285{letter-spacing:0.128000pt;}
.ls1b_c00285{letter-spacing:2.240000pt;}
.ws1_c00285{word-spacing:-16.000000pt;}
.ws2_c00285{word-spacing:-15.987200pt;}
.ws0_c00285{word-spacing:-15.961600pt;}
.ws8_c00285{word-spacing:-3.193600pt;}
.ws4_c00285{word-spacing:0.000000pt;}
.ws3_c00285{word-spacing:0.122912pt;}
.ws5_c00285{word-spacing:0.144000pt;}
.ws7_c00285{word-spacing:0.153600pt;}
.ws6_c00285{word-spacing:0.163200pt;}
._c_c00285{margin-left:-3.974400pt;}
._8_c00285{margin-left:-3.027200pt;}
._5_c00285{margin-left:-2.003200pt;}
._1_c00285{margin-left:-1.100800pt;}
._4_c00285{width:1.088000pt;}
._6_c00285{width:2.246400pt;}
._0_c00285{width:3.142400pt;}
._b_c00285{width:4.256000pt;}
._7_c00285{width:6.060800pt;}
._d_c00285{width:7.097600pt;}
._a_c00285{width:8.857600pt;}
._3_c00285{width:10.624000pt;}
._2_c00285{width:11.513600pt;}
._9_c00285{width:13.062400pt;}
.fs2_c00285{font-size:48.000000pt;}
.fs0_c00285{font-size:53.440000pt;}
.fs1_c00285{font-size:64.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y6_c00285{bottom:50.987067pt;}
.y5_c00285{bottom:69.387067pt;}
.y24_c00285{bottom:111.947067pt;}
.y23_c00285{bottom:139.547067pt;}
.y22_c00285{bottom:167.147067pt;}
.y21_c00285{bottom:194.747067pt;}
.y20_c00285{bottom:222.347067pt;}
.y1f_c00285{bottom:249.947067pt;}
.y1e_c00285{bottom:277.547067pt;}
.y1d_c00285{bottom:305.147067pt;}
.y1c_c00285{bottom:332.747067pt;}
.y1b_c00285{bottom:360.347067pt;}
.y1a_c00285{bottom:387.947067pt;}
.y19_c00285{bottom:415.547067pt;}
.y18_c00285{bottom:443.147067pt;}
.y17_c00285{bottom:470.747067pt;}
.y16_c00285{bottom:498.347067pt;}
.y15_c00285{bottom:525.947067pt;}
.y14_c00285{bottom:553.547067pt;}
.y13_c00285{bottom:581.147067pt;}
.y12_c00285{bottom:608.747067pt;}
.y11_c00285{bottom:632.747067pt;}
.y10_c00285{bottom:754.907067pt;}
.yf_c00285{bottom:778.667067pt;}
.ye_c00285{bottom:806.267067pt;}
.yd_c00285{bottom:833.867067pt;}
.yc_c00285{bottom:861.467067pt;}
.yb_c00285{bottom:889.067067pt;}
.ya_c00285{bottom:916.587067pt;}
.y9_c00285{bottom:944.187067pt;}
.y8_c00285{bottom:971.787067pt;}
.y7_c00285{bottom:999.387067pt;}
.y4_c00285{bottom:1017.227251pt;}
.y3_c00285{bottom:1032.587243pt;}
.y2_c00285{bottom:1047.867075pt;}
.y1_c00285{bottom:1063.227067pt;}
.h4_c00285{height:42.234375pt;}
.h1_c00285{height:47.020937pt;}
.h2_c00285{height:56.156250pt;}
.h3_c00285{height:56.312500pt;}
.h0_c00285{height:1122.666667pt;}
.w1_c00285{width:793.333333pt;}
.w0_c00285{width:793.626667pt;}
.x0_c00285{left:0.000000pt;}
.x4_c00285{left:113.440000pt;}
.x1_c00285{left:577.440000pt;}
.x3_c00285{left:656.400000pt;}
.x5_c00285{left:670.400000pt;}
.x2_c00285{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_532f94f14311b13aac4554f4.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.095703;font-style:normal;font-weight:normal;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_22517b1f9f089b9f4f6a5454.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00286{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls1b_c00286{letter-spacing:-0.360000px;}
.ls11_c00286{letter-spacing:-0.102204px;}
.ls19_c00286{letter-spacing:-0.050400px;}
.ls13_c00286{letter-spacing:-0.028800px;}
.ls15_c00286{letter-spacing:-0.014400px;}
.ls18_c00286{letter-spacing:-0.007200px;}
.ls12_c00286{letter-spacing:0.000000px;}
.lsa_c00286{letter-spacing:0.007200px;}
.ls0_c00286{letter-spacing:0.014400px;}
.lsf_c00286{letter-spacing:0.016200px;}
.ls3_c00286{letter-spacing:0.021600px;}
.ls6_c00286{letter-spacing:0.028800px;}
.ls7_c00286{letter-spacing:0.036000px;}
.lsb_c00286{letter-spacing:0.043200px;}
.ls8_c00286{letter-spacing:0.050400px;}
.ls2_c00286{letter-spacing:0.057600px;}
.ls4_c00286{letter-spacing:0.064800px;}
.lsd_c00286{letter-spacing:0.072000px;}
.ls5_c00286{letter-spacing:0.079200px;}
.lse_c00286{letter-spacing:0.086400px;}
.lsc_c00286{letter-spacing:0.093600px;}
.ls9_c00286{letter-spacing:0.100800px;}
.ls10_c00286{letter-spacing:0.124200px;}
.ls1_c00286{letter-spacing:0.136800px;}
.ls14_c00286{letter-spacing:1.713600px;}
.ls16_c00286{letter-spacing:2.880000px;}
.ls17_c00286{letter-spacing:7.200000px;}
.ls1a_c00286{letter-spacing:8.280000px;}
.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:0.000000px;}
.ws3_c00286{word-spacing:0.162000px;}
.ws0_c00286{word-spacing:0.192384px;}
.ws2_c00286{word-spacing:17.308800px;}
._13_c00286{margin-left:-9.093600px;}
._11_c00286{margin-left:-8.092800px;}
._10_c00286{margin-left:-6.840000px;}
._7_c00286{margin-left:-4.586400px;}
._6_c00286{margin-left:-3.319200px;}
._4_c00286{margin-left:-2.232000px;}
._1_c00286{margin-left:-1.137600px;}
._0_c00286{width:1.034064px;}
._c_c00286{width:2.462400px;}
._e_c00286{width:3.470400px;}
._d_c00286{width:4.629600px;}
._5_c00286{width:6.134400px;}
._f_c00286{width:7.149600px;}
._b_c00286{width:8.316000px;}
._9_c00286{width:9.669600px;}
._a_c00286{width:10.900800px;}
._12_c00286{width:12.830400px;}
._3_c00286{width:15.429600px;}
._2_c00286{width:16.538400px;}
._8_c00286{width:30.204000px;}
.fc2_c00286{color:rgb(68,84,106);}
.fc1_c00286{color:rgb(0,0,0);}
.fc0_c00286{color:rgb(32,31,30);}
.fs2_c00286{font-size:54.000000px;}
.fs0_c00286{font-size:60.120000px;}
.fs1_c00286{font-size:72.000000px;}
.y0_c00286{bottom:0.000000px;}
.y27_c00286{bottom:3.240450px;}
.y5_c00286{bottom:57.360450px;}
.y4_c00286{bottom:78.060450px;}
.y25_c00286{bottom:121.890450px;}
.y24_c00286{bottom:153.030450px;}
.y23_c00286{bottom:184.080450px;}
.y22_c00286{bottom:215.130450px;}
.y21_c00286{bottom:246.090450px;}
.y20_c00286{bottom:289.110450px;}
.y1f_c00286{bottom:320.250450px;}
.y1e_c00286{bottom:351.300450px;}
.y1d_c00286{bottom:382.350450px;}
.y1c_c00286{bottom:413.400450px;}
.y1b_c00286{bottom:444.450450px;}
.y1a_c00286{bottom:475.500450px;}
.y19_c00286{bottom:506.550450px;}
.y18_c00286{bottom:537.600450px;}
.y17_c00286{bottom:583.590450px;}
.y16_c00286{bottom:614.640450px;}
.y15_c00286{bottom:645.690450px;}
.y14_c00286{bottom:676.740450px;}
.y13_c00286{bottom:707.790450px;}
.y12_c00286{bottom:738.840450px;}
.y11_c00286{bottom:769.890450px;}
.y10_c00286{bottom:800.940450px;}
.yf_c00286{bottom:831.990450px;}
.ye_c00286{bottom:863.040450px;}
.yd_c00286{bottom:894.090450px;}
.yc_c00286{bottom:925.140450px;}
.yb_c00286{bottom:956.190450px;}
.ya_c00286{bottom:987.240450px;}
.y29_c00286{bottom:1003.890000px;}
.y2a_c00286{bottom:1007.130450px;}
.y9_c00286{bottom:1018.290450px;}
.y26_c00286{bottom:1019.370000px;}
.y28_c00286{bottom:1022.610450px;}
.y8_c00286{bottom:1049.250450px;}
.y7_c00286{bottom:1080.390450px;}
.y6_c00286{bottom:1111.440450px;}
.y3_c00286{bottom:1132.140450px;}
.y2_c00286{bottom:1165.441023px;}
.y1_c00286{bottom:1196.040600px;}
.h4_c00286{height:15.300000px;}
.h5_c00286{height:47.513672px;}
.h1_c00286{height:52.898555px;}
.h2_c00286{height:63.175781px;}
.h3_c00286{height:63.351562px;}
.h0_c00286{height:1263.000000px;}
.w3_c00286{width:58.050000px;}
.w2_c00286{width:95.220000px;}
.w1_c00286{width:892.500000px;}
.w0_c00286{width:892.830000px;}
.x0_c00286{left:0.000000px;}
.x5_c00286{left:125.100000px;}
.x1_c00286{left:127.620000px;}
.x6_c00286{left:129.600000px;}
.x7_c00286{left:133.380000px;}
.x4_c00286{left:411.120000px;}
.x3_c00286{left:413.100000px;}
.x2_c00286{left:738.450000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls1b_c00286{letter-spacing:-0.320000pt;}
.ls11_c00286{letter-spacing:-0.090848pt;}
.ls19_c00286{letter-spacing:-0.044800pt;}
.ls13_c00286{letter-spacing:-0.025600pt;}
.ls15_c00286{letter-spacing:-0.012800pt;}
.ls18_c00286{letter-spacing:-0.006400pt;}
.ls12_c00286{letter-spacing:0.000000pt;}
.lsa_c00286{letter-spacing:0.006400pt;}
.ls0_c00286{letter-spacing:0.012800pt;}
.lsf_c00286{letter-spacing:0.014400pt;}
.ls3_c00286{letter-spacing:0.019200pt;}
.ls6_c00286{letter-spacing:0.025600pt;}
.ls7_c00286{letter-spacing:0.032000pt;}
.lsb_c00286{letter-spacing:0.038400pt;}
.ls8_c00286{letter-spacing:0.044800pt;}
.ls2_c00286{letter-spacing:0.051200pt;}
.ls4_c00286{letter-spacing:0.057600pt;}
.lsd_c00286{letter-spacing:0.064000pt;}
.ls5_c00286{letter-spacing:0.070400pt;}
.lse_c00286{letter-spacing:0.076800pt;}
.lsc_c00286{letter-spacing:0.083200pt;}
.ls9_c00286{letter-spacing:0.089600pt;}
.ls10_c00286{letter-spacing:0.110400pt;}
.ls1_c00286{letter-spacing:0.121600pt;}
.ls14_c00286{letter-spacing:1.523200pt;}
.ls16_c00286{letter-spacing:2.560000pt;}
.ls17_c00286{letter-spacing:6.400000pt;}
.ls1a_c00286{letter-spacing:7.360000pt;}
.ws1_c00286{word-spacing:0.000000pt;}
.ws3_c00286{word-spacing:0.144000pt;}
.ws0_c00286{word-spacing:0.171008pt;}
.ws2_c00286{word-spacing:15.385600pt;}
._13_c00286{margin-left:-8.083200pt;}
._11_c00286{margin-left:-7.193600pt;}
._10_c00286{margin-left:-6.080000pt;}
._7_c00286{margin-left:-4.076800pt;}
._6_c00286{margin-left:-2.950400pt;}
._4_c00286{margin-left:-1.984000pt;}
._1_c00286{margin-left:-1.011200pt;}
._0_c00286{width:0.919168pt;}
._c_c00286{width:2.188800pt;}
._e_c00286{width:3.084800pt;}
._d_c00286{width:4.115200pt;}
._5_c00286{width:5.452800pt;}
._f_c00286{width:6.355200pt;}
._b_c00286{width:7.392000pt;}
._9_c00286{width:8.595200pt;}
._a_c00286{width:9.689600pt;}
._12_c00286{width:11.404800pt;}
._3_c00286{width:13.715200pt;}
._2_c00286{width:14.700800pt;}
._8_c00286{width:26.848000pt;}
.fs2_c00286{font-size:48.000000pt;}
.fs0_c00286{font-size:53.440000pt;}
.fs1_c00286{font-size:64.000000pt;}
.y0_c00286{bottom:0.000000pt;}
.y27_c00286{bottom:2.880400pt;}
.y5_c00286{bottom:50.987067pt;}
.y4_c00286{bottom:69.387067pt;}
.y25_c00286{bottom:108.347067pt;}
.y24_c00286{bottom:136.027067pt;}
.y23_c00286{bottom:163.627067pt;}
.y22_c00286{bottom:191.227067pt;}
.y21_c00286{bottom:218.747067pt;}
.y20_c00286{bottom:256.987067pt;}
.y1f_c00286{bottom:284.667067pt;}
.y1e_c00286{bottom:312.267067pt;}
.y1d_c00286{bottom:339.867067pt;}
.y1c_c00286{bottom:367.467067pt;}
.y1b_c00286{bottom:395.067067pt;}
.y1a_c00286{bottom:422.667067pt;}
.y19_c00286{bottom:450.267067pt;}
.y18_c00286{bottom:477.867067pt;}
.y17_c00286{bottom:518.747067pt;}
.y16_c00286{bottom:546.347067pt;}
.y15_c00286{bottom:573.947067pt;}
.y14_c00286{bottom:601.547067pt;}
.y13_c00286{bottom:629.147067pt;}
.y12_c00286{bottom:656.747067pt;}
.y11_c00286{bottom:684.347067pt;}
.y10_c00286{bottom:711.947067pt;}
.yf_c00286{bottom:739.547067pt;}
.ye_c00286{bottom:767.147067pt;}
.yd_c00286{bottom:794.747067pt;}
.yc_c00286{bottom:822.347067pt;}
.yb_c00286{bottom:849.947067pt;}
.ya_c00286{bottom:877.547067pt;}
.y29_c00286{bottom:892.346667pt;}
.y2a_c00286{bottom:895.227067pt;}
.y9_c00286{bottom:905.147067pt;}
.y26_c00286{bottom:906.106667pt;}
.y28_c00286{bottom:908.987067pt;}
.y8_c00286{bottom:932.667067pt;}
.y7_c00286{bottom:960.347067pt;}
.y6_c00286{bottom:987.947067pt;}
.y3_c00286{bottom:1006.347067pt;}
.y2_c00286{bottom:1035.947576pt;}
.y1_c00286{bottom:1063.147200pt;}
.h4_c00286{height:13.600000pt;}
.h5_c00286{height:42.234375pt;}
.h1_c00286{height:47.020937pt;}
.h2_c00286{height:56.156250pt;}
.h3_c00286{height:56.312500pt;}
.h0_c00286{height:1122.666667pt;}
.w3_c00286{width:51.600000pt;}
.w2_c00286{width:84.640000pt;}
.w1_c00286{width:793.333333pt;}
.w0_c00286{width:793.626667pt;}
.x0_c00286{left:0.000000pt;}
.x5_c00286{left:111.200000pt;}
.x1_c00286{left:113.440000pt;}
.x6_c00286{left:115.200000pt;}
.x7_c00286{left:118.560000pt;}
.x4_c00286{left:365.440000pt;}
.x3_c00286{left:367.200000pt;}
.x2_c00286{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.095703;font-style:normal;font-weight:normal;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_a87cdb11b37cc99fea528bff.woff2')format("woff");}.ff2_c00287{font-family:ff2_c00287;line-height:1.093262;font-style:normal;font-weight:normal;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_23d4a5767e309c59a54bc567.woff2')format("woff");}.ff3_c00287{font-family:ff3_c00287;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls1c_c00287{letter-spacing:-0.064800px;}
.ls1b_c00287{letter-spacing:-0.057600px;}
.ls1a_c00287{letter-spacing:-0.050400px;}
.ls12_c00287{letter-spacing:-0.048096px;}
.ls17_c00287{letter-spacing:-0.043200px;}
.ls16_c00287{letter-spacing:-0.036000px;}
.ls15_c00287{letter-spacing:-0.028800px;}
.ls19_c00287{letter-spacing:-0.021600px;}
.ls14_c00287{letter-spacing:-0.014400px;}
.ls18_c00287{letter-spacing:-0.007200px;}
.ls13_c00287{letter-spacing:0.000000px;}
.ls4_c00287{letter-spacing:0.007200px;}
.ls8_c00287{letter-spacing:0.014400px;}
.lsb_c00287{letter-spacing:0.021600px;}
.ls1_c00287{letter-spacing:0.025164px;}
.ls5_c00287{letter-spacing:0.028800px;}
.ls6_c00287{letter-spacing:0.036000px;}
.ls2_c00287{letter-spacing:0.041940px;}
.ls7_c00287{letter-spacing:0.043200px;}
.ls3_c00287{letter-spacing:0.050328px;}
.lsa_c00287{letter-spacing:0.050400px;}
.lsd_c00287{letter-spacing:0.057600px;}
.ls0_c00287{letter-spacing:0.058716px;}
.ls9_c00287{letter-spacing:0.064800px;}
.ls11_c00287{letter-spacing:0.072000px;}
.ls10_c00287{letter-spacing:0.093600px;}
.lsf_c00287{letter-spacing:0.100800px;}
.lsc_c00287{letter-spacing:0.122400px;}
.lse_c00287{letter-spacing:0.201600px;}
.ls1d_c00287{letter-spacing:2.880000px;}
.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:0.000000px;}
.ws0_c00287{word-spacing:0.138276px;}
._a_c00287{margin-left:-5.234400px;}
._3_c00287{margin-left:-4.024800px;}
._2_c00287{margin-left:-2.908800px;}
._1_c00287{margin-left:-1.000800px;}
._6_c00287{width:1.209600px;}
._b_c00287{width:2.260800px;}
._0_c00287{width:3.974400px;}
._e_c00287{width:5.529600px;}
._5_c00287{width:7.963200px;}
._4_c00287{width:8.985600px;}
._9_c00287{width:10.144800px;}
._7_c00287{width:11.880000px;}
._8_c00287{width:13.017600px;}
._f_c00287{width:14.356800px;}
._c_c00287{width:19.296000px;}
._d_c00287{width:22.996800px;}
.fc0_c00287{color:rgb(0,0,0);}
.fs0_c00287{font-size:60.120000px;}
.fs1_c00287{font-size:72.000000px;}
.fs2_c00287{font-size:83.880000px;}
.y0_c00287{bottom:0.000000px;}
.y6_c00287{bottom:57.360450px;}
.y5_c00287{bottom:78.060450px;}
.y27_c00287{bottom:134.220450px;}
.y26_c00287{bottom:165.270450px;}
.y25_c00287{bottom:196.320450px;}
.y24_c00287{bottom:227.370450px;}
.y23_c00287{bottom:258.420450px;}
.y22_c00287{bottom:289.470450px;}
.y21_c00287{bottom:320.520450px;}
.y20_c00287{bottom:351.570450px;}
.y1f_c00287{bottom:382.620450px;}
.y1e_c00287{bottom:413.670450px;}
.y1d_c00287{bottom:444.720450px;}
.y1c_c00287{bottom:475.770450px;}
.y1b_c00287{bottom:506.820450px;}
.y1a_c00287{bottom:537.870450px;}
.y19_c00287{bottom:568.920450px;}
.y18_c00287{bottom:599.970450px;}
.y17_c00287{bottom:631.020450px;}
.y16_c00287{bottom:662.070450px;}
.y15_c00287{bottom:693.120450px;}
.y14_c00287{bottom:724.170450px;}
.y13_c00287{bottom:755.130450px;}
.y12_c00287{bottom:786.180450px;}
.y11_c00287{bottom:817.230450px;}
.y10_c00287{bottom:848.280450px;}
.yf_c00287{bottom:879.330450px;}
.ye_c00287{bottom:910.380450px;}
.yd_c00287{bottom:941.430450px;}
.yc_c00287{bottom:972.480450px;}
.yb_c00287{bottom:1003.530450px;}
.ya_c00287{bottom:1037.820450px;}
.y9_c00287{bottom:1060.860450px;}
.y8_c00287{bottom:1098.210450px;}
.y7_c00287{bottom:1121.250450px;}
.y4_c00287{bottom:1144.380657px;}
.y3_c00287{bottom:1161.660648px;}
.y2_c00287{bottom:1178.850459px;}
.y1_c00287{bottom:1196.130450px;}
.h1_c00287{height:52.898555px;}
.h2_c00287{height:63.175781px;}
.h3_c00287{height:74.500840px;}
.h0_c00287{height:1263.000000px;}
.w1_c00287{width:892.500000px;}
.w0_c00287{width:892.830000px;}
.x0_c00287{left:0.000000px;}
.x4_c00287{left:127.620000px;}
.x1_c00287{left:649.620000px;}
.x3_c00287{left:738.450000px;}
.x2_c00287{left:765.450198px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls1c_c00287{letter-spacing:-0.057600pt;}
.ls1b_c00287{letter-spacing:-0.051200pt;}
.ls1a_c00287{letter-spacing:-0.044800pt;}
.ls12_c00287{letter-spacing:-0.042752pt;}
.ls17_c00287{letter-spacing:-0.038400pt;}
.ls16_c00287{letter-spacing:-0.032000pt;}
.ls15_c00287{letter-spacing:-0.025600pt;}
.ls19_c00287{letter-spacing:-0.019200pt;}
.ls14_c00287{letter-spacing:-0.012800pt;}
.ls18_c00287{letter-spacing:-0.006400pt;}
.ls13_c00287{letter-spacing:0.000000pt;}
.ls4_c00287{letter-spacing:0.006400pt;}
.ls8_c00287{letter-spacing:0.012800pt;}
.lsb_c00287{letter-spacing:0.019200pt;}
.ls1_c00287{letter-spacing:0.022368pt;}
.ls5_c00287{letter-spacing:0.025600pt;}
.ls6_c00287{letter-spacing:0.032000pt;}
.ls2_c00287{letter-spacing:0.037280pt;}
.ls7_c00287{letter-spacing:0.038400pt;}
.ls3_c00287{letter-spacing:0.044736pt;}
.lsa_c00287{letter-spacing:0.044800pt;}
.lsd_c00287{letter-spacing:0.051200pt;}
.ls0_c00287{letter-spacing:0.052192pt;}
.ls9_c00287{letter-spacing:0.057600pt;}
.ls11_c00287{letter-spacing:0.064000pt;}
.ls10_c00287{letter-spacing:0.083200pt;}
.lsf_c00287{letter-spacing:0.089600pt;}
.lsc_c00287{letter-spacing:0.108800pt;}
.lse_c00287{letter-spacing:0.179200pt;}
.ls1d_c00287{letter-spacing:2.560000pt;}
.ws1_c00287{word-spacing:0.000000pt;}
.ws0_c00287{word-spacing:0.122912pt;}
._a_c00287{margin-left:-4.652800pt;}
._3_c00287{margin-left:-3.577600pt;}
._2_c00287{margin-left:-2.585600pt;}
._1_c00287{margin-left:-0.889600pt;}
._6_c00287{width:1.075200pt;}
._b_c00287{width:2.009600pt;}
._0_c00287{width:3.532800pt;}
._e_c00287{width:4.915200pt;}
._5_c00287{width:7.078400pt;}
._4_c00287{width:7.987200pt;}
._9_c00287{width:9.017600pt;}
._7_c00287{width:10.560000pt;}
._8_c00287{width:11.571200pt;}
._f_c00287{width:12.761600pt;}
._c_c00287{width:17.152000pt;}
._d_c00287{width:20.441600pt;}
.fs0_c00287{font-size:53.440000pt;}
.fs1_c00287{font-size:64.000000pt;}
.fs2_c00287{font-size:74.560000pt;}
.y0_c00287{bottom:0.000000pt;}
.y6_c00287{bottom:50.987067pt;}
.y5_c00287{bottom:69.387067pt;}
.y27_c00287{bottom:119.307067pt;}
.y26_c00287{bottom:146.907067pt;}
.y25_c00287{bottom:174.507067pt;}
.y24_c00287{bottom:202.107067pt;}
.y23_c00287{bottom:229.707067pt;}
.y22_c00287{bottom:257.307067pt;}
.y21_c00287{bottom:284.907067pt;}
.y20_c00287{bottom:312.507067pt;}
.y1f_c00287{bottom:340.107067pt;}
.y1e_c00287{bottom:367.707067pt;}
.y1d_c00287{bottom:395.307067pt;}
.y1c_c00287{bottom:422.907067pt;}
.y1b_c00287{bottom:450.507067pt;}
.y1a_c00287{bottom:478.107067pt;}
.y19_c00287{bottom:505.707067pt;}
.y18_c00287{bottom:533.307067pt;}
.y17_c00287{bottom:560.907067pt;}
.y16_c00287{bottom:588.507067pt;}
.y15_c00287{bottom:616.107067pt;}
.y14_c00287{bottom:643.707067pt;}
.y13_c00287{bottom:671.227067pt;}
.y12_c00287{bottom:698.827067pt;}
.y11_c00287{bottom:726.427067pt;}
.y10_c00287{bottom:754.027067pt;}
.yf_c00287{bottom:781.627067pt;}
.ye_c00287{bottom:809.227067pt;}
.yd_c00287{bottom:836.827067pt;}
.yc_c00287{bottom:864.427067pt;}
.yb_c00287{bottom:892.027067pt;}
.ya_c00287{bottom:922.507067pt;}
.y9_c00287{bottom:942.987067pt;}
.y8_c00287{bottom:976.187067pt;}
.y7_c00287{bottom:996.667067pt;}
.y4_c00287{bottom:1017.227251pt;}
.y3_c00287{bottom:1032.587243pt;}
.y2_c00287{bottom:1047.867075pt;}
.y1_c00287{bottom:1063.227067pt;}
.h1_c00287{height:47.020937pt;}
.h2_c00287{height:56.156250pt;}
.h3_c00287{height:66.222969pt;}
.h0_c00287{height:1122.666667pt;}
.w1_c00287{width:793.333333pt;}
.w0_c00287{width:793.626667pt;}
.x0_c00287{left:0.000000pt;}
.x4_c00287{left:113.440000pt;}
.x1_c00287{left:577.440000pt;}
.x3_c00287{left:656.400000pt;}
.x2_c00287{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60fe4b7d95040257cf3b29d0.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.095703;font-style:normal;font-weight:normal;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_452f1d7c4b5a3aa21bc47074.woff2')format("woff");}.ff2_c00288{font-family:ff2_c00288;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00288{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.lse_c00288{letter-spacing:-0.720000px;}
.lsf_c00288{letter-spacing:-0.540000px;}
.ls10_c00288{letter-spacing:-0.468000px;}
.lsb_c00288{letter-spacing:-0.102204px;}
.ls12_c00288{letter-spacing:-0.064800px;}
.ls13_c00288{letter-spacing:-0.050400px;}
.ls14_c00288{letter-spacing:-0.021600px;}
.lsd_c00288{letter-spacing:-0.014400px;}
.ls11_c00288{letter-spacing:-0.007200px;}
.lsc_c00288{letter-spacing:0.000000px;}
.ls1_c00288{letter-spacing:0.007200px;}
.ls8_c00288{letter-spacing:0.014400px;}
.ls5_c00288{letter-spacing:0.021600px;}
.lsa_c00288{letter-spacing:0.027000px;}
.ls2_c00288{letter-spacing:0.028800px;}
.ls6_c00288{letter-spacing:0.036000px;}
.ls4_c00288{letter-spacing:0.043200px;}
.ls0_c00288{letter-spacing:0.050400px;}
.ls7_c00288{letter-spacing:0.057600px;}
.ls3_c00288{letter-spacing:0.064800px;}
.ls9_c00288{letter-spacing:0.093600px;}
.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:-18.050400px;}
.ws1_c00288{word-spacing:-18.021600px;}
.ws4_c00288{word-spacing:-0.784800px;}
.ws5_c00288{word-spacing:-0.043200px;}
.ws3_c00288{word-spacing:0.000000px;}
.ws6_c00288{word-spacing:0.151200px;}
.ws2_c00288{word-spacing:0.192384px;}
._5_c00288{margin-left:-2.887200px;}
._1_c00288{margin-left:-1.504800px;}
._0_c00288{width:1.034064px;}
._6_c00288{width:2.080800px;}
._4_c00288{width:3.679200px;}
._2_c00288{width:4.975200px;}
._3_c00288{width:6.616800px;}
.fc2_c00288{color:rgb(68,84,106);}
.fc1_c00288{color:rgb(0,0,0);}
.fc0_c00288{color:rgb(32,31,30);}
.fs2_c00288{font-size:54.000000px;}
.fs0_c00288{font-size:60.120000px;}
.fs1_c00288{font-size:72.000000px;}
.y0_c00288{bottom:0.000000px;}
.y5_c00288{bottom:57.360450px;}
.y4_c00288{bottom:78.060450px;}
.y21_c00288{bottom:124.590450px;}
.y20_c00288{bottom:155.640450px;}
.y1f_c00288{bottom:186.690450px;}
.y1e_c00288{bottom:217.740450px;}
.y1d_c00288{bottom:248.790450px;}
.y1c_c00288{bottom:279.840450px;}
.y1b_c00288{bottom:310.890450px;}
.y1a_c00288{bottom:341.940450px;}
.y19_c00288{bottom:372.990450px;}
.y18_c00288{bottom:404.040450px;}
.y17_c00288{bottom:435.090450px;}
.y16_c00288{bottom:466.140450px;}
.y15_c00288{bottom:493.140450px;}
.y14_c00288{bottom:681.060450px;}
.y13_c00288{bottom:707.790450px;}
.y12_c00288{bottom:738.840450px;}
.y11_c00288{bottom:769.890450px;}
.y10_c00288{bottom:800.940450px;}
.yf_c00288{bottom:831.990450px;}
.ye_c00288{bottom:863.040450px;}
.yd_c00288{bottom:894.090450px;}
.yc_c00288{bottom:925.140450px;}
.yb_c00288{bottom:956.190450px;}
.ya_c00288{bottom:987.240450px;}
.y9_c00288{bottom:1018.290450px;}
.y8_c00288{bottom:1049.340450px;}
.y7_c00288{bottom:1080.390450px;}
.y6_c00288{bottom:1111.440450px;}
.y3_c00288{bottom:1132.140450px;}
.y2_c00288{bottom:1165.441023px;}
.y1_c00288{bottom:1196.040600px;}
.h4_c00288{height:47.513672px;}
.h1_c00288{height:52.898555px;}
.h2_c00288{height:63.175781px;}
.h3_c00288{height:63.351562px;}
.h0_c00288{height:1263.000000px;}
.w1_c00288{width:892.500000px;}
.w0_c00288{width:892.830000px;}
.x0_c00288{left:0.000000px;}
.x1_c00288{left:127.620000px;}
.x2_c00288{left:738.450000px;}
.x3_c00288{left:747.990000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.lse_c00288{letter-spacing:-0.640000pt;}
.lsf_c00288{letter-spacing:-0.480000pt;}
.ls10_c00288{letter-spacing:-0.416000pt;}
.lsb_c00288{letter-spacing:-0.090848pt;}
.ls12_c00288{letter-spacing:-0.057600pt;}
.ls13_c00288{letter-spacing:-0.044800pt;}
.ls14_c00288{letter-spacing:-0.019200pt;}
.lsd_c00288{letter-spacing:-0.012800pt;}
.ls11_c00288{letter-spacing:-0.006400pt;}
.lsc_c00288{letter-spacing:0.000000pt;}
.ls1_c00288{letter-spacing:0.006400pt;}
.ls8_c00288{letter-spacing:0.012800pt;}
.ls5_c00288{letter-spacing:0.019200pt;}
.lsa_c00288{letter-spacing:0.024000pt;}
.ls2_c00288{letter-spacing:0.025600pt;}
.ls6_c00288{letter-spacing:0.032000pt;}
.ls4_c00288{letter-spacing:0.038400pt;}
.ls0_c00288{letter-spacing:0.044800pt;}
.ls7_c00288{letter-spacing:0.051200pt;}
.ls3_c00288{letter-spacing:0.057600pt;}
.ls9_c00288{letter-spacing:0.083200pt;}
.ws0_c00288{word-spacing:-16.044800pt;}
.ws1_c00288{word-spacing:-16.019200pt;}
.ws4_c00288{word-spacing:-0.697600pt;}
.ws5_c00288{word-spacing:-0.038400pt;}
.ws3_c00288{word-spacing:0.000000pt;}
.ws6_c00288{word-spacing:0.134400pt;}
.ws2_c00288{word-spacing:0.171008pt;}
._5_c00288{margin-left:-2.566400pt;}
._1_c00288{margin-left:-1.337600pt;}
._0_c00288{width:0.919168pt;}
._6_c00288{width:1.849600pt;}
._4_c00288{width:3.270400pt;}
._2_c00288{width:4.422400pt;}
._3_c00288{width:5.881600pt;}
.fs2_c00288{font-size:48.000000pt;}
.fs0_c00288{font-size:53.440000pt;}
.fs1_c00288{font-size:64.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y5_c00288{bottom:50.987067pt;}
.y4_c00288{bottom:69.387067pt;}
.y21_c00288{bottom:110.747067pt;}
.y20_c00288{bottom:138.347067pt;}
.y1f_c00288{bottom:165.947067pt;}
.y1e_c00288{bottom:193.547067pt;}
.y1d_c00288{bottom:221.147067pt;}
.y1c_c00288{bottom:248.747067pt;}
.y1b_c00288{bottom:276.347067pt;}
.y1a_c00288{bottom:303.947067pt;}
.y19_c00288{bottom:331.547067pt;}
.y18_c00288{bottom:359.147067pt;}
.y17_c00288{bottom:386.747067pt;}
.y16_c00288{bottom:414.347067pt;}
.y15_c00288{bottom:438.347067pt;}
.y14_c00288{bottom:605.387067pt;}
.y13_c00288{bottom:629.147067pt;}
.y12_c00288{bottom:656.747067pt;}
.y11_c00288{bottom:684.347067pt;}
.y10_c00288{bottom:711.947067pt;}
.yf_c00288{bottom:739.547067pt;}
.ye_c00288{bottom:767.147067pt;}
.yd_c00288{bottom:794.747067pt;}
.yc_c00288{bottom:822.347067pt;}
.yb_c00288{bottom:849.947067pt;}
.ya_c00288{bottom:877.547067pt;}
.y9_c00288{bottom:905.147067pt;}
.y8_c00288{bottom:932.747067pt;}
.y7_c00288{bottom:960.347067pt;}
.y6_c00288{bottom:987.947067pt;}
.y3_c00288{bottom:1006.347067pt;}
.y2_c00288{bottom:1035.947576pt;}
.y1_c00288{bottom:1063.147200pt;}
.h4_c00288{height:42.234375pt;}
.h1_c00288{height:47.020937pt;}
.h2_c00288{height:56.156250pt;}
.h3_c00288{height:56.312500pt;}
.h0_c00288{height:1122.666667pt;}
.w1_c00288{width:793.333333pt;}
.w0_c00288{width:793.626667pt;}
.x0_c00288{left:0.000000pt;}
.x1_c00288{left:113.440000pt;}
.x2_c00288{left:656.400000pt;}
.x3_c00288{left:664.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_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_b747ec6329c2e430ddea817d.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.095703;font-style:normal;font-weight:normal;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_ec589323800ad86dfed109b9.woff2')format("woff");}.ff2_c00289{font-family:ff2_c00289;line-height:1.093262;font-style:normal;font-weight:normal;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_53ca9f957a39baca3fd3a947.woff2')format("woff");}.ff3_c00289{font-family:ff3_c00289;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00289{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.lsf_c00289{letter-spacing:-0.360000px;}
.lsc_c00289{letter-spacing:-0.048096px;}
.ls11_c00289{letter-spacing:-0.028800px;}
.ls12_c00289{letter-spacing:-0.021600px;}
.ls10_c00289{letter-spacing:-0.007200px;}
.lse_c00289{letter-spacing:-0.005400px;}
.lsd_c00289{letter-spacing:0.000000px;}
.ls4_c00289{letter-spacing:0.007200px;}
.ls1_c00289{letter-spacing:0.014400px;}
.ls6_c00289{letter-spacing:0.021600px;}
.ls8_c00289{letter-spacing:0.028800px;}
.ls2_c00289{letter-spacing:0.036000px;}
.lsb_c00289{letter-spacing:0.043200px;}
.ls9_c00289{letter-spacing:0.050328px;}
.ls3_c00289{letter-spacing:0.050400px;}
.ls0_c00289{letter-spacing:0.057600px;}
.lsa_c00289{letter-spacing:0.064800px;}
.ls7_c00289{letter-spacing:0.072000px;}
.ls5_c00289{letter-spacing:0.079200px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00289{word-spacing:-18.036000px;}
.ws2_c00289{word-spacing:0.000000px;}
.ws1_c00289{word-spacing:0.138276px;}
.ws3_c00289{word-spacing:0.183600px;}
._2_c00289{margin-left:-4.996800px;}
._1_c00289{margin-left:-3.657600px;}
._4_c00289{margin-left:-2.196000px;}
._0_c00289{margin-left:-1.128600px;}
._3_c00289{width:1.699200px;}
._9_c00289{width:3.542400px;}
._8_c00289{width:4.953600px;}
._7_c00289{width:6.098400px;}
._6_c00289{width:7.567200px;}
._5_c00289{width:9.669600px;}
._e_c00289{width:15.163200px;}
._d_c00289{width:16.164000px;}
._a_c00289{width:19.072800px;}
._b_c00289{width:20.088000px;}
._c_c00289{width:21.902400px;}
.fc1_c00289{color:rgb(68,84,106);}
.fc0_c00289{color:rgb(0,0,0);}
.fs2_c00289{font-size:54.000000px;}
.fs0_c00289{font-size:60.120000px;}
.fs1_c00289{font-size:72.000000px;}
.fs3_c00289{font-size:83.880000px;}
.y0_c00289{bottom:0.000000px;}
.y6_c00289{bottom:57.360450px;}
.y5_c00289{bottom:78.060450px;}
.y26_c00289{bottom:153.300450px;}
.y25_c00289{bottom:184.350450px;}
.y24_c00289{bottom:215.400450px;}
.y23_c00289{bottom:246.450450px;}
.y22_c00289{bottom:277.500450px;}
.y21_c00289{bottom:308.550450px;}
.y20_c00289{bottom:339.600450px;}
.y1f_c00289{bottom:370.650450px;}
.y1e_c00289{bottom:401.700450px;}
.y1d_c00289{bottom:432.750450px;}
.y1c_c00289{bottom:463.800450px;}
.y1b_c00289{bottom:494.850450px;}
.y1a_c00289{bottom:525.900450px;}
.y19_c00289{bottom:556.950450px;}
.y18_c00289{bottom:588.000450px;}
.y17_c00289{bottom:622.290450px;}
.y16_c00289{bottom:645.330450px;}
.y15_c00289{bottom:682.410450px;}
.y14_c00289{bottom:713.460450px;}
.y13_c00289{bottom:744.510450px;}
.y12_c00289{bottom:775.560450px;}
.y11_c00289{bottom:806.610450px;}
.y10_c00289{bottom:837.660450px;}
.yf_c00289{bottom:868.710450px;}
.ye_c00289{bottom:899.760450px;}
.yd_c00289{bottom:930.810450px;}
.yc_c00289{bottom:961.860450px;}
.yb_c00289{bottom:992.910450px;}
.ya_c00289{bottom:1023.960450px;}
.y9_c00289{bottom:1055.010450px;}
.y8_c00289{bottom:1086.060450px;}
.y7_c00289{bottom:1128.630450px;}
.y4_c00289{bottom:1144.380657px;}
.y3_c00289{bottom:1161.660648px;}
.y2_c00289{bottom:1178.850459px;}
.y1_c00289{bottom:1196.130450px;}
.h3_c00289{height:47.513672px;}
.h1_c00289{height:52.898555px;}
.h2_c00289{height:63.175781px;}
.h4_c00289{height:63.351562px;}
.h5_c00289{height:74.500840px;}
.h0_c00289{height:1263.000000px;}
.w1_c00289{width:892.500000px;}
.w0_c00289{width:892.830000px;}
.x0_c00289{left:0.000000px;}
.x4_c00289{left:127.620000px;}
.x5_c00289{left:426.330000px;}
.x1_c00289{left:649.620000px;}
.x3_c00289{left:738.450000px;}
.x2_c00289{left:765.450198px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.lsf_c00289{letter-spacing:-0.320000pt;}
.lsc_c00289{letter-spacing:-0.042752pt;}
.ls11_c00289{letter-spacing:-0.025600pt;}
.ls12_c00289{letter-spacing:-0.019200pt;}
.ls10_c00289{letter-spacing:-0.006400pt;}
.lse_c00289{letter-spacing:-0.004800pt;}
.lsd_c00289{letter-spacing:0.000000pt;}
.ls4_c00289{letter-spacing:0.006400pt;}
.ls1_c00289{letter-spacing:0.012800pt;}
.ls6_c00289{letter-spacing:0.019200pt;}
.ls8_c00289{letter-spacing:0.025600pt;}
.ls2_c00289{letter-spacing:0.032000pt;}
.lsb_c00289{letter-spacing:0.038400pt;}
.ls9_c00289{letter-spacing:0.044736pt;}
.ls3_c00289{letter-spacing:0.044800pt;}
.ls0_c00289{letter-spacing:0.051200pt;}
.lsa_c00289{letter-spacing:0.057600pt;}
.ls7_c00289{letter-spacing:0.064000pt;}
.ls5_c00289{letter-spacing:0.070400pt;}
.ws0_c00289{word-spacing:-16.032000pt;}
.ws2_c00289{word-spacing:0.000000pt;}
.ws1_c00289{word-spacing:0.122912pt;}
.ws3_c00289{word-spacing:0.163200pt;}
._2_c00289{margin-left:-4.441600pt;}
._1_c00289{margin-left:-3.251200pt;}
._4_c00289{margin-left:-1.952000pt;}
._0_c00289{margin-left:-1.003200pt;}
._3_c00289{width:1.510400pt;}
._9_c00289{width:3.148800pt;}
._8_c00289{width:4.403200pt;}
._7_c00289{width:5.420800pt;}
._6_c00289{width:6.726400pt;}
._5_c00289{width:8.595200pt;}
._e_c00289{width:13.478400pt;}
._d_c00289{width:14.368000pt;}
._a_c00289{width:16.953600pt;}
._b_c00289{width:17.856000pt;}
._c_c00289{width:19.468800pt;}
.fs2_c00289{font-size:48.000000pt;}
.fs0_c00289{font-size:53.440000pt;}
.fs1_c00289{font-size:64.000000pt;}
.fs3_c00289{font-size:74.560000pt;}
.y0_c00289{bottom:0.000000pt;}
.y6_c00289{bottom:50.987067pt;}
.y5_c00289{bottom:69.387067pt;}
.y26_c00289{bottom:136.267067pt;}
.y25_c00289{bottom:163.867067pt;}
.y24_c00289{bottom:191.467067pt;}
.y23_c00289{bottom:219.067067pt;}
.y22_c00289{bottom:246.667067pt;}
.y21_c00289{bottom:274.267067pt;}
.y20_c00289{bottom:301.867067pt;}
.y1f_c00289{bottom:329.467067pt;}
.y1e_c00289{bottom:357.067067pt;}
.y1d_c00289{bottom:384.667067pt;}
.y1c_c00289{bottom:412.267067pt;}
.y1b_c00289{bottom:439.867067pt;}
.y1a_c00289{bottom:467.467067pt;}
.y19_c00289{bottom:495.067067pt;}
.y18_c00289{bottom:522.667067pt;}
.y17_c00289{bottom:553.147067pt;}
.y16_c00289{bottom:573.627067pt;}
.y15_c00289{bottom:606.587067pt;}
.y14_c00289{bottom:634.187067pt;}
.y13_c00289{bottom:661.787067pt;}
.y12_c00289{bottom:689.387067pt;}
.y11_c00289{bottom:716.987067pt;}
.y10_c00289{bottom:744.587067pt;}
.yf_c00289{bottom:772.187067pt;}
.ye_c00289{bottom:799.787067pt;}
.yd_c00289{bottom:827.387067pt;}
.yc_c00289{bottom:854.987067pt;}
.yb_c00289{bottom:882.587067pt;}
.ya_c00289{bottom:910.187067pt;}
.y9_c00289{bottom:937.787067pt;}
.y8_c00289{bottom:965.387067pt;}
.y7_c00289{bottom:1003.227067pt;}
.y4_c00289{bottom:1017.227251pt;}
.y3_c00289{bottom:1032.587243pt;}
.y2_c00289{bottom:1047.867075pt;}
.y1_c00289{bottom:1063.227067pt;}
.h3_c00289{height:42.234375pt;}
.h1_c00289{height:47.020937pt;}
.h2_c00289{height:56.156250pt;}
.h4_c00289{height:56.312500pt;}
.h5_c00289{height:66.222969pt;}
.h0_c00289{height:1122.666667pt;}
.w1_c00289{width:793.333333pt;}
.w0_c00289{width:793.626667pt;}
.x0_c00289{left:0.000000pt;}
.x4_c00289{left:113.440000pt;}
.x5_c00289{left:378.960000pt;}
.x1_c00289{left:577.440000pt;}
.x3_c00289{left:656.400000pt;}
.x2_c00289{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f98a3f3f5a321858b2ae828b.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.095703;font-style:normal;font-weight:normal;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_00dcae98addd14295a33ebe4.woff2')format("woff");}.ff2_c00290{font-family:ff2_c00290;line-height:1.093262;font-style: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;}
.lse_c00290{letter-spacing:-0.102204px;}
.ls12_c00290{letter-spacing:-0.086400px;}
.ls13_c00290{letter-spacing:-0.036000px;}
.ls11_c00290{letter-spacing:-0.014400px;}
.ls10_c00290{letter-spacing:-0.007200px;}
.lsf_c00290{letter-spacing:0.000000px;}
.ls6_c00290{letter-spacing:0.007200px;}
.ls4_c00290{letter-spacing:0.014400px;}
.ls7_c00290{letter-spacing:0.021600px;}
.ls9_c00290{letter-spacing:0.028800px;}
.ls0_c00290{letter-spacing:0.036000px;}
.ls8_c00290{letter-spacing:0.043200px;}
.ls1_c00290{letter-spacing:0.050400px;}
.ls5_c00290{letter-spacing:0.057600px;}
.ls3_c00290{letter-spacing:0.064800px;}
.ls2_c00290{letter-spacing:0.072000px;}
.lsa_c00290{letter-spacing:0.093600px;}
.lsb_c00290{letter-spacing:0.100800px;}
.lsd_c00290{letter-spacing:0.165600px;}
.lsc_c00290{letter-spacing:4.680000px;}
.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;}
}
.ws1_c00290{word-spacing:-18.093600px;}
.ws2_c00290{word-spacing:-18.000000px;}
.ws0_c00290{word-spacing:-17.913600px;}
.ws4_c00290{word-spacing:0.000000px;}
.ws3_c00290{word-spacing:0.192384px;}
.ws5_c00290{word-spacing:4.579200px;}
._a_c00290{margin-left:-4.809600px;}
._3_c00290{margin-left:-2.916000px;}
._2_c00290{margin-left:-1.080000px;}
._0_c00290{width:1.034064px;}
._9_c00290{width:2.192832px;}
._6_c00290{width:3.225600px;}
._5_c00290{width:4.298400px;}
._4_c00290{width:6.112800px;}
._7_c00290{width:7.509600px;}
._1_c00290{width:8.964000px;}
._d_c00290{width:10.104336px;}
._c_c00290{width:11.541600px;}
._b_c00290{width:12.607200px;}
._e_c00290{width:15.069600px;}
._8_c00290{width:16.257600px;}
.fc1_c00290{color:rgb(0,0,0);}
.fc0_c00290{color:rgb(32,31,30);}
.fs0_c00290{font-size:60.120000px;}
.fs1_c00290{font-size:72.000000px;}
.y0_c00290{bottom:0.000000px;}
.y5_c00290{bottom:57.360450px;}
.y4_c00290{bottom:78.060450px;}
.y25_c00290{bottom:148.980450px;}
.y24_c00290{bottom:180.030450px;}
.y23_c00290{bottom:211.080450px;}
.y22_c00290{bottom:242.130450px;}
.y21_c00290{bottom:273.090450px;}
.y20_c00290{bottom:304.140450px;}
.y1f_c00290{bottom:335.190450px;}
.y1e_c00290{bottom:366.240450px;}
.y1d_c00290{bottom:397.290450px;}
.y1c_c00290{bottom:428.340450px;}
.y1b_c00290{bottom:459.390450px;}
.y1a_c00290{bottom:490.440450px;}
.y19_c00290{bottom:521.490450px;}
.y18_c00290{bottom:552.540450px;}
.y17_c00290{bottom:583.590450px;}
.y16_c00290{bottom:614.640450px;}
.y15_c00290{bottom:645.690450px;}
.y14_c00290{bottom:676.740450px;}
.y13_c00290{bottom:707.790450px;}
.y12_c00290{bottom:738.840450px;}
.y11_c00290{bottom:769.890450px;}
.y10_c00290{bottom:800.940450px;}
.yf_c00290{bottom:831.990450px;}
.ye_c00290{bottom:863.040450px;}
.yd_c00290{bottom:894.090450px;}
.yc_c00290{bottom:925.140450px;}
.yb_c00290{bottom:956.190450px;}
.ya_c00290{bottom:987.240450px;}
.y9_c00290{bottom:1018.290450px;}
.y8_c00290{bottom:1049.340450px;}
.y7_c00290{bottom:1080.390450px;}
.y6_c00290{bottom:1111.440450px;}
.y3_c00290{bottom:1132.140450px;}
.y2_c00290{bottom:1165.441023px;}
.y1_c00290{bottom:1196.040600px;}
.h1_c00290{height:52.898555px;}
.h2_c00290{height:63.175781px;}
.h3_c00290{height:63.351562px;}
.h0_c00290{height:1263.000000px;}
.w1_c00290{width:892.500000px;}
.w0_c00290{width:892.830000px;}
.x0_c00290{left:0.000000px;}
.x1_c00290{left:127.620000px;}
.x2_c00290{left:738.450000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.lse_c00290{letter-spacing:-0.090848pt;}
.ls12_c00290{letter-spacing:-0.076800pt;}
.ls13_c00290{letter-spacing:-0.032000pt;}
.ls11_c00290{letter-spacing:-0.012800pt;}
.ls10_c00290{letter-spacing:-0.006400pt;}
.lsf_c00290{letter-spacing:0.000000pt;}
.ls6_c00290{letter-spacing:0.006400pt;}
.ls4_c00290{letter-spacing:0.012800pt;}
.ls7_c00290{letter-spacing:0.019200pt;}
.ls9_c00290{letter-spacing:0.025600pt;}
.ls0_c00290{letter-spacing:0.032000pt;}
.ls8_c00290{letter-spacing:0.038400pt;}
.ls1_c00290{letter-spacing:0.044800pt;}
.ls5_c00290{letter-spacing:0.051200pt;}
.ls3_c00290{letter-spacing:0.057600pt;}
.ls2_c00290{letter-spacing:0.064000pt;}
.lsa_c00290{letter-spacing:0.083200pt;}
.lsb_c00290{letter-spacing:0.089600pt;}
.lsd_c00290{letter-spacing:0.147200pt;}
.lsc_c00290{letter-spacing:4.160000pt;}
.ws1_c00290{word-spacing:-16.083200pt;}
.ws2_c00290{word-spacing:-16.000000pt;}
.ws0_c00290{word-spacing:-15.923200pt;}
.ws4_c00290{word-spacing:0.000000pt;}
.ws3_c00290{word-spacing:0.171008pt;}
.ws5_c00290{word-spacing:4.070400pt;}
._a_c00290{margin-left:-4.275200pt;}
._3_c00290{margin-left:-2.592000pt;}
._2_c00290{margin-left:-0.960000pt;}
._0_c00290{width:0.919168pt;}
._9_c00290{width:1.949184pt;}
._6_c00290{width:2.867200pt;}
._5_c00290{width:3.820800pt;}
._4_c00290{width:5.433600pt;}
._7_c00290{width:6.675200pt;}
._1_c00290{width:7.968000pt;}
._d_c00290{width:8.981632pt;}
._c_c00290{width:10.259200pt;}
._b_c00290{width:11.206400pt;}
._e_c00290{width:13.395200pt;}
._8_c00290{width:14.451200pt;}
.fs0_c00290{font-size:53.440000pt;}
.fs1_c00290{font-size:64.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y5_c00290{bottom:50.987067pt;}
.y4_c00290{bottom:69.387067pt;}
.y25_c00290{bottom:132.427067pt;}
.y24_c00290{bottom:160.027067pt;}
.y23_c00290{bottom:187.627067pt;}
.y22_c00290{bottom:215.227067pt;}
.y21_c00290{bottom:242.747067pt;}
.y20_c00290{bottom:270.347067pt;}
.y1f_c00290{bottom:297.947067pt;}
.y1e_c00290{bottom:325.547067pt;}
.y1d_c00290{bottom:353.147067pt;}
.y1c_c00290{bottom:380.747067pt;}
.y1b_c00290{bottom:408.347067pt;}
.y1a_c00290{bottom:435.947067pt;}
.y19_c00290{bottom:463.547067pt;}
.y18_c00290{bottom:491.147067pt;}
.y17_c00290{bottom:518.747067pt;}
.y16_c00290{bottom:546.347067pt;}
.y15_c00290{bottom:573.947067pt;}
.y14_c00290{bottom:601.547067pt;}
.y13_c00290{bottom:629.147067pt;}
.y12_c00290{bottom:656.747067pt;}
.y11_c00290{bottom:684.347067pt;}
.y10_c00290{bottom:711.947067pt;}
.yf_c00290{bottom:739.547067pt;}
.ye_c00290{bottom:767.147067pt;}
.yd_c00290{bottom:794.747067pt;}
.yc_c00290{bottom:822.347067pt;}
.yb_c00290{bottom:849.947067pt;}
.ya_c00290{bottom:877.547067pt;}
.y9_c00290{bottom:905.147067pt;}
.y8_c00290{bottom:932.747067pt;}
.y7_c00290{bottom:960.347067pt;}
.y6_c00290{bottom:987.947067pt;}
.y3_c00290{bottom:1006.347067pt;}
.y2_c00290{bottom:1035.947576pt;}
.y1_c00290{bottom:1063.147200pt;}
.h1_c00290{height:47.020937pt;}
.h2_c00290{height:56.156250pt;}
.h3_c00290{height:56.312500pt;}
.h0_c00290{height:1122.666667pt;}
.w1_c00290{width:793.333333pt;}
.w0_c00290{width:793.626667pt;}
.x0_c00290{left:0.000000pt;}
.x1_c00290{left:113.440000pt;}
.x2_c00290{left:656.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_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_98c302b030cec0482554fdab.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.095703;font-style:normal;font-weight:normal;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_36bc3498edf418df79d7e2b0.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.093262;font-style: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;}
.ls15_c00291{letter-spacing:-1.440000px;}
.ls17_c00291{letter-spacing:-0.252000px;}
.ls16_c00291{letter-spacing:-0.072000px;}
.lsf_c00291{letter-spacing:-0.048096px;}
.ls13_c00291{letter-spacing:-0.043200px;}
.ls18_c00291{letter-spacing:-0.014400px;}
.ls12_c00291{letter-spacing:-0.007200px;}
.ls11_c00291{letter-spacing:-0.005400px;}
.ls10_c00291{letter-spacing:0.000000px;}
.ls5_c00291{letter-spacing:0.007200px;}
.lsc_c00291{letter-spacing:0.014400px;}
.ls7_c00291{letter-spacing:0.021600px;}
.ls2_c00291{letter-spacing:0.028800px;}
.ls0_c00291{letter-spacing:0.032400px;}
.ls6_c00291{letter-spacing:0.036000px;}
.ls3_c00291{letter-spacing:0.043200px;}
.lsd_c00291{letter-spacing:0.050400px;}
.lse_c00291{letter-spacing:0.072000px;}
.ls9_c00291{letter-spacing:0.079200px;}
.ls8_c00291{letter-spacing:0.086400px;}
.lsa_c00291{letter-spacing:0.093600px;}
.ls1_c00291{letter-spacing:0.097200px;}
.ls4_c00291{letter-spacing:0.115200px;}
.lsb_c00291{letter-spacing:4.320000px;}
.ls14_c00291{letter-spacing:8.280000px;}
.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:-18.007200px;}
.ws6_c00291{word-spacing:-0.388800px;}
.ws2_c00291{word-spacing:0.000000px;}
.ws4_c00291{word-spacing:0.081000px;}
.ws1_c00291{word-spacing:0.138276px;}
.ws3_c00291{word-spacing:0.145800px;}
.ws5_c00291{word-spacing:0.183600px;}
._3_c00291{margin-left:-8.701200px;}
._4_c00291{margin-left:-7.351200px;}
._7_c00291{margin-left:-2.399400px;}
._0_c00291{margin-left:-1.063800px;}
._1_c00291{width:1.440000px;}
._5_c00291{width:2.822400px;}
._6_c00291{width:4.032000px;}
._9_c00291{width:5.140800px;}
._a_c00291{width:6.148800px;}
._2_c00291{width:8.251200px;}
._8_c00291{width:10.792800px;}
._b_c00291{width:26.272800px;}
.fc2_c00291{color:rgb(255,0,0);}
.fc1_c00291{color:rgb(68,84,106);}
.fc0_c00291{color:rgb(0,0,0);}
.fs2_c00291{font-size:54.000000px;}
.fs0_c00291{font-size:60.120000px;}
.fs1_c00291{font-size:72.000000px;}
.y0_c00291{bottom:0.000000px;}
.y6_c00291{bottom:57.360450px;}
.y5_c00291{bottom:78.060450px;}
.y22_c00291{bottom:151.770450px;}
.y21_c00291{bottom:182.820450px;}
.y20_c00291{bottom:213.870450px;}
.y1f_c00291{bottom:244.920450px;}
.y1e_c00291{bottom:275.970450px;}
.y1d_c00291{bottom:307.020450px;}
.y1c_c00291{bottom:338.070450px;}
.y1b_c00291{bottom:369.120450px;}
.y1a_c00291{bottom:400.170450px;}
.y19_c00291{bottom:431.220450px;}
.y18_c00291{bottom:462.270450px;}
.y17_c00291{bottom:493.320450px;}
.y16_c00291{bottom:524.370450px;}
.y15_c00291{bottom:555.420450px;}
.y14_c00291{bottom:586.470450px;}
.y13_c00291{bottom:617.520450px;}
.y12_c00291{bottom:648.570450px;}
.y11_c00291{bottom:679.620450px;}
.y10_c00291{bottom:710.670450px;}
.yf_c00291{bottom:741.720450px;}
.ye_c00291{bottom:772.770450px;}
.yd_c00291{bottom:803.820450px;}
.yc_c00291{bottom:834.870450px;}
.yb_c00291{bottom:865.920450px;}
.ya_c00291{bottom:896.970450px;}
.y9_c00291{bottom:923.970450px;}
.y8_c00291{bottom:1113.150000px;}
.y7_c00291{bottom:1128.630450px;}
.y4_c00291{bottom:1144.380657px;}
.y3_c00291{bottom:1161.660648px;}
.y2_c00291{bottom:1178.850459px;}
.y1_c00291{bottom:1196.130450px;}
.h3_c00291{height:47.513672px;}
.h1_c00291{height:52.898555px;}
.h2_c00291{height:63.175781px;}
.h4_c00291{height:63.351562px;}
.h0_c00291{height:1263.000000px;}
.w1_c00291{width:892.500000px;}
.w0_c00291{width:892.830000px;}
.x0_c00291{left:0.000000px;}
.x4_c00291{left:127.620000px;}
.x1_c00291{left:649.620000px;}
.x3_c00291{left:738.450000px;}
.x5_c00291{left:755.010000px;}
.x2_c00291{left:765.450198px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls15_c00291{letter-spacing:-1.280000pt;}
.ls17_c00291{letter-spacing:-0.224000pt;}
.ls16_c00291{letter-spacing:-0.064000pt;}
.lsf_c00291{letter-spacing:-0.042752pt;}
.ls13_c00291{letter-spacing:-0.038400pt;}
.ls18_c00291{letter-spacing:-0.012800pt;}
.ls12_c00291{letter-spacing:-0.006400pt;}
.ls11_c00291{letter-spacing:-0.004800pt;}
.ls10_c00291{letter-spacing:0.000000pt;}
.ls5_c00291{letter-spacing:0.006400pt;}
.lsc_c00291{letter-spacing:0.012800pt;}
.ls7_c00291{letter-spacing:0.019200pt;}
.ls2_c00291{letter-spacing:0.025600pt;}
.ls0_c00291{letter-spacing:0.028800pt;}
.ls6_c00291{letter-spacing:0.032000pt;}
.ls3_c00291{letter-spacing:0.038400pt;}
.lsd_c00291{letter-spacing:0.044800pt;}
.lse_c00291{letter-spacing:0.064000pt;}
.ls9_c00291{letter-spacing:0.070400pt;}
.ls8_c00291{letter-spacing:0.076800pt;}
.lsa_c00291{letter-spacing:0.083200pt;}
.ls1_c00291{letter-spacing:0.086400pt;}
.ls4_c00291{letter-spacing:0.102400pt;}
.lsb_c00291{letter-spacing:3.840000pt;}
.ls14_c00291{letter-spacing:7.360000pt;}
.ws0_c00291{word-spacing:-16.006400pt;}
.ws6_c00291{word-spacing:-0.345600pt;}
.ws2_c00291{word-spacing:0.000000pt;}
.ws4_c00291{word-spacing:0.072000pt;}
.ws1_c00291{word-spacing:0.122912pt;}
.ws3_c00291{word-spacing:0.129600pt;}
.ws5_c00291{word-spacing:0.163200pt;}
._3_c00291{margin-left:-7.734400pt;}
._4_c00291{margin-left:-6.534400pt;}
._7_c00291{margin-left:-2.132800pt;}
._0_c00291{margin-left:-0.945600pt;}
._1_c00291{width:1.280000pt;}
._5_c00291{width:2.508800pt;}
._6_c00291{width:3.584000pt;}
._9_c00291{width:4.569600pt;}
._a_c00291{width:5.465600pt;}
._2_c00291{width:7.334400pt;}
._8_c00291{width:9.593600pt;}
._b_c00291{width:23.353600pt;}
.fs2_c00291{font-size:48.000000pt;}
.fs0_c00291{font-size:53.440000pt;}
.fs1_c00291{font-size:64.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y6_c00291{bottom:50.987067pt;}
.y5_c00291{bottom:69.387067pt;}
.y22_c00291{bottom:134.907067pt;}
.y21_c00291{bottom:162.507067pt;}
.y20_c00291{bottom:190.107067pt;}
.y1f_c00291{bottom:217.707067pt;}
.y1e_c00291{bottom:245.307067pt;}
.y1d_c00291{bottom:272.907067pt;}
.y1c_c00291{bottom:300.507067pt;}
.y1b_c00291{bottom:328.107067pt;}
.y1a_c00291{bottom:355.707067pt;}
.y19_c00291{bottom:383.307067pt;}
.y18_c00291{bottom:410.907067pt;}
.y17_c00291{bottom:438.507067pt;}
.y16_c00291{bottom:466.107067pt;}
.y15_c00291{bottom:493.707067pt;}
.y14_c00291{bottom:521.307067pt;}
.y13_c00291{bottom:548.907067pt;}
.y12_c00291{bottom:576.507067pt;}
.y11_c00291{bottom:604.107067pt;}
.y10_c00291{bottom:631.707067pt;}
.yf_c00291{bottom:659.307067pt;}
.ye_c00291{bottom:686.907067pt;}
.yd_c00291{bottom:714.507067pt;}
.yc_c00291{bottom:742.107067pt;}
.yb_c00291{bottom:769.707067pt;}
.ya_c00291{bottom:797.307067pt;}
.y9_c00291{bottom:821.307067pt;}
.y8_c00291{bottom:989.466667pt;}
.y7_c00291{bottom:1003.227067pt;}
.y4_c00291{bottom:1017.227251pt;}
.y3_c00291{bottom:1032.587243pt;}
.y2_c00291{bottom:1047.867075pt;}
.y1_c00291{bottom:1063.227067pt;}
.h3_c00291{height:42.234375pt;}
.h1_c00291{height:47.020937pt;}
.h2_c00291{height:56.156250pt;}
.h4_c00291{height:56.312500pt;}
.h0_c00291{height:1122.666667pt;}
.w1_c00291{width:793.333333pt;}
.w0_c00291{width:793.626667pt;}
.x0_c00291{left:0.000000pt;}
.x4_c00291{left:113.440000pt;}
.x1_c00291{left:577.440000pt;}
.x3_c00291{left:656.400000pt;}
.x5_c00291{left:671.120000pt;}
.x2_c00291{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cacd68db3551740b5cb61fd9.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.095703;font-style:normal;font-weight:normal;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_03f2f82027e537d22ac1fb9e.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00292{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls1a_c00292{letter-spacing:-0.122400px;}
.ls11_c00292{letter-spacing:-0.102204px;}
.ls18_c00292{letter-spacing:-0.100800px;}
.ls1b_c00292{letter-spacing:-0.079200px;}
.ls1e_c00292{letter-spacing:-0.050400px;}
.ls1d_c00292{letter-spacing:-0.043200px;}
.ls13_c00292{letter-spacing:-0.036000px;}
.ls14_c00292{letter-spacing:-0.028800px;}
.ls15_c00292{letter-spacing:-0.021600px;}
.ls16_c00292{letter-spacing:-0.014400px;}
.ls19_c00292{letter-spacing:-0.007200px;}
.ls12_c00292{letter-spacing:0.000000px;}
.ls2_c00292{letter-spacing:0.007200px;}
.ls1_c00292{letter-spacing:0.014400px;}
.lse_c00292{letter-spacing:0.016200px;}
.lsa_c00292{letter-spacing:0.021600px;}
.lsb_c00292{letter-spacing:0.028800px;}
.ls9_c00292{letter-spacing:0.036000px;}
.ls0_c00292{letter-spacing:0.043200px;}
.ls4_c00292{letter-spacing:0.050400px;}
.ls3_c00292{letter-spacing:0.057600px;}
.lsd_c00292{letter-spacing:0.064800px;}
.ls7_c00292{letter-spacing:0.072000px;}
.ls10_c00292{letter-spacing:0.079200px;}
.lsc_c00292{letter-spacing:0.093600px;}
.lsf_c00292{letter-spacing:0.097200px;}
.ls6_c00292{letter-spacing:0.100800px;}
.ls5_c00292{letter-spacing:0.115200px;}
.ls8_c00292{letter-spacing:0.129600px;}
.ls17_c00292{letter-spacing:1.800000px;}
.ls1c_c00292{letter-spacing:10.440000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00292{word-spacing:-17.899200px;}
.ws5_c00292{word-spacing:-3.988800px;}
.ws2_c00292{word-spacing:0.000000px;}
.ws8_c00292{word-spacing:0.081000px;}
.ws6_c00292{word-spacing:0.162000px;}
.ws7_c00292{word-spacing:0.178200px;}
.ws1_c00292{word-spacing:0.192384px;}
.ws3_c00292{word-spacing:0.388800px;}
.ws4_c00292{word-spacing:1.749600px;}
.wsa_c00292{word-spacing:10.389600px;}
.ws9_c00292{word-spacing:15.494400px;}
._b_c00292{margin-left:-10.987200px;}
._6_c00292{margin-left:-4.608000px;}
._7_c00292{margin-left:-3.312000px;}
._3_c00292{margin-left:-1.353600px;}
._0_c00292{width:1.034064px;}
._1_c00292{width:2.191536px;}
._2_c00292{width:3.223584px;}
._d_c00292{width:4.363200px;}
._c_c00292{width:5.400000px;}
._9_c00292{width:6.458400px;}
._8_c00292{width:7.516800px;}
._5_c00292{width:10.425600px;}
._4_c00292{width:11.512800px;}
._a_c00292{width:15.451200px;}
.fc2_c00292{color:rgb(68,84,106);}
.fc1_c00292{color:rgb(0,0,0);}
.fc0_c00292{color:rgb(32,31,30);}
.fs2_c00292{font-size:54.000000px;}
.fs0_c00292{font-size:60.120000px;}
.fs1_c00292{font-size:72.000000px;}
.y0_c00292{bottom:0.000000px;}
.y5_c00292{bottom:57.360450px;}
.y4_c00292{bottom:78.060450px;}
.y21_c00292{bottom:132.330450px;}
.y20_c00292{bottom:163.380450px;}
.y1f_c00292{bottom:194.430450px;}
.y1e_c00292{bottom:225.480450px;}
.y1d_c00292{bottom:256.530450px;}
.y1c_c00292{bottom:287.580450px;}
.y1b_c00292{bottom:318.630450px;}
.y1a_c00292{bottom:349.680450px;}
.y19_c00292{bottom:380.730450px;}
.y18_c00292{bottom:407.730450px;}
.y17_c00292{bottom:587.910450px;}
.y16_c00292{bottom:614.640450px;}
.y15_c00292{bottom:645.690450px;}
.y14_c00292{bottom:676.740450px;}
.y13_c00292{bottom:707.790450px;}
.y12_c00292{bottom:738.840450px;}
.y11_c00292{bottom:769.890450px;}
.y10_c00292{bottom:800.940450px;}
.yf_c00292{bottom:831.990450px;}
.ye_c00292{bottom:863.040450px;}
.yd_c00292{bottom:894.090450px;}
.yc_c00292{bottom:925.140450px;}
.yb_c00292{bottom:956.190450px;}
.ya_c00292{bottom:987.240450px;}
.y9_c00292{bottom:1018.290450px;}
.y8_c00292{bottom:1049.340450px;}
.y7_c00292{bottom:1080.390450px;}
.y6_c00292{bottom:1111.440450px;}
.y3_c00292{bottom:1132.140450px;}
.y2_c00292{bottom:1165.441023px;}
.y1_c00292{bottom:1196.040600px;}
.h4_c00292{height:47.513672px;}
.h1_c00292{height:52.898555px;}
.h2_c00292{height:63.175781px;}
.h3_c00292{height:63.351562px;}
.h0_c00292{height:1263.000000px;}
.w1_c00292{width:892.500000px;}
.w0_c00292{width:892.830000px;}
.x0_c00292{left:0.000000px;}
.x1_c00292{left:127.620000px;}
.x4_c00292{left:446.490000px;}
.x2_c00292{left:738.450000px;}
.x3_c00292{left:746.010000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls1a_c00292{letter-spacing:-0.108800pt;}
.ls11_c00292{letter-spacing:-0.090848pt;}
.ls18_c00292{letter-spacing:-0.089600pt;}
.ls1b_c00292{letter-spacing:-0.070400pt;}
.ls1e_c00292{letter-spacing:-0.044800pt;}
.ls1d_c00292{letter-spacing:-0.038400pt;}
.ls13_c00292{letter-spacing:-0.032000pt;}
.ls14_c00292{letter-spacing:-0.025600pt;}
.ls15_c00292{letter-spacing:-0.019200pt;}
.ls16_c00292{letter-spacing:-0.012800pt;}
.ls19_c00292{letter-spacing:-0.006400pt;}
.ls12_c00292{letter-spacing:0.000000pt;}
.ls2_c00292{letter-spacing:0.006400pt;}
.ls1_c00292{letter-spacing:0.012800pt;}
.lse_c00292{letter-spacing:0.014400pt;}
.lsa_c00292{letter-spacing:0.019200pt;}
.lsb_c00292{letter-spacing:0.025600pt;}
.ls9_c00292{letter-spacing:0.032000pt;}
.ls0_c00292{letter-spacing:0.038400pt;}
.ls4_c00292{letter-spacing:0.044800pt;}
.ls3_c00292{letter-spacing:0.051200pt;}
.lsd_c00292{letter-spacing:0.057600pt;}
.ls7_c00292{letter-spacing:0.064000pt;}
.ls10_c00292{letter-spacing:0.070400pt;}
.lsc_c00292{letter-spacing:0.083200pt;}
.lsf_c00292{letter-spacing:0.086400pt;}
.ls6_c00292{letter-spacing:0.089600pt;}
.ls5_c00292{letter-spacing:0.102400pt;}
.ls8_c00292{letter-spacing:0.115200pt;}
.ls17_c00292{letter-spacing:1.600000pt;}
.ls1c_c00292{letter-spacing:9.280000pt;}
.ws0_c00292{word-spacing:-15.910400pt;}
.ws5_c00292{word-spacing:-3.545600pt;}
.ws2_c00292{word-spacing:0.000000pt;}
.ws8_c00292{word-spacing:0.072000pt;}
.ws6_c00292{word-spacing:0.144000pt;}
.ws7_c00292{word-spacing:0.158400pt;}
.ws1_c00292{word-spacing:0.171008pt;}
.ws3_c00292{word-spacing:0.345600pt;}
.ws4_c00292{word-spacing:1.555200pt;}
.wsa_c00292{word-spacing:9.235200pt;}
.ws9_c00292{word-spacing:13.772800pt;}
._b_c00292{margin-left:-9.766400pt;}
._6_c00292{margin-left:-4.096000pt;}
._7_c00292{margin-left:-2.944000pt;}
._3_c00292{margin-left:-1.203200pt;}
._0_c00292{width:0.919168pt;}
._1_c00292{width:1.948032pt;}
._2_c00292{width:2.865408pt;}
._d_c00292{width:3.878400pt;}
._c_c00292{width:4.800000pt;}
._9_c00292{width:5.740800pt;}
._8_c00292{width:6.681600pt;}
._5_c00292{width:9.267200pt;}
._4_c00292{width:10.233600pt;}
._a_c00292{width:13.734400pt;}
.fs2_c00292{font-size:48.000000pt;}
.fs0_c00292{font-size:53.440000pt;}
.fs1_c00292{font-size:64.000000pt;}
.y0_c00292{bottom:0.000000pt;}
.y5_c00292{bottom:50.987067pt;}
.y4_c00292{bottom:69.387067pt;}
.y21_c00292{bottom:117.627067pt;}
.y20_c00292{bottom:145.227067pt;}
.y1f_c00292{bottom:172.827067pt;}
.y1e_c00292{bottom:200.427067pt;}
.y1d_c00292{bottom:228.027067pt;}
.y1c_c00292{bottom:255.627067pt;}
.y1b_c00292{bottom:283.227067pt;}
.y1a_c00292{bottom:310.827067pt;}
.y19_c00292{bottom:338.427067pt;}
.y18_c00292{bottom:362.427067pt;}
.y17_c00292{bottom:522.587067pt;}
.y16_c00292{bottom:546.347067pt;}
.y15_c00292{bottom:573.947067pt;}
.y14_c00292{bottom:601.547067pt;}
.y13_c00292{bottom:629.147067pt;}
.y12_c00292{bottom:656.747067pt;}
.y11_c00292{bottom:684.347067pt;}
.y10_c00292{bottom:711.947067pt;}
.yf_c00292{bottom:739.547067pt;}
.ye_c00292{bottom:767.147067pt;}
.yd_c00292{bottom:794.747067pt;}
.yc_c00292{bottom:822.347067pt;}
.yb_c00292{bottom:849.947067pt;}
.ya_c00292{bottom:877.547067pt;}
.y9_c00292{bottom:905.147067pt;}
.y8_c00292{bottom:932.747067pt;}
.y7_c00292{bottom:960.347067pt;}
.y6_c00292{bottom:987.947067pt;}
.y3_c00292{bottom:1006.347067pt;}
.y2_c00292{bottom:1035.947576pt;}
.y1_c00292{bottom:1063.147200pt;}
.h4_c00292{height:42.234375pt;}
.h1_c00292{height:47.020937pt;}
.h2_c00292{height:56.156250pt;}
.h3_c00292{height:56.312500pt;}
.h0_c00292{height:1122.666667pt;}
.w1_c00292{width:793.333333pt;}
.w0_c00292{width:793.626667pt;}
.x0_c00292{left:0.000000pt;}
.x1_c00292{left:113.440000pt;}
.x4_c00292{left:396.880000pt;}
.x2_c00292{left:656.400000pt;}
.x3_c00292{left:663.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_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_139c506a5e15dc723eca898b.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.095703;font-style:normal;font-weight:normal;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_2e6ab563780b64fbe33f1e33.woff2')format("woff");}.ff2_c00293{font-family:ff2_c00293;line-height:1.093262;font-style:normal;font-weight:normal;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_3f800cb9f672ce5a9552076b.woff2')format("woff");}.ff3_c00293{font-family:ff3_c00293;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00293{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.lsf_c00293{letter-spacing:-4.320000px;}
.ls13_c00293{letter-spacing:-0.216000px;}
.ls1a_c00293{letter-spacing:-0.079200px;}
.ls17_c00293{letter-spacing:-0.064800px;}
.ls1b_c00293{letter-spacing:-0.057600px;}
.ls18_c00293{letter-spacing:-0.050400px;}
.lsd_c00293{letter-spacing:-0.048096px;}
.ls10_c00293{letter-spacing:-0.043200px;}
.ls19_c00293{letter-spacing:-0.036000px;}
.ls14_c00293{letter-spacing:-0.028800px;}
.ls16_c00293{letter-spacing:-0.021600px;}
.ls11_c00293{letter-spacing:-0.014400px;}
.ls12_c00293{letter-spacing:-0.007200px;}
.lse_c00293{letter-spacing:0.000000px;}
.ls5_c00293{letter-spacing:0.007200px;}
.ls6_c00293{letter-spacing:0.014400px;}
.ls8_c00293{letter-spacing:0.021600px;}
.ls3_c00293{letter-spacing:0.028800px;}
.ls2_c00293{letter-spacing:0.036000px;}
.ls7_c00293{letter-spacing:0.041940px;}
.ls4_c00293{letter-spacing:0.043200px;}
.lsa_c00293{letter-spacing:0.050400px;}
.ls1_c00293{letter-spacing:0.057600px;}
.ls9_c00293{letter-spacing:0.064800px;}
.ls0_c00293{letter-spacing:0.072000px;}
.lsb_c00293{letter-spacing:0.079200px;}
.lsc_c00293{letter-spacing:0.086400px;}
.ls15_c00293{letter-spacing:0.108000px;}
.ls1d_c00293{letter-spacing:2.160000px;}
.ls1c_c00293{letter-spacing:9.360000px;}
.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;}
}
.ws5_c00293{word-spacing:-18.079200px;}
.ws2_c00293{word-spacing:-18.064800px;}
.ws0_c00293{word-spacing:-18.057600px;}
.ws3_c00293{word-spacing:-18.007200px;}
.ws4_c00293{word-spacing:-18.000000px;}
.ws1_c00293{word-spacing:-17.985600px;}
.ws8_c00293{word-spacing:-0.381600px;}
.ws9_c00293{word-spacing:-0.367200px;}
.ws7_c00293{word-spacing:0.000000px;}
.ws6_c00293{word-spacing:0.138276px;}
._d_c00293{margin-left:-9.331200px;}
._0_c00293{margin-left:-4.586400px;}
._3_c00293{margin-left:-3.268800px;}
._b_c00293{margin-left:-2.260800px;}
._5_c00293{margin-left:-1.152000px;}
._8_c00293{width:1.051200px;}
._4_c00293{width:2.563200px;}
._1_c00293{width:4.168800px;}
._2_c00293{width:5.313600px;}
._a_c00293{width:6.523200px;}
._c_c00293{width:8.121600px;}
._6_c00293{width:9.583200px;}
._7_c00293{width:10.965600px;}
._9_c00293{width:12.218400px;}
._e_c00293{width:17.013600px;}
.fc1_c00293{color:rgb(255,0,0);}
.fc0_c00293{color:rgb(0,0,0);}
.fs0_c00293{font-size:60.120000px;}
.fs1_c00293{font-size:72.000000px;}
.fs2_c00293{font-size:83.880000px;}
.y0_c00293{bottom:0.000000px;}
.y6_c00293{bottom:57.360450px;}
.y5_c00293{bottom:78.060450px;}
.y27_c00293{bottom:124.320450px;}
.y26_c00293{bottom:155.370450px;}
.y25_c00293{bottom:186.420450px;}
.y24_c00293{bottom:217.470450px;}
.y23_c00293{bottom:248.520450px;}
.y22_c00293{bottom:279.570450px;}
.y21_c00293{bottom:310.620450px;}
.y20_c00293{bottom:341.670450px;}
.y1f_c00293{bottom:372.720450px;}
.y1e_c00293{bottom:403.770450px;}
.y1d_c00293{bottom:434.820450px;}
.y1c_c00293{bottom:465.870450px;}
.y1b_c00293{bottom:496.920450px;}
.y1a_c00293{bottom:527.970450px;}
.y19_c00293{bottom:559.020450px;}
.y18_c00293{bottom:590.070450px;}
.y17_c00293{bottom:621.120450px;}
.y16_c00293{bottom:652.170450px;}
.y15_c00293{bottom:683.220450px;}
.y14_c00293{bottom:714.270450px;}
.y13_c00293{bottom:745.320450px;}
.y12_c00293{bottom:776.370450px;}
.y11_c00293{bottom:807.420450px;}
.y10_c00293{bottom:838.470450px;}
.yf_c00293{bottom:872.670450px;}
.ye_c00293{bottom:895.801536px;}
.yd_c00293{bottom:935.040600px;}
.yc_c00293{bottom:969.150450px;}
.yb_c00293{bottom:1000.200450px;}
.ya_c00293{bottom:1031.160450px;}
.y9_c00293{bottom:1062.210450px;}
.y8_c00293{bottom:1093.260450px;}
.y7_c00293{bottom:1124.310450px;}
.y4_c00293{bottom:1144.380657px;}
.y3_c00293{bottom:1161.660648px;}
.y2_c00293{bottom:1178.850459px;}
.y1_c00293{bottom:1196.130450px;}
.h1_c00293{height:52.898555px;}
.h2_c00293{height:63.175781px;}
.h3_c00293{height:63.351562px;}
.h4_c00293{height:74.500840px;}
.h0_c00293{height:1263.000000px;}
.w1_c00293{width:892.500000px;}
.w0_c00293{width:892.830000px;}
.x0_c00293{left:0.000000px;}
.x4_c00293{left:127.620000px;}
.x1_c00293{left:649.620000px;}
.x3_c00293{left:738.450000px;}
.x2_c00293{left:765.450198px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.lsf_c00293{letter-spacing:-3.840000pt;}
.ls13_c00293{letter-spacing:-0.192000pt;}
.ls1a_c00293{letter-spacing:-0.070400pt;}
.ls17_c00293{letter-spacing:-0.057600pt;}
.ls1b_c00293{letter-spacing:-0.051200pt;}
.ls18_c00293{letter-spacing:-0.044800pt;}
.lsd_c00293{letter-spacing:-0.042752pt;}
.ls10_c00293{letter-spacing:-0.038400pt;}
.ls19_c00293{letter-spacing:-0.032000pt;}
.ls14_c00293{letter-spacing:-0.025600pt;}
.ls16_c00293{letter-spacing:-0.019200pt;}
.ls11_c00293{letter-spacing:-0.012800pt;}
.ls12_c00293{letter-spacing:-0.006400pt;}
.lse_c00293{letter-spacing:0.000000pt;}
.ls5_c00293{letter-spacing:0.006400pt;}
.ls6_c00293{letter-spacing:0.012800pt;}
.ls8_c00293{letter-spacing:0.019200pt;}
.ls3_c00293{letter-spacing:0.025600pt;}
.ls2_c00293{letter-spacing:0.032000pt;}
.ls7_c00293{letter-spacing:0.037280pt;}
.ls4_c00293{letter-spacing:0.038400pt;}
.lsa_c00293{letter-spacing:0.044800pt;}
.ls1_c00293{letter-spacing:0.051200pt;}
.ls9_c00293{letter-spacing:0.057600pt;}
.ls0_c00293{letter-spacing:0.064000pt;}
.lsb_c00293{letter-spacing:0.070400pt;}
.lsc_c00293{letter-spacing:0.076800pt;}
.ls15_c00293{letter-spacing:0.096000pt;}
.ls1d_c00293{letter-spacing:1.920000pt;}
.ls1c_c00293{letter-spacing:8.320000pt;}
.ws5_c00293{word-spacing:-16.070400pt;}
.ws2_c00293{word-spacing:-16.057600pt;}
.ws0_c00293{word-spacing:-16.051200pt;}
.ws3_c00293{word-spacing:-16.006400pt;}
.ws4_c00293{word-spacing:-16.000000pt;}
.ws1_c00293{word-spacing:-15.987200pt;}
.ws8_c00293{word-spacing:-0.339200pt;}
.ws9_c00293{word-spacing:-0.326400pt;}
.ws7_c00293{word-spacing:0.000000pt;}
.ws6_c00293{word-spacing:0.122912pt;}
._d_c00293{margin-left:-8.294400pt;}
._0_c00293{margin-left:-4.076800pt;}
._3_c00293{margin-left:-2.905600pt;}
._b_c00293{margin-left:-2.009600pt;}
._5_c00293{margin-left:-1.024000pt;}
._8_c00293{width:0.934400pt;}
._4_c00293{width:2.278400pt;}
._1_c00293{width:3.705600pt;}
._2_c00293{width:4.723200pt;}
._a_c00293{width:5.798400pt;}
._c_c00293{width:7.219200pt;}
._6_c00293{width:8.518400pt;}
._7_c00293{width:9.747200pt;}
._9_c00293{width:10.860800pt;}
._e_c00293{width:15.123200pt;}
.fs0_c00293{font-size:53.440000pt;}
.fs1_c00293{font-size:64.000000pt;}
.fs2_c00293{font-size:74.560000pt;}
.y0_c00293{bottom:0.000000pt;}
.y6_c00293{bottom:50.987067pt;}
.y5_c00293{bottom:69.387067pt;}
.y27_c00293{bottom:110.507067pt;}
.y26_c00293{bottom:138.107067pt;}
.y25_c00293{bottom:165.707067pt;}
.y24_c00293{bottom:193.307067pt;}
.y23_c00293{bottom:220.907067pt;}
.y22_c00293{bottom:248.507067pt;}
.y21_c00293{bottom:276.107067pt;}
.y20_c00293{bottom:303.707067pt;}
.y1f_c00293{bottom:331.307067pt;}
.y1e_c00293{bottom:358.907067pt;}
.y1d_c00293{bottom:386.507067pt;}
.y1c_c00293{bottom:414.107067pt;}
.y1b_c00293{bottom:441.707067pt;}
.y1a_c00293{bottom:469.307067pt;}
.y19_c00293{bottom:496.907067pt;}
.y18_c00293{bottom:524.507067pt;}
.y17_c00293{bottom:552.107067pt;}
.y16_c00293{bottom:579.707067pt;}
.y15_c00293{bottom:607.307067pt;}
.y14_c00293{bottom:634.907067pt;}
.y13_c00293{bottom:662.507067pt;}
.y12_c00293{bottom:690.107067pt;}
.y11_c00293{bottom:717.707067pt;}
.y10_c00293{bottom:745.307067pt;}
.yf_c00293{bottom:775.707067pt;}
.ye_c00293{bottom:796.268032pt;}
.yd_c00293{bottom:831.147200pt;}
.yc_c00293{bottom:861.467067pt;}
.yb_c00293{bottom:889.067067pt;}
.ya_c00293{bottom:916.587067pt;}
.y9_c00293{bottom:944.187067pt;}
.y8_c00293{bottom:971.787067pt;}
.y7_c00293{bottom:999.387067pt;}
.y4_c00293{bottom:1017.227251pt;}
.y3_c00293{bottom:1032.587243pt;}
.y2_c00293{bottom:1047.867075pt;}
.y1_c00293{bottom:1063.227067pt;}
.h1_c00293{height:47.020937pt;}
.h2_c00293{height:56.156250pt;}
.h3_c00293{height:56.312500pt;}
.h4_c00293{height:66.222969pt;}
.h0_c00293{height:1122.666667pt;}
.w1_c00293{width:793.333333pt;}
.w0_c00293{width:793.626667pt;}
.x0_c00293{left:0.000000pt;}
.x4_c00293{left:113.440000pt;}
.x1_c00293{left:577.440000pt;}
.x3_c00293{left:656.400000pt;}
.x2_c00293{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0828f3e9fac2056f25e88b8.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.095703;font-style:normal;font-weight:normal;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_2ef9a75e056df4514aca8af7.woff2')format("woff");}.ff2_c00294{font-family:ff2_c00294;line-height:1.093262;font-style:normal;font-weight:normal;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_4ff1fe9843d59e8873a8e592.woff2')format("woff");}.ff3_c00294{font-family:ff3_c00294;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00294;src:url('chunks/assets/font_13e4c6e9a2b74dbc3af2e38a.woff2')format("woff");}.ff4_c00294{font-family:ff4_c00294;line-height:0.896973;font-style: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;}
.ls14_c00294{letter-spacing:-0.165600px;}
.lsf_c00294{letter-spacing:-0.102204px;}
.ls19_c00294{letter-spacing:-0.064800px;}
.ls17_c00294{letter-spacing:-0.057600px;}
.ls13_c00294{letter-spacing:-0.036000px;}
.ls15_c00294{letter-spacing:-0.028800px;}
.ls11_c00294{letter-spacing:-0.027000px;}
.ls18_c00294{letter-spacing:-0.021600px;}
.ls10_c00294{letter-spacing:0.000000px;}
.ls7_c00294{letter-spacing:0.005400px;}
.ls16_c00294{letter-spacing:0.007200px;}
.ls0_c00294{letter-spacing:0.010800px;}
.ls8_c00294{letter-spacing:0.014400px;}
.ls9_c00294{letter-spacing:0.021600px;}
.lsb_c00294{letter-spacing:0.028800px;}
.lsc_c00294{letter-spacing:0.036000px;}
.ls6_c00294{letter-spacing:0.041940px;}
.lsd_c00294{letter-spacing:0.043200px;}
.ls1_c00294{letter-spacing:0.050328px;}
.ls2_c00294{letter-spacing:0.050400px;}
.ls4_c00294{letter-spacing:0.057600px;}
.lsa_c00294{letter-spacing:0.064800px;}
.ls3_c00294{letter-spacing:0.079200px;}
.ls5_c00294{letter-spacing:0.086400px;}
.lse_c00294{letter-spacing:0.100800px;}
.ls12_c00294{letter-spacing:26.280000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00294{word-spacing:0.000000px;}
.ws3_c00294{word-spacing:0.167400px;}
.ws5_c00294{word-spacing:0.172800px;}
.ws2_c00294{word-spacing:0.178200px;}
.ws0_c00294{word-spacing:0.192384px;}
.ws4_c00294{word-spacing:0.205200px;}
._3_c00294{margin-left:-26.690400px;}
._4_c00294{margin-left:-25.315200px;}
._13_c00294{margin-left:-3.283200px;}
._11_c00294{margin-left:-2.203200px;}
._1_c00294{margin-left:-1.080000px;}
._0_c00294{width:1.034064px;}
._f_c00294{width:2.678400px;}
._10_c00294{width:3.859200px;}
._e_c00294{width:6.055200px;}
._12_c00294{width:8.236800px;}
._5_c00294{width:19.382400px;}
._2_c00294{width:26.229600px;}
._7_c00294{width:66.830400px;}
._9_c00294{width:107.380800px;}
._6_c00294{width:109.670400px;}
._b_c00294{width:207.835200px;}
._c_c00294{width:248.745600px;}
._8_c00294{width:258.652800px;}
._a_c00294{width:294.840000px;}
._d_c00294{width:496.641600px;}
.fc2_c00294{color:rgb(68,84,106);}
.fc1_c00294{color:rgb(0,0,0);}
.fc0_c00294{color:rgb(32,31,30);}
.fs2_c00294{font-size:54.000000px;}
.fs0_c00294{font-size:60.120000px;}
.fs1_c00294{font-size:72.000000px;}
.fs3_c00294{font-size:83.880000px;}
.fs4_c00294{font-size:96.120000px;}
.y0_c00294{bottom:0.000000px;}
.y5_c00294{bottom:57.360450px;}
.y4_c00294{bottom:78.060450px;}
.y20_c00294{bottom:165.720600px;}
.y1f_c00294{bottom:196.770600px;}
.y1e_c00294{bottom:227.820600px;}
.y1d_c00294{bottom:258.870600px;}
.y1c_c00294{bottom:289.920600px;}
.y1b_c00294{bottom:320.970600px;}
.y1a_c00294{bottom:352.020600px;}
.y19_c00294{bottom:383.070600px;}
.y18_c00294{bottom:414.120600px;}
.y17_c00294{bottom:445.710600px;}
.y16_c00294{bottom:477.480450px;}
.y15_c00294{bottom:509.340600px;}
.y14_c00294{bottom:541.110450px;}
.y13_c00294{bottom:572.880450px;}
.y12_c00294{bottom:604.920450px;}
.y11_c00294{bottom:640.470450px;}
.y10_c00294{bottom:670.440450px;}
.yf_c00294{bottom:693.479739px;}
.ye_c00294{bottom:722.550450px;}
.yd_c00294{bottom:759.630450px;}
.yc_c00294{bottom:790.680450px;}
.yb_c00294{bottom:821.730450px;}
.ya_c00294{bottom:856.020450px;}
.y9_c00294{bottom:879.149910px;}
.y8_c00294{bottom:908.130450px;}
.y7_c00294{bottom:941.160450px;}
.y6_c00294{bottom:1115.760450px;}
.y3_c00294{bottom:1132.140450px;}
.y2_c00294{bottom:1165.441023px;}
.y1_c00294{bottom:1196.040600px;}
.h3_c00294{height:47.513672px;}
.h1_c00294{height:52.898555px;}
.h2_c00294{height:63.175781px;}
.h6_c00294{height:63.949219px;}
.h5_c00294{height:65.472363px;}
.h4_c00294{height:74.500840px;}
.h0_c00294{height:1263.000000px;}
.w1_c00294{width:892.500000px;}
.w0_c00294{width:892.830000px;}
.x0_c00294{left:0.000000px;}
.x1_c00294{left:127.620000px;}
.x4_c00294{left:284.670000px;}
.x2_c00294{left:738.450000px;}
.x3_c00294{left:755.280000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls14_c00294{letter-spacing:-0.147200pt;}
.lsf_c00294{letter-spacing:-0.090848pt;}
.ls19_c00294{letter-spacing:-0.057600pt;}
.ls17_c00294{letter-spacing:-0.051200pt;}
.ls13_c00294{letter-spacing:-0.032000pt;}
.ls15_c00294{letter-spacing:-0.025600pt;}
.ls11_c00294{letter-spacing:-0.024000pt;}
.ls18_c00294{letter-spacing:-0.019200pt;}
.ls10_c00294{letter-spacing:0.000000pt;}
.ls7_c00294{letter-spacing:0.004800pt;}
.ls16_c00294{letter-spacing:0.006400pt;}
.ls0_c00294{letter-spacing:0.009600pt;}
.ls8_c00294{letter-spacing:0.012800pt;}
.ls9_c00294{letter-spacing:0.019200pt;}
.lsb_c00294{letter-spacing:0.025600pt;}
.lsc_c00294{letter-spacing:0.032000pt;}
.ls6_c00294{letter-spacing:0.037280pt;}
.lsd_c00294{letter-spacing:0.038400pt;}
.ls1_c00294{letter-spacing:0.044736pt;}
.ls2_c00294{letter-spacing:0.044800pt;}
.ls4_c00294{letter-spacing:0.051200pt;}
.lsa_c00294{letter-spacing:0.057600pt;}
.ls3_c00294{letter-spacing:0.070400pt;}
.ls5_c00294{letter-spacing:0.076800pt;}
.lse_c00294{letter-spacing:0.089600pt;}
.ls12_c00294{letter-spacing:23.360000pt;}
.ws1_c00294{word-spacing:0.000000pt;}
.ws3_c00294{word-spacing:0.148800pt;}
.ws5_c00294{word-spacing:0.153600pt;}
.ws2_c00294{word-spacing:0.158400pt;}
.ws0_c00294{word-spacing:0.171008pt;}
.ws4_c00294{word-spacing:0.182400pt;}
._3_c00294{margin-left:-23.724800pt;}
._4_c00294{margin-left:-22.502400pt;}
._13_c00294{margin-left:-2.918400pt;}
._11_c00294{margin-left:-1.958400pt;}
._1_c00294{margin-left:-0.960000pt;}
._0_c00294{width:0.919168pt;}
._f_c00294{width:2.380800pt;}
._10_c00294{width:3.430400pt;}
._e_c00294{width:5.382400pt;}
._12_c00294{width:7.321600pt;}
._5_c00294{width:17.228800pt;}
._2_c00294{width:23.315200pt;}
._7_c00294{width:59.404800pt;}
._9_c00294{width:95.449600pt;}
._6_c00294{width:97.484800pt;}
._b_c00294{width:184.742400pt;}
._c_c00294{width:221.107200pt;}
._8_c00294{width:229.913600pt;}
._a_c00294{width:262.080000pt;}
._d_c00294{width:441.459200pt;}
.fs2_c00294{font-size:48.000000pt;}
.fs0_c00294{font-size:53.440000pt;}
.fs1_c00294{font-size:64.000000pt;}
.fs3_c00294{font-size:74.560000pt;}
.fs4_c00294{font-size:85.440000pt;}
.y0_c00294{bottom:0.000000pt;}
.y5_c00294{bottom:50.987067pt;}
.y4_c00294{bottom:69.387067pt;}
.y20_c00294{bottom:147.307200pt;}
.y1f_c00294{bottom:174.907200pt;}
.y1e_c00294{bottom:202.507200pt;}
.y1d_c00294{bottom:230.107200pt;}
.y1c_c00294{bottom:257.707200pt;}
.y1b_c00294{bottom:285.307200pt;}
.y1a_c00294{bottom:312.907200pt;}
.y19_c00294{bottom:340.507200pt;}
.y18_c00294{bottom:368.107200pt;}
.y17_c00294{bottom:396.187200pt;}
.y16_c00294{bottom:424.427067pt;}
.y15_c00294{bottom:452.747200pt;}
.y14_c00294{bottom:480.987067pt;}
.y13_c00294{bottom:509.227067pt;}
.y12_c00294{bottom:537.707067pt;}
.y11_c00294{bottom:569.307067pt;}
.y10_c00294{bottom:595.947067pt;}
.yf_c00294{bottom:616.426435pt;}
.ye_c00294{bottom:642.267067pt;}
.yd_c00294{bottom:675.227067pt;}
.yc_c00294{bottom:702.827067pt;}
.yb_c00294{bottom:730.427067pt;}
.ya_c00294{bottom:760.907067pt;}
.y9_c00294{bottom:781.466587pt;}
.y8_c00294{bottom:807.227067pt;}
.y7_c00294{bottom:836.587067pt;}
.y6_c00294{bottom:991.787067pt;}
.y3_c00294{bottom:1006.347067pt;}
.y2_c00294{bottom:1035.947576pt;}
.y1_c00294{bottom:1063.147200pt;}
.h3_c00294{height:42.234375pt;}
.h1_c00294{height:47.020937pt;}
.h2_c00294{height:56.156250pt;}
.h6_c00294{height:56.843750pt;}
.h5_c00294{height:58.197656pt;}
.h4_c00294{height:66.222969pt;}
.h0_c00294{height:1122.666667pt;}
.w1_c00294{width:793.333333pt;}
.w0_c00294{width:793.626667pt;}
.x0_c00294{left:0.000000pt;}
.x1_c00294{left:113.440000pt;}
.x4_c00294{left:253.040000pt;}
.x2_c00294{left:656.400000pt;}
.x3_c00294{left:671.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_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_60d25ad170dd49b38b27759c.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.095703;font-style:normal;font-weight:normal;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_81a10b9b057cb36d1b7cec45.woff2')format("woff");}.ff2_c00295{font-family:ff2_c00295;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls13_c00295{letter-spacing:-0.050400px;}
.lse_c00295{letter-spacing:-0.048096px;}
.ls14_c00295{letter-spacing:-0.036000px;}
.ls11_c00295{letter-spacing:-0.028800px;}
.ls10_c00295{letter-spacing:-0.014400px;}
.ls12_c00295{letter-spacing:-0.007200px;}
.lsf_c00295{letter-spacing:0.000000px;}
.lsd_c00295{letter-spacing:0.005400px;}
.ls8_c00295{letter-spacing:0.007200px;}
.ls6_c00295{letter-spacing:0.014400px;}
.ls2_c00295{letter-spacing:0.021600px;}
.lsc_c00295{letter-spacing:0.027000px;}
.ls4_c00295{letter-spacing:0.028800px;}
.ls7_c00295{letter-spacing:0.036000px;}
.ls5_c00295{letter-spacing:0.043200px;}
.ls0_c00295{letter-spacing:0.050400px;}
.ls3_c00295{letter-spacing:0.057600px;}
.ls9_c00295{letter-spacing:0.064800px;}
.ls1_c00295{letter-spacing:0.072000px;}
.lsa_c00295{letter-spacing:0.086400px;}
.lsb_c00295{letter-spacing:0.360000px;}
.ls15_c00295{letter-spacing:5.400000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:-18.000000px;}
.ws2_c00295{word-spacing:0.000000px;}
.ws1_c00295{word-spacing:0.138276px;}
.ws5_c00295{word-spacing:0.151200px;}
.ws6_c00295{word-spacing:0.172800px;}
.ws4_c00295{word-spacing:5.364000px;}
.ws3_c00295{word-spacing:15.436800px;}
._d_c00295{margin-left:-5.400000px;}
._5_c00295{margin-left:-3.268800px;}
._e_c00295{margin-left:-2.066400px;}
._1_c00295{margin-left:-1.036800px;}
._6_c00295{width:1.771200px;}
._0_c00295{width:2.829600px;}
._4_c00295{width:4.629600px;}
._7_c00295{width:5.652000px;}
._3_c00295{width:7.142400px;}
._2_c00295{width:8.208000px;}
._c_c00295{width:12.967200px;}
._9_c00295{width:14.479200px;}
._8_c00295{width:15.487200px;}
._a_c00295{width:16.768800px;}
._b_c00295{width:31.672800px;}
.fc1_c00295{color:rgb(255,0,0);}
.fc2_c00295{color:rgb(68,84,106);}
.fc0_c00295{color:rgb(0,0,0);}
.fs2_c00295{font-size:54.000000px;}
.fs0_c00295{font-size:60.120000px;}
.fs1_c00295{font-size:72.000000px;}
.y0_c00295{bottom:0.000000px;}
.y27_c00295{bottom:3.240600px;}
.y6_c00295{bottom:57.360450px;}
.y5_c00295{bottom:78.060450px;}
.y25_c00295{bottom:124.140450px;}
.y24_c00295{bottom:162.750450px;}
.y23_c00295{bottom:205.770450px;}
.y22_c00295{bottom:236.910450px;}
.y21_c00295{bottom:267.960450px;}
.y20_c00295{bottom:299.010450px;}
.y1f_c00295{bottom:330.060450px;}
.y1e_c00295{bottom:361.110450px;}
.y1d_c00295{bottom:392.160450px;}
.y1c_c00295{bottom:423.210450px;}
.y26_c00295{bottom:473.790000px;}
.y28_c00295{bottom:477.030600px;}
.y1b_c00295{bottom:503.400450px;}
.y1a_c00295{bottom:534.450450px;}
.y19_c00295{bottom:565.500450px;}
.y18_c00295{bottom:596.550450px;}
.y17_c00295{bottom:627.600450px;}
.y16_c00295{bottom:658.650450px;}
.y15_c00295{bottom:689.700450px;}
.y14_c00295{bottom:720.750450px;}
.y13_c00295{bottom:751.800450px;}
.y12_c00295{bottom:782.850450px;}
.y11_c00295{bottom:813.900450px;}
.y10_c00295{bottom:844.950450px;}
.yf_c00295{bottom:876.000450px;}
.ye_c00295{bottom:907.050450px;}
.yd_c00295{bottom:938.100450px;}
.yc_c00295{bottom:969.150450px;}
.yb_c00295{bottom:1000.200450px;}
.ya_c00295{bottom:1031.160450px;}
.y9_c00295{bottom:1062.210450px;}
.y8_c00295{bottom:1093.260450px;}
.y7_c00295{bottom:1124.310450px;}
.y4_c00295{bottom:1144.380657px;}
.y3_c00295{bottom:1161.660648px;}
.y2_c00295{bottom:1178.850459px;}
.y1_c00295{bottom:1196.130450px;}
.h5_c00295{height:15.300000px;}
.h4_c00295{height:47.513672px;}
.h1_c00295{height:52.898555px;}
.h2_c00295{height:63.175781px;}
.h3_c00295{height:63.351562px;}
.h0_c00295{height:1263.000000px;}
.w2_c00295{width:390.690000px;}
.w1_c00295{width:892.500000px;}
.w0_c00295{width:892.830000px;}
.x0_c00295{left:0.000000px;}
.x4_c00295{left:127.620000px;}
.x6_c00295{left:132.120000px;}
.x5_c00295{left:465.570000px;}
.x1_c00295{left:649.620000px;}
.x3_c00295{left:738.450000px;}
.x2_c00295{left:765.450198px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls13_c00295{letter-spacing:-0.044800pt;}
.lse_c00295{letter-spacing:-0.042752pt;}
.ls14_c00295{letter-spacing:-0.032000pt;}
.ls11_c00295{letter-spacing:-0.025600pt;}
.ls10_c00295{letter-spacing:-0.012800pt;}
.ls12_c00295{letter-spacing:-0.006400pt;}
.lsf_c00295{letter-spacing:0.000000pt;}
.lsd_c00295{letter-spacing:0.004800pt;}
.ls8_c00295{letter-spacing:0.006400pt;}
.ls6_c00295{letter-spacing:0.012800pt;}
.ls2_c00295{letter-spacing:0.019200pt;}
.lsc_c00295{letter-spacing:0.024000pt;}
.ls4_c00295{letter-spacing:0.025600pt;}
.ls7_c00295{letter-spacing:0.032000pt;}
.ls5_c00295{letter-spacing:0.038400pt;}
.ls0_c00295{letter-spacing:0.044800pt;}
.ls3_c00295{letter-spacing:0.051200pt;}
.ls9_c00295{letter-spacing:0.057600pt;}
.ls1_c00295{letter-spacing:0.064000pt;}
.lsa_c00295{letter-spacing:0.076800pt;}
.lsb_c00295{letter-spacing:0.320000pt;}
.ls15_c00295{letter-spacing:4.800000pt;}
.ws0_c00295{word-spacing:-16.000000pt;}
.ws2_c00295{word-spacing:0.000000pt;}
.ws1_c00295{word-spacing:0.122912pt;}
.ws5_c00295{word-spacing:0.134400pt;}
.ws6_c00295{word-spacing:0.153600pt;}
.ws4_c00295{word-spacing:4.768000pt;}
.ws3_c00295{word-spacing:13.721600pt;}
._d_c00295{margin-left:-4.800000pt;}
._5_c00295{margin-left:-2.905600pt;}
._e_c00295{margin-left:-1.836800pt;}
._1_c00295{margin-left:-0.921600pt;}
._6_c00295{width:1.574400pt;}
._0_c00295{width:2.515200pt;}
._4_c00295{width:4.115200pt;}
._7_c00295{width:5.024000pt;}
._3_c00295{width:6.348800pt;}
._2_c00295{width:7.296000pt;}
._c_c00295{width:11.526400pt;}
._9_c00295{width:12.870400pt;}
._8_c00295{width:13.766400pt;}
._a_c00295{width:14.905600pt;}
._b_c00295{width:28.153600pt;}
.fs2_c00295{font-size:48.000000pt;}
.fs0_c00295{font-size:53.440000pt;}
.fs1_c00295{font-size:64.000000pt;}
.y0_c00295{bottom:0.000000pt;}
.y27_c00295{bottom:2.880533pt;}
.y6_c00295{bottom:50.987067pt;}
.y5_c00295{bottom:69.387067pt;}
.y25_c00295{bottom:110.347067pt;}
.y24_c00295{bottom:144.667067pt;}
.y23_c00295{bottom:182.907067pt;}
.y22_c00295{bottom:210.587067pt;}
.y21_c00295{bottom:238.187067pt;}
.y20_c00295{bottom:265.787067pt;}
.y1f_c00295{bottom:293.387067pt;}
.y1e_c00295{bottom:320.987067pt;}
.y1d_c00295{bottom:348.587067pt;}
.y1c_c00295{bottom:376.187067pt;}
.y26_c00295{bottom:421.146667pt;}
.y28_c00295{bottom:424.027200pt;}
.y1b_c00295{bottom:447.467067pt;}
.y1a_c00295{bottom:475.067067pt;}
.y19_c00295{bottom:502.667067pt;}
.y18_c00295{bottom:530.267067pt;}
.y17_c00295{bottom:557.867067pt;}
.y16_c00295{bottom:585.467067pt;}
.y15_c00295{bottom:613.067067pt;}
.y14_c00295{bottom:640.667067pt;}
.y13_c00295{bottom:668.267067pt;}
.y12_c00295{bottom:695.867067pt;}
.y11_c00295{bottom:723.467067pt;}
.y10_c00295{bottom:751.067067pt;}
.yf_c00295{bottom:778.667067pt;}
.ye_c00295{bottom:806.267067pt;}
.yd_c00295{bottom:833.867067pt;}
.yc_c00295{bottom:861.467067pt;}
.yb_c00295{bottom:889.067067pt;}
.ya_c00295{bottom:916.587067pt;}
.y9_c00295{bottom:944.187067pt;}
.y8_c00295{bottom:971.787067pt;}
.y7_c00295{bottom:999.387067pt;}
.y4_c00295{bottom:1017.227251pt;}
.y3_c00295{bottom:1032.587243pt;}
.y2_c00295{bottom:1047.867075pt;}
.y1_c00295{bottom:1063.227067pt;}
.h5_c00295{height:13.600000pt;}
.h4_c00295{height:42.234375pt;}
.h1_c00295{height:47.020937pt;}
.h2_c00295{height:56.156250pt;}
.h3_c00295{height:56.312500pt;}
.h0_c00295{height:1122.666667pt;}
.w2_c00295{width:347.280000pt;}
.w1_c00295{width:793.333333pt;}
.w0_c00295{width:793.626667pt;}
.x0_c00295{left:0.000000pt;}
.x4_c00295{left:113.440000pt;}
.x6_c00295{left:117.440000pt;}
.x5_c00295{left:413.840000pt;}
.x1_c00295{left:577.440000pt;}
.x3_c00295{left:656.400000pt;}
.x2_c00295{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43e791a8b8942044a2256e52.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.095703;font-style:normal;font-weight:normal;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_1dff73ed3254a6a6a9da9942.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.093262;font-style:normal;font-weight:normal;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_04092d3cd3ce81b1a632f7c8.woff2')format("woff");}.ff3_c00296{font-family:ff3_c00296;line-height:1.104004;font-style:normal;font-weight:normal;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_53476ff67160fbe85d0c0fd2.woff2')format("woff");}.ff4_c00296{font-family:ff4_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:ff5_c00296;src:url('chunks/assets/font_e646b4dcda63f88bfa3cfe6b.woff2')format("woff");}.ff5_c00296{font-family:ff5_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:ff6_c00296;src:url('chunks/assets/font_3cf97b534ca7269cee333c9d.woff2')format("woff");}.ff6_c00296{font-family:ff6_c00296;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls11_c00296{letter-spacing:-0.151200px;}
.ls14_c00296{letter-spacing:-0.124200px;}
.ls1d_c00296{letter-spacing:-0.118800px;}
.lsb_c00296{letter-spacing:-0.102204px;}
.ls21_c00296{letter-spacing:-0.086400px;}
.ls16_c00296{letter-spacing:-0.081000px;}
.ls1c_c00296{letter-spacing:-0.075600px;}
.ls1e_c00296{letter-spacing:-0.064800px;}
.ls1a_c00296{letter-spacing:-0.060120px;}
.ls18_c00296{letter-spacing:-0.059400px;}
.ls15_c00296{letter-spacing:-0.054000px;}
.ls10_c00296{letter-spacing:-0.050400px;}
.ls13_c00296{letter-spacing:-0.048096px;}
.ls1b_c00296{letter-spacing:-0.043200px;}
.ls12_c00296{letter-spacing:-0.036072px;}
.lsf_c00296{letter-spacing:-0.036000px;}
.ls1f_c00296{letter-spacing:-0.027000px;}
.lse_c00296{letter-spacing:-0.014400px;}
.lsd_c00296{letter-spacing:-0.010800px;}
.ls17_c00296{letter-spacing:-0.005400px;}
.lsc_c00296{letter-spacing:0.000000px;}
.ls5_c00296{letter-spacing:0.007200px;}
.ls1_c00296{letter-spacing:0.010800px;}
.ls2_c00296{letter-spacing:0.014400px;}
.ls0_c00296{letter-spacing:0.016200px;}
.ls3_c00296{letter-spacing:0.021600px;}
.lsa_c00296{letter-spacing:0.037800px;}
.ls9_c00296{letter-spacing:0.058716px;}
.ls6_c00296{letter-spacing:0.072000px;}
.ls4_c00296{letter-spacing:0.079200px;}
.ls7_c00296{letter-spacing:0.108000px;}
.ls8_c00296{letter-spacing:0.136800px;}
.ls20_c00296{letter-spacing:0.156600px;}
.ls19_c00296{letter-spacing:0.496800px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:-17.848800px;}
.ws2_c00296{word-spacing:0.000000px;}
.ws4_c00296{word-spacing:0.162000px;}
.ws5_c00296{word-spacing:0.167400px;}
.ws6_c00296{word-spacing:0.178200px;}
.ws3_c00296{word-spacing:0.189000px;}
.ws1_c00296{word-spacing:0.192384px;}
.ws7_c00296{word-spacing:7.783200px;}
._1_c00296{margin-left:-1.069200px;}
._0_c00296{width:1.034064px;}
._5_c00296{width:2.872800px;}
._4_c00296{width:5.558400px;}
._2_c00296{width:7.545600px;}
._3_c00296{width:8.690400px;}
._c_c00296{width:69.649200px;}
._6_c00296{width:135.891000px;}
._10_c00296{width:140.435136px;}
._9_c00296{width:146.394000px;}
._e_c00296{width:158.900400px;}
._7_c00296{width:193.959000px;}
._a_c00296{width:212.025600px;}
._d_c00296{width:222.040800px;}
._16_c00296{width:225.396000px;}
._8_c00296{width:234.964800px;}
._14_c00296{width:239.857200px;}
._f_c00296{width:263.044800px;}
._12_c00296{width:347.857200px;}
._b_c00296{width:408.423600px;}
._15_c00296{width:425.228400px;}
._13_c00296{width:428.571000px;}
._11_c00296{width:434.916000px;}
._17_c00296{width:436.503600px;}
.fc4_c00296{color:rgb(38,74,96);}
.fc3_c00296{color:rgb(1,2,5);}
.fc2_c00296{color:rgb(68,84,106);}
.fc1_c00296{color:rgb(0,0,0);}
.fc0_c00296{color:rgb(32,31,30);}
.fs4_c00296{font-size:2.880000px;}
.fs2_c00296{font-size:54.000000px;}
.fs0_c00296{font-size:60.120000px;}
.fs1_c00296{font-size:72.000000px;}
.fs3_c00296{font-size:83.880000px;}
.y0_c00296{bottom:0.000000px;}
.y5_c00296{bottom:57.360450px;}
.y4_c00296{bottom:78.060450px;}
.y12_c00296{bottom:142.590450px;}
.y2c_c00296{bottom:188.400450px;}
.y2b_c00296{bottom:212.070450px;}
.y2a_c00296{bottom:235.740450px;}
.y29_c00296{bottom:259.410450px;}
.y28_c00296{bottom:282.630450px;}
.y1c_c00296{bottom:305.760450px;}
.y27_c00296{bottom:306.300450px;}
.y26_c00296{bottom:329.970450px;}
.y1b_c00296{bottom:332.760450px;}
.y25_c00296{bottom:353.550450px;}
.y1a_c00296{bottom:359.760450px;}
.y24_c00296{bottom:377.310450px;}
.y19_c00296{bottom:386.760450px;}
.y23_c00296{bottom:400.980450px;}
.y18_c00296{bottom:413.760450px;}
.y22_c00296{bottom:424.650450px;}
.y17_c00296{bottom:438.510450px;}
.y21_c00296{bottom:448.320450px;}
.y15_c00296{bottom:463.260450px;}
.y1f_c00296{bottom:473.070450px;}
.y14_c00296{bottom:489.180600px;}
.y16_c00296{bottom:490.620600px;}
.y1e_c00296{bottom:498.990450px;}
.y20_c00296{bottom:500.430600px;}
.y1d_c00296{bottom:528.330450px;}
.y13_c00296{bottom:539.310450px;}
.y11_c00296{bottom:566.310450px;}
.y10_c00296{bottom:603.390450px;}
.yf_c00296{bottom:634.440450px;}
.ye_c00296{bottom:665.400450px;}
.yd_c00296{bottom:696.450450px;}
.yc_c00296{bottom:727.500450px;}
.yb_c00296{bottom:758.550450px;}
.ya_c00296{bottom:789.600450px;}
.y9_c00296{bottom:820.650450px;}
.y8_c00296{bottom:851.700450px;}
.y7_c00296{bottom:890.670450px;}
.y6_c00296{bottom:1115.760450px;}
.y3_c00296{bottom:1132.140450px;}
.y2_c00296{bottom:1165.441023px;}
.y1_c00296{bottom:1196.040600px;}
.h9_c00296{height:2.557969px;}
.h6_c00296{height:47.381836px;}
.h3_c00296{height:47.513672px;}
.h8_c00296{height:48.410156px;}
.ha_c00296{height:48.770156px;}
.h1_c00296{height:52.898555px;}
.h7_c00296{height:54.278262px;}
.h2_c00296{height:63.175781px;}
.h4_c00296{height:63.351562px;}
.h5_c00296{height:74.500840px;}
.h0_c00296{height:1263.000000px;}
.w1_c00296{width:892.500000px;}
.w0_c00296{width:892.830000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:127.620000px;}
.x4_c00296{left:135.630000px;}
.x5_c00296{left:163.170000px;}
.x7_c00296{left:167.670000px;}
.x8_c00296{left:205.380000px;}
.x6_c00296{left:341.460000px;}
.x9_c00296{left:465.660000px;}
.xb_c00296{left:486.810000px;}
.xa_c00296{left:629.910000px;}
.x2_c00296{left:738.450000px;}
.x3_c00296{left:756.990000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls11_c00296{letter-spacing:-0.134400pt;}
.ls14_c00296{letter-spacing:-0.110400pt;}
.ls1d_c00296{letter-spacing:-0.105600pt;}
.lsb_c00296{letter-spacing:-0.090848pt;}
.ls21_c00296{letter-spacing:-0.076800pt;}
.ls16_c00296{letter-spacing:-0.072000pt;}
.ls1c_c00296{letter-spacing:-0.067200pt;}
.ls1e_c00296{letter-spacing:-0.057600pt;}
.ls1a_c00296{letter-spacing:-0.053440pt;}
.ls18_c00296{letter-spacing:-0.052800pt;}
.ls15_c00296{letter-spacing:-0.048000pt;}
.ls10_c00296{letter-spacing:-0.044800pt;}
.ls13_c00296{letter-spacing:-0.042752pt;}
.ls1b_c00296{letter-spacing:-0.038400pt;}
.ls12_c00296{letter-spacing:-0.032064pt;}
.lsf_c00296{letter-spacing:-0.032000pt;}
.ls1f_c00296{letter-spacing:-0.024000pt;}
.lse_c00296{letter-spacing:-0.012800pt;}
.lsd_c00296{letter-spacing:-0.009600pt;}
.ls17_c00296{letter-spacing:-0.004800pt;}
.lsc_c00296{letter-spacing:0.000000pt;}
.ls5_c00296{letter-spacing:0.006400pt;}
.ls1_c00296{letter-spacing:0.009600pt;}
.ls2_c00296{letter-spacing:0.012800pt;}
.ls0_c00296{letter-spacing:0.014400pt;}
.ls3_c00296{letter-spacing:0.019200pt;}
.lsa_c00296{letter-spacing:0.033600pt;}
.ls9_c00296{letter-spacing:0.052192pt;}
.ls6_c00296{letter-spacing:0.064000pt;}
.ls4_c00296{letter-spacing:0.070400pt;}
.ls7_c00296{letter-spacing:0.096000pt;}
.ls8_c00296{letter-spacing:0.121600pt;}
.ls20_c00296{letter-spacing:0.139200pt;}
.ls19_c00296{letter-spacing:0.441600pt;}
.ws0_c00296{word-spacing:-15.865600pt;}
.ws2_c00296{word-spacing:0.000000pt;}
.ws4_c00296{word-spacing:0.144000pt;}
.ws5_c00296{word-spacing:0.148800pt;}
.ws6_c00296{word-spacing:0.158400pt;}
.ws3_c00296{word-spacing:0.168000pt;}
.ws1_c00296{word-spacing:0.171008pt;}
.ws7_c00296{word-spacing:6.918400pt;}
._1_c00296{margin-left:-0.950400pt;}
._0_c00296{width:0.919168pt;}
._5_c00296{width:2.553600pt;}
._4_c00296{width:4.940800pt;}
._2_c00296{width:6.707200pt;}
._3_c00296{width:7.724800pt;}
._c_c00296{width:61.910400pt;}
._6_c00296{width:120.792000pt;}
._10_c00296{width:124.831232pt;}
._9_c00296{width:130.128000pt;}
._e_c00296{width:141.244800pt;}
._7_c00296{width:172.408000pt;}
._a_c00296{width:188.467200pt;}
._d_c00296{width:197.369600pt;}
._16_c00296{width:200.352000pt;}
._8_c00296{width:208.857600pt;}
._14_c00296{width:213.206400pt;}
._f_c00296{width:233.817600pt;}
._12_c00296{width:309.206400pt;}
._b_c00296{width:363.043200pt;}
._15_c00296{width:377.980800pt;}
._13_c00296{width:380.952000pt;}
._11_c00296{width:386.592000pt;}
._17_c00296{width:388.003200pt;}
.fs4_c00296{font-size:2.560000pt;}
.fs2_c00296{font-size:48.000000pt;}
.fs0_c00296{font-size:53.440000pt;}
.fs1_c00296{font-size:64.000000pt;}
.fs3_c00296{font-size:74.560000pt;}
.y0_c00296{bottom:0.000000pt;}
.y5_c00296{bottom:50.987067pt;}
.y4_c00296{bottom:69.387067pt;}
.y12_c00296{bottom:126.747067pt;}
.y2c_c00296{bottom:167.467067pt;}
.y2b_c00296{bottom:188.507067pt;}
.y2a_c00296{bottom:209.547067pt;}
.y29_c00296{bottom:230.587067pt;}
.y28_c00296{bottom:251.227067pt;}
.y1c_c00296{bottom:271.787067pt;}
.y27_c00296{bottom:272.267067pt;}
.y26_c00296{bottom:293.307067pt;}
.y1b_c00296{bottom:295.787067pt;}
.y25_c00296{bottom:314.267067pt;}
.y1a_c00296{bottom:319.787067pt;}
.y24_c00296{bottom:335.387067pt;}
.y19_c00296{bottom:343.787067pt;}
.y23_c00296{bottom:356.427067pt;}
.y18_c00296{bottom:367.787067pt;}
.y22_c00296{bottom:377.467067pt;}
.y17_c00296{bottom:389.787067pt;}
.y21_c00296{bottom:398.507067pt;}
.y15_c00296{bottom:411.787067pt;}
.y1f_c00296{bottom:420.507067pt;}
.y14_c00296{bottom:434.827200pt;}
.y16_c00296{bottom:436.107200pt;}
.y1e_c00296{bottom:443.547067pt;}
.y20_c00296{bottom:444.827200pt;}
.y1d_c00296{bottom:469.627067pt;}
.y13_c00296{bottom:479.387067pt;}
.y11_c00296{bottom:503.387067pt;}
.y10_c00296{bottom:536.347067pt;}
.yf_c00296{bottom:563.947067pt;}
.ye_c00296{bottom:591.467067pt;}
.yd_c00296{bottom:619.067067pt;}
.yc_c00296{bottom:646.667067pt;}
.yb_c00296{bottom:674.267067pt;}
.ya_c00296{bottom:701.867067pt;}
.y9_c00296{bottom:729.467067pt;}
.y8_c00296{bottom:757.067067pt;}
.y7_c00296{bottom:791.707067pt;}
.y6_c00296{bottom:991.787067pt;}
.y3_c00296{bottom:1006.347067pt;}
.y2_c00296{bottom:1035.947576pt;}
.y1_c00296{bottom:1063.147200pt;}
.h9_c00296{height:2.273750pt;}
.h6_c00296{height:42.117188pt;}
.h3_c00296{height:42.234375pt;}
.h8_c00296{height:43.031250pt;}
.ha_c00296{height:43.351250pt;}
.h1_c00296{height:47.020937pt;}
.h7_c00296{height:48.247344pt;}
.h2_c00296{height:56.156250pt;}
.h4_c00296{height:56.312500pt;}
.h5_c00296{height:66.222969pt;}
.h0_c00296{height:1122.666667pt;}
.w1_c00296{width:793.333333pt;}
.w0_c00296{width:793.626667pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:113.440000pt;}
.x4_c00296{left:120.560000pt;}
.x5_c00296{left:145.040000pt;}
.x7_c00296{left:149.040000pt;}
.x8_c00296{left:182.560000pt;}
.x6_c00296{left:303.520000pt;}
.x9_c00296{left:413.920000pt;}
.xb_c00296{left:432.720000pt;}
.xa_c00296{left:559.920000pt;}
.x2_c00296{left:656.400000pt;}
.x3_c00296{left:672.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_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_bb7f69d7f456cdd0206e60f5.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.095703;font-style:normal;font-weight:normal;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_216525ee5ebf3a4d9e19a598.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.093262;font-style: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;}
.ls16_c00297{letter-spacing:-0.093600px;}
.lsf_c00297{letter-spacing:-0.050400px;}
.lsd_c00297{letter-spacing:-0.048096px;}
.ls14_c00297{letter-spacing:-0.043200px;}
.ls13_c00297{letter-spacing:-0.036000px;}
.ls15_c00297{letter-spacing:-0.028800px;}
.ls11_c00297{letter-spacing:-0.021600px;}
.ls10_c00297{letter-spacing:-0.014400px;}
.ls12_c00297{letter-spacing:-0.007200px;}
.lse_c00297{letter-spacing:0.000000px;}
.ls3_c00297{letter-spacing:0.007200px;}
.ls8_c00297{letter-spacing:0.014400px;}
.ls5_c00297{letter-spacing:0.021600px;}
.ls6_c00297{letter-spacing:0.028800px;}
.ls0_c00297{letter-spacing:0.036000px;}
.ls9_c00297{letter-spacing:0.043200px;}
.ls2_c00297{letter-spacing:0.050400px;}
.lsa_c00297{letter-spacing:0.064800px;}
.ls4_c00297{letter-spacing:0.072000px;}
.lsc_c00297{letter-spacing:0.079200px;}
.ls1_c00297{letter-spacing:0.093600px;}
.lsb_c00297{letter-spacing:0.100800px;}
.ls7_c00297{letter-spacing:0.129600px;}
.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:-17.906400px;}
.ws2_c00297{word-spacing:0.000000px;}
.ws1_c00297{word-spacing:0.138276px;}
._f_c00297{margin-left:-3.808800px;}
._7_c00297{margin-left:-2.570400px;}
._6_c00297{margin-left:-1.540800px;}
._4_c00297{width:1.238400px;}
._1_c00297{width:2.901600px;}
._0_c00297{width:3.924000px;}
._e_c00297{width:5.220000px;}
._b_c00297{width:6.458400px;}
._2_c00297{width:7.617600px;}
._3_c00297{width:8.949600px;}
._11_c00297{width:10.008000px;}
._12_c00297{width:11.160000px;}
._8_c00297{width:12.225600px;}
._5_c00297{width:13.608000px;}
._9_c00297{width:14.716800px;}
._a_c00297{width:15.760800px;}
._10_c00297{width:21.412800px;}
._c_c00297{width:22.644000px;}
._d_c00297{width:23.832000px;}
.fc1_c00297{color:rgb(255,0,0);}
.fc0_c00297{color:rgb(0,0,0);}
.fs0_c00297{font-size:60.120000px;}
.fs1_c00297{font-size:72.000000px;}
.y0_c00297{bottom:0.000000px;}
.y6_c00297{bottom:57.360450px;}
.y5_c00297{bottom:78.060450px;}
.y27_c00297{bottom:130.800450px;}
.y26_c00297{bottom:161.850450px;}
.y25_c00297{bottom:192.900450px;}
.y24_c00297{bottom:223.950450px;}
.y23_c00297{bottom:255.000450px;}
.y22_c00297{bottom:286.050450px;}
.y21_c00297{bottom:317.100450px;}
.y20_c00297{bottom:348.150450px;}
.y1f_c00297{bottom:379.200450px;}
.y1e_c00297{bottom:410.250450px;}
.y1d_c00297{bottom:441.300450px;}
.y1c_c00297{bottom:472.350450px;}
.y1b_c00297{bottom:503.400450px;}
.y1a_c00297{bottom:534.450450px;}
.y19_c00297{bottom:565.500450px;}
.y18_c00297{bottom:596.550450px;}
.y17_c00297{bottom:627.600450px;}
.y16_c00297{bottom:658.650450px;}
.y15_c00297{bottom:689.700450px;}
.y14_c00297{bottom:720.750450px;}
.y13_c00297{bottom:751.800450px;}
.y12_c00297{bottom:782.850450px;}
.y11_c00297{bottom:813.900450px;}
.y10_c00297{bottom:844.950450px;}
.yf_c00297{bottom:876.000450px;}
.ye_c00297{bottom:907.050450px;}
.yd_c00297{bottom:938.100450px;}
.yc_c00297{bottom:969.150450px;}
.yb_c00297{bottom:1000.200450px;}
.ya_c00297{bottom:1031.160450px;}
.y9_c00297{bottom:1062.210450px;}
.y8_c00297{bottom:1093.260450px;}
.y7_c00297{bottom:1124.310450px;}
.y4_c00297{bottom:1144.380657px;}
.y3_c00297{bottom:1161.660648px;}
.y2_c00297{bottom:1178.850459px;}
.y1_c00297{bottom:1196.130450px;}
.h1_c00297{height:52.898555px;}
.h2_c00297{height:63.175781px;}
.h3_c00297{height:63.351562px;}
.h0_c00297{height:1263.000000px;}
.w1_c00297{width:892.500000px;}
.w0_c00297{width:892.830000px;}
.x0_c00297{left:0.000000px;}
.x4_c00297{left:127.620000px;}
.x1_c00297{left:649.620000px;}
.x3_c00297{left:738.450000px;}
.x2_c00297{left:765.450198px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls16_c00297{letter-spacing:-0.083200pt;}
.lsf_c00297{letter-spacing:-0.044800pt;}
.lsd_c00297{letter-spacing:-0.042752pt;}
.ls14_c00297{letter-spacing:-0.038400pt;}
.ls13_c00297{letter-spacing:-0.032000pt;}
.ls15_c00297{letter-spacing:-0.025600pt;}
.ls11_c00297{letter-spacing:-0.019200pt;}
.ls10_c00297{letter-spacing:-0.012800pt;}
.ls12_c00297{letter-spacing:-0.006400pt;}
.lse_c00297{letter-spacing:0.000000pt;}
.ls3_c00297{letter-spacing:0.006400pt;}
.ls8_c00297{letter-spacing:0.012800pt;}
.ls5_c00297{letter-spacing:0.019200pt;}
.ls6_c00297{letter-spacing:0.025600pt;}
.ls0_c00297{letter-spacing:0.032000pt;}
.ls9_c00297{letter-spacing:0.038400pt;}
.ls2_c00297{letter-spacing:0.044800pt;}
.lsa_c00297{letter-spacing:0.057600pt;}
.ls4_c00297{letter-spacing:0.064000pt;}
.lsc_c00297{letter-spacing:0.070400pt;}
.ls1_c00297{letter-spacing:0.083200pt;}
.lsb_c00297{letter-spacing:0.089600pt;}
.ls7_c00297{letter-spacing:0.115200pt;}
.ws0_c00297{word-spacing:-15.916800pt;}
.ws2_c00297{word-spacing:0.000000pt;}
.ws1_c00297{word-spacing:0.122912pt;}
._f_c00297{margin-left:-3.385600pt;}
._7_c00297{margin-left:-2.284800pt;}
._6_c00297{margin-left:-1.369600pt;}
._4_c00297{width:1.100800pt;}
._1_c00297{width:2.579200pt;}
._0_c00297{width:3.488000pt;}
._e_c00297{width:4.640000pt;}
._b_c00297{width:5.740800pt;}
._2_c00297{width:6.771200pt;}
._3_c00297{width:7.955200pt;}
._11_c00297{width:8.896000pt;}
._12_c00297{width:9.920000pt;}
._8_c00297{width:10.867200pt;}
._5_c00297{width:12.096000pt;}
._9_c00297{width:13.081600pt;}
._a_c00297{width:14.009600pt;}
._10_c00297{width:19.033600pt;}
._c_c00297{width:20.128000pt;}
._d_c00297{width:21.184000pt;}
.fs0_c00297{font-size:53.440000pt;}
.fs1_c00297{font-size:64.000000pt;}
.y0_c00297{bottom:0.000000pt;}
.y6_c00297{bottom:50.987067pt;}
.y5_c00297{bottom:69.387067pt;}
.y27_c00297{bottom:116.267067pt;}
.y26_c00297{bottom:143.867067pt;}
.y25_c00297{bottom:171.467067pt;}
.y24_c00297{bottom:199.067067pt;}
.y23_c00297{bottom:226.667067pt;}
.y22_c00297{bottom:254.267067pt;}
.y21_c00297{bottom:281.867067pt;}
.y20_c00297{bottom:309.467067pt;}
.y1f_c00297{bottom:337.067067pt;}
.y1e_c00297{bottom:364.667067pt;}
.y1d_c00297{bottom:392.267067pt;}
.y1c_c00297{bottom:419.867067pt;}
.y1b_c00297{bottom:447.467067pt;}
.y1a_c00297{bottom:475.067067pt;}
.y19_c00297{bottom:502.667067pt;}
.y18_c00297{bottom:530.267067pt;}
.y17_c00297{bottom:557.867067pt;}
.y16_c00297{bottom:585.467067pt;}
.y15_c00297{bottom:613.067067pt;}
.y14_c00297{bottom:640.667067pt;}
.y13_c00297{bottom:668.267067pt;}
.y12_c00297{bottom:695.867067pt;}
.y11_c00297{bottom:723.467067pt;}
.y10_c00297{bottom:751.067067pt;}
.yf_c00297{bottom:778.667067pt;}
.ye_c00297{bottom:806.267067pt;}
.yd_c00297{bottom:833.867067pt;}
.yc_c00297{bottom:861.467067pt;}
.yb_c00297{bottom:889.067067pt;}
.ya_c00297{bottom:916.587067pt;}
.y9_c00297{bottom:944.187067pt;}
.y8_c00297{bottom:971.787067pt;}
.y7_c00297{bottom:999.387067pt;}
.y4_c00297{bottom:1017.227251pt;}
.y3_c00297{bottom:1032.587243pt;}
.y2_c00297{bottom:1047.867075pt;}
.y1_c00297{bottom:1063.227067pt;}
.h1_c00297{height:47.020937pt;}
.h2_c00297{height:56.156250pt;}
.h3_c00297{height:56.312500pt;}
.h0_c00297{height:1122.666667pt;}
.w1_c00297{width:793.333333pt;}
.w0_c00297{width:793.626667pt;}
.x0_c00297{left:0.000000pt;}
.x4_c00297{left:113.440000pt;}
.x1_c00297{left:577.440000pt;}
.x3_c00297{left:656.400000pt;}
.x2_c00297{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d520f8a76fc35e6fa0f8455c.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.095703;font-style:normal;font-weight:normal;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_88db360bf9031d37eb413bd1.woff2')format("woff");}.ff2_c00298{font-family:ff2_c00298;line-height:1.093262;font-style: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;}
.ls19_c00298{letter-spacing:-0.360000px;}
.ls16_c00298{letter-spacing:-0.180000px;}
.ls12_c00298{letter-spacing:-0.102204px;}
.ls1d_c00298{letter-spacing:-0.086400px;}
.ls1b_c00298{letter-spacing:-0.064800px;}
.ls1a_c00298{letter-spacing:-0.050400px;}
.ls18_c00298{letter-spacing:-0.036000px;}
.ls1c_c00298{letter-spacing:-0.028800px;}
.ls17_c00298{letter-spacing:-0.021600px;}
.ls15_c00298{letter-spacing:-0.014400px;}
.ls14_c00298{letter-spacing:-0.007200px;}
.ls13_c00298{letter-spacing:0.000000px;}
.lsf_c00298{letter-spacing:0.005400px;}
.ls8_c00298{letter-spacing:0.007200px;}
.lsa_c00298{letter-spacing:0.014400px;}
.lse_c00298{letter-spacing:0.016200px;}
.ls3_c00298{letter-spacing:0.021600px;}
.ls4_c00298{letter-spacing:0.028800px;}
.lsb_c00298{letter-spacing:0.036000px;}
.lsd_c00298{letter-spacing:0.043200px;}
.ls7_c00298{letter-spacing:0.050400px;}
.ls5_c00298{letter-spacing:0.057600px;}
.ls9_c00298{letter-spacing:0.064800px;}
.lsc_c00298{letter-spacing:0.086400px;}
.ls1_c00298{letter-spacing:0.093600px;}
.ls2_c00298{letter-spacing:0.115200px;}
.ls11_c00298{letter-spacing:0.129600px;}
.ls0_c00298{letter-spacing:0.158400px;}
.ls6_c00298{letter-spacing:6.840000px;}
.ls10_c00298{letter-spacing:1019.160000px;}
.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:-18.014400px;}
.ws1_c00298{word-spacing:-17.978400px;}
.ws5_c00298{word-spacing:-1.893600px;}
.ws3_c00298{word-spacing:0.000000px;}
.ws6_c00298{word-spacing:0.162000px;}
.ws7_c00298{word-spacing:0.172800px;}
.ws2_c00298{word-spacing:0.192384px;}
.ws4_c00298{word-spacing:0.691200px;}
.ws8_c00298{word-spacing:3.211200px;}
.ws9_c00298{word-spacing:3.218400px;}
.wsa_c00298{word-spacing:7.610400px;}
._6_c00298{margin-left:-5.371200px;}
._5_c00298{margin-left:-4.327200px;}
._7_c00298{margin-left:-2.548800px;}
._1_c00298{margin-left:-1.094400px;}
._0_c00298{width:1.034064px;}
._b_c00298{width:2.148336px;}
._2_c00298{width:3.218400px;}
._4_c00298{width:4.248000px;}
._a_c00298{width:5.256000px;}
._3_c00298{width:7.207200px;}
._8_c00298{width:8.265600px;}
._9_c00298{width:10.044000px;}
._c_c00298{width:23.392800px;}
.fc2_c00298{color:rgb(68,84,106);}
.fc1_c00298{color:rgb(0,0,0);}
.fc0_c00298{color:rgb(32,31,30);}
.fs2_c00298{font-size:54.000000px;}
.fs0_c00298{font-size:60.120000px;}
.fs1_c00298{font-size:72.000000px;}
.y0_c00298{bottom:0.000000px;}
.y5_c00298{bottom:57.360450px;}
.y4_c00298{bottom:78.060450px;}
.y22_c00298{bottom:116.040450px;}
.y21_c00298{bottom:147.090450px;}
.y20_c00298{bottom:178.140450px;}
.y1f_c00298{bottom:209.190450px;}
.y1e_c00298{bottom:240.240450px;}
.y1d_c00298{bottom:271.290450px;}
.y1c_c00298{bottom:302.340450px;}
.y1b_c00298{bottom:333.390450px;}
.y1a_c00298{bottom:364.440450px;}
.y19_c00298{bottom:395.490450px;}
.y18_c00298{bottom:426.540450px;}
.y17_c00298{bottom:453.540450px;}
.y16_c00298{bottom:618.960450px;}
.y15_c00298{bottom:645.690450px;}
.y14_c00298{bottom:676.740450px;}
.y13_c00298{bottom:707.790450px;}
.y12_c00298{bottom:738.840450px;}
.y11_c00298{bottom:769.890450px;}
.y10_c00298{bottom:800.940450px;}
.yf_c00298{bottom:831.990450px;}
.ye_c00298{bottom:863.040450px;}
.yd_c00298{bottom:894.090450px;}
.yc_c00298{bottom:925.140450px;}
.yb_c00298{bottom:956.190450px;}
.ya_c00298{bottom:987.240450px;}
.y9_c00298{bottom:1018.290450px;}
.y8_c00298{bottom:1049.340450px;}
.y7_c00298{bottom:1080.390450px;}
.y6_c00298{bottom:1111.440450px;}
.y3_c00298{bottom:1132.140450px;}
.y2_c00298{bottom:1165.441023px;}
.y1_c00298{bottom:1196.040600px;}
.h1_c00298{height:52.898555px;}
.h2_c00298{height:63.175781px;}
.h3_c00298{height:63.351562px;}
.h0_c00298{height:1263.000000px;}
.w1_c00298{width:892.500000px;}
.w0_c00298{width:892.830000px;}
.x0_c00298{left:0.000000px;}
.x1_c00298{left:127.620000px;}
.x3_c00298{left:465.390000px;}
.x2_c00298{left:738.450000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls19_c00298{letter-spacing:-0.320000pt;}
.ls16_c00298{letter-spacing:-0.160000pt;}
.ls12_c00298{letter-spacing:-0.090848pt;}
.ls1d_c00298{letter-spacing:-0.076800pt;}
.ls1b_c00298{letter-spacing:-0.057600pt;}
.ls1a_c00298{letter-spacing:-0.044800pt;}
.ls18_c00298{letter-spacing:-0.032000pt;}
.ls1c_c00298{letter-spacing:-0.025600pt;}
.ls17_c00298{letter-spacing:-0.019200pt;}
.ls15_c00298{letter-spacing:-0.012800pt;}
.ls14_c00298{letter-spacing:-0.006400pt;}
.ls13_c00298{letter-spacing:0.000000pt;}
.lsf_c00298{letter-spacing:0.004800pt;}
.ls8_c00298{letter-spacing:0.006400pt;}
.lsa_c00298{letter-spacing:0.012800pt;}
.lse_c00298{letter-spacing:0.014400pt;}
.ls3_c00298{letter-spacing:0.019200pt;}
.ls4_c00298{letter-spacing:0.025600pt;}
.lsb_c00298{letter-spacing:0.032000pt;}
.lsd_c00298{letter-spacing:0.038400pt;}
.ls7_c00298{letter-spacing:0.044800pt;}
.ls5_c00298{letter-spacing:0.051200pt;}
.ls9_c00298{letter-spacing:0.057600pt;}
.lsc_c00298{letter-spacing:0.076800pt;}
.ls1_c00298{letter-spacing:0.083200pt;}
.ls2_c00298{letter-spacing:0.102400pt;}
.ls11_c00298{letter-spacing:0.115200pt;}
.ls0_c00298{letter-spacing:0.140800pt;}
.ls6_c00298{letter-spacing:6.080000pt;}
.ls10_c00298{letter-spacing:905.920000pt;}
.ws0_c00298{word-spacing:-16.012800pt;}
.ws1_c00298{word-spacing:-15.980800pt;}
.ws5_c00298{word-spacing:-1.683200pt;}
.ws3_c00298{word-spacing:0.000000pt;}
.ws6_c00298{word-spacing:0.144000pt;}
.ws7_c00298{word-spacing:0.153600pt;}
.ws2_c00298{word-spacing:0.171008pt;}
.ws4_c00298{word-spacing:0.614400pt;}
.ws8_c00298{word-spacing:2.854400pt;}
.ws9_c00298{word-spacing:2.860800pt;}
.wsa_c00298{word-spacing:6.764800pt;}
._6_c00298{margin-left:-4.774400pt;}
._5_c00298{margin-left:-3.846400pt;}
._7_c00298{margin-left:-2.265600pt;}
._1_c00298{margin-left:-0.972800pt;}
._0_c00298{width:0.919168pt;}
._b_c00298{width:1.909632pt;}
._2_c00298{width:2.860800pt;}
._4_c00298{width:3.776000pt;}
._a_c00298{width:4.672000pt;}
._3_c00298{width:6.406400pt;}
._8_c00298{width:7.347200pt;}
._9_c00298{width:8.928000pt;}
._c_c00298{width:20.793600pt;}
.fs2_c00298{font-size:48.000000pt;}
.fs0_c00298{font-size:53.440000pt;}
.fs1_c00298{font-size:64.000000pt;}
.y0_c00298{bottom:0.000000pt;}
.y5_c00298{bottom:50.987067pt;}
.y4_c00298{bottom:69.387067pt;}
.y22_c00298{bottom:103.147067pt;}
.y21_c00298{bottom:130.747067pt;}
.y20_c00298{bottom:158.347067pt;}
.y1f_c00298{bottom:185.947067pt;}
.y1e_c00298{bottom:213.547067pt;}
.y1d_c00298{bottom:241.147067pt;}
.y1c_c00298{bottom:268.747067pt;}
.y1b_c00298{bottom:296.347067pt;}
.y1a_c00298{bottom:323.947067pt;}
.y19_c00298{bottom:351.547067pt;}
.y18_c00298{bottom:379.147067pt;}
.y17_c00298{bottom:403.147067pt;}
.y16_c00298{bottom:550.187067pt;}
.y15_c00298{bottom:573.947067pt;}
.y14_c00298{bottom:601.547067pt;}
.y13_c00298{bottom:629.147067pt;}
.y12_c00298{bottom:656.747067pt;}
.y11_c00298{bottom:684.347067pt;}
.y10_c00298{bottom:711.947067pt;}
.yf_c00298{bottom:739.547067pt;}
.ye_c00298{bottom:767.147067pt;}
.yd_c00298{bottom:794.747067pt;}
.yc_c00298{bottom:822.347067pt;}
.yb_c00298{bottom:849.947067pt;}
.ya_c00298{bottom:877.547067pt;}
.y9_c00298{bottom:905.147067pt;}
.y8_c00298{bottom:932.747067pt;}
.y7_c00298{bottom:960.347067pt;}
.y6_c00298{bottom:987.947067pt;}
.y3_c00298{bottom:1006.347067pt;}
.y2_c00298{bottom:1035.947576pt;}
.y1_c00298{bottom:1063.147200pt;}
.h1_c00298{height:47.020937pt;}
.h2_c00298{height:56.156250pt;}
.h3_c00298{height:56.312500pt;}
.h0_c00298{height:1122.666667pt;}
.w1_c00298{width:793.333333pt;}
.w0_c00298{width:793.626667pt;}
.x0_c00298{left:0.000000pt;}
.x1_c00298{left:113.440000pt;}
.x3_c00298{left:413.680000pt;}
.x2_c00298{left:656.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_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_4a3efcc4f7103be2757a58dc.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.095703;font-style:normal;font-weight:normal;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_452f088e9f35e738712a0ae5.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00299;src:url('chunks/assets/font_51d8bbb35f36a44e74311747.woff2')format("woff");}.ff3_c00299{font-family:ff3_c00299;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00299;src:url('chunks/assets/font_5b11889a053b77a2cf968738.woff2')format("woff");}.ff4_c00299{font-family:ff4_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;}
@font-face{font-family:ff5_c00299;src:url('chunks/assets/font_dd04d9e7a25e4944c9b39d19.woff2')format("woff");}.ff5_c00299{font-family:ff5_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;}
.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;}
.ls13_c00299{letter-spacing:-0.151200px;}
.ls11_c00299{letter-spacing:-0.145800px;}
.lsd_c00299{letter-spacing:-0.135000px;}
.ls14_c00299{letter-spacing:-0.129600px;}
.ls10_c00299{letter-spacing:-0.124200px;}
.ls15_c00299{letter-spacing:-0.102600px;}
.ls17_c00299{letter-spacing:-0.091800px;}
.ls16_c00299{letter-spacing:-0.086400px;}
.ls1d_c00299{letter-spacing:-0.081000px;}
.ls1b_c00299{letter-spacing:-0.075600px;}
.lsf_c00299{letter-spacing:-0.060120px;}
.lse_c00299{letter-spacing:-0.054108px;}
.lsb_c00299{letter-spacing:-0.050400px;}
.ls8_c00299{letter-spacing:-0.048096px;}
.ls19_c00299{letter-spacing:-0.037800px;}
.ls1a_c00299{letter-spacing:-0.032400px;}
.lsa_c00299{letter-spacing:-0.028800px;}
.ls1e_c00299{letter-spacing:-0.024048px;}
.ls12_c00299{letter-spacing:-0.021600px;}
.ls1f_c00299{letter-spacing:-0.018036px;}
.ls1c_c00299{letter-spacing:-0.016200px;}
.lsc_c00299{letter-spacing:-0.014400px;}
.ls9_c00299{letter-spacing:0.000000px;}
.ls7_c00299{letter-spacing:0.005400px;}
.ls4_c00299{letter-spacing:0.016200px;}
.ls2_c00299{letter-spacing:0.021600px;}
.ls1_c00299{letter-spacing:0.036000px;}
.ls5_c00299{letter-spacing:0.043200px;}
.ls0_c00299{letter-spacing:0.064800px;}
.ls3_c00299{letter-spacing:0.075492px;}
.ls6_c00299{letter-spacing:0.097200px;}
.ls18_c00299{letter-spacing:0.496800px;}
.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:-20.001600px;}
.ws2_c00299{word-spacing:0.000000px;}
.ws1_c00299{word-spacing:0.138276px;}
.ws3_c00299{word-spacing:0.156600px;}
.ws4_c00299{word-spacing:0.162000px;}
._0_c00299{margin-left:-1.411200px;}
._3_c00299{width:1.215000px;}
._12_c00299{width:3.144276px;}
._2_c00299{width:8.092800px;}
._1_c00299{width:9.388800px;}
._e_c00299{width:36.147600px;}
._11_c00299{width:38.043936px;}
._c_c00299{width:51.634800px;}
._4_c00299{width:61.101000px;}
._13_c00299{width:78.980400px;}
._9_c00299{width:109.278000px;}
._f_c00299{width:227.739600px;}
._d_c00299{width:233.114400px;}
._10_c00299{width:415.587600px;}
._14_c00299{width:420.404400px;}
._a_c00299{width:439.412400px;}
._15_c00299{width:462.848400px;}
._16_c00299{width:502.095600px;}
._17_c00299{width:579.027600px;}
._8_c00299{width:664.117200px;}
._5_c00299{width:759.927600px;}
._6_c00299{width:846.820800px;}
._7_c00299{width:907.473600px;}
._b_c00299{width:909.507600px;}
.fc4_c00299{color:transparent;}
.fc3_c00299{color:rgb(38,74,96);}
.fc2_c00299{color:rgb(1,2,5);}
.fc1_c00299{color:rgb(68,84,106);}
.fc0_c00299{color:rgb(0,0,0);}
.fs2_c00299{font-size:54.000000px;}
.fs0_c00299{font-size:60.120000px;}
.fs1_c00299{font-size:72.000000px;}
.fs3_c00299{font-size:83.880000px;}
.y0_c00299{bottom:0.000000px;}
.y6_c00299{bottom:57.360450px;}
.y5_c00299{bottom:78.060450px;}
.y3b_c00299{bottom:120.720450px;}
.y2d_c00299{bottom:148.440450px;}
.y2c_c00299{bottom:172.110450px;}
.y2b_c00299{bottom:195.420450px;}
.y2a_c00299{bottom:219.090450px;}
.y29_c00299{bottom:242.310450px;}
.y28_c00299{bottom:265.980450px;}
.y27_c00299{bottom:289.290450px;}
.y26_c00299{bottom:312.960600px;}
.y23_c00299{bottom:340.140450px;}
.y25_c00299{bottom:352.110450px;}
.y22_c00299{bottom:371.190450px;}
.y24_c00299{bottom:375.420450px;}
.y21_c00299{bottom:449.040600px;}
.y20_c00299{bottom:472.710600px;}
.y1f_c00299{bottom:513.030600px;}
.y39_c00299{bottom:513.660450px;}
.y1e_c00299{bottom:536.700450px;}
.y38_c00299{bottom:537.330450px;}
.y1d_c00299{bottom:560.370450px;}
.y37_c00299{bottom:561.000450px;}
.y1c_c00299{bottom:584.040450px;}
.y36_c00299{bottom:584.670450px;}
.y1b_c00299{bottom:607.710450px;}
.y35_c00299{bottom:608.340450px;}
.y34_c00299{bottom:632.010450px;}
.y17_c00299{bottom:644.430450px;}
.y30_c00299{bottom:648.660450px;}
.y33_c00299{bottom:655.230450px;}
.y1a_c00299{bottom:661.440450px;}
.y16_c00299{bottom:670.350450px;}
.y2f_c00299{bottom:674.490450px;}
.y32_c00299{bottom:678.540450px;}
.y19_c00299{bottom:684.660450px;}
.y2e_c00299{bottom:700.410450px;}
.y15_c00299{bottom:700.860450px;}
.y31_c00299{bottom:701.850450px;}
.y18_c00299{bottom:707.970450px;}
.y3a_c00299{bottom:717.600450px;}
.y14_c00299{bottom:737.400900px;}
.y13_c00299{bottom:752.970450px;}
.y12_c00299{bottom:782.850450px;}
.y11_c00299{bottom:805.979739px;}
.y10_c00299{bottom:835.050450px;}
.yf_c00299{bottom:872.310450px;}
.ye_c00299{bottom:895.440450px;}
.yd_c00299{bottom:932.700450px;}
.yc_c00299{bottom:955.830450px;}
.yb_c00299{bottom:992.910450px;}
.ya_c00299{bottom:1035.480450px;}
.y9_c00299{bottom:1062.210450px;}
.y8_c00299{bottom:1093.260450px;}
.y7_c00299{bottom:1124.310450px;}
.y4_c00299{bottom:1144.380657px;}
.y3_c00299{bottom:1161.660648px;}
.y2_c00299{bottom:1178.850459px;}
.y1_c00299{bottom:1196.130450px;}
.h5_c00299{height:47.381836px;}
.h3_c00299{height:47.513672px;}
.h7_c00299{height:48.410156px;}
.h1_c00299{height:52.898555px;}
.h6_c00299{height:54.278262px;}
.h2_c00299{height:63.175781px;}
.h8_c00299{height:65.003906px;}
.h4_c00299{height:74.500840px;}
.h0_c00299{height:1263.000000px;}
.w1_c00299{width:892.500000px;}
.w0_c00299{width:892.830000px;}
.x0_c00299{left:0.000000px;}
.x4_c00299{left:127.620000px;}
.x6_c00299{left:135.630000px;}
.x7_c00299{left:143.730000px;}
.x9_c00299{left:148.230000px;}
.xa_c00299{left:167.220000px;}
.xb_c00299{left:276.570000px;}
.xd_c00299{left:281.070000px;}
.xe_c00299{left:297.720000px;}
.x8_c00299{left:428.400000px;}
.xc_c00299{left:435.420000px;}
.x5_c00299{left:446.490000px;}
.xf_c00299{left:532.080000px;}
.x10_c00299{left:536.580000px;}
.x11_c00299{left:560.070000px;}
.x1_c00299{left:649.620000px;}
.x3_c00299{left:738.450000px;}
.x2_c00299{left:765.450198px;}
.x12_c00299{left:848.519850px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls13_c00299{letter-spacing:-0.134400pt;}
.ls11_c00299{letter-spacing:-0.129600pt;}
.lsd_c00299{letter-spacing:-0.120000pt;}
.ls14_c00299{letter-spacing:-0.115200pt;}
.ls10_c00299{letter-spacing:-0.110400pt;}
.ls15_c00299{letter-spacing:-0.091200pt;}
.ls17_c00299{letter-spacing:-0.081600pt;}
.ls16_c00299{letter-spacing:-0.076800pt;}
.ls1d_c00299{letter-spacing:-0.072000pt;}
.ls1b_c00299{letter-spacing:-0.067200pt;}
.lsf_c00299{letter-spacing:-0.053440pt;}
.lse_c00299{letter-spacing:-0.048096pt;}
.lsb_c00299{letter-spacing:-0.044800pt;}
.ls8_c00299{letter-spacing:-0.042752pt;}
.ls19_c00299{letter-spacing:-0.033600pt;}
.ls1a_c00299{letter-spacing:-0.028800pt;}
.lsa_c00299{letter-spacing:-0.025600pt;}
.ls1e_c00299{letter-spacing:-0.021376pt;}
.ls12_c00299{letter-spacing:-0.019200pt;}
.ls1f_c00299{letter-spacing:-0.016032pt;}
.ls1c_c00299{letter-spacing:-0.014400pt;}
.lsc_c00299{letter-spacing:-0.012800pt;}
.ls9_c00299{letter-spacing:0.000000pt;}
.ls7_c00299{letter-spacing:0.004800pt;}
.ls4_c00299{letter-spacing:0.014400pt;}
.ls2_c00299{letter-spacing:0.019200pt;}
.ls1_c00299{letter-spacing:0.032000pt;}
.ls5_c00299{letter-spacing:0.038400pt;}
.ls0_c00299{letter-spacing:0.057600pt;}
.ls3_c00299{letter-spacing:0.067104pt;}
.ls6_c00299{letter-spacing:0.086400pt;}
.ls18_c00299{letter-spacing:0.441600pt;}
.ws0_c00299{word-spacing:-17.779200pt;}
.ws2_c00299{word-spacing:0.000000pt;}
.ws1_c00299{word-spacing:0.122912pt;}
.ws3_c00299{word-spacing:0.139200pt;}
.ws4_c00299{word-spacing:0.144000pt;}
._0_c00299{margin-left:-1.254400pt;}
._3_c00299{width:1.080000pt;}
._12_c00299{width:2.794912pt;}
._2_c00299{width:7.193600pt;}
._1_c00299{width:8.345600pt;}
._e_c00299{width:32.131200pt;}
._11_c00299{width:33.816832pt;}
._c_c00299{width:45.897600pt;}
._4_c00299{width:54.312000pt;}
._13_c00299{width:70.204800pt;}
._9_c00299{width:97.136000pt;}
._f_c00299{width:202.435200pt;}
._d_c00299{width:207.212800pt;}
._10_c00299{width:369.411200pt;}
._14_c00299{width:373.692800pt;}
._a_c00299{width:390.588800pt;}
._15_c00299{width:411.420800pt;}
._16_c00299{width:446.307200pt;}
._17_c00299{width:514.691200pt;}
._8_c00299{width:590.326400pt;}
._5_c00299{width:675.491200pt;}
._6_c00299{width:752.729600pt;}
._7_c00299{width:806.643200pt;}
._b_c00299{width:808.451200pt;}
.fs2_c00299{font-size:48.000000pt;}
.fs0_c00299{font-size:53.440000pt;}
.fs1_c00299{font-size:64.000000pt;}
.fs3_c00299{font-size:74.560000pt;}
.y0_c00299{bottom:0.000000pt;}
.y6_c00299{bottom:50.987067pt;}
.y5_c00299{bottom:69.387067pt;}
.y3b_c00299{bottom:107.307067pt;}
.y2d_c00299{bottom:131.947067pt;}
.y2c_c00299{bottom:152.987067pt;}
.y2b_c00299{bottom:173.707067pt;}
.y2a_c00299{bottom:194.747067pt;}
.y29_c00299{bottom:215.387067pt;}
.y28_c00299{bottom:236.427067pt;}
.y27_c00299{bottom:257.147067pt;}
.y26_c00299{bottom:278.187200pt;}
.y23_c00299{bottom:302.347067pt;}
.y25_c00299{bottom:312.987067pt;}
.y22_c00299{bottom:329.947067pt;}
.y24_c00299{bottom:333.707067pt;}
.y21_c00299{bottom:399.147200pt;}
.y20_c00299{bottom:420.187200pt;}
.y1f_c00299{bottom:456.027200pt;}
.y39_c00299{bottom:456.587067pt;}
.y1e_c00299{bottom:477.067067pt;}
.y38_c00299{bottom:477.627067pt;}
.y1d_c00299{bottom:498.107067pt;}
.y37_c00299{bottom:498.667067pt;}
.y1c_c00299{bottom:519.147067pt;}
.y36_c00299{bottom:519.707067pt;}
.y1b_c00299{bottom:540.187067pt;}
.y35_c00299{bottom:540.747067pt;}
.y34_c00299{bottom:561.787067pt;}
.y17_c00299{bottom:572.827067pt;}
.y30_c00299{bottom:576.587067pt;}
.y33_c00299{bottom:582.427067pt;}
.y1a_c00299{bottom:587.947067pt;}
.y16_c00299{bottom:595.867067pt;}
.y2f_c00299{bottom:599.547067pt;}
.y32_c00299{bottom:603.147067pt;}
.y19_c00299{bottom:608.587067pt;}
.y2e_c00299{bottom:622.587067pt;}
.y15_c00299{bottom:622.987067pt;}
.y31_c00299{bottom:623.867067pt;}
.y18_c00299{bottom:629.307067pt;}
.y3a_c00299{bottom:637.867067pt;}
.y14_c00299{bottom:655.467467pt;}
.y13_c00299{bottom:669.307067pt;}
.y12_c00299{bottom:695.867067pt;}
.y11_c00299{bottom:716.426435pt;}
.y10_c00299{bottom:742.267067pt;}
.yf_c00299{bottom:775.387067pt;}
.ye_c00299{bottom:795.947067pt;}
.yd_c00299{bottom:829.067067pt;}
.yc_c00299{bottom:849.627067pt;}
.yb_c00299{bottom:882.587067pt;}
.ya_c00299{bottom:920.427067pt;}
.y9_c00299{bottom:944.187067pt;}
.y8_c00299{bottom:971.787067pt;}
.y7_c00299{bottom:999.387067pt;}
.y4_c00299{bottom:1017.227251pt;}
.y3_c00299{bottom:1032.587243pt;}
.y2_c00299{bottom:1047.867075pt;}
.y1_c00299{bottom:1063.227067pt;}
.h5_c00299{height:42.117188pt;}
.h3_c00299{height:42.234375pt;}
.h7_c00299{height:43.031250pt;}
.h1_c00299{height:47.020937pt;}
.h6_c00299{height:48.247344pt;}
.h2_c00299{height:56.156250pt;}
.h8_c00299{height:57.781250pt;}
.h4_c00299{height:66.222969pt;}
.h0_c00299{height:1122.666667pt;}
.w1_c00299{width:793.333333pt;}
.w0_c00299{width:793.626667pt;}
.x0_c00299{left:0.000000pt;}
.x4_c00299{left:113.440000pt;}
.x6_c00299{left:120.560000pt;}
.x7_c00299{left:127.760000pt;}
.x9_c00299{left:131.760000pt;}
.xa_c00299{left:148.640000pt;}
.xb_c00299{left:245.840000pt;}
.xd_c00299{left:249.840000pt;}
.xe_c00299{left:264.640000pt;}
.x8_c00299{left:380.800000pt;}
.xc_c00299{left:387.040000pt;}
.x5_c00299{left:396.880000pt;}
.xf_c00299{left:472.960000pt;}
.x10_c00299{left:476.960000pt;}
.x11_c00299{left:497.840000pt;}
.x1_c00299{left:577.440000pt;}
.x3_c00299{left:656.400000pt;}
.x2_c00299{left:680.400176pt;}
.x12_c00299{left:754.239867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0758aeaac011e95efd41b88.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.095703;font-style:normal;font-weight:normal;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_6fd665300d5f0163f0a17c14.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.093262;font-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_c00300{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls10_c00300{letter-spacing:-0.165600px;}
.lse_c00300{letter-spacing:-0.090180px;}
.ls15_c00300{letter-spacing:-0.043200px;}
.ls14_c00300{letter-spacing:-0.021600px;}
.ls12_c00300{letter-spacing:-0.014400px;}
.ls11_c00300{letter-spacing:-0.007200px;}
.lsf_c00300{letter-spacing:0.000000px;}
.ls5_c00300{letter-spacing:0.007200px;}
.ls0_c00300{letter-spacing:0.014400px;}
.lsc_c00300{letter-spacing:0.021600px;}
.lsd_c00300{letter-spacing:0.027000px;}
.ls9_c00300{letter-spacing:0.028800px;}
.ls4_c00300{letter-spacing:0.036000px;}
.ls7_c00300{letter-spacing:0.043200px;}
.ls3_c00300{letter-spacing:0.050400px;}
.ls6_c00300{letter-spacing:0.057600px;}
.lsb_c00300{letter-spacing:0.064800px;}
.ls1_c00300{letter-spacing:0.072000px;}
.ls8_c00300{letter-spacing:0.093600px;}
.ls2_c00300{letter-spacing:0.115200px;}
.lsa_c00300{letter-spacing:0.367200px;}
.ls16_c00300{letter-spacing:4.327200px;}
.ls13_c00300{letter-spacing:13.334400px;}
.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:-18.000000px;}
.ws2_c00300{word-spacing:0.000000px;}
.ws5_c00300{word-spacing:0.151200px;}
.ws4_c00300{word-spacing:0.178200px;}
.ws1_c00300{word-spacing:0.186372px;}
.ws3_c00300{word-spacing:13.305600px;}
._7_c00300{margin-left:-13.802400px;}
._d_c00300{margin-left:-4.903200px;}
._a_c00300{margin-left:-3.492000px;}
._5_c00300{margin-left:-2.325600px;}
._1_c00300{margin-left:-1.281600px;}
._0_c00300{width:1.028052px;}
._b_c00300{width:2.124000px;}
._3_c00300{width:3.211200px;}
._c_c00300{width:4.262400px;}
._4_c00300{width:5.349600px;}
._8_c00300{width:6.350400px;}
._9_c00300{width:7.884000px;}
._2_c00300{width:10.461600px;}
._6_c00300{width:13.305600px;}
.fc2_c00300{color:rgb(68,84,106);}
.fc1_c00300{color:rgb(0,0,0);}
.fc0_c00300{color:rgb(32,31,30);}
.fs2_c00300{font-size:54.000000px;}
.fs0_c00300{font-size:60.120000px;}
.fs1_c00300{font-size:72.000000px;}
.y0_c00300{bottom:0.000000px;}
.y1f_c00300{bottom:3.240450px;}
.y5_c00300{bottom:57.360450px;}
.y4_c00300{bottom:78.060450px;}
.y1d_c00300{bottom:138.990450px;}
.y1c_c00300{bottom:170.040450px;}
.y1b_c00300{bottom:201.090450px;}
.y1a_c00300{bottom:232.140450px;}
.y19_c00300{bottom:263.190450px;}
.y18_c00300{bottom:294.240450px;}
.y17_c00300{bottom:325.290450px;}
.y16_c00300{bottom:356.340450px;}
.y15_c00300{bottom:387.390450px;}
.y14_c00300{bottom:418.440450px;}
.y13_c00300{bottom:449.490450px;}
.y12_c00300{bottom:480.540450px;}
.y11_c00300{bottom:511.590450px;}
.y10_c00300{bottom:542.640450px;}
.yf_c00300{bottom:573.690450px;}
.ye_c00300{bottom:604.740450px;}
.yd_c00300{bottom:635.790450px;}
.yc_c00300{bottom:662.790450px;}
.y1e_c00300{bottom:926.220000px;}
.y20_c00300{bottom:929.460450px;}
.yb_c00300{bottom:956.190450px;}
.ya_c00300{bottom:987.240450px;}
.y9_c00300{bottom:1018.290450px;}
.y8_c00300{bottom:1049.340450px;}
.y7_c00300{bottom:1080.390450px;}
.y6_c00300{bottom:1111.440450px;}
.y3_c00300{bottom:1132.140450px;}
.y2_c00300{bottom:1165.441023px;}
.y1_c00300{bottom:1196.040600px;}
.h4_c00300{height:15.300000px;}
.h5_c00300{height:47.513672px;}
.h1_c00300{height:52.898555px;}
.h2_c00300{height:63.175781px;}
.h3_c00300{height:63.351562px;}
.h0_c00300{height:1263.000000px;}
.w2_c00300{width:295.020000px;}
.w1_c00300{width:892.500000px;}
.w0_c00300{width:892.830000px;}
.x0_c00300{left:0.000000px;}
.x1_c00300{left:127.620000px;}
.x4_c00300{left:132.120000px;}
.x3_c00300{left:611.370388px;}
.x2_c00300{left:738.450676px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls10_c00300{letter-spacing:-0.147200pt;}
.lse_c00300{letter-spacing:-0.080160pt;}
.ls15_c00300{letter-spacing:-0.038400pt;}
.ls14_c00300{letter-spacing:-0.019200pt;}
.ls12_c00300{letter-spacing:-0.012800pt;}
.ls11_c00300{letter-spacing:-0.006400pt;}
.lsf_c00300{letter-spacing:0.000000pt;}
.ls5_c00300{letter-spacing:0.006400pt;}
.ls0_c00300{letter-spacing:0.012800pt;}
.lsc_c00300{letter-spacing:0.019200pt;}
.lsd_c00300{letter-spacing:0.024000pt;}
.ls9_c00300{letter-spacing:0.025600pt;}
.ls4_c00300{letter-spacing:0.032000pt;}
.ls7_c00300{letter-spacing:0.038400pt;}
.ls3_c00300{letter-spacing:0.044800pt;}
.ls6_c00300{letter-spacing:0.051200pt;}
.lsb_c00300{letter-spacing:0.057600pt;}
.ls1_c00300{letter-spacing:0.064000pt;}
.ls8_c00300{letter-spacing:0.083200pt;}
.ls2_c00300{letter-spacing:0.102400pt;}
.lsa_c00300{letter-spacing:0.326400pt;}
.ls16_c00300{letter-spacing:3.846400pt;}
.ls13_c00300{letter-spacing:11.852800pt;}
.ws0_c00300{word-spacing:-16.000000pt;}
.ws2_c00300{word-spacing:0.000000pt;}
.ws5_c00300{word-spacing:0.134400pt;}
.ws4_c00300{word-spacing:0.158400pt;}
.ws1_c00300{word-spacing:0.165664pt;}
.ws3_c00300{word-spacing:11.827200pt;}
._7_c00300{margin-left:-12.268800pt;}
._d_c00300{margin-left:-4.358400pt;}
._a_c00300{margin-left:-3.104000pt;}
._5_c00300{margin-left:-2.067200pt;}
._1_c00300{margin-left:-1.139200pt;}
._0_c00300{width:0.913824pt;}
._b_c00300{width:1.888000pt;}
._3_c00300{width:2.854400pt;}
._c_c00300{width:3.788800pt;}
._4_c00300{width:4.755200pt;}
._8_c00300{width:5.644800pt;}
._9_c00300{width:7.008000pt;}
._2_c00300{width:9.299200pt;}
._6_c00300{width:11.827200pt;}
.fs2_c00300{font-size:48.000000pt;}
.fs0_c00300{font-size:53.440000pt;}
.fs1_c00300{font-size:64.000000pt;}
.y0_c00300{bottom:0.000000pt;}
.y1f_c00300{bottom:2.880400pt;}
.y5_c00300{bottom:50.987067pt;}
.y4_c00300{bottom:69.387067pt;}
.y1d_c00300{bottom:123.547067pt;}
.y1c_c00300{bottom:151.147067pt;}
.y1b_c00300{bottom:178.747067pt;}
.y1a_c00300{bottom:206.347067pt;}
.y19_c00300{bottom:233.947067pt;}
.y18_c00300{bottom:261.547067pt;}
.y17_c00300{bottom:289.147067pt;}
.y16_c00300{bottom:316.747067pt;}
.y15_c00300{bottom:344.347067pt;}
.y14_c00300{bottom:371.947067pt;}
.y13_c00300{bottom:399.547067pt;}
.y12_c00300{bottom:427.147067pt;}
.y11_c00300{bottom:454.747067pt;}
.y10_c00300{bottom:482.347067pt;}
.yf_c00300{bottom:509.947067pt;}
.ye_c00300{bottom:537.547067pt;}
.yd_c00300{bottom:565.147067pt;}
.yc_c00300{bottom:589.147067pt;}
.y1e_c00300{bottom:823.306667pt;}
.y20_c00300{bottom:826.187067pt;}
.yb_c00300{bottom:849.947067pt;}
.ya_c00300{bottom:877.547067pt;}
.y9_c00300{bottom:905.147067pt;}
.y8_c00300{bottom:932.747067pt;}
.y7_c00300{bottom:960.347067pt;}
.y6_c00300{bottom:987.947067pt;}
.y3_c00300{bottom:1006.347067pt;}
.y2_c00300{bottom:1035.947576pt;}
.y1_c00300{bottom:1063.147200pt;}
.h4_c00300{height:13.600000pt;}
.h5_c00300{height:42.234375pt;}
.h1_c00300{height:47.020937pt;}
.h2_c00300{height:56.156250pt;}
.h3_c00300{height:56.312500pt;}
.h0_c00300{height:1122.666667pt;}
.w2_c00300{width:262.240000pt;}
.w1_c00300{width:793.333333pt;}
.w0_c00300{width:793.626667pt;}
.x0_c00300{left:0.000000pt;}
.x1_c00300{left:113.440000pt;}
.x4_c00300{left:117.440000pt;}
.x3_c00300{left:543.440345pt;}
.x2_c00300{left:656.400601pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e1117f96a505da13207ba10.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.095703;font-style:normal;font-weight:normal;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_367effbd8638cacb5f943797.woff2')format("woff");}.ff2_c00301{font-family:ff2_c00301;line-height:1.093262;font-style:normal;font-weight:normal;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_6b85215aacbd17a8e154870e.woff2')format("woff");}.ff3_c00301{font-family:ff3_c00301;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00301{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.lse_c00301{letter-spacing:-0.048096px;}
.ls11_c00301{letter-spacing:-0.043200px;}
.ls10_c00301{letter-spacing:-0.021600px;}
.ls12_c00301{letter-spacing:-0.014400px;}
.ls13_c00301{letter-spacing:-0.007200px;}
.lsf_c00301{letter-spacing:0.000000px;}
.ls4_c00301{letter-spacing:0.007200px;}
.ls3_c00301{letter-spacing:0.014400px;}
.ls6_c00301{letter-spacing:0.016200px;}
.ls5_c00301{letter-spacing:0.027000px;}
.lsa_c00301{letter-spacing:0.028800px;}
.ls1_c00301{letter-spacing:0.036000px;}
.ls0_c00301{letter-spacing:0.043200px;}
.ls9_c00301{letter-spacing:0.050328px;}
.ls2_c00301{letter-spacing:0.050400px;}
.lsb_c00301{letter-spacing:0.064800px;}
.lsc_c00301{letter-spacing:0.079200px;}
.lsd_c00301{letter-spacing:0.086400px;}
.ls7_c00301{letter-spacing:0.092268px;}
.ls8_c00301{letter-spacing:0.100656px;}
.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:-17.978400px;}
.ws2_c00301{word-spacing:0.000000px;}
.ws1_c00301{word-spacing:0.138276px;}
.ws3_c00301{word-spacing:0.151200px;}
.ws4_c00301{word-spacing:0.162000px;}
.ws5_c00301{word-spacing:0.199800px;}
._1_c00301{margin-left:-1.161000px;}
._0_c00301{width:1.742400px;}
._f_c00301{width:3.240000px;}
._10_c00301{width:4.559400px;}
._2_c00301{width:5.578020px;}
._4_c00301{width:44.956800px;}
._5_c00301{width:112.680000px;}
._d_c00301{width:141.292800px;}
._6_c00301{width:236.260800px;}
._3_c00301{width:240.696000px;}
._8_c00301{width:395.661600px;}
._c_c00301{width:447.472800px;}
._7_c00301{width:517.276800px;}
._b_c00301{width:632.743200px;}
._9_c00301{width:641.491200px;}
._a_c00301{width:705.232800px;}
._e_c00301{width:721.461600px;}
.fc1_c00301{color:rgb(68,84,106);}
.fc0_c00301{color:rgb(0,0,0);}
.fs2_c00301{font-size:54.000000px;}
.fs0_c00301{font-size:60.120000px;}
.fs1_c00301{font-size:72.000000px;}
.fs3_c00301{font-size:83.880000px;}
.y0_c00301{bottom:0.000000px;}
.y6_c00301{bottom:57.360450px;}
.y5_c00301{bottom:78.060450px;}
.y21_c00301{bottom:153.660450px;}
.y20_c00301{bottom:184.710450px;}
.y1f_c00301{bottom:215.760450px;}
.y1e_c00301{bottom:246.720450px;}
.y1d_c00301{bottom:277.770450px;}
.y1c_c00301{bottom:309.630450px;}
.y1b_c00301{bottom:341.400450px;}
.y1a_c00301{bottom:373.170450px;}
.y19_c00301{bottom:405.030450px;}
.y18_c00301{bottom:436.800450px;}
.y17_c00301{bottom:468.570450px;}
.y16_c00301{bottom:500.430600px;}
.y15_c00301{bottom:532.200450px;}
.y14_c00301{bottom:563.970450px;}
.y13_c00301{bottom:595.740450px;}
.y12_c00301{bottom:627.600450px;}
.y11_c00301{bottom:658.650450px;}
.y10_c00301{bottom:694.200450px;}
.yf_c00301{bottom:724.170450px;}
.ye_c00301{bottom:747.212124px;}
.yd_c00301{bottom:773.311386px;}
.yc_c00301{bottom:812.550450px;}
.yb_c00301{bottom:842.610450px;}
.ya_c00301{bottom:1028.280900px;}
.y9_c00301{bottom:1066.530450px;}
.y8_c00301{bottom:1093.260450px;}
.y7_c00301{bottom:1124.310450px;}
.y4_c00301{bottom:1144.380657px;}
.y3_c00301{bottom:1161.660648px;}
.y2_c00301{bottom:1178.850459px;}
.y1_c00301{bottom:1196.130450px;}
.h4_c00301{height:47.513672px;}
.h1_c00301{height:52.898555px;}
.h2_c00301{height:63.175781px;}
.h5_c00301{height:63.349762px;}
.h3_c00301{height:63.351562px;}
.h6_c00301{height:74.500840px;}
.h0_c00301{height:1263.000000px;}
.w1_c00301{width:892.500000px;}
.w0_c00301{width:892.830000px;}
.x0_c00301{left:0.000000px;}
.x4_c00301{left:127.620000px;}
.x7_c00301{left:136.080000px;}
.x6_c00301{left:224.820144px;}
.x8_c00301{left:358.920000px;}
.x1_c00301{left:649.620000px;}
.x3_c00301{left:738.450000px;}
.x5_c00301{left:750.420000px;}
.x2_c00301{left:765.450198px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.lse_c00301{letter-spacing:-0.042752pt;}
.ls11_c00301{letter-spacing:-0.038400pt;}
.ls10_c00301{letter-spacing:-0.019200pt;}
.ls12_c00301{letter-spacing:-0.012800pt;}
.ls13_c00301{letter-spacing:-0.006400pt;}
.lsf_c00301{letter-spacing:0.000000pt;}
.ls4_c00301{letter-spacing:0.006400pt;}
.ls3_c00301{letter-spacing:0.012800pt;}
.ls6_c00301{letter-spacing:0.014400pt;}
.ls5_c00301{letter-spacing:0.024000pt;}
.lsa_c00301{letter-spacing:0.025600pt;}
.ls1_c00301{letter-spacing:0.032000pt;}
.ls0_c00301{letter-spacing:0.038400pt;}
.ls9_c00301{letter-spacing:0.044736pt;}
.ls2_c00301{letter-spacing:0.044800pt;}
.lsb_c00301{letter-spacing:0.057600pt;}
.lsc_c00301{letter-spacing:0.070400pt;}
.lsd_c00301{letter-spacing:0.076800pt;}
.ls7_c00301{letter-spacing:0.082016pt;}
.ls8_c00301{letter-spacing:0.089472pt;}
.ws0_c00301{word-spacing:-15.980800pt;}
.ws2_c00301{word-spacing:0.000000pt;}
.ws1_c00301{word-spacing:0.122912pt;}
.ws3_c00301{word-spacing:0.134400pt;}
.ws4_c00301{word-spacing:0.144000pt;}
.ws5_c00301{word-spacing:0.177600pt;}
._1_c00301{margin-left:-1.032000pt;}
._0_c00301{width:1.548800pt;}
._f_c00301{width:2.880000pt;}
._10_c00301{width:4.052800pt;}
._2_c00301{width:4.958240pt;}
._4_c00301{width:39.961600pt;}
._5_c00301{width:100.160000pt;}
._d_c00301{width:125.593600pt;}
._6_c00301{width:210.009600pt;}
._3_c00301{width:213.952000pt;}
._8_c00301{width:351.699200pt;}
._c_c00301{width:397.753600pt;}
._7_c00301{width:459.801600pt;}
._b_c00301{width:562.438400pt;}
._9_c00301{width:570.214400pt;}
._a_c00301{width:626.873600pt;}
._e_c00301{width:641.299200pt;}
.fs2_c00301{font-size:48.000000pt;}
.fs0_c00301{font-size:53.440000pt;}
.fs1_c00301{font-size:64.000000pt;}
.fs3_c00301{font-size:74.560000pt;}
.y0_c00301{bottom:0.000000pt;}
.y6_c00301{bottom:50.987067pt;}
.y5_c00301{bottom:69.387067pt;}
.y21_c00301{bottom:136.587067pt;}
.y20_c00301{bottom:164.187067pt;}
.y1f_c00301{bottom:191.787067pt;}
.y1e_c00301{bottom:219.307067pt;}
.y1d_c00301{bottom:246.907067pt;}
.y1c_c00301{bottom:275.227067pt;}
.y1b_c00301{bottom:303.467067pt;}
.y1a_c00301{bottom:331.707067pt;}
.y19_c00301{bottom:360.027067pt;}
.y18_c00301{bottom:388.267067pt;}
.y17_c00301{bottom:416.507067pt;}
.y16_c00301{bottom:444.827200pt;}
.y15_c00301{bottom:473.067067pt;}
.y14_c00301{bottom:501.307067pt;}
.y13_c00301{bottom:529.547067pt;}
.y12_c00301{bottom:557.867067pt;}
.y11_c00301{bottom:585.467067pt;}
.y10_c00301{bottom:617.067067pt;}
.yf_c00301{bottom:643.707067pt;}
.ye_c00301{bottom:664.188555pt;}
.yd_c00301{bottom:687.387899pt;}
.yc_c00301{bottom:722.267067pt;}
.yb_c00301{bottom:748.987067pt;}
.ya_c00301{bottom:914.027467pt;}
.y9_c00301{bottom:948.027067pt;}
.y8_c00301{bottom:971.787067pt;}
.y7_c00301{bottom:999.387067pt;}
.y4_c00301{bottom:1017.227251pt;}
.y3_c00301{bottom:1032.587243pt;}
.y2_c00301{bottom:1047.867075pt;}
.y1_c00301{bottom:1063.227067pt;}
.h4_c00301{height:42.234375pt;}
.h1_c00301{height:47.020937pt;}
.h2_c00301{height:56.156250pt;}
.h5_c00301{height:56.310900pt;}
.h3_c00301{height:56.312500pt;}
.h6_c00301{height:66.222969pt;}
.h0_c00301{height:1122.666667pt;}
.w1_c00301{width:793.333333pt;}
.w0_c00301{width:793.626667pt;}
.x0_c00301{left:0.000000pt;}
.x4_c00301{left:113.440000pt;}
.x7_c00301{left:120.960000pt;}
.x6_c00301{left:199.840128pt;}
.x8_c00301{left:319.040000pt;}
.x1_c00301{left:577.440000pt;}
.x3_c00301{left:656.400000pt;}
.x5_c00301{left:667.040000pt;}
.x2_c00301{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5e1a7731f6a341dce73b693.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.095703;font-style:normal;font-weight:normal;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_bdaabb26b14818114b7d1d7f.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.093262;font-style: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;}
.ls12_c00302{letter-spacing:-0.561600px;}
.ls13_c00302{letter-spacing:-0.360000px;}
.ls17_c00302{letter-spacing:-0.216000px;}
.lse_c00302{letter-spacing:-0.102204px;}
.ls16_c00302{letter-spacing:-0.064800px;}
.ls18_c00302{letter-spacing:-0.057600px;}
.ls14_c00302{letter-spacing:-0.050400px;}
.ls1a_c00302{letter-spacing:-0.028800px;}
.ls11_c00302{letter-spacing:-0.014400px;}
.ls10_c00302{letter-spacing:-0.007200px;}
.ls15_c00302{letter-spacing:-0.005400px;}
.lsf_c00302{letter-spacing:0.000000px;}
.lsc_c00302{letter-spacing:0.007200px;}
.ls7_c00302{letter-spacing:0.014400px;}
.ls6_c00302{letter-spacing:0.021600px;}
.ls9_c00302{letter-spacing:0.027000px;}
.lsd_c00302{letter-spacing:0.028800px;}
.ls19_c00302{letter-spacing:0.036000px;}
.ls8_c00302{letter-spacing:0.043200px;}
.ls4_c00302{letter-spacing:0.050400px;}
.ls0_c00302{letter-spacing:0.057600px;}
.lsa_c00302{letter-spacing:0.064800px;}
.ls1_c00302{letter-spacing:0.072000px;}
.lsb_c00302{letter-spacing:0.075600px;}
.ls3_c00302{letter-spacing:0.079200px;}
.ls5_c00302{letter-spacing:0.086400px;}
.ls2_c00302{letter-spacing:0.122400px;}
.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:-18.014400px;}
.ws2_c00302{word-spacing:0.000000px;}
.ws1_c00302{word-spacing:0.192384px;}
.ws5_c00302{word-spacing:10.557000px;}
.ws4_c00302{word-spacing:10.594800px;}
.ws3_c00302{word-spacing:10.627200px;}
._c_c00302{margin-left:-4.946400px;}
._8_c00302{margin-left:-3.074400px;}
._2_c00302{margin-left:-1.310400px;}
._0_c00302{width:1.034064px;}
._9_c00302{width:2.836800px;}
._7_c00302{width:3.996000px;}
._6_c00302{width:5.356800px;}
._a_c00302{width:6.487200px;}
._3_c00302{width:8.280000px;}
._b_c00302{width:9.324000px;}
._4_c00302{width:14.025600px;}
._5_c00302{width:15.854400px;}
._1_c00302{width:21.182400px;}
.fc2_c00302{color:rgb(68,84,106);}
.fc1_c00302{color:rgb(0,0,0);}
.fc0_c00302{color:rgb(32,31,30);}
.fs2_c00302{font-size:54.000000px;}
.fs0_c00302{font-size:60.120000px;}
.fs1_c00302{font-size:72.000000px;}
.y0_c00302{bottom:0.000000px;}
.y5_c00302{bottom:57.360450px;}
.y4_c00302{bottom:78.060450px;}
.y21_c00302{bottom:141.330450px;}
.y20_c00302{bottom:172.380450px;}
.y1f_c00302{bottom:203.430450px;}
.y1e_c00302{bottom:234.480450px;}
.y1d_c00302{bottom:265.530450px;}
.y1c_c00302{bottom:296.580450px;}
.y1b_c00302{bottom:327.630450px;}
.y1a_c00302{bottom:358.680450px;}
.y19_c00302{bottom:389.730450px;}
.y18_c00302{bottom:420.780450px;}
.y17_c00302{bottom:451.830450px;}
.y16_c00302{bottom:482.880450px;}
.y15_c00302{bottom:513.930450px;}
.y14_c00302{bottom:540.930450px;}
.y13_c00302{bottom:719.850000px;}
.y12_c00302{bottom:743.160450px;}
.y11_c00302{bottom:769.890450px;}
.y10_c00302{bottom:800.940450px;}
.yf_c00302{bottom:831.990450px;}
.ye_c00302{bottom:863.040450px;}
.yd_c00302{bottom:894.090450px;}
.yc_c00302{bottom:925.140450px;}
.yb_c00302{bottom:956.190450px;}
.ya_c00302{bottom:987.240450px;}
.y9_c00302{bottom:1018.290450px;}
.y8_c00302{bottom:1049.340450px;}
.y7_c00302{bottom:1080.390450px;}
.y6_c00302{bottom:1111.440450px;}
.y3_c00302{bottom:1132.140450px;}
.y2_c00302{bottom:1165.441023px;}
.y1_c00302{bottom:1196.040600px;}
.h4_c00302{height:47.513672px;}
.h1_c00302{height:52.898555px;}
.h2_c00302{height:63.175781px;}
.h3_c00302{height:63.351562px;}
.h0_c00302{height:1263.000000px;}
.w1_c00302{width:892.500000px;}
.w0_c00302{width:892.830000px;}
.x0_c00302{left:0.000000px;}
.x1_c00302{left:127.620000px;}
.x2_c00302{left:738.450000px;}
.x3_c00302{left:761.490000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls12_c00302{letter-spacing:-0.499200pt;}
.ls13_c00302{letter-spacing:-0.320000pt;}
.ls17_c00302{letter-spacing:-0.192000pt;}
.lse_c00302{letter-spacing:-0.090848pt;}
.ls16_c00302{letter-spacing:-0.057600pt;}
.ls18_c00302{letter-spacing:-0.051200pt;}
.ls14_c00302{letter-spacing:-0.044800pt;}
.ls1a_c00302{letter-spacing:-0.025600pt;}
.ls11_c00302{letter-spacing:-0.012800pt;}
.ls10_c00302{letter-spacing:-0.006400pt;}
.ls15_c00302{letter-spacing:-0.004800pt;}
.lsf_c00302{letter-spacing:0.000000pt;}
.lsc_c00302{letter-spacing:0.006400pt;}
.ls7_c00302{letter-spacing:0.012800pt;}
.ls6_c00302{letter-spacing:0.019200pt;}
.ls9_c00302{letter-spacing:0.024000pt;}
.lsd_c00302{letter-spacing:0.025600pt;}
.ls19_c00302{letter-spacing:0.032000pt;}
.ls8_c00302{letter-spacing:0.038400pt;}
.ls4_c00302{letter-spacing:0.044800pt;}
.ls0_c00302{letter-spacing:0.051200pt;}
.lsa_c00302{letter-spacing:0.057600pt;}
.ls1_c00302{letter-spacing:0.064000pt;}
.lsb_c00302{letter-spacing:0.067200pt;}
.ls3_c00302{letter-spacing:0.070400pt;}
.ls5_c00302{letter-spacing:0.076800pt;}
.ls2_c00302{letter-spacing:0.108800pt;}
.ws0_c00302{word-spacing:-16.012800pt;}
.ws2_c00302{word-spacing:0.000000pt;}
.ws1_c00302{word-spacing:0.171008pt;}
.ws5_c00302{word-spacing:9.384000pt;}
.ws4_c00302{word-spacing:9.417600pt;}
.ws3_c00302{word-spacing:9.446400pt;}
._c_c00302{margin-left:-4.396800pt;}
._8_c00302{margin-left:-2.732800pt;}
._2_c00302{margin-left:-1.164800pt;}
._0_c00302{width:0.919168pt;}
._9_c00302{width:2.521600pt;}
._7_c00302{width:3.552000pt;}
._6_c00302{width:4.761600pt;}
._a_c00302{width:5.766400pt;}
._3_c00302{width:7.360000pt;}
._b_c00302{width:8.288000pt;}
._4_c00302{width:12.467200pt;}
._5_c00302{width:14.092800pt;}
._1_c00302{width:18.828800pt;}
.fs2_c00302{font-size:48.000000pt;}
.fs0_c00302{font-size:53.440000pt;}
.fs1_c00302{font-size:64.000000pt;}
.y0_c00302{bottom:0.000000pt;}
.y5_c00302{bottom:50.987067pt;}
.y4_c00302{bottom:69.387067pt;}
.y21_c00302{bottom:125.627067pt;}
.y20_c00302{bottom:153.227067pt;}
.y1f_c00302{bottom:180.827067pt;}
.y1e_c00302{bottom:208.427067pt;}
.y1d_c00302{bottom:236.027067pt;}
.y1c_c00302{bottom:263.627067pt;}
.y1b_c00302{bottom:291.227067pt;}
.y1a_c00302{bottom:318.827067pt;}
.y19_c00302{bottom:346.427067pt;}
.y18_c00302{bottom:374.027067pt;}
.y17_c00302{bottom:401.627067pt;}
.y16_c00302{bottom:429.227067pt;}
.y15_c00302{bottom:456.827067pt;}
.y14_c00302{bottom:480.827067pt;}
.y13_c00302{bottom:639.866667pt;}
.y12_c00302{bottom:660.587067pt;}
.y11_c00302{bottom:684.347067pt;}
.y10_c00302{bottom:711.947067pt;}
.yf_c00302{bottom:739.547067pt;}
.ye_c00302{bottom:767.147067pt;}
.yd_c00302{bottom:794.747067pt;}
.yc_c00302{bottom:822.347067pt;}
.yb_c00302{bottom:849.947067pt;}
.ya_c00302{bottom:877.547067pt;}
.y9_c00302{bottom:905.147067pt;}
.y8_c00302{bottom:932.747067pt;}
.y7_c00302{bottom:960.347067pt;}
.y6_c00302{bottom:987.947067pt;}
.y3_c00302{bottom:1006.347067pt;}
.y2_c00302{bottom:1035.947576pt;}
.y1_c00302{bottom:1063.147200pt;}
.h4_c00302{height:42.234375pt;}
.h1_c00302{height:47.020937pt;}
.h2_c00302{height:56.156250pt;}
.h3_c00302{height:56.312500pt;}
.h0_c00302{height:1122.666667pt;}
.w1_c00302{width:793.333333pt;}
.w0_c00302{width:793.626667pt;}
.x0_c00302{left:0.000000pt;}
.x1_c00302{left:113.440000pt;}
.x2_c00302{left:656.400000pt;}
.x3_c00302{left:676.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_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_81cfc06f5cea5f54b4884dcf.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.095703;font-style:normal;font-weight:normal;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_3442a9e6681335287a1b4608.woff2')format("woff");}.ff2_c00303{font-family:ff2_c00303;line-height:1.093262;font-style:normal;font-weight:normal;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_2fe6e6a6320942339f680d55.woff2')format("woff");}.ff3_c00303{font-family:ff3_c00303;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2_c00303{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0_c00303{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m3_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00303{vertical-align:-20.880000px;}
.v0_c00303{vertical-align:0.000000px;}
.ls18_c00303{letter-spacing:-0.180360px;}
.ls16_c00303{letter-spacing:-0.084168px;}
.ls10_c00303{letter-spacing:-0.042084px;}
.ls17_c00303{letter-spacing:-0.036072px;}
.ls13_c00303{letter-spacing:-0.014400px;}
.ls11_c00303{letter-spacing:0.000000px;}
.ls5_c00303{letter-spacing:0.007200px;}
.ls15_c00303{letter-spacing:0.007776px;}
.ls0_c00303{letter-spacing:0.014400px;}
.ls7_c00303{letter-spacing:0.021600px;}
.ls2_c00303{letter-spacing:0.028800px;}
.ls9_c00303{letter-spacing:0.036000px;}
.lsf_c00303{letter-spacing:0.037800px;}
.ls4_c00303{letter-spacing:0.043200px;}
.lsa_c00303{letter-spacing:0.050400px;}
.ls3_c00303{letter-spacing:0.057600px;}
.lsc_c00303{letter-spacing:0.064800px;}
.lsb_c00303{letter-spacing:0.067104px;}
.ls6_c00303{letter-spacing:0.072000px;}
.lsd_c00303{letter-spacing:0.079200px;}
.ls8_c00303{letter-spacing:0.086400px;}
.ls1_c00303{letter-spacing:0.093600px;}
.lse_c00303{letter-spacing:0.100800px;}
.ls12_c00303{letter-spacing:0.191520px;}
.ls14_c00303{letter-spacing:3.967200px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00303{word-spacing:-18.028800px;}
.ws2_c00303{word-spacing:-14.993928px;}
.ws1_c00303{word-spacing:-9.727776px;}
.ws4_c00303{word-spacing:0.000000px;}
.ws3_c00303{word-spacing:0.138276px;}
.ws6_c00303{word-spacing:0.140400px;}
.ws5_c00303{word-spacing:4.262400px;}
._9_c00303{margin-left:-4.420800px;}
._3_c00303{margin-left:-2.649600px;}
._1_c00303{margin-left:-1.468800px;}
._2_c00303{width:1.008000px;}
._0_c00303{width:2.188800px;}
._8_c00303{width:4.161600px;}
._a_c00303{width:5.241600px;}
._6_c00303{width:14.133600px;}
._7_c00303{width:15.278400px;}
._b_c00303{width:16.898400px;}
._4_c00303{width:23.760000px;}
._5_c00303{width:28.432800px;}
.fc1_c00303{color:rgb(68,84,106);}
.fc0_c00303{color:rgb(0,0,0);}
.fs5_c00303{font-size:38.880000px;}
.fs2_c00303{font-size:47.880000px;}
.fs4_c00303{font-size:54.000000px;}
.fs0_c00303{font-size:60.120000px;}
.fs1_c00303{font-size:72.000000px;}
.fs3_c00303{font-size:83.880000px;}
.y0_c00303{bottom:0.000000px;}
.y2b_c00303{bottom:3.240450px;}
.y6_c00303{bottom:57.360450px;}
.y5_c00303{bottom:78.060450px;}
.y29_c00303{bottom:109.920648px;}
.y28_c00303{bottom:127.110459px;}
.y27_c00303{bottom:149.610450px;}
.y26_c00303{bottom:162.300450px;}
.y25_c00303{bottom:216.480900px;}
.y24_c00303{bottom:254.820900px;}
.y23_c00303{bottom:293.070450px;}
.y22_c00303{bottom:319.800450px;}
.y21_c00303{bottom:350.850450px;}
.y20_c00303{bottom:381.900450px;}
.y1f_c00303{bottom:412.950450px;}
.y1e_c00303{bottom:444.000450px;}
.y1d_c00303{bottom:475.050450px;}
.y1c_c00303{bottom:506.100450px;}
.y1b_c00303{bottom:537.150450px;}
.y1a_c00303{bottom:568.200450px;}
.y19_c00303{bottom:599.250450px;}
.y18_c00303{bottom:633.450450px;}
.y17_c00303{bottom:656.579028px;}
.y16_c00303{bottom:685.649739px;}
.y15_c00303{bottom:714.720450px;}
.y14_c00303{bottom:751.800450px;}
.y13_c00303{bottom:782.850450px;}
.y12_c00303{bottom:813.900450px;}
.y11_c00303{bottom:844.950450px;}
.y10_c00303{bottom:876.000450px;}
.yf_c00303{bottom:907.050450px;}
.ye_c00303{bottom:938.100450px;}
.y2a_c00303{bottom:943.410000px;}
.y2c_c00303{bottom:946.650450px;}
.yd_c00303{bottom:969.150450px;}
.yc_c00303{bottom:1000.200450px;}
.ya_c00303{bottom:1031.160450px;}
.yb_c00303{bottom:1037.910450px;}
.y9_c00303{bottom:1062.210450px;}
.y8_c00303{bottom:1093.260450px;}
.y7_c00303{bottom:1124.310450px;}
.y4_c00303{bottom:1144.380657px;}
.y3_c00303{bottom:1161.660648px;}
.y2_c00303{bottom:1178.850459px;}
.y1_c00303{bottom:1196.130450px;}
.h9_c00303{height:15.300000px;}
.h7_c00303{height:34.114922px;}
.h3_c00303{height:42.011895px;}
.h6_c00303{height:47.513672px;}
.h8_c00303{height:52.751777px;}
.h1_c00303{height:52.898555px;}
.h2_c00303{height:63.175781px;}
.h5_c00303{height:63.351562px;}
.h4_c00303{height:74.500840px;}
.h0_c00303{height:1263.000000px;}
.w2_c00303{width:300.600000px;}
.w1_c00303{width:892.500000px;}
.w0_c00303{width:892.830000px;}
.x0_c00303{left:0.000000px;}
.x4_c00303{left:127.619324px;}
.x8_c00303{left:132.120000px;}
.x5_c00303{left:343.530000px;}
.x6_c00303{left:355.590000px;}
.x7_c00303{left:496.618190px;}
.x1_c00303{left:649.620000px;}
.x3_c00303{left:738.450000px;}
.x2_c00303{left:765.449030px;}
@media print{
.v1_c00303{vertical-align:-18.560000pt;}
.v0_c00303{vertical-align:0.000000pt;}
.ls18_c00303{letter-spacing:-0.160320pt;}
.ls16_c00303{letter-spacing:-0.074816pt;}
.ls10_c00303{letter-spacing:-0.037408pt;}
.ls17_c00303{letter-spacing:-0.032064pt;}
.ls13_c00303{letter-spacing:-0.012800pt;}
.ls11_c00303{letter-spacing:0.000000pt;}
.ls5_c00303{letter-spacing:0.006400pt;}
.ls15_c00303{letter-spacing:0.006912pt;}
.ls0_c00303{letter-spacing:0.012800pt;}
.ls7_c00303{letter-spacing:0.019200pt;}
.ls2_c00303{letter-spacing:0.025600pt;}
.ls9_c00303{letter-spacing:0.032000pt;}
.lsf_c00303{letter-spacing:0.033600pt;}
.ls4_c00303{letter-spacing:0.038400pt;}
.lsa_c00303{letter-spacing:0.044800pt;}
.ls3_c00303{letter-spacing:0.051200pt;}
.lsc_c00303{letter-spacing:0.057600pt;}
.lsb_c00303{letter-spacing:0.059648pt;}
.ls6_c00303{letter-spacing:0.064000pt;}
.lsd_c00303{letter-spacing:0.070400pt;}
.ls8_c00303{letter-spacing:0.076800pt;}
.ls1_c00303{letter-spacing:0.083200pt;}
.lse_c00303{letter-spacing:0.089600pt;}
.ls12_c00303{letter-spacing:0.170240pt;}
.ls14_c00303{letter-spacing:3.526400pt;}
.ws0_c00303{word-spacing:-16.025600pt;}
.ws2_c00303{word-spacing:-13.327936pt;}
.ws1_c00303{word-spacing:-8.646912pt;}
.ws4_c00303{word-spacing:0.000000pt;}
.ws3_c00303{word-spacing:0.122912pt;}
.ws6_c00303{word-spacing:0.124800pt;}
.ws5_c00303{word-spacing:3.788800pt;}
._9_c00303{margin-left:-3.929600pt;}
._3_c00303{margin-left:-2.355200pt;}
._1_c00303{margin-left:-1.305600pt;}
._2_c00303{width:0.896000pt;}
._0_c00303{width:1.945600pt;}
._8_c00303{width:3.699200pt;}
._a_c00303{width:4.659200pt;}
._6_c00303{width:12.563200pt;}
._7_c00303{width:13.580800pt;}
._b_c00303{width:15.020800pt;}
._4_c00303{width:21.120000pt;}
._5_c00303{width:25.273600pt;}
.fs5_c00303{font-size:34.560000pt;}
.fs2_c00303{font-size:42.560000pt;}
.fs4_c00303{font-size:48.000000pt;}
.fs0_c00303{font-size:53.440000pt;}
.fs1_c00303{font-size:64.000000pt;}
.fs3_c00303{font-size:74.560000pt;}
.y0_c00303{bottom:0.000000pt;}
.y2b_c00303{bottom:2.880400pt;}
.y6_c00303{bottom:50.987067pt;}
.y5_c00303{bottom:69.387067pt;}
.y29_c00303{bottom:97.707243pt;}
.y28_c00303{bottom:112.987075pt;}
.y27_c00303{bottom:132.987067pt;}
.y26_c00303{bottom:144.267067pt;}
.y25_c00303{bottom:192.427467pt;}
.y24_c00303{bottom:226.507467pt;}
.y23_c00303{bottom:260.507067pt;}
.y22_c00303{bottom:284.267067pt;}
.y21_c00303{bottom:311.867067pt;}
.y20_c00303{bottom:339.467067pt;}
.y1f_c00303{bottom:367.067067pt;}
.y1e_c00303{bottom:394.667067pt;}
.y1d_c00303{bottom:422.267067pt;}
.y1c_c00303{bottom:449.867067pt;}
.y1b_c00303{bottom:477.467067pt;}
.y1a_c00303{bottom:505.067067pt;}
.y19_c00303{bottom:532.667067pt;}
.y18_c00303{bottom:563.067067pt;}
.y17_c00303{bottom:583.625803pt;}
.y16_c00303{bottom:609.466435pt;}
.y15_c00303{bottom:635.307067pt;}
.y14_c00303{bottom:668.267067pt;}
.y13_c00303{bottom:695.867067pt;}
.y12_c00303{bottom:723.467067pt;}
.y11_c00303{bottom:751.067067pt;}
.y10_c00303{bottom:778.667067pt;}
.yf_c00303{bottom:806.267067pt;}
.ye_c00303{bottom:833.867067pt;}
.y2a_c00303{bottom:838.586667pt;}
.y2c_c00303{bottom:841.467067pt;}
.yd_c00303{bottom:861.467067pt;}
.yc_c00303{bottom:889.067067pt;}
.ya_c00303{bottom:916.587067pt;}
.yb_c00303{bottom:922.587067pt;}
.y9_c00303{bottom:944.187067pt;}
.y8_c00303{bottom:971.787067pt;}
.y7_c00303{bottom:999.387067pt;}
.y4_c00303{bottom:1017.227251pt;}
.y3_c00303{bottom:1032.587243pt;}
.y2_c00303{bottom:1047.867075pt;}
.y1_c00303{bottom:1063.227067pt;}
.h9_c00303{height:13.600000pt;}
.h7_c00303{height:30.324375pt;}
.h3_c00303{height:37.343906pt;}
.h6_c00303{height:42.234375pt;}
.h8_c00303{height:46.890469pt;}
.h1_c00303{height:47.020937pt;}
.h2_c00303{height:56.156250pt;}
.h5_c00303{height:56.312500pt;}
.h4_c00303{height:66.222969pt;}
.h0_c00303{height:1122.666667pt;}
.w2_c00303{width:267.200000pt;}
.w1_c00303{width:793.333333pt;}
.w0_c00303{width:793.626667pt;}
.x0_c00303{left:0.000000pt;}
.x4_c00303{left:113.439399pt;}
.x8_c00303{left:117.440000pt;}
.x5_c00303{left:305.360000pt;}
.x6_c00303{left:316.080000pt;}
.x7_c00303{left:441.438391pt;}
.x1_c00303{left:577.440000pt;}
.x3_c00303{left:656.400000pt;}
.x2_c00303{left:680.399138pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fbbe8faeda82c0c4270d91d.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.095703;font-style:normal;font-weight:normal;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_339cd9ca308f6785cd77e0ab.woff2')format("woff");}.ff2_c00304{font-family:ff2_c00304;line-height:1.093262;font-style: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;}
.lsa_c00304{letter-spacing:-0.102204px;}
.lsd_c00304{letter-spacing:-0.027000px;}
.lsc_c00304{letter-spacing:-0.010800px;}
.lsb_c00304{letter-spacing:0.000000px;}
.ls2_c00304{letter-spacing:0.007200px;}
.ls0_c00304{letter-spacing:0.010800px;}
.ls1_c00304{letter-spacing:0.014400px;}
.ls7_c00304{letter-spacing:0.021600px;}
.ls4_c00304{letter-spacing:0.028800px;}
.ls6_c00304{letter-spacing:0.043200px;}
.ls8_c00304{letter-spacing:0.050400px;}
.ls3_c00304{letter-spacing:0.057600px;}
.ls9_c00304{letter-spacing:0.064800px;}
.ls5_c00304{letter-spacing:0.072000px;}
.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:-18.021600px;}
.ws2_c00304{word-spacing:0.000000px;}
.ws6_c00304{word-spacing:0.167400px;}
.ws1_c00304{word-spacing:0.192384px;}
.ws3_c00304{word-spacing:2.338200px;}
.ws4_c00304{word-spacing:2.349000px;}
.ws5_c00304{word-spacing:2.365200px;}
._7_c00304{margin-left:-4.698000px;}
._3_c00304{margin-left:-3.470400px;}
._2_c00304{margin-left:-2.404800px;}
._1_c00304{margin-left:-1.328400px;}
._0_c00304{width:1.034064px;}
._4_c00304{width:3.420000px;}
._5_c00304{width:4.492800px;}
._6_c00304{width:5.709600px;}
.fc2_c00304{color:rgb(68,84,106);}
.fc1_c00304{color:rgb(0,0,0);}
.fc0_c00304{color:rgb(32,31,30);}
.fs2_c00304{font-size:54.000000px;}
.fs0_c00304{font-size:60.120000px;}
.fs1_c00304{font-size:72.000000px;}
.y0_c00304{bottom:0.000000px;}
.y5_c00304{bottom:57.360450px;}
.y4_c00304{bottom:78.060450px;}
.y21_c00304{bottom:111.090450px;}
.y20_c00304{bottom:142.140450px;}
.y1f_c00304{bottom:173.190450px;}
.y1e_c00304{bottom:204.240450px;}
.y1d_c00304{bottom:235.290450px;}
.y1c_c00304{bottom:266.250450px;}
.y1b_c00304{bottom:297.300450px;}
.y1a_c00304{bottom:328.350450px;}
.y19_c00304{bottom:359.400450px;}
.y18_c00304{bottom:390.450450px;}
.y17_c00304{bottom:421.500450px;}
.y16_c00304{bottom:452.550450px;}
.y15_c00304{bottom:483.600450px;}
.y14_c00304{bottom:514.650450px;}
.y13_c00304{bottom:545.700450px;}
.y12_c00304{bottom:576.750450px;}
.y11_c00304{bottom:607.800450px;}
.y10_c00304{bottom:638.850450px;}
.yf_c00304{bottom:669.900450px;}
.ye_c00304{bottom:700.950450px;}
.yd_c00304{bottom:732.000450px;}
.yc_c00304{bottom:763.050450px;}
.yb_c00304{bottom:794.100450px;}
.ya_c00304{bottom:825.150450px;}
.y9_c00304{bottom:856.200450px;}
.y8_c00304{bottom:883.200450px;}
.y7_c00304{bottom:1092.450000px;}
.y6_c00304{bottom:1115.760450px;}
.y3_c00304{bottom:1132.140450px;}
.y2_c00304{bottom:1165.441023px;}
.y1_c00304{bottom:1196.040600px;}
.h3_c00304{height:47.513672px;}
.h1_c00304{height:52.898555px;}
.h2_c00304{height:63.175781px;}
.h5_c00304{height:63.351562px;}
.h4_c00304{height:63.353363px;}
.h0_c00304{height:1263.000000px;}
.w1_c00304{width:892.500000px;}
.w0_c00304{width:892.830000px;}
.x0_c00304{left:0.000000px;}
.x1_c00304{left:127.620000px;}
.x2_c00304{left:738.450000px;}
.x3_c00304{left:739.530000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.lsa_c00304{letter-spacing:-0.090848pt;}
.lsd_c00304{letter-spacing:-0.024000pt;}
.lsc_c00304{letter-spacing:-0.009600pt;}
.lsb_c00304{letter-spacing:0.000000pt;}
.ls2_c00304{letter-spacing:0.006400pt;}
.ls0_c00304{letter-spacing:0.009600pt;}
.ls1_c00304{letter-spacing:0.012800pt;}
.ls7_c00304{letter-spacing:0.019200pt;}
.ls4_c00304{letter-spacing:0.025600pt;}
.ls6_c00304{letter-spacing:0.038400pt;}
.ls8_c00304{letter-spacing:0.044800pt;}
.ls3_c00304{letter-spacing:0.051200pt;}
.ls9_c00304{letter-spacing:0.057600pt;}
.ls5_c00304{letter-spacing:0.064000pt;}
.ws0_c00304{word-spacing:-16.019200pt;}
.ws2_c00304{word-spacing:0.000000pt;}
.ws6_c00304{word-spacing:0.148800pt;}
.ws1_c00304{word-spacing:0.171008pt;}
.ws3_c00304{word-spacing:2.078400pt;}
.ws4_c00304{word-spacing:2.088000pt;}
.ws5_c00304{word-spacing:2.102400pt;}
._7_c00304{margin-left:-4.176000pt;}
._3_c00304{margin-left:-3.084800pt;}
._2_c00304{margin-left:-2.137600pt;}
._1_c00304{margin-left:-1.180800pt;}
._0_c00304{width:0.919168pt;}
._4_c00304{width:3.040000pt;}
._5_c00304{width:3.993600pt;}
._6_c00304{width:5.075200pt;}
.fs2_c00304{font-size:48.000000pt;}
.fs0_c00304{font-size:53.440000pt;}
.fs1_c00304{font-size:64.000000pt;}
.y0_c00304{bottom:0.000000pt;}
.y5_c00304{bottom:50.987067pt;}
.y4_c00304{bottom:69.387067pt;}
.y21_c00304{bottom:98.747067pt;}
.y20_c00304{bottom:126.347067pt;}
.y1f_c00304{bottom:153.947067pt;}
.y1e_c00304{bottom:181.547067pt;}
.y1d_c00304{bottom:209.147067pt;}
.y1c_c00304{bottom:236.667067pt;}
.y1b_c00304{bottom:264.267067pt;}
.y1a_c00304{bottom:291.867067pt;}
.y19_c00304{bottom:319.467067pt;}
.y18_c00304{bottom:347.067067pt;}
.y17_c00304{bottom:374.667067pt;}
.y16_c00304{bottom:402.267067pt;}
.y15_c00304{bottom:429.867067pt;}
.y14_c00304{bottom:457.467067pt;}
.y13_c00304{bottom:485.067067pt;}
.y12_c00304{bottom:512.667067pt;}
.y11_c00304{bottom:540.267067pt;}
.y10_c00304{bottom:567.867067pt;}
.yf_c00304{bottom:595.467067pt;}
.ye_c00304{bottom:623.067067pt;}
.yd_c00304{bottom:650.667067pt;}
.yc_c00304{bottom:678.267067pt;}
.yb_c00304{bottom:705.867067pt;}
.ya_c00304{bottom:733.467067pt;}
.y9_c00304{bottom:761.067067pt;}
.y8_c00304{bottom:785.067067pt;}
.y7_c00304{bottom:971.066667pt;}
.y6_c00304{bottom:991.787067pt;}
.y3_c00304{bottom:1006.347067pt;}
.y2_c00304{bottom:1035.947576pt;}
.y1_c00304{bottom:1063.147200pt;}
.h3_c00304{height:42.234375pt;}
.h1_c00304{height:47.020937pt;}
.h2_c00304{height:56.156250pt;}
.h5_c00304{height:56.312500pt;}
.h4_c00304{height:56.314100pt;}
.h0_c00304{height:1122.666667pt;}
.w1_c00304{width:793.333333pt;}
.w0_c00304{width:793.626667pt;}
.x0_c00304{left:0.000000pt;}
.x1_c00304{left:113.440000pt;}
.x2_c00304{left:656.400000pt;}
.x3_c00304{left:657.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_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_1a1e7a29a6785739e1e42ce8.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.095703;font-style:normal;font-weight:normal;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_ea921a1cb5a8297b13e244db.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.093262;font-style:normal;font-weight:normal;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_0fcf64c339fcc02379dc78a3.woff2')format("woff");}.ff3_c00305{font-family:ff3_c00305;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00305;src:url('chunks/assets/font_0873a8f5327279ea603d7538.woff2')format("woff");}.ff4_c00305{font-family:ff4_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:ff5_c00305;src:url('chunks/assets/font_45c70eb9a1745537906d8376.woff2')format("woff");}.ff5_c00305{font-family:ff5_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;}
.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;}
.v2_c00305{vertical-align:5.760000px;}
.v1_c00305{vertical-align:6.840000px;}
.ls15_c00305{letter-spacing:-0.302400px;}
.ls1b_c00305{letter-spacing:-0.151200px;}
.ls21_c00305{letter-spacing:-0.135000px;}
.ls19_c00305{letter-spacing:-0.124200px;}
.ls22_c00305{letter-spacing:-0.108000px;}
.ls1e_c00305{letter-spacing:-0.091800px;}
.ls27_c00305{letter-spacing:-0.086400px;}
.ls24_c00305{letter-spacing:-0.081000px;}
.ls25_c00305{letter-spacing:-0.070200px;}
.ls18_c00305{letter-spacing:-0.066132px;}
.ls16_c00305{letter-spacing:-0.060120px;}
.ls26_c00305{letter-spacing:-0.059400px;}
.ls13_c00305{letter-spacing:-0.048096px;}
.ls20_c00305{letter-spacing:-0.043200px;}
.ls28_c00305{letter-spacing:-0.037800px;}
.ls17_c00305{letter-spacing:-0.024048px;}
.ls1d_c00305{letter-spacing:-0.021600px;}
.ls2a_c00305{letter-spacing:-0.014400px;}
.ls29_c00305{letter-spacing:-0.007200px;}
.ls14_c00305{letter-spacing:0.000000px;}
.lsb_c00305{letter-spacing:0.007200px;}
.ls2_c00305{letter-spacing:0.010800px;}
.lse_c00305{letter-spacing:0.014400px;}
.ls11_c00305{letter-spacing:0.021600px;}
.ls1_c00305{letter-spacing:0.025164px;}
.lsa_c00305{letter-spacing:0.028800px;}
.lsc_c00305{letter-spacing:0.036000px;}
.lsd_c00305{letter-spacing:0.043200px;}
.ls12_c00305{letter-spacing:0.050400px;}
.lsf_c00305{letter-spacing:0.057600px;}
.ls0_c00305{letter-spacing:0.058716px;}
.ls10_c00305{letter-spacing:0.072000px;}
.ls5_c00305{letter-spacing:0.075600px;}
.ls4_c00305{letter-spacing:0.091800px;}
.ls7_c00305{letter-spacing:0.102600px;}
.ls6_c00305{letter-spacing:0.108000px;}
.ls23_c00305{letter-spacing:0.205200px;}
.ls1c_c00305{letter-spacing:0.437400px;}
.ls1f_c00305{letter-spacing:0.496800px;}
.ls8_c00305{letter-spacing:82.080000px;}
.ls3_c00305{letter-spacing:104.130684px;}
.ls9_c00305{letter-spacing:109.080000px;}
.ls1a_c00305{letter-spacing:175.435200px;}
.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:-16.647228px;}
.ws2_c00305{word-spacing:0.000000px;}
.ws1_c00305{word-spacing:0.138276px;}
.ws3_c00305{word-spacing:3.967200px;}
._8_c00305{margin-left:-175.316400px;}
._23_c00305{margin-left:-3.497400px;}
._22_c00305{margin-left:-2.469600px;}
._0_c00305{margin-left:-1.188000px;}
._7_c00305{width:1.215000px;}
._1f_c00305{width:2.966400px;}
._1e_c00305{width:4.291200px;}
._24_c00305{width:13.125600px;}
._21_c00305{width:14.565600px;}
._20_c00305{width:15.782400px;}
._1c_c00305{width:29.619000px;}
._13_c00305{width:95.436000px;}
._d_c00305{width:104.535000px;}
._17_c00305{width:129.283200px;}
._c_c00305{width:131.173200px;}
._5_c00305{width:134.748000px;}
._16_c00305{width:151.027200px;}
._1_c00305{width:194.842800px;}
._f_c00305{width:218.052000px;}
._3_c00305{width:230.144400px;}
._14_c00305{width:233.206200px;}
._4_c00305{width:243.795600px;}
._10_c00305{width:250.272000px;}
._2_c00305{width:266.265000px;}
._9_c00305{width:270.086400px;}
._11_c00305{width:275.040000px;}
._b_c00305{width:277.405200px;}
._12_c00305{width:297.342000px;}
._15_c00305{width:306.781200px;}
._6_c00305{width:314.330400px;}
._18_c00305{width:335.507400px;}
._1a_c00305{width:393.876000px;}
._a_c00305{width:399.002400px;}
._e_c00305{width:436.381200px;}
._19_c00305{width:447.692400px;}
._1b_c00305{width:531.646200px;}
._1d_c00305{width:605.221200px;}
.fc3_c00305{color:transparent;}
.fc2_c00305{color:rgb(38,74,96);}
.fc1_c00305{color:rgb(1,2,5);}
.fc0_c00305{color:rgb(0,0,0);}
.fs4_c00305{font-size:2.880000px;}
.fs3_c00305{font-size:54.000000px;}
.fs0_c00305{font-size:60.120000px;}
.fs1_c00305{font-size:72.000000px;}
.fs2_c00305{font-size:83.880000px;}
.y0_c00305{bottom:0.000000px;}
.y6_c00305{bottom:57.360450px;}
.y5_c00305{bottom:78.060450px;}
.y38_c00305{bottom:123.960450px;}
.y37_c00305{bottom:155.010450px;}
.y36_c00305{bottom:186.060450px;}
.y35_c00305{bottom:217.110450px;}
.y34_c00305{bottom:248.160450px;}
.y33_c00305{bottom:279.210450px;}
.y32_c00305{bottom:310.260450px;}
.y31_c00305{bottom:341.310450px;}
.y30_c00305{bottom:372.270450px;}
.y2f_c00305{bottom:403.320450px;}
.y2e_c00305{bottom:434.370450px;}
.y2d_c00305{bottom:465.420450px;}
.y2c_c00305{bottom:496.470450px;}
.y2b_c00305{bottom:537.420450px;}
.y2a_c00305{bottom:561.090450px;}
.y29_c00305{bottom:584.400450px;}
.y1b_c00305{bottom:600.600450px;}
.y28_c00305{bottom:611.490450px;}
.y22_c00305{bottom:611.760450px;}
.y21_c00305{bottom:635.430450px;}
.y27_c00305{bottom:640.020450px;}
.y20_c00305{bottom:659.100450px;}
.y26_c00305{bottom:668.460450px;}
.y1f_c00305{bottom:682.770450px;}
.y25_c00305{bottom:696.990450px;}
.y1e_c00305{bottom:706.440450px;}
.y24_c00305{bottom:722.550450px;}
.y1d_c00305{bottom:730.020450px;}
.y23_c00305{bottom:753.780450px;}
.y1c_c00305{bottom:754.860450px;}
.y1a_c00305{bottom:780.240450px;}
.y19_c00305{bottom:855.210450px;}
.y18_c00305{bottom:878.880450px;}
.y17_c00305{bottom:902.550450px;}
.y10_c00305{bottom:905.160450px;}
.y16_c00305{bottom:926.220450px;}
.yf_c00305{bottom:928.740450px;}
.y15_c00305{bottom:949.890450px;}
.ye_c00305{bottom:952.410450px;}
.y14_c00305{bottom:973.560450px;}
.yd_c00305{bottom:976.080450px;}
.y12_c00305{bottom:998.310450px;}
.yc_c00305{bottom:999.750450px;}
.y11_c00305{bottom:1024.230450px;}
.yb_c00305{bottom:1024.320450px;}
.y13_c00305{bottom:1025.670450px;}
.ya_c00305{bottom:1057.260450px;}
.y9_c00305{bottom:1068.240450px;}
.y8_c00305{bottom:1098.210450px;}
.y7_c00305{bottom:1121.340450px;}
.y4_c00305{bottom:1144.380657px;}
.y3_c00305{bottom:1161.660648px;}
.y2_c00305{bottom:1178.850459px;}
.y1_c00305{bottom:1196.130450px;}
.h9_c00305{height:2.527031px;}
.h5_c00305{height:2.557969px;}
.h4_c00305{height:47.381836px;}
.h8_c00305{height:48.410156px;}
.h1_c00305{height:52.898555px;}
.h6_c00305{height:54.221836px;}
.h7_c00305{height:54.278262px;}
.h2_c00305{height:63.175781px;}
.ha_c00305{height:63.351562px;}
.h3_c00305{height:74.500840px;}
.h0_c00305{height:1263.000000px;}
.w1_c00305{width:892.500000px;}
.w0_c00305{width:892.830000px;}
.x0_c00305{left:0.000000px;}
.x4_c00305{left:127.620000px;}
.x5_c00305{left:135.630000px;}
.x6_c00305{left:143.730000px;}
.xc_c00305{left:148.230000px;}
.x7_c00305{left:195.840000px;}
.xd_c00305{left:206.460000px;}
.x8_c00305{left:444.060000px;}
.xa_c00305{left:448.560000px;}
.xe_c00305{left:485.550000px;}
.xb_c00305{left:496.170000px;}
.x9_c00305{left:639.180000px;}
.x1_c00305{left:649.620000px;}
.xf_c00305{left:670.770000px;}
.x3_c00305{left:738.450000px;}
.x2_c00305{left:765.450198px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.v2_c00305{vertical-align:5.120000pt;}
.v1_c00305{vertical-align:6.080000pt;}
.ls15_c00305{letter-spacing:-0.268800pt;}
.ls1b_c00305{letter-spacing:-0.134400pt;}
.ls21_c00305{letter-spacing:-0.120000pt;}
.ls19_c00305{letter-spacing:-0.110400pt;}
.ls22_c00305{letter-spacing:-0.096000pt;}
.ls1e_c00305{letter-spacing:-0.081600pt;}
.ls27_c00305{letter-spacing:-0.076800pt;}
.ls24_c00305{letter-spacing:-0.072000pt;}
.ls25_c00305{letter-spacing:-0.062400pt;}
.ls18_c00305{letter-spacing:-0.058784pt;}
.ls16_c00305{letter-spacing:-0.053440pt;}
.ls26_c00305{letter-spacing:-0.052800pt;}
.ls13_c00305{letter-spacing:-0.042752pt;}
.ls20_c00305{letter-spacing:-0.038400pt;}
.ls28_c00305{letter-spacing:-0.033600pt;}
.ls17_c00305{letter-spacing:-0.021376pt;}
.ls1d_c00305{letter-spacing:-0.019200pt;}
.ls2a_c00305{letter-spacing:-0.012800pt;}
.ls29_c00305{letter-spacing:-0.006400pt;}
.ls14_c00305{letter-spacing:0.000000pt;}
.lsb_c00305{letter-spacing:0.006400pt;}
.ls2_c00305{letter-spacing:0.009600pt;}
.lse_c00305{letter-spacing:0.012800pt;}
.ls11_c00305{letter-spacing:0.019200pt;}
.ls1_c00305{letter-spacing:0.022368pt;}
.lsa_c00305{letter-spacing:0.025600pt;}
.lsc_c00305{letter-spacing:0.032000pt;}
.lsd_c00305{letter-spacing:0.038400pt;}
.ls12_c00305{letter-spacing:0.044800pt;}
.lsf_c00305{letter-spacing:0.051200pt;}
.ls0_c00305{letter-spacing:0.052192pt;}
.ls10_c00305{letter-spacing:0.064000pt;}
.ls5_c00305{letter-spacing:0.067200pt;}
.ls4_c00305{letter-spacing:0.081600pt;}
.ls7_c00305{letter-spacing:0.091200pt;}
.ls6_c00305{letter-spacing:0.096000pt;}
.ls23_c00305{letter-spacing:0.182400pt;}
.ls1c_c00305{letter-spacing:0.388800pt;}
.ls1f_c00305{letter-spacing:0.441600pt;}
.ls8_c00305{letter-spacing:72.960000pt;}
.ls3_c00305{letter-spacing:92.560608pt;}
.ls9_c00305{letter-spacing:96.960000pt;}
.ls1a_c00305{letter-spacing:155.942400pt;}
.ws0_c00305{word-spacing:-14.797536pt;}
.ws2_c00305{word-spacing:0.000000pt;}
.ws1_c00305{word-spacing:0.122912pt;}
.ws3_c00305{word-spacing:3.526400pt;}
._8_c00305{margin-left:-155.836800pt;}
._23_c00305{margin-left:-3.108800pt;}
._22_c00305{margin-left:-2.195200pt;}
._0_c00305{margin-left:-1.056000pt;}
._7_c00305{width:1.080000pt;}
._1f_c00305{width:2.636800pt;}
._1e_c00305{width:3.814400pt;}
._24_c00305{width:11.667200pt;}
._21_c00305{width:12.947200pt;}
._20_c00305{width:14.028800pt;}
._1c_c00305{width:26.328000pt;}
._13_c00305{width:84.832000pt;}
._d_c00305{width:92.920000pt;}
._17_c00305{width:114.918400pt;}
._c_c00305{width:116.598400pt;}
._5_c00305{width:119.776000pt;}
._16_c00305{width:134.246400pt;}
._1_c00305{width:173.193600pt;}
._f_c00305{width:193.824000pt;}
._3_c00305{width:204.572800pt;}
._14_c00305{width:207.294400pt;}
._4_c00305{width:216.707200pt;}
._10_c00305{width:222.464000pt;}
._2_c00305{width:236.680000pt;}
._9_c00305{width:240.076800pt;}
._11_c00305{width:244.480000pt;}
._b_c00305{width:246.582400pt;}
._12_c00305{width:264.304000pt;}
._15_c00305{width:272.694400pt;}
._6_c00305{width:279.404800pt;}
._18_c00305{width:298.228800pt;}
._1a_c00305{width:350.112000pt;}
._a_c00305{width:354.668800pt;}
._e_c00305{width:387.894400pt;}
._19_c00305{width:397.948800pt;}
._1b_c00305{width:472.574400pt;}
._1d_c00305{width:537.974400pt;}
.fs4_c00305{font-size:2.560000pt;}
.fs3_c00305{font-size:48.000000pt;}
.fs0_c00305{font-size:53.440000pt;}
.fs1_c00305{font-size:64.000000pt;}
.fs2_c00305{font-size:74.560000pt;}
.y0_c00305{bottom:0.000000pt;}
.y6_c00305{bottom:50.987067pt;}
.y5_c00305{bottom:69.387067pt;}
.y38_c00305{bottom:110.187067pt;}
.y37_c00305{bottom:137.787067pt;}
.y36_c00305{bottom:165.387067pt;}
.y35_c00305{bottom:192.987067pt;}
.y34_c00305{bottom:220.587067pt;}
.y33_c00305{bottom:248.187067pt;}
.y32_c00305{bottom:275.787067pt;}
.y31_c00305{bottom:303.387067pt;}
.y30_c00305{bottom:330.907067pt;}
.y2f_c00305{bottom:358.507067pt;}
.y2e_c00305{bottom:386.107067pt;}
.y2d_c00305{bottom:413.707067pt;}
.y2c_c00305{bottom:441.307067pt;}
.y2b_c00305{bottom:477.707067pt;}
.y2a_c00305{bottom:498.747067pt;}
.y29_c00305{bottom:519.467067pt;}
.y1b_c00305{bottom:533.867067pt;}
.y28_c00305{bottom:543.547067pt;}
.y22_c00305{bottom:543.787067pt;}
.y21_c00305{bottom:564.827067pt;}
.y27_c00305{bottom:568.907067pt;}
.y20_c00305{bottom:585.867067pt;}
.y26_c00305{bottom:594.187067pt;}
.y1f_c00305{bottom:606.907067pt;}
.y25_c00305{bottom:619.547067pt;}
.y1e_c00305{bottom:627.947067pt;}
.y24_c00305{bottom:642.267067pt;}
.y1d_c00305{bottom:648.907067pt;}
.y23_c00305{bottom:670.027067pt;}
.y1c_c00305{bottom:670.987067pt;}
.y1a_c00305{bottom:693.547067pt;}
.y19_c00305{bottom:760.187067pt;}
.y18_c00305{bottom:781.227067pt;}
.y17_c00305{bottom:802.267067pt;}
.y10_c00305{bottom:804.587067pt;}
.y16_c00305{bottom:823.307067pt;}
.yf_c00305{bottom:825.547067pt;}
.y15_c00305{bottom:844.347067pt;}
.ye_c00305{bottom:846.587067pt;}
.y14_c00305{bottom:865.387067pt;}
.yd_c00305{bottom:867.627067pt;}
.y12_c00305{bottom:887.387067pt;}
.yc_c00305{bottom:888.667067pt;}
.y11_c00305{bottom:910.427067pt;}
.yb_c00305{bottom:910.507067pt;}
.y13_c00305{bottom:911.707067pt;}
.ya_c00305{bottom:939.787067pt;}
.y9_c00305{bottom:949.547067pt;}
.y8_c00305{bottom:976.187067pt;}
.y7_c00305{bottom:996.747067pt;}
.y4_c00305{bottom:1017.227251pt;}
.y3_c00305{bottom:1032.587243pt;}
.y2_c00305{bottom:1047.867075pt;}
.y1_c00305{bottom:1063.227067pt;}
.h9_c00305{height:2.246250pt;}
.h5_c00305{height:2.273750pt;}
.h4_c00305{height:42.117188pt;}
.h8_c00305{height:43.031250pt;}
.h1_c00305{height:47.020937pt;}
.h6_c00305{height:48.197187pt;}
.h7_c00305{height:48.247344pt;}
.h2_c00305{height:56.156250pt;}
.ha_c00305{height:56.312500pt;}
.h3_c00305{height:66.222969pt;}
.h0_c00305{height:1122.666667pt;}
.w1_c00305{width:793.333333pt;}
.w0_c00305{width:793.626667pt;}
.x0_c00305{left:0.000000pt;}
.x4_c00305{left:113.440000pt;}
.x5_c00305{left:120.560000pt;}
.x6_c00305{left:127.760000pt;}
.xc_c00305{left:131.760000pt;}
.x7_c00305{left:174.080000pt;}
.xd_c00305{left:183.520000pt;}
.x8_c00305{left:394.720000pt;}
.xa_c00305{left:398.720000pt;}
.xe_c00305{left:431.600000pt;}
.xb_c00305{left:441.040000pt;}
.x9_c00305{left:568.160000pt;}
.x1_c00305{left:577.440000pt;}
.xf_c00305{left:596.240000pt;}
.x3_c00305{left:656.400000pt;}
.x2_c00305{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fb40ea9e44a4afcce4181d1.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.095703;font-style:normal;font-weight:normal;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_cb767a792e28818b40495e84.woff2')format("woff");}.ff2_c00306{font-family:ff2_c00306;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00306{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls11_c00306{letter-spacing:-0.108000px;}
.lsf_c00306{letter-spacing:-0.102204px;}
.ls17_c00306{letter-spacing:-0.064800px;}
.ls19_c00306{letter-spacing:-0.050400px;}
.ls1a_c00306{letter-spacing:-0.043200px;}
.ls16_c00306{letter-spacing:-0.036000px;}
.ls12_c00306{letter-spacing:-0.028800px;}
.ls14_c00306{letter-spacing:-0.021600px;}
.ls15_c00306{letter-spacing:-0.014400px;}
.ls13_c00306{letter-spacing:-0.007200px;}
.ls10_c00306{letter-spacing:0.000000px;}
.ls8_c00306{letter-spacing:0.007200px;}
.ls5_c00306{letter-spacing:0.014400px;}
.ls2_c00306{letter-spacing:0.021600px;}
.ls6_c00306{letter-spacing:0.028800px;}
.ls9_c00306{letter-spacing:0.036000px;}
.ls4_c00306{letter-spacing:0.043200px;}
.ls3_c00306{letter-spacing:0.050400px;}
.ls0_c00306{letter-spacing:0.057600px;}
.lsc_c00306{letter-spacing:0.064800px;}
.lsa_c00306{letter-spacing:0.072000px;}
.ls7_c00306{letter-spacing:0.079200px;}
.ls1_c00306{letter-spacing:0.086400px;}
.lse_c00306{letter-spacing:0.100800px;}
.lsb_c00306{letter-spacing:0.136800px;}
.lsd_c00306{letter-spacing:3.600000px;}
.ls18_c00306{letter-spacing:5.400000px;}
.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:-18.079200px;}
.ws0_c00306{word-spacing:-17.892000px;}
.ws3_c00306{word-spacing:0.000000px;}
.ws2_c00306{word-spacing:0.192384px;}
.ws4_c00306{word-spacing:6.105600px;}
._a_c00306{margin-left:-6.228000px;}
._4_c00306{margin-left:-5.047200px;}
._3_c00306{margin-left:-3.981600px;}
._8_c00306{margin-left:-2.044800px;}
._2_c00306{margin-left:-1.036800px;}
._0_c00306{width:1.034064px;}
._1_c00306{width:2.822400px;}
._9_c00306{width:4.276800px;}
._6_c00306{width:5.731200px;}
._7_c00306{width:6.883200px;}
._5_c00306{width:8.942400px;}
.fc2_c00306{color:rgb(255,0,0);}
.fc1_c00306{color:rgb(0,0,0);}
.fc0_c00306{color:rgb(32,31,30);}
.fs0_c00306{font-size:60.120000px;}
.fs1_c00306{font-size:72.000000px;}
.y0_c00306{bottom:0.000000px;}
.y5_c00306{bottom:57.360450px;}
.y4_c00306{bottom:78.060450px;}
.y25_c00306{bottom:148.980450px;}
.y24_c00306{bottom:180.030450px;}
.y23_c00306{bottom:211.080450px;}
.y22_c00306{bottom:242.130450px;}
.y21_c00306{bottom:273.090450px;}
.y20_c00306{bottom:304.140450px;}
.y1f_c00306{bottom:335.190450px;}
.y1e_c00306{bottom:366.240450px;}
.y1d_c00306{bottom:397.290450px;}
.y1c_c00306{bottom:428.340450px;}
.y1b_c00306{bottom:459.390450px;}
.y1a_c00306{bottom:490.440450px;}
.y19_c00306{bottom:521.490450px;}
.y18_c00306{bottom:552.540450px;}
.y17_c00306{bottom:583.590450px;}
.y16_c00306{bottom:614.640450px;}
.y15_c00306{bottom:645.690450px;}
.y14_c00306{bottom:676.740450px;}
.y13_c00306{bottom:707.790450px;}
.y12_c00306{bottom:738.840450px;}
.y11_c00306{bottom:769.890450px;}
.y10_c00306{bottom:800.940450px;}
.yf_c00306{bottom:831.990450px;}
.ye_c00306{bottom:863.040450px;}
.yd_c00306{bottom:894.090450px;}
.yc_c00306{bottom:925.140450px;}
.yb_c00306{bottom:956.190450px;}
.ya_c00306{bottom:987.240450px;}
.y9_c00306{bottom:1018.290450px;}
.y8_c00306{bottom:1049.340450px;}
.y7_c00306{bottom:1080.390450px;}
.y6_c00306{bottom:1111.440450px;}
.y3_c00306{bottom:1132.140450px;}
.y2_c00306{bottom:1165.441023px;}
.y1_c00306{bottom:1196.040600px;}
.h1_c00306{height:52.898555px;}
.h2_c00306{height:63.175781px;}
.h3_c00306{height:63.351562px;}
.h0_c00306{height:1263.000000px;}
.w1_c00306{width:892.500000px;}
.w0_c00306{width:892.830000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:127.620000px;}
.x2_c00306{left:738.450000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls11_c00306{letter-spacing:-0.096000pt;}
.lsf_c00306{letter-spacing:-0.090848pt;}
.ls17_c00306{letter-spacing:-0.057600pt;}
.ls19_c00306{letter-spacing:-0.044800pt;}
.ls1a_c00306{letter-spacing:-0.038400pt;}
.ls16_c00306{letter-spacing:-0.032000pt;}
.ls12_c00306{letter-spacing:-0.025600pt;}
.ls14_c00306{letter-spacing:-0.019200pt;}
.ls15_c00306{letter-spacing:-0.012800pt;}
.ls13_c00306{letter-spacing:-0.006400pt;}
.ls10_c00306{letter-spacing:0.000000pt;}
.ls8_c00306{letter-spacing:0.006400pt;}
.ls5_c00306{letter-spacing:0.012800pt;}
.ls2_c00306{letter-spacing:0.019200pt;}
.ls6_c00306{letter-spacing:0.025600pt;}
.ls9_c00306{letter-spacing:0.032000pt;}
.ls4_c00306{letter-spacing:0.038400pt;}
.ls3_c00306{letter-spacing:0.044800pt;}
.ls0_c00306{letter-spacing:0.051200pt;}
.lsc_c00306{letter-spacing:0.057600pt;}
.lsa_c00306{letter-spacing:0.064000pt;}
.ls7_c00306{letter-spacing:0.070400pt;}
.ls1_c00306{letter-spacing:0.076800pt;}
.lse_c00306{letter-spacing:0.089600pt;}
.lsb_c00306{letter-spacing:0.121600pt;}
.lsd_c00306{letter-spacing:3.200000pt;}
.ls18_c00306{letter-spacing:4.800000pt;}
.ws1_c00306{word-spacing:-16.070400pt;}
.ws0_c00306{word-spacing:-15.904000pt;}
.ws3_c00306{word-spacing:0.000000pt;}
.ws2_c00306{word-spacing:0.171008pt;}
.ws4_c00306{word-spacing:5.427200pt;}
._a_c00306{margin-left:-5.536000pt;}
._4_c00306{margin-left:-4.486400pt;}
._3_c00306{margin-left:-3.539200pt;}
._8_c00306{margin-left:-1.817600pt;}
._2_c00306{margin-left:-0.921600pt;}
._0_c00306{width:0.919168pt;}
._1_c00306{width:2.508800pt;}
._9_c00306{width:3.801600pt;}
._6_c00306{width:5.094400pt;}
._7_c00306{width:6.118400pt;}
._5_c00306{width:7.948800pt;}
.fs0_c00306{font-size:53.440000pt;}
.fs1_c00306{font-size:64.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y5_c00306{bottom:50.987067pt;}
.y4_c00306{bottom:69.387067pt;}
.y25_c00306{bottom:132.427067pt;}
.y24_c00306{bottom:160.027067pt;}
.y23_c00306{bottom:187.627067pt;}
.y22_c00306{bottom:215.227067pt;}
.y21_c00306{bottom:242.747067pt;}
.y20_c00306{bottom:270.347067pt;}
.y1f_c00306{bottom:297.947067pt;}
.y1e_c00306{bottom:325.547067pt;}
.y1d_c00306{bottom:353.147067pt;}
.y1c_c00306{bottom:380.747067pt;}
.y1b_c00306{bottom:408.347067pt;}
.y1a_c00306{bottom:435.947067pt;}
.y19_c00306{bottom:463.547067pt;}
.y18_c00306{bottom:491.147067pt;}
.y17_c00306{bottom:518.747067pt;}
.y16_c00306{bottom:546.347067pt;}
.y15_c00306{bottom:573.947067pt;}
.y14_c00306{bottom:601.547067pt;}
.y13_c00306{bottom:629.147067pt;}
.y12_c00306{bottom:656.747067pt;}
.y11_c00306{bottom:684.347067pt;}
.y10_c00306{bottom:711.947067pt;}
.yf_c00306{bottom:739.547067pt;}
.ye_c00306{bottom:767.147067pt;}
.yd_c00306{bottom:794.747067pt;}
.yc_c00306{bottom:822.347067pt;}
.yb_c00306{bottom:849.947067pt;}
.ya_c00306{bottom:877.547067pt;}
.y9_c00306{bottom:905.147067pt;}
.y8_c00306{bottom:932.747067pt;}
.y7_c00306{bottom:960.347067pt;}
.y6_c00306{bottom:987.947067pt;}
.y3_c00306{bottom:1006.347067pt;}
.y2_c00306{bottom:1035.947576pt;}
.y1_c00306{bottom:1063.147200pt;}
.h1_c00306{height:47.020937pt;}
.h2_c00306{height:56.156250pt;}
.h3_c00306{height:56.312500pt;}
.h0_c00306{height:1122.666667pt;}
.w1_c00306{width:793.333333pt;}
.w0_c00306{width:793.626667pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:113.440000pt;}
.x2_c00306{left:656.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_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_f6057e5b006c0647a9a7d1cf.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.095703;font-style:normal;font-weight:normal;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_8f8ceb4fda7b4abd5edcc533.woff2')format("woff");}.ff2_c00307{font-family:ff2_c00307;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls10_c00307{letter-spacing:-0.122400px;}
.ls13_c00307{letter-spacing:-0.050400px;}
.lsc_c00307{letter-spacing:-0.048096px;}
.ls12_c00307{letter-spacing:-0.028800px;}
.lse_c00307{letter-spacing:-0.021600px;}
.ls15_c00307{letter-spacing:-0.014400px;}
.lsd_c00307{letter-spacing:0.000000px;}
.ls2_c00307{letter-spacing:0.007200px;}
.ls0_c00307{letter-spacing:0.014400px;}
.ls6_c00307{letter-spacing:0.021600px;}
.ls8_c00307{letter-spacing:0.028800px;}
.ls4_c00307{letter-spacing:0.036000px;}
.ls9_c00307{letter-spacing:0.043200px;}
.ls7_c00307{letter-spacing:0.050400px;}
.ls3_c00307{letter-spacing:0.057600px;}
.ls5_c00307{letter-spacing:0.064800px;}
.ls1_c00307{letter-spacing:0.072000px;}
.lsb_c00307{letter-spacing:0.079200px;}
.lsa_c00307{letter-spacing:0.115200px;}
.ls11_c00307{letter-spacing:3.600000px;}
.lsf_c00307{letter-spacing:9.720000px;}
.ls14_c00307{letter-spacing:10.080000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00307{word-spacing:-18.050400px;}
.ws2_c00307{word-spacing:-17.985600px;}
.ws0_c00307{word-spacing:-17.877600px;}
.ws7_c00307{word-spacing:-2.556000px;}
.ws4_c00307{word-spacing:0.000000px;}
.ws3_c00307{word-spacing:0.138276px;}
.ws5_c00307{word-spacing:1.375200px;}
.ws6_c00307{word-spacing:2.469600px;}
._b_c00307{margin-left:-11.196000px;}
._4_c00307{margin-left:-9.691200px;}
._9_c00307{margin-left:-4.298400px;}
._5_c00307{margin-left:-3.211200px;}
._0_c00307{margin-left:-1.778400px;}
._6_c00307{width:1.418400px;}
._7_c00307{width:2.556000px;}
._8_c00307{width:3.592800px;}
._a_c00307{width:5.731200px;}
._1_c00307{width:6.832800px;}
._2_c00307{width:8.215200px;}
._3_c00307{width:9.705600px;}
._c_c00307{width:11.145600px;}
._d_c00307{width:12.542400px;}
.fc0_c00307{color:rgb(0,0,0);}
.fs0_c00307{font-size:60.120000px;}
.fs1_c00307{font-size:72.000000px;}
.y0_c00307{bottom:0.000000px;}
.y6_c00307{bottom:57.360450px;}
.y5_c00307{bottom:78.060450px;}
.y26_c00307{bottom:161.850450px;}
.y25_c00307{bottom:192.900450px;}
.y24_c00307{bottom:223.950450px;}
.y23_c00307{bottom:255.000450px;}
.y22_c00307{bottom:286.050450px;}
.y21_c00307{bottom:317.100450px;}
.y20_c00307{bottom:348.150450px;}
.y1f_c00307{bottom:379.200450px;}
.y1e_c00307{bottom:410.250450px;}
.y1d_c00307{bottom:441.300450px;}
.y1c_c00307{bottom:472.350450px;}
.y1b_c00307{bottom:503.400450px;}
.y1a_c00307{bottom:534.450450px;}
.y19_c00307{bottom:565.500450px;}
.y18_c00307{bottom:596.550450px;}
.y17_c00307{bottom:627.600450px;}
.y16_c00307{bottom:658.650450px;}
.y15_c00307{bottom:689.700450px;}
.y14_c00307{bottom:720.750450px;}
.y13_c00307{bottom:751.800450px;}
.y12_c00307{bottom:782.850450px;}
.y11_c00307{bottom:813.900450px;}
.y10_c00307{bottom:844.950450px;}
.yf_c00307{bottom:876.000450px;}
.ye_c00307{bottom:907.050450px;}
.yd_c00307{bottom:938.100450px;}
.yc_c00307{bottom:969.150450px;}
.yb_c00307{bottom:1000.200450px;}
.ya_c00307{bottom:1031.160450px;}
.y9_c00307{bottom:1062.210450px;}
.y8_c00307{bottom:1093.260450px;}
.y7_c00307{bottom:1124.310450px;}
.y4_c00307{bottom:1144.380657px;}
.y3_c00307{bottom:1161.660648px;}
.y2_c00307{bottom:1178.850459px;}
.y1_c00307{bottom:1196.130450px;}
.h1_c00307{height:52.898555px;}
.h2_c00307{height:63.175781px;}
.h3_c00307{height:63.351562px;}
.h0_c00307{height:1263.000000px;}
.w1_c00307{width:892.500000px;}
.w0_c00307{width:892.830000px;}
.x0_c00307{left:0.000000px;}
.x4_c00307{left:127.620000px;}
.x1_c00307{left:649.620000px;}
.x3_c00307{left:738.450000px;}
.x2_c00307{left:765.450198px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls10_c00307{letter-spacing:-0.108800pt;}
.ls13_c00307{letter-spacing:-0.044800pt;}
.lsc_c00307{letter-spacing:-0.042752pt;}
.ls12_c00307{letter-spacing:-0.025600pt;}
.lse_c00307{letter-spacing:-0.019200pt;}
.ls15_c00307{letter-spacing:-0.012800pt;}
.lsd_c00307{letter-spacing:0.000000pt;}
.ls2_c00307{letter-spacing:0.006400pt;}
.ls0_c00307{letter-spacing:0.012800pt;}
.ls6_c00307{letter-spacing:0.019200pt;}
.ls8_c00307{letter-spacing:0.025600pt;}
.ls4_c00307{letter-spacing:0.032000pt;}
.ls9_c00307{letter-spacing:0.038400pt;}
.ls7_c00307{letter-spacing:0.044800pt;}
.ls3_c00307{letter-spacing:0.051200pt;}
.ls5_c00307{letter-spacing:0.057600pt;}
.ls1_c00307{letter-spacing:0.064000pt;}
.lsb_c00307{letter-spacing:0.070400pt;}
.lsa_c00307{letter-spacing:0.102400pt;}
.ls11_c00307{letter-spacing:3.200000pt;}
.lsf_c00307{letter-spacing:8.640000pt;}
.ls14_c00307{letter-spacing:8.960000pt;}
.ws1_c00307{word-spacing:-16.044800pt;}
.ws2_c00307{word-spacing:-15.987200pt;}
.ws0_c00307{word-spacing:-15.891200pt;}
.ws7_c00307{word-spacing:-2.272000pt;}
.ws4_c00307{word-spacing:0.000000pt;}
.ws3_c00307{word-spacing:0.122912pt;}
.ws5_c00307{word-spacing:1.222400pt;}
.ws6_c00307{word-spacing:2.195200pt;}
._b_c00307{margin-left:-9.952000pt;}
._4_c00307{margin-left:-8.614400pt;}
._9_c00307{margin-left:-3.820800pt;}
._5_c00307{margin-left:-2.854400pt;}
._0_c00307{margin-left:-1.580800pt;}
._6_c00307{width:1.260800pt;}
._7_c00307{width:2.272000pt;}
._8_c00307{width:3.193600pt;}
._a_c00307{width:5.094400pt;}
._1_c00307{width:6.073600pt;}
._2_c00307{width:7.302400pt;}
._3_c00307{width:8.627200pt;}
._c_c00307{width:9.907200pt;}
._d_c00307{width:11.148800pt;}
.fs0_c00307{font-size:53.440000pt;}
.fs1_c00307{font-size:64.000000pt;}
.y0_c00307{bottom:0.000000pt;}
.y6_c00307{bottom:50.987067pt;}
.y5_c00307{bottom:69.387067pt;}
.y26_c00307{bottom:143.867067pt;}
.y25_c00307{bottom:171.467067pt;}
.y24_c00307{bottom:199.067067pt;}
.y23_c00307{bottom:226.667067pt;}
.y22_c00307{bottom:254.267067pt;}
.y21_c00307{bottom:281.867067pt;}
.y20_c00307{bottom:309.467067pt;}
.y1f_c00307{bottom:337.067067pt;}
.y1e_c00307{bottom:364.667067pt;}
.y1d_c00307{bottom:392.267067pt;}
.y1c_c00307{bottom:419.867067pt;}
.y1b_c00307{bottom:447.467067pt;}
.y1a_c00307{bottom:475.067067pt;}
.y19_c00307{bottom:502.667067pt;}
.y18_c00307{bottom:530.267067pt;}
.y17_c00307{bottom:557.867067pt;}
.y16_c00307{bottom:585.467067pt;}
.y15_c00307{bottom:613.067067pt;}
.y14_c00307{bottom:640.667067pt;}
.y13_c00307{bottom:668.267067pt;}
.y12_c00307{bottom:695.867067pt;}
.y11_c00307{bottom:723.467067pt;}
.y10_c00307{bottom:751.067067pt;}
.yf_c00307{bottom:778.667067pt;}
.ye_c00307{bottom:806.267067pt;}
.yd_c00307{bottom:833.867067pt;}
.yc_c00307{bottom:861.467067pt;}
.yb_c00307{bottom:889.067067pt;}
.ya_c00307{bottom:916.587067pt;}
.y9_c00307{bottom:944.187067pt;}
.y8_c00307{bottom:971.787067pt;}
.y7_c00307{bottom:999.387067pt;}
.y4_c00307{bottom:1017.227251pt;}
.y3_c00307{bottom:1032.587243pt;}
.y2_c00307{bottom:1047.867075pt;}
.y1_c00307{bottom:1063.227067pt;}
.h1_c00307{height:47.020937pt;}
.h2_c00307{height:56.156250pt;}
.h3_c00307{height:56.312500pt;}
.h0_c00307{height:1122.666667pt;}
.w1_c00307{width:793.333333pt;}
.w0_c00307{width:793.626667pt;}
.x0_c00307{left:0.000000pt;}
.x4_c00307{left:113.440000pt;}
.x1_c00307{left:577.440000pt;}
.x3_c00307{left:656.400000pt;}
.x2_c00307{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad5074eb9e13115d02bdfcd1.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.095703;font-style:normal;font-weight:normal;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_600ab5879c7fd6af7757f6d5.woff2')format("woff");}.ff2_c00308{font-family:ff2_c00308;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00308{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.lse_c00308{letter-spacing:-0.102204px;}
.ls12_c00308{letter-spacing:-0.050400px;}
.ls14_c00308{letter-spacing:-0.043200px;}
.ls10_c00308{letter-spacing:-0.028800px;}
.ls16_c00308{letter-spacing:-0.021600px;}
.ls13_c00308{letter-spacing:-0.014400px;}
.ls11_c00308{letter-spacing:-0.007200px;}
.lsf_c00308{letter-spacing:0.000000px;}
.ls1_c00308{letter-spacing:0.007200px;}
.ls3_c00308{letter-spacing:0.014400px;}
.ls0_c00308{letter-spacing:0.021600px;}
.lsd_c00308{letter-spacing:0.027000px;}
.lsa_c00308{letter-spacing:0.028800px;}
.ls5_c00308{letter-spacing:0.036000px;}
.lsb_c00308{letter-spacing:0.043200px;}
.ls7_c00308{letter-spacing:0.050400px;}
.ls8_c00308{letter-spacing:0.057600px;}
.lsc_c00308{letter-spacing:0.064800px;}
.ls6_c00308{letter-spacing:0.072000px;}
.ls4_c00308{letter-spacing:0.079200px;}
.ls2_c00308{letter-spacing:0.086400px;}
.ls9_c00308{letter-spacing:0.093600px;}
.ls15_c00308{letter-spacing:2.160000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00308{word-spacing:-18.050400px;}
.ws1_c00308{word-spacing:-18.000000px;}
.ws6_c00308{word-spacing:-4.010400px;}
.ws3_c00308{word-spacing:0.000000px;}
.ws9_c00308{word-spacing:0.151200px;}
.ws2_c00308{word-spacing:0.192384px;}
.ws8_c00308{word-spacing:2.095200px;}
.ws7_c00308{word-spacing:2.102400px;}
.ws4_c00308{word-spacing:12.168000px;}
.ws5_c00308{word-spacing:16.920000px;}
._c_c00308{margin-left:-5.277600px;}
._b_c00308{margin-left:-4.017600px;}
._7_c00308{margin-left:-2.851200px;}
._2_c00308{margin-left:-1.260000px;}
._0_c00308{width:1.034064px;}
._5_c00308{width:2.296800px;}
._9_c00308{width:3.614400px;}
._8_c00308{width:4.644000px;}
._a_c00308{width:6.098400px;}
._d_c00308{width:8.222400px;}
._1_c00308{width:12.218400px;}
._6_c00308{width:13.802400px;}
._4_c00308{width:15.775200px;}
._3_c00308{width:16.884000px;}
.fc2_c00308{color:rgb(68,84,106);}
.fc1_c00308{color:rgb(0,0,0);}
.fc0_c00308{color:rgb(32,31,30);}
.fs2_c00308{font-size:54.000000px;}
.fs0_c00308{font-size:60.120000px;}
.fs1_c00308{font-size:72.000000px;}
.y0_c00308{bottom:0.000000px;}
.y23_c00308{bottom:3.240450px;}
.y5_c00308{bottom:57.360450px;}
.y4_c00308{bottom:78.060450px;}
.y21_c00308{bottom:125.490450px;}
.y20_c00308{bottom:156.540450px;}
.y1f_c00308{bottom:187.590450px;}
.y1e_c00308{bottom:218.640450px;}
.y1d_c00308{bottom:249.690450px;}
.y1c_c00308{bottom:280.650450px;}
.y1b_c00308{bottom:311.700450px;}
.y1a_c00308{bottom:342.750450px;}
.y19_c00308{bottom:373.800450px;}
.y18_c00308{bottom:404.850450px;}
.y17_c00308{bottom:435.900450px;}
.y16_c00308{bottom:466.950450px;}
.y15_c00308{bottom:498.000450px;}
.y14_c00308{bottom:529.050450px;}
.y13_c00308{bottom:560.100450px;}
.y22_c00308{bottom:711.570000px;}
.y24_c00308{bottom:714.810450px;}
.y12_c00308{bottom:738.840450px;}
.y11_c00308{bottom:769.890450px;}
.y10_c00308{bottom:800.940450px;}
.yf_c00308{bottom:831.990450px;}
.ye_c00308{bottom:863.040450px;}
.yd_c00308{bottom:894.090450px;}
.yc_c00308{bottom:925.140450px;}
.yb_c00308{bottom:956.190450px;}
.ya_c00308{bottom:987.240450px;}
.y9_c00308{bottom:1018.290450px;}
.y8_c00308{bottom:1049.340450px;}
.y7_c00308{bottom:1080.390450px;}
.y6_c00308{bottom:1111.440450px;}
.y3_c00308{bottom:1132.140450px;}
.y2_c00308{bottom:1165.441023px;}
.y1_c00308{bottom:1196.040600px;}
.h4_c00308{height:15.300000px;}
.h5_c00308{height:47.513672px;}
.h1_c00308{height:52.898555px;}
.h2_c00308{height:63.175781px;}
.h3_c00308{height:63.351562px;}
.h0_c00308{height:1263.000000px;}
.w2_c00308{width:55.170000px;}
.w1_c00308{width:892.500000px;}
.w0_c00308{width:892.830000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:127.620000px;}
.x4_c00308{left:132.120000px;}
.x3_c00308{left:135.630000px;}
.x2_c00308{left:738.450000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.lse_c00308{letter-spacing:-0.090848pt;}
.ls12_c00308{letter-spacing:-0.044800pt;}
.ls14_c00308{letter-spacing:-0.038400pt;}
.ls10_c00308{letter-spacing:-0.025600pt;}
.ls16_c00308{letter-spacing:-0.019200pt;}
.ls13_c00308{letter-spacing:-0.012800pt;}
.ls11_c00308{letter-spacing:-0.006400pt;}
.lsf_c00308{letter-spacing:0.000000pt;}
.ls1_c00308{letter-spacing:0.006400pt;}
.ls3_c00308{letter-spacing:0.012800pt;}
.ls0_c00308{letter-spacing:0.019200pt;}
.lsd_c00308{letter-spacing:0.024000pt;}
.lsa_c00308{letter-spacing:0.025600pt;}
.ls5_c00308{letter-spacing:0.032000pt;}
.lsb_c00308{letter-spacing:0.038400pt;}
.ls7_c00308{letter-spacing:0.044800pt;}
.ls8_c00308{letter-spacing:0.051200pt;}
.lsc_c00308{letter-spacing:0.057600pt;}
.ls6_c00308{letter-spacing:0.064000pt;}
.ls4_c00308{letter-spacing:0.070400pt;}
.ls2_c00308{letter-spacing:0.076800pt;}
.ls9_c00308{letter-spacing:0.083200pt;}
.ls15_c00308{letter-spacing:1.920000pt;}
.ws0_c00308{word-spacing:-16.044800pt;}
.ws1_c00308{word-spacing:-16.000000pt;}
.ws6_c00308{word-spacing:-3.564800pt;}
.ws3_c00308{word-spacing:0.000000pt;}
.ws9_c00308{word-spacing:0.134400pt;}
.ws2_c00308{word-spacing:0.171008pt;}
.ws8_c00308{word-spacing:1.862400pt;}
.ws7_c00308{word-spacing:1.868800pt;}
.ws4_c00308{word-spacing:10.816000pt;}
.ws5_c00308{word-spacing:15.040000pt;}
._c_c00308{margin-left:-4.691200pt;}
._b_c00308{margin-left:-3.571200pt;}
._7_c00308{margin-left:-2.534400pt;}
._2_c00308{margin-left:-1.120000pt;}
._0_c00308{width:0.919168pt;}
._5_c00308{width:2.041600pt;}
._9_c00308{width:3.212800pt;}
._8_c00308{width:4.128000pt;}
._a_c00308{width:5.420800pt;}
._d_c00308{width:7.308800pt;}
._1_c00308{width:10.860800pt;}
._6_c00308{width:12.268800pt;}
._4_c00308{width:14.022400pt;}
._3_c00308{width:15.008000pt;}
.fs2_c00308{font-size:48.000000pt;}
.fs0_c00308{font-size:53.440000pt;}
.fs1_c00308{font-size:64.000000pt;}
.y0_c00308{bottom:0.000000pt;}
.y23_c00308{bottom:2.880400pt;}
.y5_c00308{bottom:50.987067pt;}
.y4_c00308{bottom:69.387067pt;}
.y21_c00308{bottom:111.547067pt;}
.y20_c00308{bottom:139.147067pt;}
.y1f_c00308{bottom:166.747067pt;}
.y1e_c00308{bottom:194.347067pt;}
.y1d_c00308{bottom:221.947067pt;}
.y1c_c00308{bottom:249.467067pt;}
.y1b_c00308{bottom:277.067067pt;}
.y1a_c00308{bottom:304.667067pt;}
.y19_c00308{bottom:332.267067pt;}
.y18_c00308{bottom:359.867067pt;}
.y17_c00308{bottom:387.467067pt;}
.y16_c00308{bottom:415.067067pt;}
.y15_c00308{bottom:442.667067pt;}
.y14_c00308{bottom:470.267067pt;}
.y13_c00308{bottom:497.867067pt;}
.y22_c00308{bottom:632.506667pt;}
.y24_c00308{bottom:635.387067pt;}
.y12_c00308{bottom:656.747067pt;}
.y11_c00308{bottom:684.347067pt;}
.y10_c00308{bottom:711.947067pt;}
.yf_c00308{bottom:739.547067pt;}
.ye_c00308{bottom:767.147067pt;}
.yd_c00308{bottom:794.747067pt;}
.yc_c00308{bottom:822.347067pt;}
.yb_c00308{bottom:849.947067pt;}
.ya_c00308{bottom:877.547067pt;}
.y9_c00308{bottom:905.147067pt;}
.y8_c00308{bottom:932.747067pt;}
.y7_c00308{bottom:960.347067pt;}
.y6_c00308{bottom:987.947067pt;}
.y3_c00308{bottom:1006.347067pt;}
.y2_c00308{bottom:1035.947576pt;}
.y1_c00308{bottom:1063.147200pt;}
.h4_c00308{height:13.600000pt;}
.h5_c00308{height:42.234375pt;}
.h1_c00308{height:47.020937pt;}
.h2_c00308{height:56.156250pt;}
.h3_c00308{height:56.312500pt;}
.h0_c00308{height:1122.666667pt;}
.w2_c00308{width:49.040000pt;}
.w1_c00308{width:793.333333pt;}
.w0_c00308{width:793.626667pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:113.440000pt;}
.x4_c00308{left:117.440000pt;}
.x3_c00308{left:120.560000pt;}
.x2_c00308{left:656.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_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_a413e06e570b0038dbd76c7f.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.095703;font-style:normal;font-weight:normal;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_dc2a5965c3357ae100fbf356.woff2')format("woff");}.ff2_c00309{font-family:ff2_c00309;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00309;src:url('chunks/assets/font_c880fab959392cc0f8ff0048.woff2')format("woff");}.ff3_c00309{font-family:ff3_c00309;line-height:1.104004;font-style: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;}
.ls17_c00309{letter-spacing:-0.151200px;}
.ls14_c00309{letter-spacing:-0.129600px;}
.ls13_c00309{letter-spacing:-0.057600px;}
.lsf_c00309{letter-spacing:-0.048096px;}
.ls16_c00309{letter-spacing:-0.021600px;}
.ls12_c00309{letter-spacing:-0.014400px;}
.ls15_c00309{letter-spacing:-0.007200px;}
.ls10_c00309{letter-spacing:0.000000px;}
.ls7_c00309{letter-spacing:0.007200px;}
.ls8_c00309{letter-spacing:0.010800px;}
.ls6_c00309{letter-spacing:0.014400px;}
.ls9_c00309{letter-spacing:0.016200px;}
.lsd_c00309{letter-spacing:0.028800px;}
.ls4_c00309{letter-spacing:0.036000px;}
.ls3_c00309{letter-spacing:0.043200px;}
.ls1_c00309{letter-spacing:0.050400px;}
.ls0_c00309{letter-spacing:0.057600px;}
.lsa_c00309{letter-spacing:0.058716px;}
.ls5_c00309{letter-spacing:0.064800px;}
.lse_c00309{letter-spacing:0.072000px;}
.lsb_c00309{letter-spacing:0.093600px;}
.ls2_c00309{letter-spacing:0.100800px;}
.lsc_c00309{letter-spacing:0.115200px;}
.ls11_c00309{letter-spacing:742.320000px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00309{word-spacing:0.000000px;}
.ws0_c00309{word-spacing:0.138276px;}
.ws3_c00309{word-spacing:0.162000px;}
.ws2_c00309{word-spacing:0.167400px;}
.ws4_c00309{word-spacing:0.178200px;}
._5_c00309{margin-left:-746.280000px;}
._3_c00309{margin-left:-4.161600px;}
._1_c00309{margin-left:-2.980800px;}
._2_c00309{margin-left:-1.267200px;}
._0_c00309{width:1.324800px;}
._18_c00309{width:2.354400px;}
._4_c00309{width:3.549600px;}
._1c_c00309{width:5.155200px;}
._1b_c00309{width:11.779200px;}
._19_c00309{width:12.931200px;}
._1a_c00309{width:15.825600px;}
._9_c00309{width:80.352000px;}
._8_c00309{width:81.950400px;}
._a_c00309{width:86.716800px;}
._6_c00309{width:130.320000px;}
._15_c00309{width:160.416000px;}
._11_c00309{width:187.718400px;}
._c_c00309{width:214.934400px;}
._f_c00309{width:220.608000px;}
._17_c00309{width:238.665600px;}
._d_c00309{width:250.200000px;}
._13_c00309{width:256.651200px;}
._7_c00309{width:262.382400px;}
._b_c00309{width:273.960000px;}
._14_c00309{width:286.142400px;}
._10_c00309{width:299.318400px;}
._12_c00309{width:309.931200px;}
._e_c00309{width:323.726400px;}
._16_c00309{width:400.312800px;}
.fc1_c00309{color:rgb(68,84,106);}
.fc0_c00309{color:rgb(0,0,0);}
.fs2_c00309{font-size:54.000000px;}
.fs0_c00309{font-size:60.120000px;}
.fs1_c00309{font-size:72.000000px;}
.fs3_c00309{font-size:83.880000px;}
.y0_c00309{bottom:0.000000px;}
.y6_c00309{bottom:57.360450px;}
.y5_c00309{bottom:78.060450px;}
.y25_c00309{bottom:110.640450px;}
.y24_c00309{bottom:141.690450px;}
.y23_c00309{bottom:172.740450px;}
.y22_c00309{bottom:203.790450px;}
.y21_c00309{bottom:234.840450px;}
.y20_c00309{bottom:265.890450px;}
.y1f_c00309{bottom:296.940450px;}
.y1e_c00309{bottom:327.990450px;}
.y1d_c00309{bottom:359.040450px;}
.y1c_c00309{bottom:390.090450px;}
.y1b_c00309{bottom:421.050450px;}
.y1a_c00309{bottom:452.910450px;}
.y19_c00309{bottom:484.680600px;}
.y18_c00309{bottom:516.450600px;}
.y17_c00309{bottom:548.310450px;}
.y16_c00309{bottom:580.080450px;}
.y15_c00309{bottom:611.850450px;}
.y14_c00309{bottom:642.900450px;}
.y13_c00309{bottom:674.760450px;}
.y12_c00309{bottom:710.310450px;}
.y11_c00309{bottom:740.280450px;}
.y10_c00309{bottom:763.320450px;}
.yf_c00309{bottom:800.400450px;}
.ye_c00309{bottom:827.400450px;}
.yd_c00309{bottom:942.420450px;}
.yc_c00309{bottom:969.150450px;}
.yb_c00309{bottom:1000.200450px;}
.ya_c00309{bottom:1031.160450px;}
.y9_c00309{bottom:1062.210450px;}
.y8_c00309{bottom:1093.260450px;}
.y7_c00309{bottom:1124.310450px;}
.y4_c00309{bottom:1144.380657px;}
.y3_c00309{bottom:1161.660648px;}
.y2_c00309{bottom:1178.850459px;}
.y1_c00309{bottom:1196.130450px;}
.h3_c00309{height:47.513672px;}
.h1_c00309{height:52.898555px;}
.h2_c00309{height:63.175781px;}
.h5_c00309{height:63.351562px;}
.h4_c00309{height:74.500840px;}
.h0_c00309{height:1263.000000px;}
.w1_c00309{width:892.500000px;}
.w0_c00309{width:892.830000px;}
.x0_c00309{left:0.000000px;}
.x4_c00309{left:127.620000px;}
.x6_c00309{left:189.000000px;}
.x7_c00309{left:331.560000px;}
.x5_c00309{left:349.200000px;}
.x1_c00309{left:649.620000px;}
.x3_c00309{left:738.450000px;}
.x2_c00309{left:765.450198px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls17_c00309{letter-spacing:-0.134400pt;}
.ls14_c00309{letter-spacing:-0.115200pt;}
.ls13_c00309{letter-spacing:-0.051200pt;}
.lsf_c00309{letter-spacing:-0.042752pt;}
.ls16_c00309{letter-spacing:-0.019200pt;}
.ls12_c00309{letter-spacing:-0.012800pt;}
.ls15_c00309{letter-spacing:-0.006400pt;}
.ls10_c00309{letter-spacing:0.000000pt;}
.ls7_c00309{letter-spacing:0.006400pt;}
.ls8_c00309{letter-spacing:0.009600pt;}
.ls6_c00309{letter-spacing:0.012800pt;}
.ls9_c00309{letter-spacing:0.014400pt;}
.lsd_c00309{letter-spacing:0.025600pt;}
.ls4_c00309{letter-spacing:0.032000pt;}
.ls3_c00309{letter-spacing:0.038400pt;}
.ls1_c00309{letter-spacing:0.044800pt;}
.ls0_c00309{letter-spacing:0.051200pt;}
.lsa_c00309{letter-spacing:0.052192pt;}
.ls5_c00309{letter-spacing:0.057600pt;}
.lse_c00309{letter-spacing:0.064000pt;}
.lsb_c00309{letter-spacing:0.083200pt;}
.ls2_c00309{letter-spacing:0.089600pt;}
.lsc_c00309{letter-spacing:0.102400pt;}
.ls11_c00309{letter-spacing:659.840000pt;}
.ws1_c00309{word-spacing:0.000000pt;}
.ws0_c00309{word-spacing:0.122912pt;}
.ws3_c00309{word-spacing:0.144000pt;}
.ws2_c00309{word-spacing:0.148800pt;}
.ws4_c00309{word-spacing:0.158400pt;}
._5_c00309{margin-left:-663.360000pt;}
._3_c00309{margin-left:-3.699200pt;}
._1_c00309{margin-left:-2.649600pt;}
._2_c00309{margin-left:-1.126400pt;}
._0_c00309{width:1.177600pt;}
._18_c00309{width:2.092800pt;}
._4_c00309{width:3.155200pt;}
._1c_c00309{width:4.582400pt;}
._1b_c00309{width:10.470400pt;}
._19_c00309{width:11.494400pt;}
._1a_c00309{width:14.067200pt;}
._9_c00309{width:71.424000pt;}
._8_c00309{width:72.844800pt;}
._a_c00309{width:77.081600pt;}
._6_c00309{width:115.840000pt;}
._15_c00309{width:142.592000pt;}
._11_c00309{width:166.860800pt;}
._c_c00309{width:191.052800pt;}
._f_c00309{width:196.096000pt;}
._17_c00309{width:212.147200pt;}
._d_c00309{width:222.400000pt;}
._13_c00309{width:228.134400pt;}
._7_c00309{width:233.228800pt;}
._b_c00309{width:243.520000pt;}
._14_c00309{width:254.348800pt;}
._10_c00309{width:266.060800pt;}
._12_c00309{width:275.494400pt;}
._e_c00309{width:287.756800pt;}
._16_c00309{width:355.833600pt;}
.fs2_c00309{font-size:48.000000pt;}
.fs0_c00309{font-size:53.440000pt;}
.fs1_c00309{font-size:64.000000pt;}
.fs3_c00309{font-size:74.560000pt;}
.y0_c00309{bottom:0.000000pt;}
.y6_c00309{bottom:50.987067pt;}
.y5_c00309{bottom:69.387067pt;}
.y25_c00309{bottom:98.347067pt;}
.y24_c00309{bottom:125.947067pt;}
.y23_c00309{bottom:153.547067pt;}
.y22_c00309{bottom:181.147067pt;}
.y21_c00309{bottom:208.747067pt;}
.y20_c00309{bottom:236.347067pt;}
.y1f_c00309{bottom:263.947067pt;}
.y1e_c00309{bottom:291.547067pt;}
.y1d_c00309{bottom:319.147067pt;}
.y1c_c00309{bottom:346.747067pt;}
.y1b_c00309{bottom:374.267067pt;}
.y1a_c00309{bottom:402.587067pt;}
.y19_c00309{bottom:430.827200pt;}
.y18_c00309{bottom:459.067200pt;}
.y17_c00309{bottom:487.387067pt;}
.y16_c00309{bottom:515.627067pt;}
.y15_c00309{bottom:543.867067pt;}
.y14_c00309{bottom:571.467067pt;}
.y13_c00309{bottom:599.787067pt;}
.y12_c00309{bottom:631.387067pt;}
.y11_c00309{bottom:658.027067pt;}
.y10_c00309{bottom:678.507067pt;}
.yf_c00309{bottom:711.467067pt;}
.ye_c00309{bottom:735.467067pt;}
.yd_c00309{bottom:837.707067pt;}
.yc_c00309{bottom:861.467067pt;}
.yb_c00309{bottom:889.067067pt;}
.ya_c00309{bottom:916.587067pt;}
.y9_c00309{bottom:944.187067pt;}
.y8_c00309{bottom:971.787067pt;}
.y7_c00309{bottom:999.387067pt;}
.y4_c00309{bottom:1017.227251pt;}
.y3_c00309{bottom:1032.587243pt;}
.y2_c00309{bottom:1047.867075pt;}
.y1_c00309{bottom:1063.227067pt;}
.h3_c00309{height:42.234375pt;}
.h1_c00309{height:47.020937pt;}
.h2_c00309{height:56.156250pt;}
.h5_c00309{height:56.312500pt;}
.h4_c00309{height:66.222969pt;}
.h0_c00309{height:1122.666667pt;}
.w1_c00309{width:793.333333pt;}
.w0_c00309{width:793.626667pt;}
.x0_c00309{left:0.000000pt;}
.x4_c00309{left:113.440000pt;}
.x6_c00309{left:168.000000pt;}
.x7_c00309{left:294.720000pt;}
.x5_c00309{left:310.400000pt;}
.x1_c00309{left:577.440000pt;}
.x3_c00309{left:656.400000pt;}
.x2_c00309{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1030952918d4f6b03449ebbd.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.095703;font-style:normal;font-weight:normal;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_669eb172515bd784e10235f4.woff2')format("woff");}.ff2_c00310{font-family:ff2_c00310;line-height:1.093262;font-style: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;}
.lse_c00310{letter-spacing:-0.102204px;}
.ls16_c00310{letter-spacing:-0.064800px;}
.ls12_c00310{letter-spacing:-0.043200px;}
.ls15_c00310{letter-spacing:-0.021600px;}
.ls13_c00310{letter-spacing:-0.014400px;}
.ls11_c00310{letter-spacing:-0.007200px;}
.lsf_c00310{letter-spacing:0.000000px;}
.lsd_c00310{letter-spacing:0.007200px;}
.ls8_c00310{letter-spacing:0.014400px;}
.ls5_c00310{letter-spacing:0.021600px;}
.ls3_c00310{letter-spacing:0.028800px;}
.ls0_c00310{letter-spacing:0.036000px;}
.ls9_c00310{letter-spacing:0.043200px;}
.ls2_c00310{letter-spacing:0.050400px;}
.ls1_c00310{letter-spacing:0.057600px;}
.ls7_c00310{letter-spacing:0.072000px;}
.lsa_c00310{letter-spacing:0.079200px;}
.lsb_c00310{letter-spacing:0.086400px;}
.ls6_c00310{letter-spacing:0.108000px;}
.ls4_c00310{letter-spacing:0.115200px;}
.ls10_c00310{letter-spacing:1.080000px;}
.ls14_c00310{letter-spacing:4.950792px;}
.lsc_c00310{letter-spacing:10.080000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00310{word-spacing:-18.057600px;}
.ws0_c00310{word-spacing:-18.043200px;}
.ws4_c00310{word-spacing:-0.720000px;}
.ws3_c00310{word-spacing:0.000000px;}
.ws2_c00310{word-spacing:0.192384px;}
._8_c00310{margin-left:-4.370400px;}
._9_c00310{margin-left:-3.092400px;}
._2_c00310{margin-left:-1.814400px;}
._0_c00310{width:1.034064px;}
._1_c00310{width:2.544336px;}
._c_c00310{width:6.069600px;}
._a_c00310{width:7.108416px;}
._6_c00310{width:8.258400px;}
._7_c00310{width:9.439200px;}
._4_c00310{width:10.454400px;}
._5_c00310{width:11.880000px;}
._3_c00310{width:16.833600px;}
._b_c00310{width:19.332000px;}
.fc2_c00310{color:rgb(255,0,0);}
.fc1_c00310{color:rgb(0,0,0);}
.fc0_c00310{color:rgb(32,31,30);}
.fs2_c00310{font-size:47.880000px;}
.fs0_c00310{font-size:60.120000px;}
.fs1_c00310{font-size:72.000000px;}
.y0_c00310{bottom:0.000000px;}
.y5_c00310{bottom:57.360450px;}
.y4_c00310{bottom:78.060450px;}
.y26_c00310{bottom:117.930450px;}
.y25_c00310{bottom:148.980450px;}
.y24_c00310{bottom:180.030450px;}
.y23_c00310{bottom:211.080450px;}
.y22_c00310{bottom:242.130450px;}
.y21_c00310{bottom:273.090450px;}
.y20_c00310{bottom:304.140450px;}
.y1f_c00310{bottom:335.190450px;}
.y1e_c00310{bottom:366.240450px;}
.y1d_c00310{bottom:397.290450px;}
.y1c_c00310{bottom:428.340450px;}
.y1b_c00310{bottom:459.390450px;}
.y1a_c00310{bottom:490.440450px;}
.y19_c00310{bottom:521.490450px;}
.y18_c00310{bottom:552.540450px;}
.y17_c00310{bottom:583.590450px;}
.y16_c00310{bottom:614.640450px;}
.y15_c00310{bottom:645.690450px;}
.y14_c00310{bottom:676.740450px;}
.y13_c00310{bottom:707.790450px;}
.y12_c00310{bottom:738.840450px;}
.y11_c00310{bottom:769.890450px;}
.y10_c00310{bottom:800.940450px;}
.yf_c00310{bottom:831.990450px;}
.ye_c00310{bottom:863.040450px;}
.yd_c00310{bottom:894.090450px;}
.yc_c00310{bottom:925.140450px;}
.yb_c00310{bottom:956.190450px;}
.ya_c00310{bottom:987.240450px;}
.y9_c00310{bottom:1018.290450px;}
.y8_c00310{bottom:1049.340450px;}
.y7_c00310{bottom:1080.390450px;}
.y6_c00310{bottom:1111.440450px;}
.y3_c00310{bottom:1132.140450px;}
.y2_c00310{bottom:1165.441023px;}
.y1_c00310{bottom:1196.040600px;}
.h1_c00310{height:52.898555px;}
.h2_c00310{height:63.175781px;}
.h3_c00310{height:63.351562px;}
.h0_c00310{height:1263.000000px;}
.w1_c00310{width:892.500000px;}
.w0_c00310{width:892.830000px;}
.x0_c00310{left:0.000000px;}
.x1_c00310{left:127.620000px;}
.x2_c00310{left:738.450000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.lse_c00310{letter-spacing:-0.090848pt;}
.ls16_c00310{letter-spacing:-0.057600pt;}
.ls12_c00310{letter-spacing:-0.038400pt;}
.ls15_c00310{letter-spacing:-0.019200pt;}
.ls13_c00310{letter-spacing:-0.012800pt;}
.ls11_c00310{letter-spacing:-0.006400pt;}
.lsf_c00310{letter-spacing:0.000000pt;}
.lsd_c00310{letter-spacing:0.006400pt;}
.ls8_c00310{letter-spacing:0.012800pt;}
.ls5_c00310{letter-spacing:0.019200pt;}
.ls3_c00310{letter-spacing:0.025600pt;}
.ls0_c00310{letter-spacing:0.032000pt;}
.ls9_c00310{letter-spacing:0.038400pt;}
.ls2_c00310{letter-spacing:0.044800pt;}
.ls1_c00310{letter-spacing:0.051200pt;}
.ls7_c00310{letter-spacing:0.064000pt;}
.lsa_c00310{letter-spacing:0.070400pt;}
.lsb_c00310{letter-spacing:0.076800pt;}
.ls6_c00310{letter-spacing:0.096000pt;}
.ls4_c00310{letter-spacing:0.102400pt;}
.ls10_c00310{letter-spacing:0.960000pt;}
.ls14_c00310{letter-spacing:4.400704pt;}
.lsc_c00310{letter-spacing:8.960000pt;}
.ws1_c00310{word-spacing:-16.051200pt;}
.ws0_c00310{word-spacing:-16.038400pt;}
.ws4_c00310{word-spacing:-0.640000pt;}
.ws3_c00310{word-spacing:0.000000pt;}
.ws2_c00310{word-spacing:0.171008pt;}
._8_c00310{margin-left:-3.884800pt;}
._9_c00310{margin-left:-2.748800pt;}
._2_c00310{margin-left:-1.612800pt;}
._0_c00310{width:0.919168pt;}
._1_c00310{width:2.261632pt;}
._c_c00310{width:5.395200pt;}
._a_c00310{width:6.318592pt;}
._6_c00310{width:7.340800pt;}
._7_c00310{width:8.390400pt;}
._4_c00310{width:9.292800pt;}
._5_c00310{width:10.560000pt;}
._3_c00310{width:14.963200pt;}
._b_c00310{width:17.184000pt;}
.fs2_c00310{font-size:42.560000pt;}
.fs0_c00310{font-size:53.440000pt;}
.fs1_c00310{font-size:64.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y5_c00310{bottom:50.987067pt;}
.y4_c00310{bottom:69.387067pt;}
.y26_c00310{bottom:104.827067pt;}
.y25_c00310{bottom:132.427067pt;}
.y24_c00310{bottom:160.027067pt;}
.y23_c00310{bottom:187.627067pt;}
.y22_c00310{bottom:215.227067pt;}
.y21_c00310{bottom:242.747067pt;}
.y20_c00310{bottom:270.347067pt;}
.y1f_c00310{bottom:297.947067pt;}
.y1e_c00310{bottom:325.547067pt;}
.y1d_c00310{bottom:353.147067pt;}
.y1c_c00310{bottom:380.747067pt;}
.y1b_c00310{bottom:408.347067pt;}
.y1a_c00310{bottom:435.947067pt;}
.y19_c00310{bottom:463.547067pt;}
.y18_c00310{bottom:491.147067pt;}
.y17_c00310{bottom:518.747067pt;}
.y16_c00310{bottom:546.347067pt;}
.y15_c00310{bottom:573.947067pt;}
.y14_c00310{bottom:601.547067pt;}
.y13_c00310{bottom:629.147067pt;}
.y12_c00310{bottom:656.747067pt;}
.y11_c00310{bottom:684.347067pt;}
.y10_c00310{bottom:711.947067pt;}
.yf_c00310{bottom:739.547067pt;}
.ye_c00310{bottom:767.147067pt;}
.yd_c00310{bottom:794.747067pt;}
.yc_c00310{bottom:822.347067pt;}
.yb_c00310{bottom:849.947067pt;}
.ya_c00310{bottom:877.547067pt;}
.y9_c00310{bottom:905.147067pt;}
.y8_c00310{bottom:932.747067pt;}
.y7_c00310{bottom:960.347067pt;}
.y6_c00310{bottom:987.947067pt;}
.y3_c00310{bottom:1006.347067pt;}
.y2_c00310{bottom:1035.947576pt;}
.y1_c00310{bottom:1063.147200pt;}
.h1_c00310{height:47.020937pt;}
.h2_c00310{height:56.156250pt;}
.h3_c00310{height:56.312500pt;}
.h0_c00310{height:1122.666667pt;}
.w1_c00310{width:793.333333pt;}
.w0_c00310{width:793.626667pt;}
.x0_c00310{left:0.000000pt;}
.x1_c00310{left:113.440000pt;}
.x2_c00310{left:656.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_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_0e3d0cf7f4cea7cacd415e20.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.095703;font-style:normal;font-weight:normal;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_dd7eb28e2478c78aea475c9a.woff2')format("woff");}.ff2_c00311{font-family:ff2_c00311;line-height:1.093262;font-style: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;}
.ls11_c00311{letter-spacing:-0.086400px;}
.ls15_c00311{letter-spacing:-0.050400px;}
.lse_c00311{letter-spacing:-0.048096px;}
.ls17_c00311{letter-spacing:-0.043200px;}
.ls12_c00311{letter-spacing:-0.028800px;}
.ls14_c00311{letter-spacing:-0.021600px;}
.ls16_c00311{letter-spacing:-0.014400px;}
.ls10_c00311{letter-spacing:-0.010800px;}
.ls13_c00311{letter-spacing:-0.007200px;}
.lsf_c00311{letter-spacing:0.000000px;}
.ls0_c00311{letter-spacing:0.005400px;}
.ls6_c00311{letter-spacing:0.007200px;}
.ls1_c00311{letter-spacing:0.014400px;}
.ls2_c00311{letter-spacing:0.021600px;}
.ls8_c00311{letter-spacing:0.028800px;}
.ls3_c00311{letter-spacing:0.036000px;}
.ls9_c00311{letter-spacing:0.037800px;}
.lsb_c00311{letter-spacing:0.043200px;}
.ls5_c00311{letter-spacing:0.050400px;}
.ls4_c00311{letter-spacing:0.064800px;}
.lsa_c00311{letter-spacing:0.070200px;}
.lsc_c00311{letter-spacing:0.072000px;}
.lsd_c00311{letter-spacing:0.093600px;}
.ls7_c00311{letter-spacing:0.360000px;}
.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:-18.000000px;}
.ws2_c00311{word-spacing:0.000000px;}
.ws6_c00311{word-spacing:0.028800px;}
.ws8_c00311{word-spacing:0.108000px;}
.ws1_c00311{word-spacing:0.138276px;}
.ws7_c00311{word-spacing:0.140400px;}
.ws9_c00311{word-spacing:0.156600px;}
.ws3_c00311{word-spacing:0.172800px;}
.ws4_c00311{word-spacing:0.189000px;}
.ws5_c00311{word-spacing:0.264600px;}
.wsa_c00311{word-spacing:2.512800px;}
.wsb_c00311{word-spacing:3.564000px;}
._3_c00311{margin-left:-5.385600px;}
._2_c00311{margin-left:-4.356000px;}
._8_c00311{margin-left:-3.254400px;}
._9_c00311{margin-left:-2.113200px;}
._0_c00311{margin-left:-1.096200px;}
._1_c00311{width:1.828800px;}
._4_c00311{width:3.924000px;}
._5_c00311{width:7.293600px;}
._6_c00311{width:8.539200px;}
._7_c00311{width:15.775200px;}
.fc1_c00311{color:rgb(68,84,106);}
.fc0_c00311{color:rgb(0,0,0);}
.fs2_c00311{font-size:54.000000px;}
.fs0_c00311{font-size:60.120000px;}
.fs1_c00311{font-size:72.000000px;}
.y0_c00311{bottom:0.000000px;}
.y6_c00311{bottom:57.360450px;}
.y5_c00311{bottom:78.060450px;}
.y1e_c00311{bottom:144.570450px;}
.y1d_c00311{bottom:175.620450px;}
.y1c_c00311{bottom:206.670450px;}
.y1b_c00311{bottom:237.720450px;}
.y1a_c00311{bottom:268.770450px;}
.y19_c00311{bottom:299.820450px;}
.y18_c00311{bottom:330.870450px;}
.y17_c00311{bottom:361.920450px;}
.y16_c00311{bottom:388.920450px;}
.y15_c00311{bottom:568.290450px;}
.y14_c00311{bottom:595.020450px;}
.y13_c00311{bottom:626.070450px;}
.y12_c00311{bottom:657.120450px;}
.y11_c00311{bottom:688.170450px;}
.y10_c00311{bottom:719.220450px;}
.yf_c00311{bottom:750.270450px;}
.ye_c00311{bottom:781.320450px;}
.yd_c00311{bottom:812.370450px;}
.yc_c00311{bottom:843.420450px;}
.yb_c00311{bottom:874.470450px;}
.ya_c00311{bottom:905.520450px;}
.y9_c00311{bottom:936.570450px;}
.y8_c00311{bottom:963.480450px;}
.y7_c00311{bottom:1128.630450px;}
.y4_c00311{bottom:1144.380657px;}
.y3_c00311{bottom:1161.660648px;}
.y2_c00311{bottom:1178.850459px;}
.y1_c00311{bottom:1196.130450px;}
.h3_c00311{height:47.513672px;}
.h1_c00311{height:52.898555px;}
.h2_c00311{height:63.175781px;}
.h4_c00311{height:63.351562px;}
.h0_c00311{height:1263.000000px;}
.w1_c00311{width:892.500000px;}
.w0_c00311{width:892.830000px;}
.x0_c00311{left:0.000000px;}
.x4_c00311{left:127.620000px;}
.x6_c00311{left:446.489850px;}
.x1_c00311{left:649.620000px;}
.x3_c00311{left:738.450000px;}
.x5_c00311{left:740.159850px;}
.x7_c00311{left:746.639850px;}
.x2_c00311{left:765.450198px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls11_c00311{letter-spacing:-0.076800pt;}
.ls15_c00311{letter-spacing:-0.044800pt;}
.lse_c00311{letter-spacing:-0.042752pt;}
.ls17_c00311{letter-spacing:-0.038400pt;}
.ls12_c00311{letter-spacing:-0.025600pt;}
.ls14_c00311{letter-spacing:-0.019200pt;}
.ls16_c00311{letter-spacing:-0.012800pt;}
.ls10_c00311{letter-spacing:-0.009600pt;}
.ls13_c00311{letter-spacing:-0.006400pt;}
.lsf_c00311{letter-spacing:0.000000pt;}
.ls0_c00311{letter-spacing:0.004800pt;}
.ls6_c00311{letter-spacing:0.006400pt;}
.ls1_c00311{letter-spacing:0.012800pt;}
.ls2_c00311{letter-spacing:0.019200pt;}
.ls8_c00311{letter-spacing:0.025600pt;}
.ls3_c00311{letter-spacing:0.032000pt;}
.ls9_c00311{letter-spacing:0.033600pt;}
.lsb_c00311{letter-spacing:0.038400pt;}
.ls5_c00311{letter-spacing:0.044800pt;}
.ls4_c00311{letter-spacing:0.057600pt;}
.lsa_c00311{letter-spacing:0.062400pt;}
.lsc_c00311{letter-spacing:0.064000pt;}
.lsd_c00311{letter-spacing:0.083200pt;}
.ls7_c00311{letter-spacing:0.320000pt;}
.ws0_c00311{word-spacing:-16.000000pt;}
.ws2_c00311{word-spacing:0.000000pt;}
.ws6_c00311{word-spacing:0.025600pt;}
.ws8_c00311{word-spacing:0.096000pt;}
.ws1_c00311{word-spacing:0.122912pt;}
.ws7_c00311{word-spacing:0.124800pt;}
.ws9_c00311{word-spacing:0.139200pt;}
.ws3_c00311{word-spacing:0.153600pt;}
.ws4_c00311{word-spacing:0.168000pt;}
.ws5_c00311{word-spacing:0.235200pt;}
.wsa_c00311{word-spacing:2.233600pt;}
.wsb_c00311{word-spacing:3.168000pt;}
._3_c00311{margin-left:-4.787200pt;}
._2_c00311{margin-left:-3.872000pt;}
._8_c00311{margin-left:-2.892800pt;}
._9_c00311{margin-left:-1.878400pt;}
._0_c00311{margin-left:-0.974400pt;}
._1_c00311{width:1.625600pt;}
._4_c00311{width:3.488000pt;}
._5_c00311{width:6.483200pt;}
._6_c00311{width:7.590400pt;}
._7_c00311{width:14.022400pt;}
.fs2_c00311{font-size:48.000000pt;}
.fs0_c00311{font-size:53.440000pt;}
.fs1_c00311{font-size:64.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y6_c00311{bottom:50.987067pt;}
.y5_c00311{bottom:69.387067pt;}
.y1e_c00311{bottom:128.507067pt;}
.y1d_c00311{bottom:156.107067pt;}
.y1c_c00311{bottom:183.707067pt;}
.y1b_c00311{bottom:211.307067pt;}
.y1a_c00311{bottom:238.907067pt;}
.y19_c00311{bottom:266.507067pt;}
.y18_c00311{bottom:294.107067pt;}
.y17_c00311{bottom:321.707067pt;}
.y16_c00311{bottom:345.707067pt;}
.y15_c00311{bottom:505.147067pt;}
.y14_c00311{bottom:528.907067pt;}
.y13_c00311{bottom:556.507067pt;}
.y12_c00311{bottom:584.107067pt;}
.y11_c00311{bottom:611.707067pt;}
.y10_c00311{bottom:639.307067pt;}
.yf_c00311{bottom:666.907067pt;}
.ye_c00311{bottom:694.507067pt;}
.yd_c00311{bottom:722.107067pt;}
.yc_c00311{bottom:749.707067pt;}
.yb_c00311{bottom:777.307067pt;}
.ya_c00311{bottom:804.907067pt;}
.y9_c00311{bottom:832.507067pt;}
.y8_c00311{bottom:856.427067pt;}
.y7_c00311{bottom:1003.227067pt;}
.y4_c00311{bottom:1017.227251pt;}
.y3_c00311{bottom:1032.587243pt;}
.y2_c00311{bottom:1047.867075pt;}
.y1_c00311{bottom:1063.227067pt;}
.h3_c00311{height:42.234375pt;}
.h1_c00311{height:47.020937pt;}
.h2_c00311{height:56.156250pt;}
.h4_c00311{height:56.312500pt;}
.h0_c00311{height:1122.666667pt;}
.w1_c00311{width:793.333333pt;}
.w0_c00311{width:793.626667pt;}
.x0_c00311{left:0.000000pt;}
.x4_c00311{left:113.440000pt;}
.x6_c00311{left:396.879867pt;}
.x1_c00311{left:577.440000pt;}
.x3_c00311{left:656.400000pt;}
.x5_c00311{left:657.919867pt;}
.x7_c00311{left:663.679867pt;}
.x2_c00311{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89c18bf566eb67fb5997ebd3.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.095703;font-style:normal;font-weight:normal;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_0a769342fa960719fd94b177.woff2')format("woff");}.ff2_c00312{font-family:ff2_c00312;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00312;src:url('chunks/assets/font_ecff704012e7ac626e41c71d.woff2')format("woff");}.ff3_c00312{font-family:ff3_c00312;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00312;src:url('chunks/assets/font_5d27b21228540001e0c441a9.woff2')format("woff");}.ff4_c00312{font-family:ff4_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;}
@font-face{font-family:ff5_c00312;src:url('chunks/assets/font_d2394abba2716f5c80e05d1e.woff2')format("woff");}.ff5_c00312{font-family:ff5_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;}
.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;}
.ls15_c00312{letter-spacing:-0.151200px;}
.ls19_c00312{letter-spacing:-0.129600px;}
.ls14_c00312{letter-spacing:-0.124200px;}
.ls1c_c00312{letter-spacing:-0.113400px;}
.ls11_c00312{letter-spacing:-0.108000px;}
.lse_c00312{letter-spacing:-0.102204px;}
.ls1e_c00312{letter-spacing:-0.091800px;}
.ls1a_c00312{letter-spacing:-0.081000px;}
.ls16_c00312{letter-spacing:-0.075600px;}
.ls17_c00312{letter-spacing:-0.059400px;}
.ls18_c00312{letter-spacing:-0.032400px;}
.ls13_c00312{letter-spacing:-0.028800px;}
.ls1f_c00312{letter-spacing:-0.016200px;}
.ls12_c00312{letter-spacing:-0.010800px;}
.ls20_c00312{letter-spacing:-0.007200px;}
.ls10_c00312{letter-spacing:-0.005400px;}
.lsf_c00312{letter-spacing:0.000000px;}
.ls0_c00312{letter-spacing:0.005400px;}
.ls8_c00312{letter-spacing:0.007200px;}
.ls3_c00312{letter-spacing:0.010800px;}
.ls9_c00312{letter-spacing:0.014400px;}
.ls4_c00312{letter-spacing:0.021600px;}
.lsb_c00312{letter-spacing:0.028800px;}
.lsd_c00312{letter-spacing:0.036000px;}
.ls1_c00312{letter-spacing:0.037800px;}
.lsa_c00312{letter-spacing:0.043200px;}
.ls2_c00312{letter-spacing:0.050328px;}
.ls7_c00312{letter-spacing:0.050400px;}
.ls6_c00312{letter-spacing:0.057600px;}
.lsc_c00312{letter-spacing:0.064800px;}
.ls1d_c00312{letter-spacing:0.205200px;}
.ls1b_c00312{letter-spacing:0.496800px;}
.ls5_c00312{letter-spacing:102.346200px;}
.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:-20.016000px;}
.ws2_c00312{word-spacing:0.000000px;}
.ws5_c00312{word-spacing:0.140400px;}
.ws3_c00312{word-spacing:0.172800px;}
.ws4_c00312{word-spacing:0.183600px;}
.ws1_c00312{word-spacing:0.192384px;}
._22_c00312{margin-left:-3.996000px;}
._1_c00312{margin-left:-1.090800px;}
._0_c00312{width:1.034064px;}
._21_c00312{width:2.887200px;}
._20_c00312{width:3.952800px;}
._1d_c00312{width:5.032800px;}
._1e_c00312{width:6.256800px;}
._2_c00312{width:8.107200px;}
._1f_c00312{width:10.778400px;}
._1c_c00312{width:12.542400px;}
._15_c00312{width:28.555200px;}
._3_c00312{width:51.964200px;}
._6_c00312{width:86.042736px;}
._d_c00312{width:182.916000px;}
._a_c00312{width:259.876800px;}
._5_c00312{width:268.830000px;}
._8_c00312{width:274.824000px;}
._7_c00312{width:283.842000px;}
._9_c00312{width:299.334600px;}
._b_c00312{width:302.169600px;}
._1a_c00312{width:353.196000px;}
._12_c00312{width:370.432800px;}
._4_c00312{width:388.893600px;}
._e_c00312{width:394.066800px;}
._c_c00312{width:407.556000px;}
._13_c00312{width:430.156800px;}
._14_c00312{width:445.104000px;}
._18_c00312{width:462.902400px;}
._11_c00312{width:466.153200px;}
._17_c00312{width:469.279800px;}
._16_c00312{width:476.046000px;}
._10_c00312{width:508.915800px;}
._19_c00312{width:547.617600px;}
._f_c00312{width:550.189800px;}
._1b_c00312{width:564.346800px;}
.fc4_c00312{color:rgb(38,74,96);}
.fc3_c00312{color:rgb(1,2,5);}
.fc2_c00312{color:rgb(68,84,106);}
.fc1_c00312{color:rgb(0,0,0);}
.fc0_c00312{color:rgb(32,31,30);}
.fs2_c00312{font-size:54.000000px;}
.fs0_c00312{font-size:60.120000px;}
.fs1_c00312{font-size:72.000000px;}
.fs3_c00312{font-size:83.880000px;}
.y0_c00312{bottom:0.000000px;}
.y5_c00312{bottom:57.360450px;}
.y4_c00312{bottom:78.060450px;}
.y33_c00312{bottom:125.490450px;}
.y32_c00312{bottom:156.540450px;}
.y31_c00312{bottom:187.590450px;}
.y30_c00312{bottom:218.640450px;}
.y2f_c00312{bottom:249.690450px;}
.y2e_c00312{bottom:280.740450px;}
.y2d_c00312{bottom:311.790450px;}
.y2c_c00312{bottom:342.840450px;}
.y2b_c00312{bottom:370.560450px;}
.y2a_c00312{bottom:394.230450px;}
.y29_c00312{bottom:417.810450px;}
.y28_c00312{bottom:441.480450px;}
.y1a_c00312{bottom:443.640450px;}
.y27_c00312{bottom:465.150450px;}
.y19_c00312{bottom:467.310450px;}
.y26_c00312{bottom:488.820450px;}
.y18_c00312{bottom:490.980450px;}
.y25_c00312{bottom:512.490000px;}
.y17_c00312{bottom:514.650450px;}
.y24_c00312{bottom:535.800450px;}
.y16_c00312{bottom:538.320450px;}
.y23_c00312{bottom:559.470450px;}
.y15_c00312{bottom:561.990450px;}
.y22_c00312{bottom:583.140450px;}
.y14_c00312{bottom:585.660450px;}
.y21_c00312{bottom:606.720450px;}
.y13_c00312{bottom:609.330450px;}
.y20_c00312{bottom:630.390450px;}
.y12_c00312{bottom:633.000450px;}
.y1f_c00312{bottom:654.060450px;}
.y11_c00312{bottom:656.670450px;}
.y1e_c00312{bottom:677.730450px;}
.y10_c00312{bottom:680.250450px;}
.y1c_c00312{bottom:704.910450px;}
.ye_c00312{bottom:707.520450px;}
.y1b_c00312{bottom:735.960450px;}
.yd_c00312{bottom:738.570450px;}
.y1d_c00312{bottom:740.190450px;}
.yf_c00312{bottom:742.800450px;}
.yc_c00312{bottom:797.700450px;}
.yb_c00312{bottom:827.670450px;}
.ya_c00312{bottom:850.710450px;}
.y9_c00312{bottom:888.060450px;}
.y8_c00312{bottom:922.350450px;}
.y7_c00312{bottom:949.350450px;}
.y6_c00312{bottom:1115.760450px;}
.y3_c00312{bottom:1132.140450px;}
.y2_c00312{bottom:1165.441023px;}
.y1_c00312{bottom:1196.040600px;}
.h5_c00312{height:47.381836px;}
.h3_c00312{height:47.513672px;}
.h7_c00312{height:48.410156px;}
.h1_c00312{height:52.898555px;}
.h2_c00312{height:63.175781px;}
.h6_c00312{height:65.003906px;}
.h4_c00312{height:74.500840px;}
.h0_c00312{height:1263.000000px;}
.w1_c00312{width:892.500000px;}
.w0_c00312{width:892.830000px;}
.x0_c00312{left:0.000000px;}
.x1_c00312{left:127.620000px;}
.x4_c00312{left:135.630000px;}
.x5_c00312{left:143.730000px;}
.x7_c00312{left:148.230000px;}
.x8_c00312{left:164.970000px;}
.x6_c00312{left:297.450000px;}
.x9_c00312{left:483.480000px;}
.xb_c00312{left:512.820000px;}
.xa_c00312{left:687.870000px;}
.x2_c00312{left:738.450000px;}
.x3_c00312{left:765.450000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls15_c00312{letter-spacing:-0.134400pt;}
.ls19_c00312{letter-spacing:-0.115200pt;}
.ls14_c00312{letter-spacing:-0.110400pt;}
.ls1c_c00312{letter-spacing:-0.100800pt;}
.ls11_c00312{letter-spacing:-0.096000pt;}
.lse_c00312{letter-spacing:-0.090848pt;}
.ls1e_c00312{letter-spacing:-0.081600pt;}
.ls1a_c00312{letter-spacing:-0.072000pt;}
.ls16_c00312{letter-spacing:-0.067200pt;}
.ls17_c00312{letter-spacing:-0.052800pt;}
.ls18_c00312{letter-spacing:-0.028800pt;}
.ls13_c00312{letter-spacing:-0.025600pt;}
.ls1f_c00312{letter-spacing:-0.014400pt;}
.ls12_c00312{letter-spacing:-0.009600pt;}
.ls20_c00312{letter-spacing:-0.006400pt;}
.ls10_c00312{letter-spacing:-0.004800pt;}
.lsf_c00312{letter-spacing:0.000000pt;}
.ls0_c00312{letter-spacing:0.004800pt;}
.ls8_c00312{letter-spacing:0.006400pt;}
.ls3_c00312{letter-spacing:0.009600pt;}
.ls9_c00312{letter-spacing:0.012800pt;}
.ls4_c00312{letter-spacing:0.019200pt;}
.lsb_c00312{letter-spacing:0.025600pt;}
.lsd_c00312{letter-spacing:0.032000pt;}
.ls1_c00312{letter-spacing:0.033600pt;}
.lsa_c00312{letter-spacing:0.038400pt;}
.ls2_c00312{letter-spacing:0.044736pt;}
.ls7_c00312{letter-spacing:0.044800pt;}
.ls6_c00312{letter-spacing:0.051200pt;}
.lsc_c00312{letter-spacing:0.057600pt;}
.ls1d_c00312{letter-spacing:0.182400pt;}
.ls1b_c00312{letter-spacing:0.441600pt;}
.ls5_c00312{letter-spacing:90.974400pt;}
.ws0_c00312{word-spacing:-17.792000pt;}
.ws2_c00312{word-spacing:0.000000pt;}
.ws5_c00312{word-spacing:0.124800pt;}
.ws3_c00312{word-spacing:0.153600pt;}
.ws4_c00312{word-spacing:0.163200pt;}
.ws1_c00312{word-spacing:0.171008pt;}
._22_c00312{margin-left:-3.552000pt;}
._1_c00312{margin-left:-0.969600pt;}
._0_c00312{width:0.919168pt;}
._21_c00312{width:2.566400pt;}
._20_c00312{width:3.513600pt;}
._1d_c00312{width:4.473600pt;}
._1e_c00312{width:5.561600pt;}
._2_c00312{width:7.206400pt;}
._1f_c00312{width:9.580800pt;}
._1c_c00312{width:11.148800pt;}
._15_c00312{width:25.382400pt;}
._3_c00312{width:46.190400pt;}
._6_c00312{width:76.482432pt;}
._d_c00312{width:162.592000pt;}
._a_c00312{width:231.001600pt;}
._5_c00312{width:238.960000pt;}
._8_c00312{width:244.288000pt;}
._7_c00312{width:252.304000pt;}
._9_c00312{width:266.075200pt;}
._b_c00312{width:268.595200pt;}
._1a_c00312{width:313.952000pt;}
._12_c00312{width:329.273600pt;}
._4_c00312{width:345.683200pt;}
._e_c00312{width:350.281600pt;}
._c_c00312{width:362.272000pt;}
._13_c00312{width:382.361600pt;}
._14_c00312{width:395.648000pt;}
._18_c00312{width:411.468800pt;}
._11_c00312{width:414.358400pt;}
._17_c00312{width:417.137600pt;}
._16_c00312{width:423.152000pt;}
._10_c00312{width:452.369600pt;}
._19_c00312{width:486.771200pt;}
._f_c00312{width:489.057600pt;}
._1b_c00312{width:501.641600pt;}
.fs2_c00312{font-size:48.000000pt;}
.fs0_c00312{font-size:53.440000pt;}
.fs1_c00312{font-size:64.000000pt;}
.fs3_c00312{font-size:74.560000pt;}
.y0_c00312{bottom:0.000000pt;}
.y5_c00312{bottom:50.987067pt;}
.y4_c00312{bottom:69.387067pt;}
.y33_c00312{bottom:111.547067pt;}
.y32_c00312{bottom:139.147067pt;}
.y31_c00312{bottom:166.747067pt;}
.y30_c00312{bottom:194.347067pt;}
.y2f_c00312{bottom:221.947067pt;}
.y2e_c00312{bottom:249.547067pt;}
.y2d_c00312{bottom:277.147067pt;}
.y2c_c00312{bottom:304.747067pt;}
.y2b_c00312{bottom:329.387067pt;}
.y2a_c00312{bottom:350.427067pt;}
.y29_c00312{bottom:371.387067pt;}
.y28_c00312{bottom:392.427067pt;}
.y1a_c00312{bottom:394.347067pt;}
.y27_c00312{bottom:413.467067pt;}
.y19_c00312{bottom:415.387067pt;}
.y26_c00312{bottom:434.507067pt;}
.y18_c00312{bottom:436.427067pt;}
.y25_c00312{bottom:455.546667pt;}
.y17_c00312{bottom:457.467067pt;}
.y24_c00312{bottom:476.267067pt;}
.y16_c00312{bottom:478.507067pt;}
.y23_c00312{bottom:497.307067pt;}
.y15_c00312{bottom:499.547067pt;}
.y22_c00312{bottom:518.347067pt;}
.y14_c00312{bottom:520.587067pt;}
.y21_c00312{bottom:539.307067pt;}
.y13_c00312{bottom:541.627067pt;}
.y20_c00312{bottom:560.347067pt;}
.y12_c00312{bottom:562.667067pt;}
.y1f_c00312{bottom:581.387067pt;}
.y11_c00312{bottom:583.707067pt;}
.y1e_c00312{bottom:602.427067pt;}
.y10_c00312{bottom:604.667067pt;}
.y1c_c00312{bottom:626.587067pt;}
.ye_c00312{bottom:628.907067pt;}
.y1b_c00312{bottom:654.187067pt;}
.yd_c00312{bottom:656.507067pt;}
.y1d_c00312{bottom:657.947067pt;}
.yf_c00312{bottom:660.267067pt;}
.yc_c00312{bottom:709.067067pt;}
.yb_c00312{bottom:735.707067pt;}
.ya_c00312{bottom:756.187067pt;}
.y9_c00312{bottom:789.387067pt;}
.y8_c00312{bottom:819.867067pt;}
.y7_c00312{bottom:843.867067pt;}
.y6_c00312{bottom:991.787067pt;}
.y3_c00312{bottom:1006.347067pt;}
.y2_c00312{bottom:1035.947576pt;}
.y1_c00312{bottom:1063.147200pt;}
.h5_c00312{height:42.117188pt;}
.h3_c00312{height:42.234375pt;}
.h7_c00312{height:43.031250pt;}
.h1_c00312{height:47.020937pt;}
.h2_c00312{height:56.156250pt;}
.h6_c00312{height:57.781250pt;}
.h4_c00312{height:66.222969pt;}
.h0_c00312{height:1122.666667pt;}
.w1_c00312{width:793.333333pt;}
.w0_c00312{width:793.626667pt;}
.x0_c00312{left:0.000000pt;}
.x1_c00312{left:113.440000pt;}
.x4_c00312{left:120.560000pt;}
.x5_c00312{left:127.760000pt;}
.x7_c00312{left:131.760000pt;}
.x8_c00312{left:146.640000pt;}
.x6_c00312{left:264.400000pt;}
.x9_c00312{left:429.760000pt;}
.xb_c00312{left:455.840000pt;}
.xa_c00312{left:611.440000pt;}
.x2_c00312{left:656.400000pt;}
.x3_c00312{left:680.400000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_e0ab0d0b876f7293c0068655.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.095703;font-style:normal;font-weight:normal;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_301f93e214dd01db55d302b4.woff2')format("woff");}.ff2_c00313{font-family:ff2_c00313;line-height:1.093262;font-style: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;}
.lsf_c00313{letter-spacing:-0.048096px;}
.ls13_c00313{letter-spacing:-0.014400px;}
.ls11_c00313{letter-spacing:-0.007200px;}
.ls10_c00313{letter-spacing:0.000000px;}
.ls5_c00313{letter-spacing:0.007200px;}
.lsd_c00313{letter-spacing:0.014400px;}
.ls4_c00313{letter-spacing:0.021600px;}
.ls3_c00313{letter-spacing:0.028800px;}
.ls0_c00313{letter-spacing:0.036000px;}
.lsc_c00313{letter-spacing:0.043200px;}
.ls1_c00313{letter-spacing:0.050400px;}
.ls2_c00313{letter-spacing:0.057600px;}
.ls7_c00313{letter-spacing:0.064800px;}
.ls6_c00313{letter-spacing:0.072000px;}
.ls8_c00313{letter-spacing:0.079200px;}
.ls9_c00313{letter-spacing:0.086400px;}
.lse_c00313{letter-spacing:0.093600px;}
.lsa_c00313{letter-spacing:0.100800px;}
.lsb_c00313{letter-spacing:0.129600px;}
.ls12_c00313{letter-spacing:6.480000px;}
.ls14_c00313{letter-spacing:20.880000px;}
.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:-18.000000px;}
.ws2_c00313{word-spacing:0.000000px;}
.ws1_c00313{word-spacing:0.138276px;}
.ws3_c00313{word-spacing:0.144000px;}
.ws4_c00313{word-spacing:13.298400px;}
._f_c00313{margin-left:-21.873600px;}
._e_c00313{margin-left:-20.462400px;}
._a_c00313{margin-left:-7.574400px;}
._9_c00313{margin-left:-5.947200px;}
._12_c00313{margin-left:-2.160000px;}
._1_c00313{margin-left:-1.144800px;}
._5_c00313{width:1.008000px;}
._7_c00313{width:2.160000px;}
._6_c00313{width:3.218400px;}
._11_c00313{width:4.298400px;}
._0_c00313{width:5.364000px;}
._4_c00313{width:6.566400px;}
._2_c00313{width:10.497600px;}
._3_c00313{width:11.757600px;}
._8_c00313{width:13.687200px;}
._10_c00313{width:14.760000px;}
._b_c00313{width:16.524000px;}
._13_c00313{width:19.080000px;}
._c_c00313{width:20.383200px;}
._d_c00313{width:21.751200px;}
.fc0_c00313{color:rgb(0,0,0);}
.fs0_c00313{font-size:60.120000px;}
.fs1_c00313{font-size:72.000000px;}
.y0_c00313{bottom:0.000000px;}
.y6_c00313{bottom:57.360450px;}
.y5_c00313{bottom:78.060450px;}
.y27_c00313{bottom:130.800450px;}
.y26_c00313{bottom:161.850450px;}
.y25_c00313{bottom:192.900450px;}
.y24_c00313{bottom:223.950450px;}
.y23_c00313{bottom:255.000450px;}
.y22_c00313{bottom:286.050450px;}
.y21_c00313{bottom:317.100450px;}
.y20_c00313{bottom:348.150450px;}
.y1f_c00313{bottom:379.200450px;}
.y1e_c00313{bottom:410.250450px;}
.y1d_c00313{bottom:441.300450px;}
.y1c_c00313{bottom:472.350450px;}
.y1b_c00313{bottom:503.400450px;}
.y1a_c00313{bottom:534.450450px;}
.y19_c00313{bottom:565.500450px;}
.y18_c00313{bottom:596.550450px;}
.y17_c00313{bottom:627.600450px;}
.y16_c00313{bottom:658.650450px;}
.y15_c00313{bottom:689.700450px;}
.y14_c00313{bottom:720.750450px;}
.y13_c00313{bottom:751.800450px;}
.y12_c00313{bottom:782.850450px;}
.y11_c00313{bottom:813.900450px;}
.y10_c00313{bottom:844.950450px;}
.yf_c00313{bottom:876.000450px;}
.ye_c00313{bottom:907.050450px;}
.yd_c00313{bottom:938.100450px;}
.yc_c00313{bottom:969.150450px;}
.yb_c00313{bottom:1000.200450px;}
.ya_c00313{bottom:1031.160450px;}
.y9_c00313{bottom:1062.210450px;}
.y8_c00313{bottom:1093.260450px;}
.y7_c00313{bottom:1124.310450px;}
.y4_c00313{bottom:1144.380657px;}
.y3_c00313{bottom:1161.660648px;}
.y2_c00313{bottom:1178.850459px;}
.y1_c00313{bottom:1196.130450px;}
.h1_c00313{height:52.898555px;}
.h2_c00313{height:63.175781px;}
.h3_c00313{height:63.351562px;}
.h0_c00313{height:1263.000000px;}
.w1_c00313{width:892.500000px;}
.w0_c00313{width:892.830000px;}
.x0_c00313{left:0.000000px;}
.x4_c00313{left:127.620000px;}
.x1_c00313{left:649.620000px;}
.x3_c00313{left:738.450000px;}
.x2_c00313{left:765.450198px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.lsf_c00313{letter-spacing:-0.042752pt;}
.ls13_c00313{letter-spacing:-0.012800pt;}
.ls11_c00313{letter-spacing:-0.006400pt;}
.ls10_c00313{letter-spacing:0.000000pt;}
.ls5_c00313{letter-spacing:0.006400pt;}
.lsd_c00313{letter-spacing:0.012800pt;}
.ls4_c00313{letter-spacing:0.019200pt;}
.ls3_c00313{letter-spacing:0.025600pt;}
.ls0_c00313{letter-spacing:0.032000pt;}
.lsc_c00313{letter-spacing:0.038400pt;}
.ls1_c00313{letter-spacing:0.044800pt;}
.ls2_c00313{letter-spacing:0.051200pt;}
.ls7_c00313{letter-spacing:0.057600pt;}
.ls6_c00313{letter-spacing:0.064000pt;}
.ls8_c00313{letter-spacing:0.070400pt;}
.ls9_c00313{letter-spacing:0.076800pt;}
.lse_c00313{letter-spacing:0.083200pt;}
.lsa_c00313{letter-spacing:0.089600pt;}
.lsb_c00313{letter-spacing:0.115200pt;}
.ls12_c00313{letter-spacing:5.760000pt;}
.ls14_c00313{letter-spacing:18.560000pt;}
.ws0_c00313{word-spacing:-16.000000pt;}
.ws2_c00313{word-spacing:0.000000pt;}
.ws1_c00313{word-spacing:0.122912pt;}
.ws3_c00313{word-spacing:0.128000pt;}
.ws4_c00313{word-spacing:11.820800pt;}
._f_c00313{margin-left:-19.443200pt;}
._e_c00313{margin-left:-18.188800pt;}
._a_c00313{margin-left:-6.732800pt;}
._9_c00313{margin-left:-5.286400pt;}
._12_c00313{margin-left:-1.920000pt;}
._1_c00313{margin-left:-1.017600pt;}
._5_c00313{width:0.896000pt;}
._7_c00313{width:1.920000pt;}
._6_c00313{width:2.860800pt;}
._11_c00313{width:3.820800pt;}
._0_c00313{width:4.768000pt;}
._4_c00313{width:5.836800pt;}
._2_c00313{width:9.331200pt;}
._3_c00313{width:10.451200pt;}
._8_c00313{width:12.166400pt;}
._10_c00313{width:13.120000pt;}
._b_c00313{width:14.688000pt;}
._13_c00313{width:16.960000pt;}
._c_c00313{width:18.118400pt;}
._d_c00313{width:19.334400pt;}
.fs0_c00313{font-size:53.440000pt;}
.fs1_c00313{font-size:64.000000pt;}
.y0_c00313{bottom:0.000000pt;}
.y6_c00313{bottom:50.987067pt;}
.y5_c00313{bottom:69.387067pt;}
.y27_c00313{bottom:116.267067pt;}
.y26_c00313{bottom:143.867067pt;}
.y25_c00313{bottom:171.467067pt;}
.y24_c00313{bottom:199.067067pt;}
.y23_c00313{bottom:226.667067pt;}
.y22_c00313{bottom:254.267067pt;}
.y21_c00313{bottom:281.867067pt;}
.y20_c00313{bottom:309.467067pt;}
.y1f_c00313{bottom:337.067067pt;}
.y1e_c00313{bottom:364.667067pt;}
.y1d_c00313{bottom:392.267067pt;}
.y1c_c00313{bottom:419.867067pt;}
.y1b_c00313{bottom:447.467067pt;}
.y1a_c00313{bottom:475.067067pt;}
.y19_c00313{bottom:502.667067pt;}
.y18_c00313{bottom:530.267067pt;}
.y17_c00313{bottom:557.867067pt;}
.y16_c00313{bottom:585.467067pt;}
.y15_c00313{bottom:613.067067pt;}
.y14_c00313{bottom:640.667067pt;}
.y13_c00313{bottom:668.267067pt;}
.y12_c00313{bottom:695.867067pt;}
.y11_c00313{bottom:723.467067pt;}
.y10_c00313{bottom:751.067067pt;}
.yf_c00313{bottom:778.667067pt;}
.ye_c00313{bottom:806.267067pt;}
.yd_c00313{bottom:833.867067pt;}
.yc_c00313{bottom:861.467067pt;}
.yb_c00313{bottom:889.067067pt;}
.ya_c00313{bottom:916.587067pt;}
.y9_c00313{bottom:944.187067pt;}
.y8_c00313{bottom:971.787067pt;}
.y7_c00313{bottom:999.387067pt;}
.y4_c00313{bottom:1017.227251pt;}
.y3_c00313{bottom:1032.587243pt;}
.y2_c00313{bottom:1047.867075pt;}
.y1_c00313{bottom:1063.227067pt;}
.h1_c00313{height:47.020937pt;}
.h2_c00313{height:56.156250pt;}
.h3_c00313{height:56.312500pt;}
.h0_c00313{height:1122.666667pt;}
.w1_c00313{width:793.333333pt;}
.w0_c00313{width:793.626667pt;}
.x0_c00313{left:0.000000pt;}
.x4_c00313{left:113.440000pt;}
.x1_c00313{left:577.440000pt;}
.x3_c00313{left:656.400000pt;}
.x2_c00313{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eff58184f4f5c55a9378843a.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.095703;font-style:normal;font-weight:normal;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_907b48959df4f6012fc95315.woff2')format("woff");}.ff2_c00314{font-family:ff2_c00314;line-height:1.093262;font-style: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;}
.lse_c00314{letter-spacing:-0.102204px;}
.ls11_c00314{letter-spacing:-0.028800px;}
.ls10_c00314{letter-spacing:-0.007200px;}
.ls12_c00314{letter-spacing:-0.005400px;}
.lsf_c00314{letter-spacing:0.000000px;}
.lsd_c00314{letter-spacing:0.005400px;}
.ls5_c00314{letter-spacing:0.007200px;}
.lsb_c00314{letter-spacing:0.014400px;}
.ls2_c00314{letter-spacing:0.016200px;}
.ls1_c00314{letter-spacing:0.021600px;}
.ls6_c00314{letter-spacing:0.028800px;}
.ls9_c00314{letter-spacing:0.036000px;}
.ls0_c00314{letter-spacing:0.043200px;}
.lsa_c00314{letter-spacing:0.050400px;}
.ls8_c00314{letter-spacing:0.057600px;}
.ls4_c00314{letter-spacing:0.064800px;}
.ls3_c00314{letter-spacing:0.072000px;}
.ls7_c00314{letter-spacing:0.086400px;}
.lsc_c00314{letter-spacing:0.136800px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00314{word-spacing:-18.000000px;}
.ws7_c00314{word-spacing:-0.712800px;}
.ws6_c00314{word-spacing:-0.199800px;}
.ws2_c00314{word-spacing:0.000000px;}
.ws9_c00314{word-spacing:0.172800px;}
.ws8_c00314{word-spacing:0.183600px;}
.ws1_c00314{word-spacing:0.192384px;}
.ws3_c00314{word-spacing:5.923800px;}
.ws5_c00314{word-spacing:5.934600px;}
.ws4_c00314{word-spacing:5.940000px;}
._8_c00314{margin-left:-4.924800px;}
._4_c00314{margin-left:-3.261600px;}
._7_c00314{margin-left:-2.134800px;}
._3_c00314{margin-left:-1.020600px;}
._0_c00314{width:1.034064px;}
._5_c00314{width:2.088000px;}
._2_c00314{width:3.672000px;}
._1_c00314{width:4.996800px;}
._6_c00314{width:8.618400px;}
.fc3_c00314{color:rgb(255,0,0);}
.fc2_c00314{color:rgb(68,84,106);}
.fc1_c00314{color:rgb(0,0,0);}
.fc0_c00314{color:rgb(32,31,30);}
.fs2_c00314{font-size:54.000000px;}
.fs0_c00314{font-size:60.120000px;}
.fs1_c00314{font-size:72.000000px;}
.y0_c00314{bottom:0.000000px;}
.y5_c00314{bottom:57.360450px;}
.y4_c00314{bottom:78.060450px;}
.y1f_c00314{bottom:127.740450px;}
.y1e_c00314{bottom:158.790450px;}
.y1d_c00314{bottom:197.670450px;}
.y1c_c00314{bottom:325.020450px;}
.y1b_c00314{bottom:363.720600px;}
.y1a_c00314{bottom:394.860600px;}
.y19_c00314{bottom:425.910600px;}
.y18_c00314{bottom:456.960600px;}
.y17_c00314{bottom:488.010600px;}
.y16_c00314{bottom:530.940600px;}
.y15_c00314{bottom:562.080600px;}
.y14_c00314{bottom:593.130600px;}
.y13_c00314{bottom:624.180600px;}
.y12_c00314{bottom:667.110600px;}
.y11_c00314{bottom:698.250600px;}
.y10_c00314{bottom:729.300600px;}
.yf_c00314{bottom:760.350600px;}
.ye_c00314{bottom:791.400600px;}
.yd_c00314{bottom:822.450600px;}
.yc_c00314{bottom:853.500600px;}
.yb_c00314{bottom:880.500600px;}
.ya_c00314{bottom:999.300000px;}
.y9_c00314{bottom:1022.610450px;}
.y8_c00314{bottom:1049.340450px;}
.y7_c00314{bottom:1080.390450px;}
.y6_c00314{bottom:1111.440450px;}
.y3_c00314{bottom:1132.140450px;}
.y2_c00314{bottom:1165.441023px;}
.y1_c00314{bottom:1196.040600px;}
.h3_c00314{height:47.513672px;}
.h1_c00314{height:52.898555px;}
.h2_c00314{height:63.175781px;}
.h4_c00314{height:63.351562px;}
.h0_c00314{height:1263.000000px;}
.w1_c00314{width:892.500000px;}
.w0_c00314{width:892.830000px;}
.x0_c00314{left:0.000000px;}
.x1_c00314{left:127.620000px;}
.x4_c00314{left:446.490000px;}
.x2_c00314{left:738.450000px;}
.x5_c00314{left:759.420000px;}
.x3_c00314{left:761.490000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.lse_c00314{letter-spacing:-0.090848pt;}
.ls11_c00314{letter-spacing:-0.025600pt;}
.ls10_c00314{letter-spacing:-0.006400pt;}
.ls12_c00314{letter-spacing:-0.004800pt;}
.lsf_c00314{letter-spacing:0.000000pt;}
.lsd_c00314{letter-spacing:0.004800pt;}
.ls5_c00314{letter-spacing:0.006400pt;}
.lsb_c00314{letter-spacing:0.012800pt;}
.ls2_c00314{letter-spacing:0.014400pt;}
.ls1_c00314{letter-spacing:0.019200pt;}
.ls6_c00314{letter-spacing:0.025600pt;}
.ls9_c00314{letter-spacing:0.032000pt;}
.ls0_c00314{letter-spacing:0.038400pt;}
.lsa_c00314{letter-spacing:0.044800pt;}
.ls8_c00314{letter-spacing:0.051200pt;}
.ls4_c00314{letter-spacing:0.057600pt;}
.ls3_c00314{letter-spacing:0.064000pt;}
.ls7_c00314{letter-spacing:0.076800pt;}
.lsc_c00314{letter-spacing:0.121600pt;}
.ws0_c00314{word-spacing:-16.000000pt;}
.ws7_c00314{word-spacing:-0.633600pt;}
.ws6_c00314{word-spacing:-0.177600pt;}
.ws2_c00314{word-spacing:0.000000pt;}
.ws9_c00314{word-spacing:0.153600pt;}
.ws8_c00314{word-spacing:0.163200pt;}
.ws1_c00314{word-spacing:0.171008pt;}
.ws3_c00314{word-spacing:5.265600pt;}
.ws5_c00314{word-spacing:5.275200pt;}
.ws4_c00314{word-spacing:5.280000pt;}
._8_c00314{margin-left:-4.377600pt;}
._4_c00314{margin-left:-2.899200pt;}
._7_c00314{margin-left:-1.897600pt;}
._3_c00314{margin-left:-0.907200pt;}
._0_c00314{width:0.919168pt;}
._5_c00314{width:1.856000pt;}
._2_c00314{width:3.264000pt;}
._1_c00314{width:4.441600pt;}
._6_c00314{width:7.660800pt;}
.fs2_c00314{font-size:48.000000pt;}
.fs0_c00314{font-size:53.440000pt;}
.fs1_c00314{font-size:64.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.y5_c00314{bottom:50.987067pt;}
.y4_c00314{bottom:69.387067pt;}
.y1f_c00314{bottom:113.547067pt;}
.y1e_c00314{bottom:141.147067pt;}
.y1d_c00314{bottom:175.707067pt;}
.y1c_c00314{bottom:288.907067pt;}
.y1b_c00314{bottom:323.307200pt;}
.y1a_c00314{bottom:350.987200pt;}
.y19_c00314{bottom:378.587200pt;}
.y18_c00314{bottom:406.187200pt;}
.y17_c00314{bottom:433.787200pt;}
.y16_c00314{bottom:471.947200pt;}
.y15_c00314{bottom:499.627200pt;}
.y14_c00314{bottom:527.227200pt;}
.y13_c00314{bottom:554.827200pt;}
.y12_c00314{bottom:592.987200pt;}
.y11_c00314{bottom:620.667200pt;}
.y10_c00314{bottom:648.267200pt;}
.yf_c00314{bottom:675.867200pt;}
.ye_c00314{bottom:703.467200pt;}
.yd_c00314{bottom:731.067200pt;}
.yc_c00314{bottom:758.667200pt;}
.yb_c00314{bottom:782.667200pt;}
.ya_c00314{bottom:888.266667pt;}
.y9_c00314{bottom:908.987067pt;}
.y8_c00314{bottom:932.747067pt;}
.y7_c00314{bottom:960.347067pt;}
.y6_c00314{bottom:987.947067pt;}
.y3_c00314{bottom:1006.347067pt;}
.y2_c00314{bottom:1035.947576pt;}
.y1_c00314{bottom:1063.147200pt;}
.h3_c00314{height:42.234375pt;}
.h1_c00314{height:47.020937pt;}
.h2_c00314{height:56.156250pt;}
.h4_c00314{height:56.312500pt;}
.h0_c00314{height:1122.666667pt;}
.w1_c00314{width:793.333333pt;}
.w0_c00314{width:793.626667pt;}
.x0_c00314{left:0.000000pt;}
.x1_c00314{left:113.440000pt;}
.x4_c00314{left:396.880000pt;}
.x2_c00314{left:656.400000pt;}
.x5_c00314{left:675.040000pt;}
.x3_c00314{left:676.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_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_65bf853d9a939317698b9ff8.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.095703;font-style:normal;font-weight:normal;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_f0ea8587f35aa6bec6ebcaf0.woff2')format("woff");}.ff2_c00315{font-family:ff2_c00315;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00315;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00315{font-family:ff3_c00315;line-height:1.104004;font-style: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;}
.ls10_c00315{letter-spacing:-0.561600px;}
.lsc_c00315{letter-spacing:-0.048096px;}
.ls11_c00315{letter-spacing:-0.016200px;}
.lsf_c00315{letter-spacing:-0.014400px;}
.lse_c00315{letter-spacing:-0.007200px;}
.lsd_c00315{letter-spacing:0.000000px;}
.ls4_c00315{letter-spacing:0.007200px;}
.ls0_c00315{letter-spacing:0.014400px;}
.ls7_c00315{letter-spacing:0.021600px;}
.ls3_c00315{letter-spacing:0.028800px;}
.lsb_c00315{letter-spacing:0.036000px;}
.ls5_c00315{letter-spacing:0.043200px;}
.ls8_c00315{letter-spacing:0.050400px;}
.ls1_c00315{letter-spacing:0.057600px;}
.ls2_c00315{letter-spacing:0.064800px;}
.ls6_c00315{letter-spacing:0.072000px;}
.lsa_c00315{letter-spacing:0.079200px;}
.ls9_c00315{letter-spacing:9.720000px;}
.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;}
}
.ws1_c00315{word-spacing:0.000000px;}
.ws0_c00315{word-spacing:0.138276px;}
.ws2_c00315{word-spacing:0.178200px;}
.ws3_c00315{word-spacing:0.194400px;}
._2_c00315{margin-left:-3.664800px;}
._7_c00315{margin-left:-2.548800px;}
._3_c00315{margin-left:-1.094400px;}
._1_c00315{width:1.468800px;}
._0_c00315{width:2.505600px;}
._4_c00315{width:3.556800px;}
._6_c00315{width:9.705600px;}
._5_c00315{width:19.087200px;}
.fc1_c00315{color:rgb(68,84,106);}
.fc0_c00315{color:rgb(0,0,0);}
.fs2_c00315{font-size:54.000000px;}
.fs0_c00315{font-size:60.120000px;}
.fs1_c00315{font-size:72.000000px;}
.fs3_c00315{font-size:83.880000px;}
.y0_c00315{bottom:0.000000px;}
.y6_c00315{bottom:57.360450px;}
.y5_c00315{bottom:78.060450px;}
.y20_c00315{bottom:138.720600px;}
.y1f_c00315{bottom:173.100600px;}
.y1e_c00315{bottom:207.390600px;}
.y1d_c00315{bottom:241.770600px;}
.y1c_c00315{bottom:276.060600px;}
.y1b_c00315{bottom:310.440600px;}
.y1a_c00315{bottom:344.730600px;}
.y19_c00315{bottom:379.110600px;}
.y18_c00315{bottom:413.400600px;}
.y17_c00315{bottom:447.780600px;}
.y16_c00315{bottom:470.910450px;}
.y21_c00315{bottom:507.990600px;}
.y15_c00315{bottom:658.020450px;}
.y14_c00315{bottom:696.630450px;}
.y13_c00315{bottom:727.770450px;}
.y12_c00315{bottom:758.820450px;}
.y11_c00315{bottom:789.870450px;}
.y10_c00315{bottom:820.920450px;}
.yf_c00315{bottom:851.970450px;}
.ye_c00315{bottom:894.900450px;}
.yd_c00315{bottom:926.040450px;}
.yc_c00315{bottom:957.090450px;}
.yb_c00315{bottom:988.140450px;}
.ya_c00315{bottom:1019.190450px;}
.y9_c00315{bottom:1062.120450px;}
.y8_c00315{bottom:1093.260450px;}
.y7_c00315{bottom:1124.310450px;}
.y4_c00315{bottom:1144.380657px;}
.y3_c00315{bottom:1161.660648px;}
.y2_c00315{bottom:1178.850459px;}
.y1_c00315{bottom:1196.130450px;}
.h4_c00315{height:47.513672px;}
.h1_c00315{height:52.898555px;}
.h2_c00315{height:63.175781px;}
.h3_c00315{height:63.351562px;}
.h5_c00315{height:74.500840px;}
.h0_c00315{height:1263.000000px;}
.w1_c00315{width:892.500000px;}
.w0_c00315{width:892.830000px;}
.x0_c00315{left:0.000000px;}
.x4_c00315{left:127.620000px;}
.x5_c00315{left:135.630000px;}
.x1_c00315{left:649.620000px;}
.x3_c00315{left:738.450000px;}
.x2_c00315{left:765.450198px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls10_c00315{letter-spacing:-0.499200pt;}
.lsc_c00315{letter-spacing:-0.042752pt;}
.ls11_c00315{letter-spacing:-0.014400pt;}
.lsf_c00315{letter-spacing:-0.012800pt;}
.lse_c00315{letter-spacing:-0.006400pt;}
.lsd_c00315{letter-spacing:0.000000pt;}
.ls4_c00315{letter-spacing:0.006400pt;}
.ls0_c00315{letter-spacing:0.012800pt;}
.ls7_c00315{letter-spacing:0.019200pt;}
.ls3_c00315{letter-spacing:0.025600pt;}
.lsb_c00315{letter-spacing:0.032000pt;}
.ls5_c00315{letter-spacing:0.038400pt;}
.ls8_c00315{letter-spacing:0.044800pt;}
.ls1_c00315{letter-spacing:0.051200pt;}
.ls2_c00315{letter-spacing:0.057600pt;}
.ls6_c00315{letter-spacing:0.064000pt;}
.lsa_c00315{letter-spacing:0.070400pt;}
.ls9_c00315{letter-spacing:8.640000pt;}
.ws1_c00315{word-spacing:0.000000pt;}
.ws0_c00315{word-spacing:0.122912pt;}
.ws2_c00315{word-spacing:0.158400pt;}
.ws3_c00315{word-spacing:0.172800pt;}
._2_c00315{margin-left:-3.257600pt;}
._7_c00315{margin-left:-2.265600pt;}
._3_c00315{margin-left:-0.972800pt;}
._1_c00315{width:1.305600pt;}
._0_c00315{width:2.227200pt;}
._4_c00315{width:3.161600pt;}
._6_c00315{width:8.627200pt;}
._5_c00315{width:16.966400pt;}
.fs2_c00315{font-size:48.000000pt;}
.fs0_c00315{font-size:53.440000pt;}
.fs1_c00315{font-size:64.000000pt;}
.fs3_c00315{font-size:74.560000pt;}
.y0_c00315{bottom:0.000000pt;}
.y6_c00315{bottom:50.987067pt;}
.y5_c00315{bottom:69.387067pt;}
.y20_c00315{bottom:123.307200pt;}
.y1f_c00315{bottom:153.867200pt;}
.y1e_c00315{bottom:184.347200pt;}
.y1d_c00315{bottom:214.907200pt;}
.y1c_c00315{bottom:245.387200pt;}
.y1b_c00315{bottom:275.947200pt;}
.y1a_c00315{bottom:306.427200pt;}
.y19_c00315{bottom:336.987200pt;}
.y18_c00315{bottom:367.467200pt;}
.y17_c00315{bottom:398.027200pt;}
.y16_c00315{bottom:418.587067pt;}
.y21_c00315{bottom:451.547200pt;}
.y15_c00315{bottom:584.907067pt;}
.y14_c00315{bottom:619.227067pt;}
.y13_c00315{bottom:646.907067pt;}
.y12_c00315{bottom:674.507067pt;}
.y11_c00315{bottom:702.107067pt;}
.y10_c00315{bottom:729.707067pt;}
.yf_c00315{bottom:757.307067pt;}
.ye_c00315{bottom:795.467067pt;}
.yd_c00315{bottom:823.147067pt;}
.yc_c00315{bottom:850.747067pt;}
.yb_c00315{bottom:878.347067pt;}
.ya_c00315{bottom:905.947067pt;}
.y9_c00315{bottom:944.107067pt;}
.y8_c00315{bottom:971.787067pt;}
.y7_c00315{bottom:999.387067pt;}
.y4_c00315{bottom:1017.227251pt;}
.y3_c00315{bottom:1032.587243pt;}
.y2_c00315{bottom:1047.867075pt;}
.y1_c00315{bottom:1063.227067pt;}
.h4_c00315{height:42.234375pt;}
.h1_c00315{height:47.020937pt;}
.h2_c00315{height:56.156250pt;}
.h3_c00315{height:56.312500pt;}
.h5_c00315{height:66.222969pt;}
.h0_c00315{height:1122.666667pt;}
.w1_c00315{width:793.333333pt;}
.w0_c00315{width:793.626667pt;}
.x0_c00315{left:0.000000pt;}
.x4_c00315{left:113.440000pt;}
.x5_c00315{left:120.560000pt;}
.x1_c00315{left:577.440000pt;}
.x3_c00315{left:656.400000pt;}
.x2_c00315{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.095703;font-style:normal;font-weight:normal;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_b251b9f6b60c109458f3ace1.woff2')format("woff");}.ff2_c00316{font-family:ff2_c00316;line-height:1.093262;font-style:normal;font-weight:normal;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_6596b3e9b6b38a3f85d71cfd.woff2')format("woff");}.ff3_c00316{font-family:ff3_c00316;line-height:1.104004;font-style:normal;font-weight:normal;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_cf53734af112e018958de9e1.woff2')format("woff");}.ff4_c00316{font-family:ff4_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:ff5_c00316;src:url('chunks/assets/font_dc7aa56992ecb6b5321cca3a.woff2')format("woff");}.ff5_c00316{font-family:ff5_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;}
.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;}
.ls16_c00316{letter-spacing:-0.151200px;}
.ls23_c00316{letter-spacing:-0.135000px;}
.ls13_c00316{letter-spacing:-0.124200px;}
.ls25_c00316{letter-spacing:-0.113400px;}
.ls1b_c00316{letter-spacing:-0.108000px;}
.ls17_c00316{letter-spacing:-0.102600px;}
.lse_c00316{letter-spacing:-0.102204px;}
.ls28_c00316{letter-spacing:-0.097200px;}
.ls24_c00316{letter-spacing:-0.091800px;}
.ls14_c00316{letter-spacing:-0.086400px;}
.ls27_c00316{letter-spacing:-0.081000px;}
.ls11_c00316{letter-spacing:-0.079200px;}
.ls1f_c00316{letter-spacing:-0.075600px;}
.ls1d_c00316{letter-spacing:-0.070200px;}
.ls22_c00316{letter-spacing:-0.064800px;}
.ls1a_c00316{letter-spacing:-0.059400px;}
.ls26_c00316{letter-spacing:-0.054000px;}
.ls2b_c00316{letter-spacing:-0.050400px;}
.ls29_c00316{letter-spacing:-0.048600px;}
.ls1c_c00316{letter-spacing:-0.043200px;}
.ls1e_c00316{letter-spacing:-0.037800px;}
.ls12_c00316{letter-spacing:-0.036000px;}
.ls18_c00316{letter-spacing:-0.032400px;}
.ls2a_c00316{letter-spacing:-0.028800px;}
.ls19_c00316{letter-spacing:-0.010800px;}
.ls10_c00316{letter-spacing:-0.005400px;}
.lsf_c00316{letter-spacing:0.000000px;}
.lsa_c00316{letter-spacing:0.007200px;}
.ls8_c00316{letter-spacing:0.014400px;}
.ls6_c00316{letter-spacing:0.021600px;}
.ls0_c00316{letter-spacing:0.025164px;}
.ls1_c00316{letter-spacing:0.027000px;}
.lsd_c00316{letter-spacing:0.028800px;}
.ls5_c00316{letter-spacing:0.036000px;}
.ls9_c00316{letter-spacing:0.043200px;}
.ls3_c00316{letter-spacing:0.048600px;}
.ls4_c00316{letter-spacing:0.050400px;}
.ls7_c00316{letter-spacing:0.057600px;}
.lsc_c00316{letter-spacing:0.072000px;}
.lsb_c00316{letter-spacing:0.108000px;}
.ls2_c00316{letter-spacing:0.124200px;}
.ls20_c00316{letter-spacing:0.172800px;}
.ls15_c00316{letter-spacing:0.205200px;}
.ls21_c00316{letter-spacing:0.496800px;}
.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.936800px;}
.ws2_c00316{word-spacing:0.000000px;}
.ws1_c00316{word-spacing:0.192384px;}
._1a_c00316{margin-left:-2.926800px;}
._5_c00316{margin-left:-1.225800px;}
._0_c00316{width:1.034064px;}
._6_c00316{width:2.327400px;}
._21_c00316{width:3.931200px;}
._1c_c00316{width:5.227200px;}
._1f_c00316{width:6.501600px;}
._1e_c00316{width:7.689600px;}
._10_c00316{width:9.050400px;}
._20_c00316{width:13.204800px;}
._b_c00316{width:36.801000px;}
._4_c00316{width:42.395400px;}
._2_c00316{width:48.794400px;}
._3_c00316{width:52.045200px;}
._e_c00316{width:61.873200px;}
._13_c00316{width:69.730200px;}
._17_c00316{width:79.439400px;}
._1b_c00316{width:85.647600px;}
._8_c00316{width:89.622000px;}
._1_c00316{width:110.059200px;}
._12_c00316{width:146.030400px;}
._c_c00316{width:171.307800px;}
._15_c00316{width:200.983536px;}
._1d_c00316{width:215.331336px;}
._16_c00316{width:218.619936px;}
._19_c00316{width:269.811936px;}
._9_c00316{width:295.455600px;}
._18_c00316{width:297.414000px;}
._a_c00316{width:363.088800px;}
._7_c00316{width:481.338000px;}
._14_c00316{width:482.888736px;}
._f_c00316{width:507.236400px;}
._d_c00316{width:566.830800px;}
._11_c00316{width:584.056800px;}
.fc3_c00316{color:rgb(38,74,96);}
.fc2_c00316{color:rgb(1,2,5);}
.fc1_c00316{color:rgb(0,0,0);}
.fc4_c00316{color:transparent;}
.fc0_c00316{color:rgb(32,31,30);}
.fs4_c00316{font-size:2.880000px;}
.fs3_c00316{font-size:54.000000px;}
.fs0_c00316{font-size:60.120000px;}
.fs1_c00316{font-size:72.000000px;}
.fs2_c00316{font-size:83.880000px;}
.y0_c00316{bottom:0.000000px;}
.y5_c00316{bottom:57.360450px;}
.y4_c00316{bottom:78.060450px;}
.y45_c00316{bottom:117.930450px;}
.y44_c00316{bottom:148.980450px;}
.y43_c00316{bottom:180.030450px;}
.y42_c00316{bottom:211.080450px;}
.y41_c00316{bottom:242.130450px;}
.y40_c00316{bottom:273.180450px;}
.y3f_c00316{bottom:304.230450px;}
.y3e_c00316{bottom:335.280450px;}
.y3d_c00316{bottom:366.330450px;}
.y3c_c00316{bottom:397.380450px;}
.y3b_c00316{bottom:428.430450px;}
.y3a_c00316{bottom:459.480450px;}
.y21_c00316{bottom:477.390450px;}
.y39_c00316{bottom:489.180600px;}
.y38_c00316{bottom:512.850000px;}
.y20_c00316{bottom:513.570450px;}
.y37_c00316{bottom:536.160450px;}
.y1f_c00316{bottom:537.240450px;}
.y36_c00316{bottom:559.830450px;}
.y1e_c00316{bottom:560.460450px;}
.y35_c00316{bottom:583.500450px;}
.y1d_c00316{bottom:584.130450px;}
.y34_c00316{bottom:607.170450px;}
.y1c_c00316{bottom:607.800450px;}
.y33_c00316{bottom:630.750000px;}
.y1b_c00316{bottom:631.110450px;}
.y32_c00316{bottom:654.060450px;}
.y1a_c00316{bottom:654.780450px;}
.y31_c00316{bottom:677.730450px;}
.y19_c00316{bottom:678.450450px;}
.y30_c00316{bottom:701.400450px;}
.y18_c00316{bottom:702.030000px;}
.y2f_c00316{bottom:725.070450px;}
.y17_c00316{bottom:725.340450px;}
.y2e_c00316{bottom:748.740450px;}
.y16_c00316{bottom:749.010450px;}
.y2d_c00316{bottom:771.960450px;}
.y15_c00316{bottom:772.680000px;}
.y2c_c00316{bottom:795.630450px;}
.y14_c00316{bottom:795.990450px;}
.y2b_c00316{bottom:819.300450px;}
.y13_c00316{bottom:819.660450px;}
.y2a_c00316{bottom:842.970450px;}
.y12_c00316{bottom:843.240450px;}
.y29_c00316{bottom:866.640450px;}
.y11_c00316{bottom:866.910450px;}
.y10_c00316{bottom:890.220450px;}
.y28_c00316{bottom:890.310450px;}
.y27_c00316{bottom:913.620450px;}
.yf_c00316{bottom:913.890000px;}
.ye_c00316{bottom:937.200450px;}
.y26_c00316{bottom:937.290600px;}
.yc_c00316{bottom:964.380450px;}
.y24_c00316{bottom:964.470450px;}
.yb_c00316{bottom:995.430450px;}
.y23_c00316{bottom:995.520450px;}
.ya_c00316{bottom:1026.480450px;}
.y22_c00316{bottom:1026.570450px;}
.yd_c00316{bottom:1030.710450px;}
.y25_c00316{bottom:1030.800450px;}
.y9_c00316{bottom:1043.670450px;}
.y8_c00316{bottom:1055.370450px;}
.y7_c00316{bottom:1085.250450px;}
.y6_c00316{bottom:1108.380450px;}
.y3_c00316{bottom:1132.140450px;}
.y2_c00316{bottom:1165.441023px;}
.y1_c00316{bottom:1196.040600px;}
.h5_c00316{height:2.557969px;}
.h4_c00316{height:47.381836px;}
.h7_c00316{height:48.410156px;}
.h1_c00316{height:52.898555px;}
.h2_c00316{height:63.175781px;}
.h6_c00316{height:65.003906px;}
.h3_c00316{height:74.500840px;}
.h0_c00316{height:1263.000000px;}
.w1_c00316{width:892.500000px;}
.w0_c00316{width:892.830000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:127.620000px;}
.x3_c00316{left:135.630000px;}
.x4_c00316{left:143.730000px;}
.x6_c00316{left:148.230000px;}
.x7_c00316{left:164.970000px;}
.x5_c00316{left:344.880000px;}
.x8_c00316{left:454.590000px;}
.x9_c00316{left:462.690000px;}
.xb_c00316{left:483.840000px;}
.xa_c00316{left:663.750000px;}
.x2_c00316{left:738.450000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls16_c00316{letter-spacing:-0.134400pt;}
.ls23_c00316{letter-spacing:-0.120000pt;}
.ls13_c00316{letter-spacing:-0.110400pt;}
.ls25_c00316{letter-spacing:-0.100800pt;}
.ls1b_c00316{letter-spacing:-0.096000pt;}
.ls17_c00316{letter-spacing:-0.091200pt;}
.lse_c00316{letter-spacing:-0.090848pt;}
.ls28_c00316{letter-spacing:-0.086400pt;}
.ls24_c00316{letter-spacing:-0.081600pt;}
.ls14_c00316{letter-spacing:-0.076800pt;}
.ls27_c00316{letter-spacing:-0.072000pt;}
.ls11_c00316{letter-spacing:-0.070400pt;}
.ls1f_c00316{letter-spacing:-0.067200pt;}
.ls1d_c00316{letter-spacing:-0.062400pt;}
.ls22_c00316{letter-spacing:-0.057600pt;}
.ls1a_c00316{letter-spacing:-0.052800pt;}
.ls26_c00316{letter-spacing:-0.048000pt;}
.ls2b_c00316{letter-spacing:-0.044800pt;}
.ls29_c00316{letter-spacing:-0.043200pt;}
.ls1c_c00316{letter-spacing:-0.038400pt;}
.ls1e_c00316{letter-spacing:-0.033600pt;}
.ls12_c00316{letter-spacing:-0.032000pt;}
.ls18_c00316{letter-spacing:-0.028800pt;}
.ls2a_c00316{letter-spacing:-0.025600pt;}
.ls19_c00316{letter-spacing:-0.009600pt;}
.ls10_c00316{letter-spacing:-0.004800pt;}
.lsf_c00316{letter-spacing:0.000000pt;}
.lsa_c00316{letter-spacing:0.006400pt;}
.ls8_c00316{letter-spacing:0.012800pt;}
.ls6_c00316{letter-spacing:0.019200pt;}
.ls0_c00316{letter-spacing:0.022368pt;}
.ls1_c00316{letter-spacing:0.024000pt;}
.lsd_c00316{letter-spacing:0.025600pt;}
.ls5_c00316{letter-spacing:0.032000pt;}
.ls9_c00316{letter-spacing:0.038400pt;}
.ls3_c00316{letter-spacing:0.043200pt;}
.ls4_c00316{letter-spacing:0.044800pt;}
.ls7_c00316{letter-spacing:0.051200pt;}
.lsc_c00316{letter-spacing:0.064000pt;}
.lsb_c00316{letter-spacing:0.096000pt;}
.ls2_c00316{letter-spacing:0.110400pt;}
.ls20_c00316{letter-spacing:0.153600pt;}
.ls15_c00316{letter-spacing:0.182400pt;}
.ls21_c00316{letter-spacing:0.441600pt;}
.ws0_c00316{word-spacing:-17.721600pt;}
.ws2_c00316{word-spacing:0.000000pt;}
.ws1_c00316{word-spacing:0.171008pt;}
._1a_c00316{margin-left:-2.601600pt;}
._5_c00316{margin-left:-1.089600pt;}
._0_c00316{width:0.919168pt;}
._6_c00316{width:2.068800pt;}
._21_c00316{width:3.494400pt;}
._1c_c00316{width:4.646400pt;}
._1f_c00316{width:5.779200pt;}
._1e_c00316{width:6.835200pt;}
._10_c00316{width:8.044800pt;}
._20_c00316{width:11.737600pt;}
._b_c00316{width:32.712000pt;}
._4_c00316{width:37.684800pt;}
._2_c00316{width:43.372800pt;}
._3_c00316{width:46.262400pt;}
._e_c00316{width:54.998400pt;}
._13_c00316{width:61.982400pt;}
._17_c00316{width:70.612800pt;}
._1b_c00316{width:76.131200pt;}
._8_c00316{width:79.664000pt;}
._1_c00316{width:97.830400pt;}
._12_c00316{width:129.804800pt;}
._c_c00316{width:152.273600pt;}
._15_c00316{width:178.652032pt;}
._1d_c00316{width:191.405632pt;}
._16_c00316{width:194.328832pt;}
._19_c00316{width:239.832832pt;}
._9_c00316{width:262.627200pt;}
._18_c00316{width:264.368000pt;}
._a_c00316{width:322.745600pt;}
._7_c00316{width:427.856000pt;}
._14_c00316{width:429.234432pt;}
._f_c00316{width:450.876800pt;}
._d_c00316{width:503.849600pt;}
._11_c00316{width:519.161600pt;}
.fs4_c00316{font-size:2.560000pt;}
.fs3_c00316{font-size:48.000000pt;}
.fs0_c00316{font-size:53.440000pt;}
.fs1_c00316{font-size:64.000000pt;}
.fs2_c00316{font-size:74.560000pt;}
.y0_c00316{bottom:0.000000pt;}
.y5_c00316{bottom:50.987067pt;}
.y4_c00316{bottom:69.387067pt;}
.y45_c00316{bottom:104.827067pt;}
.y44_c00316{bottom:132.427067pt;}
.y43_c00316{bottom:160.027067pt;}
.y42_c00316{bottom:187.627067pt;}
.y41_c00316{bottom:215.227067pt;}
.y40_c00316{bottom:242.827067pt;}
.y3f_c00316{bottom:270.427067pt;}
.y3e_c00316{bottom:298.027067pt;}
.y3d_c00316{bottom:325.627067pt;}
.y3c_c00316{bottom:353.227067pt;}
.y3b_c00316{bottom:380.827067pt;}
.y3a_c00316{bottom:408.427067pt;}
.y21_c00316{bottom:424.347067pt;}
.y39_c00316{bottom:434.827200pt;}
.y38_c00316{bottom:455.866667pt;}
.y20_c00316{bottom:456.507067pt;}
.y37_c00316{bottom:476.587067pt;}
.y1f_c00316{bottom:477.547067pt;}
.y36_c00316{bottom:497.627067pt;}
.y1e_c00316{bottom:498.187067pt;}
.y35_c00316{bottom:518.667067pt;}
.y1d_c00316{bottom:519.227067pt;}
.y34_c00316{bottom:539.707067pt;}
.y1c_c00316{bottom:540.267067pt;}
.y33_c00316{bottom:560.666667pt;}
.y1b_c00316{bottom:560.987067pt;}
.y32_c00316{bottom:581.387067pt;}
.y1a_c00316{bottom:582.027067pt;}
.y31_c00316{bottom:602.427067pt;}
.y19_c00316{bottom:603.067067pt;}
.y30_c00316{bottom:623.467067pt;}
.y18_c00316{bottom:624.026667pt;}
.y2f_c00316{bottom:644.507067pt;}
.y17_c00316{bottom:644.747067pt;}
.y2e_c00316{bottom:665.547067pt;}
.y16_c00316{bottom:665.787067pt;}
.y2d_c00316{bottom:686.187067pt;}
.y15_c00316{bottom:686.826667pt;}
.y2c_c00316{bottom:707.227067pt;}
.y14_c00316{bottom:707.547067pt;}
.y2b_c00316{bottom:728.267067pt;}
.y13_c00316{bottom:728.587067pt;}
.y2a_c00316{bottom:749.307067pt;}
.y12_c00316{bottom:749.547067pt;}
.y29_c00316{bottom:770.347067pt;}
.y11_c00316{bottom:770.587067pt;}
.y10_c00316{bottom:791.307067pt;}
.y28_c00316{bottom:791.387067pt;}
.y27_c00316{bottom:812.107067pt;}
.yf_c00316{bottom:812.346667pt;}
.ye_c00316{bottom:833.067067pt;}
.y26_c00316{bottom:833.147200pt;}
.yc_c00316{bottom:857.227067pt;}
.y24_c00316{bottom:857.307067pt;}
.yb_c00316{bottom:884.827067pt;}
.y23_c00316{bottom:884.907067pt;}
.ya_c00316{bottom:912.427067pt;}
.y22_c00316{bottom:912.507067pt;}
.yd_c00316{bottom:916.187067pt;}
.y25_c00316{bottom:916.267067pt;}
.y9_c00316{bottom:927.707067pt;}
.y8_c00316{bottom:938.107067pt;}
.y7_c00316{bottom:964.667067pt;}
.y6_c00316{bottom:985.227067pt;}
.y3_c00316{bottom:1006.347067pt;}
.y2_c00316{bottom:1035.947576pt;}
.y1_c00316{bottom:1063.147200pt;}
.h5_c00316{height:2.273750pt;}
.h4_c00316{height:42.117188pt;}
.h7_c00316{height:43.031250pt;}
.h1_c00316{height:47.020937pt;}
.h2_c00316{height:56.156250pt;}
.h6_c00316{height:57.781250pt;}
.h3_c00316{height:66.222969pt;}
.h0_c00316{height:1122.666667pt;}
.w1_c00316{width:793.333333pt;}
.w0_c00316{width:793.626667pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:113.440000pt;}
.x3_c00316{left:120.560000pt;}
.x4_c00316{left:127.760000pt;}
.x6_c00316{left:131.760000pt;}
.x7_c00316{left:146.640000pt;}
.x5_c00316{left:306.560000pt;}
.x8_c00316{left:404.080000pt;}
.x9_c00316{left:411.280000pt;}
.xb_c00316{left:430.080000pt;}
.xa_c00316{left:590.000000pt;}
.x2_c00316{left:656.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_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_1680d4b48a43e8a522024c90.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.095703;font-style:normal;font-weight:normal;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_5bf91aa99aa16ed6f28c28d9.woff2')format("woff");}.ff2_c00317{font-family:ff2_c00317;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00317{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls12_c00317{letter-spacing:-2.520000px;}
.lse_c00317{letter-spacing:-0.048096px;}
.ls11_c00317{letter-spacing:-0.014400px;}
.ls10_c00317{letter-spacing:-0.007200px;}
.lsf_c00317{letter-spacing:0.000000px;}
.lsc_c00317{letter-spacing:0.007200px;}
.ls3_c00317{letter-spacing:0.014400px;}
.lsd_c00317{letter-spacing:0.016200px;}
.ls6_c00317{letter-spacing:0.021600px;}
.ls4_c00317{letter-spacing:0.028800px;}
.ls0_c00317{letter-spacing:0.036000px;}
.ls8_c00317{letter-spacing:0.043200px;}
.ls2_c00317{letter-spacing:0.050400px;}
.ls5_c00317{letter-spacing:0.057600px;}
.ls1_c00317{letter-spacing:0.064800px;}
.ls9_c00317{letter-spacing:0.072000px;}
.lsb_c00317{letter-spacing:0.086400px;}
.lsa_c00317{letter-spacing:0.122400px;}
.ls7_c00317{letter-spacing:0.129600px;}
.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:-0.014400px;}
.ws1_c00317{word-spacing:0.000000px;}
.ws0_c00317{word-spacing:0.138276px;}
.ws4_c00317{word-spacing:0.162000px;}
.ws2_c00317{word-spacing:5.342400px;}
._1_c00317{margin-left:-4.464000px;}
._0_c00317{margin-left:-3.276000px;}
._7_c00317{margin-left:-2.210400px;}
._4_c00317{margin-left:-1.094400px;}
._5_c00317{width:1.000800px;}
._b_c00317{width:2.131200px;}
._c_c00317{width:3.232800px;}
._3_c00317{width:5.112000px;}
._8_c00317{width:6.415200px;}
._6_c00317{width:7.531200px;}
._2_c00317{width:11.131200px;}
._a_c00317{width:13.248000px;}
._9_c00317{width:27.345600px;}
.fc1_c00317{color:rgb(68,84,106);}
.fc0_c00317{color:rgb(0,0,0);}
.fs2_c00317{font-size:54.000000px;}
.fs0_c00317{font-size:60.120000px;}
.fs1_c00317{font-size:72.000000px;}
.y0_c00317{bottom:0.000000px;}
.y6_c00317{bottom:57.360450px;}
.y5_c00317{bottom:78.060450px;}
.y25_c00317{bottom:132.600450px;}
.y24_c00317{bottom:163.650450px;}
.y23_c00317{bottom:194.700450px;}
.y22_c00317{bottom:225.750450px;}
.y21_c00317{bottom:256.800450px;}
.y20_c00317{bottom:283.800450px;}
.y1f_c00317{bottom:383.520450px;}
.y1e_c00317{bottom:410.250450px;}
.y1d_c00317{bottom:441.300450px;}
.y1c_c00317{bottom:472.350450px;}
.y1b_c00317{bottom:503.400450px;}
.y1a_c00317{bottom:534.450450px;}
.y19_c00317{bottom:565.500450px;}
.y18_c00317{bottom:596.550450px;}
.y17_c00317{bottom:627.600450px;}
.y16_c00317{bottom:658.650450px;}
.y15_c00317{bottom:689.700450px;}
.y14_c00317{bottom:720.750450px;}
.y13_c00317{bottom:751.800450px;}
.y12_c00317{bottom:782.850450px;}
.y11_c00317{bottom:813.900450px;}
.y10_c00317{bottom:844.950450px;}
.yf_c00317{bottom:876.000450px;}
.ye_c00317{bottom:907.050450px;}
.yd_c00317{bottom:938.100450px;}
.yc_c00317{bottom:969.150450px;}
.yb_c00317{bottom:1000.200450px;}
.ya_c00317{bottom:1031.160450px;}
.y9_c00317{bottom:1062.210450px;}
.y8_c00317{bottom:1093.260450px;}
.y7_c00317{bottom:1124.310450px;}
.y4_c00317{bottom:1144.380657px;}
.y3_c00317{bottom:1161.660648px;}
.y2_c00317{bottom:1178.850459px;}
.y1_c00317{bottom:1196.130450px;}
.h4_c00317{height:47.513672px;}
.h1_c00317{height:52.898555px;}
.h2_c00317{height:63.175781px;}
.h3_c00317{height:63.351562px;}
.h0_c00317{height:1263.000000px;}
.w1_c00317{width:892.500000px;}
.w0_c00317{width:892.830000px;}
.x0_c00317{left:0.000000px;}
.x4_c00317{left:127.620000px;}
.x6_c00317{left:446.490000px;}
.x1_c00317{left:649.620000px;}
.x3_c00317{left:738.450000px;}
.x5_c00317{left:762.210000px;}
.x2_c00317{left:765.450198px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls12_c00317{letter-spacing:-2.240000pt;}
.lse_c00317{letter-spacing:-0.042752pt;}
.ls11_c00317{letter-spacing:-0.012800pt;}
.ls10_c00317{letter-spacing:-0.006400pt;}
.lsf_c00317{letter-spacing:0.000000pt;}
.lsc_c00317{letter-spacing:0.006400pt;}
.ls3_c00317{letter-spacing:0.012800pt;}
.lsd_c00317{letter-spacing:0.014400pt;}
.ls6_c00317{letter-spacing:0.019200pt;}
.ls4_c00317{letter-spacing:0.025600pt;}
.ls0_c00317{letter-spacing:0.032000pt;}
.ls8_c00317{letter-spacing:0.038400pt;}
.ls2_c00317{letter-spacing:0.044800pt;}
.ls5_c00317{letter-spacing:0.051200pt;}
.ls1_c00317{letter-spacing:0.057600pt;}
.ls9_c00317{letter-spacing:0.064000pt;}
.lsb_c00317{letter-spacing:0.076800pt;}
.lsa_c00317{letter-spacing:0.108800pt;}
.ls7_c00317{letter-spacing:0.115200pt;}
.ws3_c00317{word-spacing:-0.012800pt;}
.ws1_c00317{word-spacing:0.000000pt;}
.ws0_c00317{word-spacing:0.122912pt;}
.ws4_c00317{word-spacing:0.144000pt;}
.ws2_c00317{word-spacing:4.748800pt;}
._1_c00317{margin-left:-3.968000pt;}
._0_c00317{margin-left:-2.912000pt;}
._7_c00317{margin-left:-1.964800pt;}
._4_c00317{margin-left:-0.972800pt;}
._5_c00317{width:0.889600pt;}
._b_c00317{width:1.894400pt;}
._c_c00317{width:2.873600pt;}
._3_c00317{width:4.544000pt;}
._8_c00317{width:5.702400pt;}
._6_c00317{width:6.694400pt;}
._2_c00317{width:9.894400pt;}
._a_c00317{width:11.776000pt;}
._9_c00317{width:24.307200pt;}
.fs2_c00317{font-size:48.000000pt;}
.fs0_c00317{font-size:53.440000pt;}
.fs1_c00317{font-size:64.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y6_c00317{bottom:50.987067pt;}
.y5_c00317{bottom:69.387067pt;}
.y25_c00317{bottom:117.867067pt;}
.y24_c00317{bottom:145.467067pt;}
.y23_c00317{bottom:173.067067pt;}
.y22_c00317{bottom:200.667067pt;}
.y21_c00317{bottom:228.267067pt;}
.y20_c00317{bottom:252.267067pt;}
.y1f_c00317{bottom:340.907067pt;}
.y1e_c00317{bottom:364.667067pt;}
.y1d_c00317{bottom:392.267067pt;}
.y1c_c00317{bottom:419.867067pt;}
.y1b_c00317{bottom:447.467067pt;}
.y1a_c00317{bottom:475.067067pt;}
.y19_c00317{bottom:502.667067pt;}
.y18_c00317{bottom:530.267067pt;}
.y17_c00317{bottom:557.867067pt;}
.y16_c00317{bottom:585.467067pt;}
.y15_c00317{bottom:613.067067pt;}
.y14_c00317{bottom:640.667067pt;}
.y13_c00317{bottom:668.267067pt;}
.y12_c00317{bottom:695.867067pt;}
.y11_c00317{bottom:723.467067pt;}
.y10_c00317{bottom:751.067067pt;}
.yf_c00317{bottom:778.667067pt;}
.ye_c00317{bottom:806.267067pt;}
.yd_c00317{bottom:833.867067pt;}
.yc_c00317{bottom:861.467067pt;}
.yb_c00317{bottom:889.067067pt;}
.ya_c00317{bottom:916.587067pt;}
.y9_c00317{bottom:944.187067pt;}
.y8_c00317{bottom:971.787067pt;}
.y7_c00317{bottom:999.387067pt;}
.y4_c00317{bottom:1017.227251pt;}
.y3_c00317{bottom:1032.587243pt;}
.y2_c00317{bottom:1047.867075pt;}
.y1_c00317{bottom:1063.227067pt;}
.h4_c00317{height:42.234375pt;}
.h1_c00317{height:47.020937pt;}
.h2_c00317{height:56.156250pt;}
.h3_c00317{height:56.312500pt;}
.h0_c00317{height:1122.666667pt;}
.w1_c00317{width:793.333333pt;}
.w0_c00317{width:793.626667pt;}
.x0_c00317{left:0.000000pt;}
.x4_c00317{left:113.440000pt;}
.x6_c00317{left:396.880000pt;}
.x1_c00317{left:577.440000pt;}
.x3_c00317{left:656.400000pt;}
.x5_c00317{left:677.520000pt;}
.x2_c00317{left:680.400176pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00318 {
      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_c00318 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00318 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00318 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_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_fb16049b3cbd51371dd84fe4.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.095703;font-style:normal;font-weight:normal;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_a4542ca314d485ba0ea6b8e6.woff2')format("woff");}.ff2_c00319{font-family:ff2_c00319;line-height:1.093262;font-style: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;}
.ls10_c00319{letter-spacing:-0.048096px;}
.ls13_c00319{letter-spacing:-0.014400px;}
.ls14_c00319{letter-spacing:-0.007200px;}
.ls11_c00319{letter-spacing:0.000000px;}
.ls8_c00319{letter-spacing:0.007200px;}
.ls5_c00319{letter-spacing:0.014400px;}
.lsd_c00319{letter-spacing:0.016200px;}
.ls6_c00319{letter-spacing:0.021600px;}
.lsf_c00319{letter-spacing:0.027000px;}
.ls4_c00319{letter-spacing:0.028800px;}
.ls3_c00319{letter-spacing:0.036000px;}
.ls1_c00319{letter-spacing:0.043200px;}
.lse_c00319{letter-spacing:0.048600px;}
.lsb_c00319{letter-spacing:0.050400px;}
.ls9_c00319{letter-spacing:0.057600px;}
.ls7_c00319{letter-spacing:0.064800px;}
.ls0_c00319{letter-spacing:0.072000px;}
.lsc_c00319{letter-spacing:0.086400px;}
.ls2_c00319{letter-spacing:0.108000px;}
.lsa_c00319{letter-spacing:0.136800px;}
.ls12_c00319{letter-spacing:5.760000px;}
.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;}
}
.ws1_c00319{word-spacing:0.000000px;}
.ws4_c00319{word-spacing:0.129600px;}
.ws0_c00319{word-spacing:0.138276px;}
.ws5_c00319{word-spacing:0.151200px;}
.ws3_c00319{word-spacing:0.162000px;}
.ws2_c00319{word-spacing:1.562400px;}
._d_c00319{margin-left:-6.501600px;}
._e_c00319{margin-left:-5.313600px;}
._c_c00319{margin-left:-4.024800px;}
._7_c00319{margin-left:-2.224800px;}
._3_c00319{margin-left:-1.180800px;}
._2_c00319{width:1.252800px;}
._4_c00319{width:2.476800px;}
._5_c00319{width:3.765600px;}
._a_c00319{width:4.831200px;}
._1_c00319{width:7.070400px;}
._0_c00319{width:8.208000px;}
._9_c00319{width:9.388800px;}
._8_c00319{width:10.396800px;}
._b_c00319{width:16.992000px;}
._6_c00319{width:19.260000px;}
.fc1_c00319{color:rgb(68,84,106);}
.fc0_c00319{color:rgb(0,0,0);}
.fs2_c00319{font-size:54.000000px;}
.fs0_c00319{font-size:60.120000px;}
.fs1_c00319{font-size:72.000000px;}
.y0_c00319{bottom:0.000000px;}
.y6_c00319{bottom:57.360450px;}
.y5_c00319{bottom:78.060450px;}
.y22_c00319{bottom:161.040450px;}
.y21_c00319{bottom:192.090450px;}
.y20_c00319{bottom:223.140450px;}
.y1f_c00319{bottom:254.190450px;}
.y1e_c00319{bottom:285.240450px;}
.y1d_c00319{bottom:316.290450px;}
.y1c_c00319{bottom:347.340450px;}
.y1b_c00319{bottom:378.390450px;}
.y1a_c00319{bottom:409.440450px;}
.y19_c00319{bottom:440.490450px;}
.y18_c00319{bottom:471.540450px;}
.y17_c00319{bottom:502.590450px;}
.y16_c00319{bottom:529.590450px;}
.y15_c00319{bottom:694.020450px;}
.y14_c00319{bottom:720.750450px;}
.y13_c00319{bottom:751.800450px;}
.y12_c00319{bottom:782.850450px;}
.y11_c00319{bottom:813.900450px;}
.y10_c00319{bottom:844.950450px;}
.yf_c00319{bottom:876.000450px;}
.ye_c00319{bottom:907.050450px;}
.yd_c00319{bottom:938.100450px;}
.yc_c00319{bottom:969.150450px;}
.yb_c00319{bottom:1000.200450px;}
.ya_c00319{bottom:1031.160450px;}
.y9_c00319{bottom:1062.210450px;}
.y8_c00319{bottom:1093.260450px;}
.y7_c00319{bottom:1124.310450px;}
.y4_c00319{bottom:1144.380657px;}
.y3_c00319{bottom:1161.660648px;}
.y2_c00319{bottom:1178.850459px;}
.y1_c00319{bottom:1196.130450px;}
.h4_c00319{height:47.513672px;}
.h1_c00319{height:52.898555px;}
.h2_c00319{height:63.175781px;}
.h3_c00319{height:63.351562px;}
.h0_c00319{height:1263.000000px;}
.w1_c00319{width:892.500000px;}
.w0_c00319{width:892.830000px;}
.x0_c00319{left:0.000000px;}
.x4_c00319{left:127.620000px;}
.x1_c00319{left:649.620000px;}
.x3_c00319{left:738.450000px;}
.x5_c00319{left:751.050000px;}
.x2_c00319{left:765.450198px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls10_c00319{letter-spacing:-0.042752pt;}
.ls13_c00319{letter-spacing:-0.012800pt;}
.ls14_c00319{letter-spacing:-0.006400pt;}
.ls11_c00319{letter-spacing:0.000000pt;}
.ls8_c00319{letter-spacing:0.006400pt;}
.ls5_c00319{letter-spacing:0.012800pt;}
.lsd_c00319{letter-spacing:0.014400pt;}
.ls6_c00319{letter-spacing:0.019200pt;}
.lsf_c00319{letter-spacing:0.024000pt;}
.ls4_c00319{letter-spacing:0.025600pt;}
.ls3_c00319{letter-spacing:0.032000pt;}
.ls1_c00319{letter-spacing:0.038400pt;}
.lse_c00319{letter-spacing:0.043200pt;}
.lsb_c00319{letter-spacing:0.044800pt;}
.ls9_c00319{letter-spacing:0.051200pt;}
.ls7_c00319{letter-spacing:0.057600pt;}
.ls0_c00319{letter-spacing:0.064000pt;}
.lsc_c00319{letter-spacing:0.076800pt;}
.ls2_c00319{letter-spacing:0.096000pt;}
.lsa_c00319{letter-spacing:0.121600pt;}
.ls12_c00319{letter-spacing:5.120000pt;}
.ws1_c00319{word-spacing:0.000000pt;}
.ws4_c00319{word-spacing:0.115200pt;}
.ws0_c00319{word-spacing:0.122912pt;}
.ws5_c00319{word-spacing:0.134400pt;}
.ws3_c00319{word-spacing:0.144000pt;}
.ws2_c00319{word-spacing:1.388800pt;}
._d_c00319{margin-left:-5.779200pt;}
._e_c00319{margin-left:-4.723200pt;}
._c_c00319{margin-left:-3.577600pt;}
._7_c00319{margin-left:-1.977600pt;}
._3_c00319{margin-left:-1.049600pt;}
._2_c00319{width:1.113600pt;}
._4_c00319{width:2.201600pt;}
._5_c00319{width:3.347200pt;}
._a_c00319{width:4.294400pt;}
._1_c00319{width:6.284800pt;}
._0_c00319{width:7.296000pt;}
._9_c00319{width:8.345600pt;}
._8_c00319{width:9.241600pt;}
._b_c00319{width:15.104000pt;}
._6_c00319{width:17.120000pt;}
.fs2_c00319{font-size:48.000000pt;}
.fs0_c00319{font-size:53.440000pt;}
.fs1_c00319{font-size:64.000000pt;}
.y0_c00319{bottom:0.000000pt;}
.y6_c00319{bottom:50.987067pt;}
.y5_c00319{bottom:69.387067pt;}
.y22_c00319{bottom:143.147067pt;}
.y21_c00319{bottom:170.747067pt;}
.y20_c00319{bottom:198.347067pt;}
.y1f_c00319{bottom:225.947067pt;}
.y1e_c00319{bottom:253.547067pt;}
.y1d_c00319{bottom:281.147067pt;}
.y1c_c00319{bottom:308.747067pt;}
.y1b_c00319{bottom:336.347067pt;}
.y1a_c00319{bottom:363.947067pt;}
.y19_c00319{bottom:391.547067pt;}
.y18_c00319{bottom:419.147067pt;}
.y17_c00319{bottom:446.747067pt;}
.y16_c00319{bottom:470.747067pt;}
.y15_c00319{bottom:616.907067pt;}
.y14_c00319{bottom:640.667067pt;}
.y13_c00319{bottom:668.267067pt;}
.y12_c00319{bottom:695.867067pt;}
.y11_c00319{bottom:723.467067pt;}
.y10_c00319{bottom:751.067067pt;}
.yf_c00319{bottom:778.667067pt;}
.ye_c00319{bottom:806.267067pt;}
.yd_c00319{bottom:833.867067pt;}
.yc_c00319{bottom:861.467067pt;}
.yb_c00319{bottom:889.067067pt;}
.ya_c00319{bottom:916.587067pt;}
.y9_c00319{bottom:944.187067pt;}
.y8_c00319{bottom:971.787067pt;}
.y7_c00319{bottom:999.387067pt;}
.y4_c00319{bottom:1017.227251pt;}
.y3_c00319{bottom:1032.587243pt;}
.y2_c00319{bottom:1047.867075pt;}
.y1_c00319{bottom:1063.227067pt;}
.h4_c00319{height:42.234375pt;}
.h1_c00319{height:47.020937pt;}
.h2_c00319{height:56.156250pt;}
.h3_c00319{height:56.312500pt;}
.h0_c00319{height:1122.666667pt;}
.w1_c00319{width:793.333333pt;}
.w0_c00319{width:793.626667pt;}
.x0_c00319{left:0.000000pt;}
.x4_c00319{left:113.440000pt;}
.x1_c00319{left:577.440000pt;}
.x3_c00319{left:656.400000pt;}
.x5_c00319{left:667.600000pt;}
.x2_c00319{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.095703;font-style:normal;font-weight:normal;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_2efb5fc058c540a1de1d5099.woff2')format("woff");}.ff2_c00320{font-family:ff2_c00320;line-height:1.093262;font-style:normal;font-weight:normal;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_75397a5ece35c67d73347721.woff2')format("woff");}.ff3_c00320{font-family:ff3_c00320;line-height:1.104004;font-style:normal;font-weight:normal;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_48800e67c24273ff82dcb586.woff2')format("woff");}.ff4_c00320{font-family:ff4_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:ff5_c00320;src:url('chunks/assets/font_23c6e8c1da94c9125e195339.woff2')format("woff");}.ff5_c00320{font-family:ff5_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;}
.m0_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls1c_c00320{letter-spacing:-0.151200px;}
.ls22_c00320{letter-spacing:-0.129600px;}
.ls19_c00320{letter-spacing:-0.124200px;}
.ls1f_c00320{letter-spacing:-0.108000px;}
.ls14_c00320{letter-spacing:-0.102204px;}
.ls1b_c00320{letter-spacing:-0.097200px;}
.ls24_c00320{letter-spacing:-0.091800px;}
.ls20_c00320{letter-spacing:-0.086400px;}
.ls1d_c00320{letter-spacing:-0.075600px;}
.ls21_c00320{letter-spacing:-0.070200px;}
.ls26_c00320{letter-spacing:-0.064800px;}
.ls1a_c00320{letter-spacing:-0.059400px;}
.ls17_c00320{letter-spacing:-0.057600px;}
.ls1e_c00320{letter-spacing:-0.048600px;}
.ls16_c00320{letter-spacing:-0.028800px;}
.ls18_c00320{letter-spacing:-0.021600px;}
.ls23_c00320{letter-spacing:-0.016200px;}
.ls27_c00320{letter-spacing:-0.014400px;}
.ls15_c00320{letter-spacing:0.000000px;}
.ls7_c00320{letter-spacing:0.005400px;}
.lsf_c00320{letter-spacing:0.007200px;}
.lse_c00320{letter-spacing:0.014400px;}
.ls2_c00320{letter-spacing:0.016200px;}
.ls1_c00320{letter-spacing:0.016776px;}
.ls6_c00320{letter-spacing:0.021600px;}
.ls10_c00320{letter-spacing:0.028800px;}
.lsb_c00320{letter-spacing:0.036000px;}
.lsa_c00320{letter-spacing:0.043200px;}
.ls4_c00320{letter-spacing:0.048600px;}
.ls0_c00320{letter-spacing:0.050328px;}
.ls9_c00320{letter-spacing:0.050400px;}
.ls13_c00320{letter-spacing:0.064800px;}
.ls11_c00320{letter-spacing:0.072000px;}
.ls8_c00320{letter-spacing:0.091800px;}
.lsd_c00320{letter-spacing:0.093600px;}
.ls3_c00320{letter-spacing:0.097200px;}
.ls5_c00320{letter-spacing:0.102600px;}
.lsc_c00320{letter-spacing:0.108000px;}
.ls12_c00320{letter-spacing:0.115200px;}
.ls25_c00320{letter-spacing:0.496800px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00320{word-spacing:-20.016000px;}
.ws0_c00320{word-spacing:-19.994400px;}
.ws3_c00320{word-spacing:0.000000px;}
.ws2_c00320{word-spacing:0.192384px;}
._14_c00320{margin-left:-2.593800px;}
._1_c00320{margin-left:-1.107000px;}
._0_c00320{width:1.034064px;}
._1c_c00320{width:2.289600px;}
._1a_c00320{width:3.463200px;}
._1b_c00320{width:4.924800px;}
._18_c00320{width:6.465600px;}
._9_c00320{width:7.776000px;}
._19_c00320{width:8.992800px;}
._15_c00320{width:11.484000px;}
._16_c00320{width:12.564000px;}
._17_c00320{width:13.737600px;}
._10_c00320{width:17.496000px;}
._2_c00320{width:40.872600px;}
._12_c00320{width:58.492800px;}
._a_c00320{width:61.003800px;}
._5_c00320{width:70.016400px;}
._11_c00320{width:80.816400px;}
._4_c00320{width:86.516136px;}
._c_c00320{width:131.742000px;}
._6_c00320{width:149.445000px;}
._f_c00320{width:151.182000px;}
._3_c00320{width:158.947200px;}
._8_c00320{width:175.590000px;}
._e_c00320{width:194.536800px;}
._d_c00320{width:277.099200px;}
._7_c00320{width:293.554800px;}
._13_c00320{width:296.539200px;}
._b_c00320{width:323.481600px;}
.fc4_c00320{color:rgb(255,0,0);}
.fc3_c00320{color:rgb(38,74,96);}
.fc2_c00320{color:rgb(1,2,5);}
.fc1_c00320{color:rgb(0,0,0);}
.fc0_c00320{color:rgb(32,31,30);}
.fs4_c00320{font-size:2.880000px;}
.fs3_c00320{font-size:54.000000px;}
.fs0_c00320{font-size:60.120000px;}
.fs1_c00320{font-size:72.000000px;}
.fs2_c00320{font-size:83.880000px;}
.y0_c00320{bottom:0.000000px;}
.y5_c00320{bottom:57.360450px;}
.y4_c00320{bottom:78.060450px;}
.y41_c00320{bottom:112.530450px;}
.y40_c00320{bottom:143.580450px;}
.y3f_c00320{bottom:174.630450px;}
.y3e_c00320{bottom:205.680450px;}
.y3d_c00320{bottom:236.730450px;}
.y3c_c00320{bottom:267.780450px;}
.y3b_c00320{bottom:298.830450px;}
.y3a_c00320{bottom:329.880450px;}
.y39_c00320{bottom:360.930450px;}
.y38_c00320{bottom:391.980450px;}
.y37_c00320{bottom:423.030450px;}
.y36_c00320{bottom:454.080450px;}
.y35_c00320{bottom:485.130450px;}
.y34_c00320{bottom:516.180450px;}
.y33_c00320{bottom:547.230450px;}
.y32_c00320{bottom:578.280450px;}
.y31_c00320{bottom:609.330450px;}
.y1c_c00320{bottom:640.200450px;}
.y30_c00320{bottom:646.050450px;}
.y1b_c00320{bottom:667.110450px;}
.y2f_c00320{bottom:669.720450px;}
.y2e_c00320{bottom:693.030450px;}
.y1a_c00320{bottom:693.930450px;}
.y2d_c00320{bottom:716.700000px;}
.y19_c00320{bottom:717.600000px;}
.y2c_c00320{bottom:740.010450px;}
.y18_c00320{bottom:740.910450px;}
.y2b_c00320{bottom:763.680450px;}
.y17_c00320{bottom:764.580450px;}
.y2a_c00320{bottom:786.900450px;}
.y16_c00320{bottom:787.800450px;}
.y29_c00320{bottom:810.569550px;}
.y15_c00320{bottom:811.469550px;}
.y28_c00320{bottom:833.880000px;}
.y14_c00320{bottom:834.780000px;}
.y27_c00320{bottom:857.190450px;}
.y13_c00320{bottom:858.090450px;}
.y26_c00320{bottom:880.410450px;}
.y25_c00320{bottom:880.860600px;}
.y12_c00320{bottom:881.310450px;}
.y24_c00320{bottom:904.080450px;}
.y11_c00320{bottom:905.790600px;}
.y23_c00320{bottom:927.750450px;}
.y10_c00320{bottom:930.270450px;}
.y1f_c00320{bottom:954.930450px;}
.yc_c00320{bottom:957.450450px;}
.y22_c00320{bottom:974.730450px;}
.yf_c00320{bottom:977.160450px;}
.y1e_c00320{bottom:985.980450px;}
.yb_c00320{bottom:988.500450px;}
.y21_c00320{bottom:998.040600px;}
.ye_c00320{bottom:1000.470450px;}
.y1d_c00320{bottom:1017.030450px;}
.ya_c00320{bottom:1019.550450px;}
.y20_c00320{bottom:1021.260450px;}
.yd_c00320{bottom:1023.780450px;}
.y9_c00320{bottom:1044.300450px;}
.y8_c00320{bottom:1055.370450px;}
.y7_c00320{bottom:1085.250450px;}
.y6_c00320{bottom:1108.380450px;}
.y3_c00320{bottom:1132.140450px;}
.y2_c00320{bottom:1165.441023px;}
.y1_c00320{bottom:1196.040600px;}
.h5_c00320{height:2.557969px;}
.h4_c00320{height:47.381836px;}
.h7_c00320{height:48.410156px;}
.h1_c00320{height:52.898555px;}
.h2_c00320{height:63.175781px;}
.h6_c00320{height:65.003906px;}
.h3_c00320{height:74.500840px;}
.h0_c00320{height:1263.000000px;}
.w1_c00320{width:892.500000px;}
.w0_c00320{width:892.830000px;}
.x0_c00320{left:0.000000px;}
.x1_c00320{left:127.620000px;}
.x3_c00320{left:135.630000px;}
.x4_c00320{left:143.730000px;}
.x7_c00320{left:164.970000px;}
.x5_c00320{left:268.200000px;}
.x6_c00320{left:360.270000px;}
.x8_c00320{left:458.280000px;}
.xb_c00320{left:483.480000px;}
.x9_c00320{left:591.570000px;}
.xa_c00320{left:683.640000px;}
.x2_c00320{left:738.450000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls1c_c00320{letter-spacing:-0.134400pt;}
.ls22_c00320{letter-spacing:-0.115200pt;}
.ls19_c00320{letter-spacing:-0.110400pt;}
.ls1f_c00320{letter-spacing:-0.096000pt;}
.ls14_c00320{letter-spacing:-0.090848pt;}
.ls1b_c00320{letter-spacing:-0.086400pt;}
.ls24_c00320{letter-spacing:-0.081600pt;}
.ls20_c00320{letter-spacing:-0.076800pt;}
.ls1d_c00320{letter-spacing:-0.067200pt;}
.ls21_c00320{letter-spacing:-0.062400pt;}
.ls26_c00320{letter-spacing:-0.057600pt;}
.ls1a_c00320{letter-spacing:-0.052800pt;}
.ls17_c00320{letter-spacing:-0.051200pt;}
.ls1e_c00320{letter-spacing:-0.043200pt;}
.ls16_c00320{letter-spacing:-0.025600pt;}
.ls18_c00320{letter-spacing:-0.019200pt;}
.ls23_c00320{letter-spacing:-0.014400pt;}
.ls27_c00320{letter-spacing:-0.012800pt;}
.ls15_c00320{letter-spacing:0.000000pt;}
.ls7_c00320{letter-spacing:0.004800pt;}
.lsf_c00320{letter-spacing:0.006400pt;}
.lse_c00320{letter-spacing:0.012800pt;}
.ls2_c00320{letter-spacing:0.014400pt;}
.ls1_c00320{letter-spacing:0.014912pt;}
.ls6_c00320{letter-spacing:0.019200pt;}
.ls10_c00320{letter-spacing:0.025600pt;}
.lsb_c00320{letter-spacing:0.032000pt;}
.lsa_c00320{letter-spacing:0.038400pt;}
.ls4_c00320{letter-spacing:0.043200pt;}
.ls0_c00320{letter-spacing:0.044736pt;}
.ls9_c00320{letter-spacing:0.044800pt;}
.ls13_c00320{letter-spacing:0.057600pt;}
.ls11_c00320{letter-spacing:0.064000pt;}
.ls8_c00320{letter-spacing:0.081600pt;}
.lsd_c00320{letter-spacing:0.083200pt;}
.ls3_c00320{letter-spacing:0.086400pt;}
.ls5_c00320{letter-spacing:0.091200pt;}
.lsc_c00320{letter-spacing:0.096000pt;}
.ls12_c00320{letter-spacing:0.102400pt;}
.ls25_c00320{letter-spacing:0.441600pt;}
.ws1_c00320{word-spacing:-17.792000pt;}
.ws0_c00320{word-spacing:-17.772800pt;}
.ws3_c00320{word-spacing:0.000000pt;}
.ws2_c00320{word-spacing:0.171008pt;}
._14_c00320{margin-left:-2.305600pt;}
._1_c00320{margin-left:-0.984000pt;}
._0_c00320{width:0.919168pt;}
._1c_c00320{width:2.035200pt;}
._1a_c00320{width:3.078400pt;}
._1b_c00320{width:4.377600pt;}
._18_c00320{width:5.747200pt;}
._9_c00320{width:6.912000pt;}
._19_c00320{width:7.993600pt;}
._15_c00320{width:10.208000pt;}
._16_c00320{width:11.168000pt;}
._17_c00320{width:12.211200pt;}
._10_c00320{width:15.552000pt;}
._2_c00320{width:36.331200pt;}
._12_c00320{width:51.993600pt;}
._a_c00320{width:54.225600pt;}
._5_c00320{width:62.236800pt;}
._11_c00320{width:71.836800pt;}
._4_c00320{width:76.903232pt;}
._c_c00320{width:117.104000pt;}
._6_c00320{width:132.840000pt;}
._f_c00320{width:134.384000pt;}
._3_c00320{width:141.286400pt;}
._8_c00320{width:156.080000pt;}
._e_c00320{width:172.921600pt;}
._d_c00320{width:246.310400pt;}
._7_c00320{width:260.937600pt;}
._13_c00320{width:263.590400pt;}
._b_c00320{width:287.539200pt;}
.fs4_c00320{font-size:2.560000pt;}
.fs3_c00320{font-size:48.000000pt;}
.fs0_c00320{font-size:53.440000pt;}
.fs1_c00320{font-size:64.000000pt;}
.fs2_c00320{font-size:74.560000pt;}
.y0_c00320{bottom:0.000000pt;}
.y5_c00320{bottom:50.987067pt;}
.y4_c00320{bottom:69.387067pt;}
.y41_c00320{bottom:100.027067pt;}
.y40_c00320{bottom:127.627067pt;}
.y3f_c00320{bottom:155.227067pt;}
.y3e_c00320{bottom:182.827067pt;}
.y3d_c00320{bottom:210.427067pt;}
.y3c_c00320{bottom:238.027067pt;}
.y3b_c00320{bottom:265.627067pt;}
.y3a_c00320{bottom:293.227067pt;}
.y39_c00320{bottom:320.827067pt;}
.y38_c00320{bottom:348.427067pt;}
.y37_c00320{bottom:376.027067pt;}
.y36_c00320{bottom:403.627067pt;}
.y35_c00320{bottom:431.227067pt;}
.y34_c00320{bottom:458.827067pt;}
.y33_c00320{bottom:486.427067pt;}
.y32_c00320{bottom:514.027067pt;}
.y31_c00320{bottom:541.627067pt;}
.y1c_c00320{bottom:569.067067pt;}
.y30_c00320{bottom:574.267067pt;}
.y1b_c00320{bottom:592.987067pt;}
.y2f_c00320{bottom:595.307067pt;}
.y2e_c00320{bottom:616.027067pt;}
.y1a_c00320{bottom:616.827067pt;}
.y2d_c00320{bottom:637.066667pt;}
.y19_c00320{bottom:637.866667pt;}
.y2c_c00320{bottom:657.787067pt;}
.y18_c00320{bottom:658.587067pt;}
.y2b_c00320{bottom:678.827067pt;}
.y17_c00320{bottom:679.627067pt;}
.y2a_c00320{bottom:699.467067pt;}
.y16_c00320{bottom:700.267067pt;}
.y29_c00320{bottom:720.506267pt;}
.y15_c00320{bottom:721.306267pt;}
.y28_c00320{bottom:741.226667pt;}
.y14_c00320{bottom:742.026667pt;}
.y27_c00320{bottom:761.947067pt;}
.y13_c00320{bottom:762.747067pt;}
.y26_c00320{bottom:782.587067pt;}
.y25_c00320{bottom:782.987200pt;}
.y12_c00320{bottom:783.387067pt;}
.y24_c00320{bottom:803.627067pt;}
.y11_c00320{bottom:805.147200pt;}
.y23_c00320{bottom:824.667067pt;}
.y10_c00320{bottom:826.907067pt;}
.y1f_c00320{bottom:848.827067pt;}
.yc_c00320{bottom:851.067067pt;}
.y22_c00320{bottom:866.427067pt;}
.yf_c00320{bottom:868.587067pt;}
.y1e_c00320{bottom:876.427067pt;}
.yb_c00320{bottom:878.667067pt;}
.y21_c00320{bottom:887.147200pt;}
.ye_c00320{bottom:889.307067pt;}
.y1d_c00320{bottom:904.027067pt;}
.ya_c00320{bottom:906.267067pt;}
.y20_c00320{bottom:907.787067pt;}
.yd_c00320{bottom:910.027067pt;}
.y9_c00320{bottom:928.267067pt;}
.y8_c00320{bottom:938.107067pt;}
.y7_c00320{bottom:964.667067pt;}
.y6_c00320{bottom:985.227067pt;}
.y3_c00320{bottom:1006.347067pt;}
.y2_c00320{bottom:1035.947576pt;}
.y1_c00320{bottom:1063.147200pt;}
.h5_c00320{height:2.273750pt;}
.h4_c00320{height:42.117188pt;}
.h7_c00320{height:43.031250pt;}
.h1_c00320{height:47.020937pt;}
.h2_c00320{height:56.156250pt;}
.h6_c00320{height:57.781250pt;}
.h3_c00320{height:66.222969pt;}
.h0_c00320{height:1122.666667pt;}
.w1_c00320{width:793.333333pt;}
.w0_c00320{width:793.626667pt;}
.x0_c00320{left:0.000000pt;}
.x1_c00320{left:113.440000pt;}
.x3_c00320{left:120.560000pt;}
.x4_c00320{left:127.760000pt;}
.x7_c00320{left:146.640000pt;}
.x5_c00320{left:238.400000pt;}
.x6_c00320{left:320.240000pt;}
.x8_c00320{left:407.360000pt;}
.xb_c00320{left:429.760000pt;}
.x9_c00320{left:525.840000pt;}
.xa_c00320{left:607.680000pt;}
.x2_c00320{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.095703;font-style:normal;font-weight:normal;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_8f5f3481ea47544126e3be2c.woff2')format("woff");}.ff2_c00321{font-family:ff2_c00321;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00321{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls13_c00321{letter-spacing:-0.057600px;}
.ls17_c00321{letter-spacing:-0.050400px;}
.lsd_c00321{letter-spacing:-0.048096px;}
.ls14_c00321{letter-spacing:-0.036000px;}
.lsf_c00321{letter-spacing:-0.021600px;}
.ls16_c00321{letter-spacing:-0.014400px;}
.ls11_c00321{letter-spacing:-0.007200px;}
.lse_c00321{letter-spacing:0.000000px;}
.ls7_c00321{letter-spacing:0.007200px;}
.ls0_c00321{letter-spacing:0.014400px;}
.ls6_c00321{letter-spacing:0.021600px;}
.lsa_c00321{letter-spacing:0.028800px;}
.ls4_c00321{letter-spacing:0.036000px;}
.ls5_c00321{letter-spacing:0.043200px;}
.ls2_c00321{letter-spacing:0.050400px;}
.ls9_c00321{letter-spacing:0.057600px;}
.ls8_c00321{letter-spacing:0.064800px;}
.ls1_c00321{letter-spacing:0.072000px;}
.lsc_c00321{letter-spacing:0.079200px;}
.lsb_c00321{letter-spacing:0.086400px;}
.ls3_c00321{letter-spacing:0.100800px;}
.ls10_c00321{letter-spacing:0.720000px;}
.ls15_c00321{letter-spacing:1.713600px;}
.ls12_c00321{letter-spacing:7.077600px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00321{word-spacing:0.000000px;}
.ws0_c00321{word-spacing:0.138276px;}
._9_c00321{margin-left:-7.610400px;}
._a_c00321{margin-left:-6.458400px;}
._c_c00321{margin-left:-4.996800px;}
._3_c00321{margin-left:-3.996000px;}
._4_c00321{margin-left:-2.203200px;}
._1_c00321{margin-left:-1.008000px;}
._7_c00321{width:1.159200px;}
._e_c00321{width:2.232000px;}
._d_c00321{width:3.240000px;}
._5_c00321{width:4.773600px;}
._6_c00321{width:6.120000px;}
._8_c00321{width:7.207200px;}
._2_c00321{width:8.697600px;}
._0_c00321{width:11.145600px;}
._b_c00321{width:12.528000px;}
.fc0_c00321{color:rgb(0,0,0);}
.fs0_c00321{font-size:60.120000px;}
.fs1_c00321{font-size:72.000000px;}
.y0_c00321{bottom:0.000000px;}
.y6_c00321{bottom:57.360450px;}
.y5_c00321{bottom:78.060450px;}
.y27_c00321{bottom:130.800450px;}
.y26_c00321{bottom:161.850450px;}
.y25_c00321{bottom:192.900450px;}
.y24_c00321{bottom:223.950450px;}
.y23_c00321{bottom:255.000450px;}
.y22_c00321{bottom:286.050450px;}
.y21_c00321{bottom:317.100450px;}
.y20_c00321{bottom:348.150450px;}
.y1f_c00321{bottom:379.200450px;}
.y1e_c00321{bottom:410.250450px;}
.y1d_c00321{bottom:441.300450px;}
.y1c_c00321{bottom:472.350450px;}
.y1b_c00321{bottom:503.400450px;}
.y1a_c00321{bottom:534.450450px;}
.y19_c00321{bottom:565.500450px;}
.y18_c00321{bottom:596.550450px;}
.y17_c00321{bottom:627.600450px;}
.y16_c00321{bottom:658.650450px;}
.y15_c00321{bottom:689.700450px;}
.y14_c00321{bottom:720.750450px;}
.y13_c00321{bottom:751.800450px;}
.y12_c00321{bottom:782.850450px;}
.y11_c00321{bottom:813.900450px;}
.y10_c00321{bottom:844.950450px;}
.yf_c00321{bottom:876.000450px;}
.ye_c00321{bottom:907.050450px;}
.yd_c00321{bottom:938.100450px;}
.yc_c00321{bottom:969.150450px;}
.yb_c00321{bottom:1000.200450px;}
.ya_c00321{bottom:1031.160450px;}
.y9_c00321{bottom:1062.210450px;}
.y8_c00321{bottom:1093.260450px;}
.y7_c00321{bottom:1124.310450px;}
.y4_c00321{bottom:1144.380657px;}
.y3_c00321{bottom:1161.660648px;}
.y2_c00321{bottom:1178.850459px;}
.y1_c00321{bottom:1196.130450px;}
.h1_c00321{height:52.898555px;}
.h2_c00321{height:63.175781px;}
.h0_c00321{height:1263.000000px;}
.w1_c00321{width:892.500000px;}
.w0_c00321{width:892.830000px;}
.x0_c00321{left:0.000000px;}
.x4_c00321{left:127.620000px;}
.x1_c00321{left:649.620000px;}
.x3_c00321{left:738.450000px;}
.x2_c00321{left:765.450198px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls13_c00321{letter-spacing:-0.051200pt;}
.ls17_c00321{letter-spacing:-0.044800pt;}
.lsd_c00321{letter-spacing:-0.042752pt;}
.ls14_c00321{letter-spacing:-0.032000pt;}
.lsf_c00321{letter-spacing:-0.019200pt;}
.ls16_c00321{letter-spacing:-0.012800pt;}
.ls11_c00321{letter-spacing:-0.006400pt;}
.lse_c00321{letter-spacing:0.000000pt;}
.ls7_c00321{letter-spacing:0.006400pt;}
.ls0_c00321{letter-spacing:0.012800pt;}
.ls6_c00321{letter-spacing:0.019200pt;}
.lsa_c00321{letter-spacing:0.025600pt;}
.ls4_c00321{letter-spacing:0.032000pt;}
.ls5_c00321{letter-spacing:0.038400pt;}
.ls2_c00321{letter-spacing:0.044800pt;}
.ls9_c00321{letter-spacing:0.051200pt;}
.ls8_c00321{letter-spacing:0.057600pt;}
.ls1_c00321{letter-spacing:0.064000pt;}
.lsc_c00321{letter-spacing:0.070400pt;}
.lsb_c00321{letter-spacing:0.076800pt;}
.ls3_c00321{letter-spacing:0.089600pt;}
.ls10_c00321{letter-spacing:0.640000pt;}
.ls15_c00321{letter-spacing:1.523200pt;}
.ls12_c00321{letter-spacing:6.291200pt;}
.ws1_c00321{word-spacing:0.000000pt;}
.ws0_c00321{word-spacing:0.122912pt;}
._9_c00321{margin-left:-6.764800pt;}
._a_c00321{margin-left:-5.740800pt;}
._c_c00321{margin-left:-4.441600pt;}
._3_c00321{margin-left:-3.552000pt;}
._4_c00321{margin-left:-1.958400pt;}
._1_c00321{margin-left:-0.896000pt;}
._7_c00321{width:1.030400pt;}
._e_c00321{width:1.984000pt;}
._d_c00321{width:2.880000pt;}
._5_c00321{width:4.243200pt;}
._6_c00321{width:5.440000pt;}
._8_c00321{width:6.406400pt;}
._2_c00321{width:7.731200pt;}
._0_c00321{width:9.907200pt;}
._b_c00321{width:11.136000pt;}
.fs0_c00321{font-size:53.440000pt;}
.fs1_c00321{font-size:64.000000pt;}
.y0_c00321{bottom:0.000000pt;}
.y6_c00321{bottom:50.987067pt;}
.y5_c00321{bottom:69.387067pt;}
.y27_c00321{bottom:116.267067pt;}
.y26_c00321{bottom:143.867067pt;}
.y25_c00321{bottom:171.467067pt;}
.y24_c00321{bottom:199.067067pt;}
.y23_c00321{bottom:226.667067pt;}
.y22_c00321{bottom:254.267067pt;}
.y21_c00321{bottom:281.867067pt;}
.y20_c00321{bottom:309.467067pt;}
.y1f_c00321{bottom:337.067067pt;}
.y1e_c00321{bottom:364.667067pt;}
.y1d_c00321{bottom:392.267067pt;}
.y1c_c00321{bottom:419.867067pt;}
.y1b_c00321{bottom:447.467067pt;}
.y1a_c00321{bottom:475.067067pt;}
.y19_c00321{bottom:502.667067pt;}
.y18_c00321{bottom:530.267067pt;}
.y17_c00321{bottom:557.867067pt;}
.y16_c00321{bottom:585.467067pt;}
.y15_c00321{bottom:613.067067pt;}
.y14_c00321{bottom:640.667067pt;}
.y13_c00321{bottom:668.267067pt;}
.y12_c00321{bottom:695.867067pt;}
.y11_c00321{bottom:723.467067pt;}
.y10_c00321{bottom:751.067067pt;}
.yf_c00321{bottom:778.667067pt;}
.ye_c00321{bottom:806.267067pt;}
.yd_c00321{bottom:833.867067pt;}
.yc_c00321{bottom:861.467067pt;}
.yb_c00321{bottom:889.067067pt;}
.ya_c00321{bottom:916.587067pt;}
.y9_c00321{bottom:944.187067pt;}
.y8_c00321{bottom:971.787067pt;}
.y7_c00321{bottom:999.387067pt;}
.y4_c00321{bottom:1017.227251pt;}
.y3_c00321{bottom:1032.587243pt;}
.y2_c00321{bottom:1047.867075pt;}
.y1_c00321{bottom:1063.227067pt;}
.h1_c00321{height:47.020937pt;}
.h2_c00321{height:56.156250pt;}
.h0_c00321{height:1122.666667pt;}
.w1_c00321{width:793.333333pt;}
.w0_c00321{width:793.626667pt;}
.x0_c00321{left:0.000000pt;}
.x4_c00321{left:113.440000pt;}
.x1_c00321{left:577.440000pt;}
.x3_c00321{left:656.400000pt;}
.x2_c00321{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6abb909df80fc9bc3cc1458.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.095703;font-style:normal;font-weight:normal;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_aec7f6b3393b9180b6f996fb.woff2')format("woff");}.ff2_c00322{font-family:ff2_c00322;line-height:1.093262;font-style: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;}
.lse_c00322{letter-spacing:-0.102204px;}
.ls11_c00322{letter-spacing:-0.021600px;}
.ls10_c00322{letter-spacing:-0.014400px;}
.ls12_c00322{letter-spacing:-0.005400px;}
.lsf_c00322{letter-spacing:0.000000px;}
.ls0_c00322{letter-spacing:0.005400px;}
.ls5_c00322{letter-spacing:0.007200px;}
.ls8_c00322{letter-spacing:0.014400px;}
.lsa_c00322{letter-spacing:0.021600px;}
.ls7_c00322{letter-spacing:0.028800px;}
.ls9_c00322{letter-spacing:0.036000px;}
.lsd_c00322{letter-spacing:0.037800px;}
.lsc_c00322{letter-spacing:0.043200px;}
.lsb_c00322{letter-spacing:0.050400px;}
.ls4_c00322{letter-spacing:0.057600px;}
.ls3_c00322{letter-spacing:0.064800px;}
.ls6_c00322{letter-spacing:0.072000px;}
.ls1_c00322{letter-spacing:0.075600px;}
.ls2_c00322{letter-spacing:0.086400px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:-18.064800px;}
.ws1_c00322{word-spacing:-18.000000px;}
.ws8_c00322{word-spacing:-0.172800px;}
.ws5_c00322{word-spacing:-0.036000px;}
.ws3_c00322{word-spacing:0.000000px;}
.ws2_c00322{word-spacing:0.192384px;}
.ws7_c00322{word-spacing:4.822200px;}
.ws6_c00322{word-spacing:4.881600px;}
.ws4_c00322{word-spacing:10.972800px;}
._6_c00322{margin-left:-3.650400px;}
._5_c00322{margin-left:-2.188800px;}
._1_c00322{margin-left:-1.101600px;}
._0_c00322{width:1.034064px;}
._4_c00322{width:2.844000px;}
._3_c00322{width:6.091200px;}
._7_c00322{width:7.099200px;}
._2_c00322{width:12.153600px;}
.fc2_c00322{color:rgb(68,84,106);}
.fc1_c00322{color:rgb(0,0,0);}
.fc0_c00322{color:rgb(32,31,30);}
.fs2_c00322{font-size:54.000000px;}
.fs0_c00322{font-size:60.120000px;}
.fs1_c00322{font-size:72.000000px;}
.y0_c00322{bottom:0.000000px;}
.y5_c00322{bottom:57.360450px;}
.y4_c00322{bottom:78.060450px;}
.y18_c00322{bottom:446.340000px;}
.y17_c00322{bottom:469.650450px;}
.y16_c00322{bottom:496.380450px;}
.y15_c00322{bottom:527.430450px;}
.y14_c00322{bottom:558.480450px;}
.y13_c00322{bottom:589.530450px;}
.y12_c00322{bottom:620.580450px;}
.y11_c00322{bottom:651.630450px;}
.y10_c00322{bottom:682.680450px;}
.yf_c00322{bottom:713.730450px;}
.ye_c00322{bottom:744.780450px;}
.yd_c00322{bottom:775.830450px;}
.yc_c00322{bottom:806.880450px;}
.yb_c00322{bottom:837.930450px;}
.ya_c00322{bottom:868.980450px;}
.y9_c00322{bottom:900.030450px;}
.y8_c00322{bottom:927.030450px;}
.y7_c00322{bottom:1092.450000px;}
.y6_c00322{bottom:1115.760450px;}
.y3_c00322{bottom:1132.140450px;}
.y2_c00322{bottom:1165.441023px;}
.y1_c00322{bottom:1196.040600px;}
.h3_c00322{height:47.513672px;}
.h1_c00322{height:52.898555px;}
.h2_c00322{height:63.175781px;}
.h4_c00322{height:63.351562px;}
.h0_c00322{height:1263.000000px;}
.w1_c00322{width:892.500000px;}
.w0_c00322{width:892.830000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:127.620000px;}
.x2_c00322{left:738.450000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.lse_c00322{letter-spacing:-0.090848pt;}
.ls11_c00322{letter-spacing:-0.019200pt;}
.ls10_c00322{letter-spacing:-0.012800pt;}
.ls12_c00322{letter-spacing:-0.004800pt;}
.lsf_c00322{letter-spacing:0.000000pt;}
.ls0_c00322{letter-spacing:0.004800pt;}
.ls5_c00322{letter-spacing:0.006400pt;}
.ls8_c00322{letter-spacing:0.012800pt;}
.lsa_c00322{letter-spacing:0.019200pt;}
.ls7_c00322{letter-spacing:0.025600pt;}
.ls9_c00322{letter-spacing:0.032000pt;}
.lsd_c00322{letter-spacing:0.033600pt;}
.lsc_c00322{letter-spacing:0.038400pt;}
.lsb_c00322{letter-spacing:0.044800pt;}
.ls4_c00322{letter-spacing:0.051200pt;}
.ls3_c00322{letter-spacing:0.057600pt;}
.ls6_c00322{letter-spacing:0.064000pt;}
.ls1_c00322{letter-spacing:0.067200pt;}
.ls2_c00322{letter-spacing:0.076800pt;}
.ws0_c00322{word-spacing:-16.057600pt;}
.ws1_c00322{word-spacing:-16.000000pt;}
.ws8_c00322{word-spacing:-0.153600pt;}
.ws5_c00322{word-spacing:-0.032000pt;}
.ws3_c00322{word-spacing:0.000000pt;}
.ws2_c00322{word-spacing:0.171008pt;}
.ws7_c00322{word-spacing:4.286400pt;}
.ws6_c00322{word-spacing:4.339200pt;}
.ws4_c00322{word-spacing:9.753600pt;}
._6_c00322{margin-left:-3.244800pt;}
._5_c00322{margin-left:-1.945600pt;}
._1_c00322{margin-left:-0.979200pt;}
._0_c00322{width:0.919168pt;}
._4_c00322{width:2.528000pt;}
._3_c00322{width:5.414400pt;}
._7_c00322{width:6.310400pt;}
._2_c00322{width:10.803200pt;}
.fs2_c00322{font-size:48.000000pt;}
.fs0_c00322{font-size:53.440000pt;}
.fs1_c00322{font-size:64.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y5_c00322{bottom:50.987067pt;}
.y4_c00322{bottom:69.387067pt;}
.y18_c00322{bottom:396.746667pt;}
.y17_c00322{bottom:417.467067pt;}
.y16_c00322{bottom:441.227067pt;}
.y15_c00322{bottom:468.827067pt;}
.y14_c00322{bottom:496.427067pt;}
.y13_c00322{bottom:524.027067pt;}
.y12_c00322{bottom:551.627067pt;}
.y11_c00322{bottom:579.227067pt;}
.y10_c00322{bottom:606.827067pt;}
.yf_c00322{bottom:634.427067pt;}
.ye_c00322{bottom:662.027067pt;}
.yd_c00322{bottom:689.627067pt;}
.yc_c00322{bottom:717.227067pt;}
.yb_c00322{bottom:744.827067pt;}
.ya_c00322{bottom:772.427067pt;}
.y9_c00322{bottom:800.027067pt;}
.y8_c00322{bottom:824.027067pt;}
.y7_c00322{bottom:971.066667pt;}
.y6_c00322{bottom:991.787067pt;}
.y3_c00322{bottom:1006.347067pt;}
.y2_c00322{bottom:1035.947576pt;}
.y1_c00322{bottom:1063.147200pt;}
.h3_c00322{height:42.234375pt;}
.h1_c00322{height:47.020937pt;}
.h2_c00322{height:56.156250pt;}
.h4_c00322{height:56.312500pt;}
.h0_c00322{height:1122.666667pt;}
.w1_c00322{width:793.333333pt;}
.w0_c00322{width:793.626667pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:113.440000pt;}
.x2_c00322{left:656.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_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_0b61148de6a9e3a4bd55bada.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.095703;font-style:normal;font-weight:normal;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_b9704d5ea0ae3893f85eb216.woff2')format("woff");}.ff2_c00323{font-family:ff2_c00323;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00323;src:url('chunks/assets/font_e214ce15e4abe9cecb86c968.woff2')format("woff");}.ff3_c00323{font-family:ff3_c00323;line-height:1.104004;font-style: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;}
.ls18_c00323{letter-spacing:-0.057600px;}
.ls13_c00323{letter-spacing:-0.048096px;}
.ls19_c00323{letter-spacing:-0.043200px;}
.ls1a_c00323{letter-spacing:-0.036000px;}
.ls17_c00323{letter-spacing:-0.028800px;}
.ls16_c00323{letter-spacing:-0.021600px;}
.ls1b_c00323{letter-spacing:-0.014400px;}
.ls15_c00323{letter-spacing:-0.007200px;}
.ls1c_c00323{letter-spacing:-0.005400px;}
.ls14_c00323{letter-spacing:0.000000px;}
.ls9_c00323{letter-spacing:0.005400px;}
.lsb_c00323{letter-spacing:0.007200px;}
.lsa_c00323{letter-spacing:0.014400px;}
.lsc_c00323{letter-spacing:0.021600px;}
.ls12_c00323{letter-spacing:0.027000px;}
.ls2_c00323{letter-spacing:0.028800px;}
.ls4_c00323{letter-spacing:0.036000px;}
.ls6_c00323{letter-spacing:0.041940px;}
.ls11_c00323{letter-spacing:0.043200px;}
.ls5_c00323{letter-spacing:0.050400px;}
.ls0_c00323{letter-spacing:0.057600px;}
.ls7_c00323{letter-spacing:0.058716px;}
.ls3_c00323{letter-spacing:0.064800px;}
.ls1_c00323{letter-spacing:0.072000px;}
.ls10_c00323{letter-spacing:0.079200px;}
.lse_c00323{letter-spacing:0.093600px;}
.lsd_c00323{letter-spacing:0.100800px;}
.lsf_c00323{letter-spacing:0.129600px;}
.ls8_c00323{letter-spacing:0.176148px;}
.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;}
}
.ws6_c00323{word-spacing:-2.008800px;}
.ws7_c00323{word-spacing:-1.976400px;}
.ws3_c00323{word-spacing:-0.064800px;}
.ws1_c00323{word-spacing:0.000000px;}
.ws0_c00323{word-spacing:0.138276px;}
.ws5_c00323{word-spacing:0.172800px;}
.ws2_c00323{word-spacing:2.851200px;}
.ws4_c00323{word-spacing:13.629600px;}
._b_c00323{margin-left:-3.225600px;}
._1_c00323{margin-left:-1.094400px;}
._3_c00323{width:1.418400px;}
._2_c00323{width:2.880000px;}
._0_c00323{width:4.262400px;}
._14_c00323{width:7.156800px;}
._4_c00323{width:12.902400px;}
._5_c00323{width:14.328000px;}
._13_c00323{width:15.789600px;}
._6_c00323{width:23.731200px;}
._7_c00323{width:32.068800px;}
._c_c00323{width:64.598400px;}
._10_c00323{width:67.341600px;}
._d_c00323{width:72.072000px;}
._8_c00323{width:73.310400px;}
._e_c00323{width:79.804800px;}
._a_c00323{width:164.124000px;}
._12_c00323{width:265.320000px;}
._9_c00323{width:516.873600px;}
._f_c00323{width:552.981600px;}
._11_c00323{width:715.104000px;}
.fc2_c00323{color:rgb(255,0,0);}
.fc1_c00323{color:rgb(68,84,106);}
.fc0_c00323{color:rgb(0,0,0);}
.fs3_c00323{font-size:54.000000px;}
.fs0_c00323{font-size:60.120000px;}
.fs1_c00323{font-size:72.000000px;}
.fs2_c00323{font-size:83.880000px;}
.y0_c00323{bottom:0.000000px;}
.y29_c00323{bottom:3.240450px;}
.y6_c00323{bottom:57.360450px;}
.y5_c00323{bottom:78.060450px;}
.y27_c00323{bottom:120.630450px;}
.y26_c00323{bottom:151.680450px;}
.y25_c00323{bottom:182.640450px;}
.y24_c00323{bottom:213.690450px;}
.y23_c00323{bottom:244.740450px;}
.y22_c00323{bottom:275.790450px;}
.y21_c00323{bottom:306.840450px;}
.y20_c00323{bottom:337.890450px;}
.y1f_c00323{bottom:368.940450px;}
.y1e_c00323{bottom:399.990450px;}
.y1d_c00323{bottom:433.650450px;}
.y1c_c00323{bottom:466.050450px;}
.y1b_c00323{bottom:498.450600px;}
.y1a_c00323{bottom:530.220450px;}
.y19_c00323{bottom:561.270450px;}
.y18_c00323{bottom:594.300450px;}
.y17_c00323{bottom:625.350450px;}
.y16_c00323{bottom:657.120450px;}
.y15_c00323{bottom:688.170450px;}
.y14_c00323{bottom:723.720450px;}
.y13_c00323{bottom:753.690450px;}
.y12_c00323{bottom:776.820450px;}
.y11_c00323{bottom:813.900450px;}
.y10_c00323{bottom:844.950450px;}
.yf_c00323{bottom:876.000450px;}
.ye_c00323{bottom:907.050450px;}
.yd_c00323{bottom:938.100450px;}
.yc_c00323{bottom:969.150450px;}
.yb_c00323{bottom:1000.200450px;}
.ya_c00323{bottom:1031.160450px;}
.y28_c00323{bottom:1040.700000px;}
.y2a_c00323{bottom:1043.940450px;}
.y9_c00323{bottom:1062.210450px;}
.y8_c00323{bottom:1093.260450px;}
.y7_c00323{bottom:1124.310450px;}
.y4_c00323{bottom:1144.380657px;}
.y3_c00323{bottom:1161.660648px;}
.y2_c00323{bottom:1178.850459px;}
.y1_c00323{bottom:1196.130450px;}
.h6_c00323{height:15.300000px;}
.h5_c00323{height:47.513672px;}
.h1_c00323{height:52.898555px;}
.h2_c00323{height:63.175781px;}
.h3_c00323{height:63.351562px;}
.h4_c00323{height:74.500840px;}
.h0_c00323{height:1263.000000px;}
.w2_c00323{width:302.580000px;}
.w1_c00323{width:892.500000px;}
.w0_c00323{width:892.830000px;}
.x0_c00323{left:0.000000px;}
.xa_c00323{left:123.120000px;}
.x4_c00323{left:127.620000px;}
.x7_c00323{left:249.480000px;}
.xb_c00323{left:295.920000px;}
.x6_c00323{left:435.240000px;}
.x5_c00323{left:440.370000px;}
.x8_c00323{left:470.700000px;}
.x9_c00323{left:559.530000px;}
.x1_c00323{left:649.620000px;}
.x3_c00323{left:738.450000px;}
.x2_c00323{left:765.450198px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls18_c00323{letter-spacing:-0.051200pt;}
.ls13_c00323{letter-spacing:-0.042752pt;}
.ls19_c00323{letter-spacing:-0.038400pt;}
.ls1a_c00323{letter-spacing:-0.032000pt;}
.ls17_c00323{letter-spacing:-0.025600pt;}
.ls16_c00323{letter-spacing:-0.019200pt;}
.ls1b_c00323{letter-spacing:-0.012800pt;}
.ls15_c00323{letter-spacing:-0.006400pt;}
.ls1c_c00323{letter-spacing:-0.004800pt;}
.ls14_c00323{letter-spacing:0.000000pt;}
.ls9_c00323{letter-spacing:0.004800pt;}
.lsb_c00323{letter-spacing:0.006400pt;}
.lsa_c00323{letter-spacing:0.012800pt;}
.lsc_c00323{letter-spacing:0.019200pt;}
.ls12_c00323{letter-spacing:0.024000pt;}
.ls2_c00323{letter-spacing:0.025600pt;}
.ls4_c00323{letter-spacing:0.032000pt;}
.ls6_c00323{letter-spacing:0.037280pt;}
.ls11_c00323{letter-spacing:0.038400pt;}
.ls5_c00323{letter-spacing:0.044800pt;}
.ls0_c00323{letter-spacing:0.051200pt;}
.ls7_c00323{letter-spacing:0.052192pt;}
.ls3_c00323{letter-spacing:0.057600pt;}
.ls1_c00323{letter-spacing:0.064000pt;}
.ls10_c00323{letter-spacing:0.070400pt;}
.lse_c00323{letter-spacing:0.083200pt;}
.lsd_c00323{letter-spacing:0.089600pt;}
.lsf_c00323{letter-spacing:0.115200pt;}
.ls8_c00323{letter-spacing:0.156576pt;}
.ws6_c00323{word-spacing:-1.785600pt;}
.ws7_c00323{word-spacing:-1.756800pt;}
.ws3_c00323{word-spacing:-0.057600pt;}
.ws1_c00323{word-spacing:0.000000pt;}
.ws0_c00323{word-spacing:0.122912pt;}
.ws5_c00323{word-spacing:0.153600pt;}
.ws2_c00323{word-spacing:2.534400pt;}
.ws4_c00323{word-spacing:12.115200pt;}
._b_c00323{margin-left:-2.867200pt;}
._1_c00323{margin-left:-0.972800pt;}
._3_c00323{width:1.260800pt;}
._2_c00323{width:2.560000pt;}
._0_c00323{width:3.788800pt;}
._14_c00323{width:6.361600pt;}
._4_c00323{width:11.468800pt;}
._5_c00323{width:12.736000pt;}
._13_c00323{width:14.035200pt;}
._6_c00323{width:21.094400pt;}
._7_c00323{width:28.505600pt;}
._c_c00323{width:57.420800pt;}
._10_c00323{width:59.859200pt;}
._d_c00323{width:64.064000pt;}
._8_c00323{width:65.164800pt;}
._e_c00323{width:70.937600pt;}
._a_c00323{width:145.888000pt;}
._12_c00323{width:235.840000pt;}
._9_c00323{width:459.443200pt;}
._f_c00323{width:491.539200pt;}
._11_c00323{width:635.648000pt;}
.fs3_c00323{font-size:48.000000pt;}
.fs0_c00323{font-size:53.440000pt;}
.fs1_c00323{font-size:64.000000pt;}
.fs2_c00323{font-size:74.560000pt;}
.y0_c00323{bottom:0.000000pt;}
.y29_c00323{bottom:2.880400pt;}
.y6_c00323{bottom:50.987067pt;}
.y5_c00323{bottom:69.387067pt;}
.y27_c00323{bottom:107.227067pt;}
.y26_c00323{bottom:134.827067pt;}
.y25_c00323{bottom:162.347067pt;}
.y24_c00323{bottom:189.947067pt;}
.y23_c00323{bottom:217.547067pt;}
.y22_c00323{bottom:245.147067pt;}
.y21_c00323{bottom:272.747067pt;}
.y20_c00323{bottom:300.347067pt;}
.y1f_c00323{bottom:327.947067pt;}
.y1e_c00323{bottom:355.547067pt;}
.y1d_c00323{bottom:385.467067pt;}
.y1c_c00323{bottom:414.267067pt;}
.y1b_c00323{bottom:443.067200pt;}
.y1a_c00323{bottom:471.307067pt;}
.y19_c00323{bottom:498.907067pt;}
.y18_c00323{bottom:528.267067pt;}
.y17_c00323{bottom:555.867067pt;}
.y16_c00323{bottom:584.107067pt;}
.y15_c00323{bottom:611.707067pt;}
.y14_c00323{bottom:643.307067pt;}
.y13_c00323{bottom:669.947067pt;}
.y12_c00323{bottom:690.507067pt;}
.y11_c00323{bottom:723.467067pt;}
.y10_c00323{bottom:751.067067pt;}
.yf_c00323{bottom:778.667067pt;}
.ye_c00323{bottom:806.267067pt;}
.yd_c00323{bottom:833.867067pt;}
.yc_c00323{bottom:861.467067pt;}
.yb_c00323{bottom:889.067067pt;}
.ya_c00323{bottom:916.587067pt;}
.y28_c00323{bottom:925.066667pt;}
.y2a_c00323{bottom:927.947067pt;}
.y9_c00323{bottom:944.187067pt;}
.y8_c00323{bottom:971.787067pt;}
.y7_c00323{bottom:999.387067pt;}
.y4_c00323{bottom:1017.227251pt;}
.y3_c00323{bottom:1032.587243pt;}
.y2_c00323{bottom:1047.867075pt;}
.y1_c00323{bottom:1063.227067pt;}
.h6_c00323{height:13.600000pt;}
.h5_c00323{height:42.234375pt;}
.h1_c00323{height:47.020937pt;}
.h2_c00323{height:56.156250pt;}
.h3_c00323{height:56.312500pt;}
.h4_c00323{height:66.222969pt;}
.h0_c00323{height:1122.666667pt;}
.w2_c00323{width:268.960000pt;}
.w1_c00323{width:793.333333pt;}
.w0_c00323{width:793.626667pt;}
.x0_c00323{left:0.000000pt;}
.xa_c00323{left:109.440000pt;}
.x4_c00323{left:113.440000pt;}
.x7_c00323{left:221.760000pt;}
.xb_c00323{left:263.040000pt;}
.x6_c00323{left:386.880000pt;}
.x5_c00323{left:391.440000pt;}
.x8_c00323{left:418.400000pt;}
.x9_c00323{left:497.360000pt;}
.x1_c00323{left:577.440000pt;}
.x3_c00323{left:656.400000pt;}
.x2_c00323{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4bdb206fc4df838bcc8f661.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.095703;font-style:normal;font-weight:normal;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_e804494ae38700bf3678b6ab.woff2')format("woff");}.ff2_c00324{font-family:ff2_c00324;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00324{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.lsf_c00324{letter-spacing:-0.102204px;}
.ls13_c00324{letter-spacing:-0.057600px;}
.ls16_c00324{letter-spacing:-0.050400px;}
.ls11_c00324{letter-spacing:-0.036000px;}
.ls14_c00324{letter-spacing:-0.028800px;}
.ls15_c00324{letter-spacing:-0.021600px;}
.ls12_c00324{letter-spacing:-0.014400px;}
.ls17_c00324{letter-spacing:-0.005400px;}
.ls10_c00324{letter-spacing:0.000000px;}
.lse_c00324{letter-spacing:0.005400px;}
.ls2_c00324{letter-spacing:0.007200px;}
.ls5_c00324{letter-spacing:0.014400px;}
.lsc_c00324{letter-spacing:0.016200px;}
.ls1_c00324{letter-spacing:0.028800px;}
.lsd_c00324{letter-spacing:0.032400px;}
.ls0_c00324{letter-spacing:0.036000px;}
.ls3_c00324{letter-spacing:0.043200px;}
.ls7_c00324{letter-spacing:0.050400px;}
.ls9_c00324{letter-spacing:0.057600px;}
.lsb_c00324{letter-spacing:0.064800px;}
.lsa_c00324{letter-spacing:0.079200px;}
.ls6_c00324{letter-spacing:0.093600px;}
.ls8_c00324{letter-spacing:0.108000px;}
.ls4_c00324{letter-spacing:0.122400px;}
.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;}
}
.ws3_c00324{word-spacing:-3.304800px;}
.ws8_c00324{word-spacing:-0.183600px;}
.ws1_c00324{word-spacing:0.000000px;}
.ws7_c00324{word-spacing:0.145800px;}
.ws0_c00324{word-spacing:0.192384px;}
.ws2_c00324{word-spacing:1.051200px;}
.ws6_c00324{word-spacing:5.907600px;}
.ws4_c00324{word-spacing:5.923800px;}
.ws5_c00324{word-spacing:5.945400px;}
._9_c00324{margin-left:-3.974400px;}
._8_c00324{margin-left:-2.894400px;}
._2_c00324{margin-left:-1.072800px;}
._0_c00324{width:1.034064px;}
._1_c00324{width:2.844000px;}
._6_c00324{width:3.895200px;}
._a_c00324{width:5.004000px;}
._7_c00324{width:6.588000px;}
._4_c00324{width:7.696800px;}
._3_c00324{width:8.956800px;}
._5_c00324{width:10.720800px;}
.fc2_c00324{color:rgb(68,84,106);}
.fc1_c00324{color:rgb(0,0,0);}
.fc0_c00324{color:rgb(32,31,30);}
.fs2_c00324{font-size:54.000000px;}
.fs0_c00324{font-size:60.120000px;}
.fs1_c00324{font-size:72.000000px;}
.y0_c00324{bottom:0.000000px;}
.y5_c00324{bottom:57.360450px;}
.y4_c00324{bottom:78.060450px;}
.y23_c00324{bottom:117.480450px;}
.y22_c00324{bottom:254.190450px;}
.y21_c00324{bottom:277.410450px;}
.y20_c00324{bottom:304.140450px;}
.y1f_c00324{bottom:335.190450px;}
.y1e_c00324{bottom:366.240450px;}
.y1d_c00324{bottom:397.290450px;}
.y1c_c00324{bottom:428.340450px;}
.y1b_c00324{bottom:459.390450px;}
.y1a_c00324{bottom:490.440450px;}
.y19_c00324{bottom:521.490450px;}
.y18_c00324{bottom:552.540450px;}
.y17_c00324{bottom:583.590450px;}
.y16_c00324{bottom:614.640450px;}
.y15_c00324{bottom:645.690450px;}
.y14_c00324{bottom:676.740450px;}
.y13_c00324{bottom:707.790450px;}
.y12_c00324{bottom:738.840450px;}
.y11_c00324{bottom:769.890450px;}
.y10_c00324{bottom:800.940450px;}
.yf_c00324{bottom:831.990450px;}
.ye_c00324{bottom:863.040450px;}
.yd_c00324{bottom:894.090450px;}
.yc_c00324{bottom:925.140450px;}
.yb_c00324{bottom:956.190450px;}
.ya_c00324{bottom:987.240450px;}
.y9_c00324{bottom:1018.290450px;}
.y8_c00324{bottom:1049.340450px;}
.y7_c00324{bottom:1080.390450px;}
.y6_c00324{bottom:1111.440450px;}
.y3_c00324{bottom:1132.140450px;}
.y2_c00324{bottom:1165.441023px;}
.y1_c00324{bottom:1196.040600px;}
.h4_c00324{height:47.513672px;}
.h1_c00324{height:52.898555px;}
.h2_c00324{height:63.175781px;}
.h3_c00324{height:63.351562px;}
.h0_c00324{height:1263.000000px;}
.w1_c00324{width:892.500000px;}
.w0_c00324{width:892.830000px;}
.x0_c00324{left:0.000000px;}
.x1_c00324{left:127.620000px;}
.x2_c00324{left:738.450000px;}
.x3_c00324{left:751.860000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.lsf_c00324{letter-spacing:-0.090848pt;}
.ls13_c00324{letter-spacing:-0.051200pt;}
.ls16_c00324{letter-spacing:-0.044800pt;}
.ls11_c00324{letter-spacing:-0.032000pt;}
.ls14_c00324{letter-spacing:-0.025600pt;}
.ls15_c00324{letter-spacing:-0.019200pt;}
.ls12_c00324{letter-spacing:-0.012800pt;}
.ls17_c00324{letter-spacing:-0.004800pt;}
.ls10_c00324{letter-spacing:0.000000pt;}
.lse_c00324{letter-spacing:0.004800pt;}
.ls2_c00324{letter-spacing:0.006400pt;}
.ls5_c00324{letter-spacing:0.012800pt;}
.lsc_c00324{letter-spacing:0.014400pt;}
.ls1_c00324{letter-spacing:0.025600pt;}
.lsd_c00324{letter-spacing:0.028800pt;}
.ls0_c00324{letter-spacing:0.032000pt;}
.ls3_c00324{letter-spacing:0.038400pt;}
.ls7_c00324{letter-spacing:0.044800pt;}
.ls9_c00324{letter-spacing:0.051200pt;}
.lsb_c00324{letter-spacing:0.057600pt;}
.lsa_c00324{letter-spacing:0.070400pt;}
.ls6_c00324{letter-spacing:0.083200pt;}
.ls8_c00324{letter-spacing:0.096000pt;}
.ls4_c00324{letter-spacing:0.108800pt;}
.ws3_c00324{word-spacing:-2.937600pt;}
.ws8_c00324{word-spacing:-0.163200pt;}
.ws1_c00324{word-spacing:0.000000pt;}
.ws7_c00324{word-spacing:0.129600pt;}
.ws0_c00324{word-spacing:0.171008pt;}
.ws2_c00324{word-spacing:0.934400pt;}
.ws6_c00324{word-spacing:5.251200pt;}
.ws4_c00324{word-spacing:5.265600pt;}
.ws5_c00324{word-spacing:5.284800pt;}
._9_c00324{margin-left:-3.532800pt;}
._8_c00324{margin-left:-2.572800pt;}
._2_c00324{margin-left:-0.953600pt;}
._0_c00324{width:0.919168pt;}
._1_c00324{width:2.528000pt;}
._6_c00324{width:3.462400pt;}
._a_c00324{width:4.448000pt;}
._7_c00324{width:5.856000pt;}
._4_c00324{width:6.841600pt;}
._3_c00324{width:7.961600pt;}
._5_c00324{width:9.529600pt;}
.fs2_c00324{font-size:48.000000pt;}
.fs0_c00324{font-size:53.440000pt;}
.fs1_c00324{font-size:64.000000pt;}
.y0_c00324{bottom:0.000000pt;}
.y5_c00324{bottom:50.987067pt;}
.y4_c00324{bottom:69.387067pt;}
.y23_c00324{bottom:104.427067pt;}
.y22_c00324{bottom:225.947067pt;}
.y21_c00324{bottom:246.587067pt;}
.y20_c00324{bottom:270.347067pt;}
.y1f_c00324{bottom:297.947067pt;}
.y1e_c00324{bottom:325.547067pt;}
.y1d_c00324{bottom:353.147067pt;}
.y1c_c00324{bottom:380.747067pt;}
.y1b_c00324{bottom:408.347067pt;}
.y1a_c00324{bottom:435.947067pt;}
.y19_c00324{bottom:463.547067pt;}
.y18_c00324{bottom:491.147067pt;}
.y17_c00324{bottom:518.747067pt;}
.y16_c00324{bottom:546.347067pt;}
.y15_c00324{bottom:573.947067pt;}
.y14_c00324{bottom:601.547067pt;}
.y13_c00324{bottom:629.147067pt;}
.y12_c00324{bottom:656.747067pt;}
.y11_c00324{bottom:684.347067pt;}
.y10_c00324{bottom:711.947067pt;}
.yf_c00324{bottom:739.547067pt;}
.ye_c00324{bottom:767.147067pt;}
.yd_c00324{bottom:794.747067pt;}
.yc_c00324{bottom:822.347067pt;}
.yb_c00324{bottom:849.947067pt;}
.ya_c00324{bottom:877.547067pt;}
.y9_c00324{bottom:905.147067pt;}
.y8_c00324{bottom:932.747067pt;}
.y7_c00324{bottom:960.347067pt;}
.y6_c00324{bottom:987.947067pt;}
.y3_c00324{bottom:1006.347067pt;}
.y2_c00324{bottom:1035.947576pt;}
.y1_c00324{bottom:1063.147200pt;}
.h4_c00324{height:42.234375pt;}
.h1_c00324{height:47.020937pt;}
.h2_c00324{height:56.156250pt;}
.h3_c00324{height:56.312500pt;}
.h0_c00324{height:1122.666667pt;}
.w1_c00324{width:793.333333pt;}
.w0_c00324{width:793.626667pt;}
.x0_c00324{left:0.000000pt;}
.x1_c00324{left:113.440000pt;}
.x2_c00324{left:656.400000pt;}
.x3_c00324{left:668.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_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_d0aa5adfbba82d57b2c0266d.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.095703;font-style:normal;font-weight:normal;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_61f273aa96dc46faff8a5e66.woff2')format("woff");}.ff2_c00325{font-family:ff2_c00325;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00325{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls18_c00325{letter-spacing:-0.057600px;}
.ls13_c00325{letter-spacing:-0.048096px;}
.ls15_c00325{letter-spacing:-0.028800px;}
.ls17_c00325{letter-spacing:-0.014400px;}
.ls16_c00325{letter-spacing:-0.007200px;}
.ls14_c00325{letter-spacing:0.000000px;}
.ls1_c00325{letter-spacing:0.007200px;}
.ls7_c00325{letter-spacing:0.010800px;}
.ls6_c00325{letter-spacing:0.014400px;}
.lsd_c00325{letter-spacing:0.021600px;}
.ls2_c00325{letter-spacing:0.028800px;}
.ls8_c00325{letter-spacing:0.032400px;}
.ls5_c00325{letter-spacing:0.036000px;}
.lsc_c00325{letter-spacing:0.043200px;}
.ls0_c00325{letter-spacing:0.050400px;}
.ls4_c00325{letter-spacing:0.057600px;}
.ls3_c00325{letter-spacing:0.064800px;}
.lsb_c00325{letter-spacing:0.072000px;}
.ls9_c00325{letter-spacing:0.075600px;}
.ls12_c00325{letter-spacing:0.079200px;}
.ls10_c00325{letter-spacing:0.086400px;}
.ls11_c00325{letter-spacing:0.108000px;}
.lsa_c00325{letter-spacing:0.136800px;}
.lsf_c00325{letter-spacing:0.144000px;}
.lse_c00325{letter-spacing:5.760000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00325{word-spacing:-18.144000px;}
.ws2_c00325{word-spacing:0.000000px;}
.ws1_c00325{word-spacing:0.138276px;}
.ws5_c00325{word-spacing:6.982200px;}
.ws4_c00325{word-spacing:6.987600px;}
.ws3_c00325{word-spacing:7.009200px;}
._5_c00325{margin-left:-3.729600px;}
._0_c00325{margin-left:-2.570400px;}
._1_c00325{margin-left:-1.072800px;}
._4_c00325{width:1.245600px;}
._9_c00325{width:3.117600px;}
._7_c00325{width:4.392000px;}
._6_c00325{width:5.400000px;}
._8_c00325{width:6.811200px;}
._d_c00325{width:7.891200px;}
._2_c00325{width:9.518400px;}
._3_c00325{width:10.771200px;}
._a_c00325{width:16.920000px;}
._b_c00325{width:29.476800px;}
._c_c00325{width:30.556800px;}
.fc2_c00325{color:rgb(255,0,0);}
.fc1_c00325{color:rgb(68,84,106);}
.fc0_c00325{color:rgb(0,0,0);}
.fs2_c00325{font-size:54.000000px;}
.fs0_c00325{font-size:60.120000px;}
.fs1_c00325{font-size:72.000000px;}
.y0_c00325{bottom:0.000000px;}
.y6_c00325{bottom:57.360450px;}
.y5_c00325{bottom:78.060450px;}
.y23_c00325{bottom:141.240450px;}
.y22_c00325{bottom:172.290450px;}
.y21_c00325{bottom:203.340450px;}
.y20_c00325{bottom:234.390450px;}
.y1f_c00325{bottom:265.440450px;}
.y1e_c00325{bottom:296.490450px;}
.y1d_c00325{bottom:327.540450px;}
.y1c_c00325{bottom:358.590450px;}
.y1b_c00325{bottom:389.640450px;}
.y1a_c00325{bottom:420.690450px;}
.y19_c00325{bottom:451.740450px;}
.y18_c00325{bottom:482.790450px;}
.y17_c00325{bottom:513.840450px;}
.y16_c00325{bottom:544.890450px;}
.y15_c00325{bottom:575.940450px;}
.y14_c00325{bottom:602.940450px;}
.y13_c00325{bottom:763.860000px;}
.y12_c00325{bottom:787.170450px;}
.y11_c00325{bottom:813.900450px;}
.y10_c00325{bottom:844.950450px;}
.yf_c00325{bottom:876.000450px;}
.ye_c00325{bottom:907.050450px;}
.yd_c00325{bottom:938.100450px;}
.yc_c00325{bottom:969.150450px;}
.yb_c00325{bottom:1000.200450px;}
.ya_c00325{bottom:1031.160450px;}
.y9_c00325{bottom:1062.210450px;}
.y8_c00325{bottom:1093.260450px;}
.y7_c00325{bottom:1124.310450px;}
.y4_c00325{bottom:1144.380657px;}
.y3_c00325{bottom:1161.660648px;}
.y2_c00325{bottom:1178.850459px;}
.y1_c00325{bottom:1196.130450px;}
.h3_c00325{height:47.513672px;}
.h1_c00325{height:52.898555px;}
.h2_c00325{height:63.175781px;}
.h0_c00325{height:1263.000000px;}
.w1_c00325{width:892.500000px;}
.w0_c00325{width:892.830000px;}
.x0_c00325{left:0.000000px;}
.x4_c00325{left:127.620000px;}
.x5_c00325{left:446.490000px;}
.x1_c00325{left:649.620000px;}
.x3_c00325{left:738.450000px;}
.x6_c00325{left:757.530000px;}
.x2_c00325{left:765.450198px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls18_c00325{letter-spacing:-0.051200pt;}
.ls13_c00325{letter-spacing:-0.042752pt;}
.ls15_c00325{letter-spacing:-0.025600pt;}
.ls17_c00325{letter-spacing:-0.012800pt;}
.ls16_c00325{letter-spacing:-0.006400pt;}
.ls14_c00325{letter-spacing:0.000000pt;}
.ls1_c00325{letter-spacing:0.006400pt;}
.ls7_c00325{letter-spacing:0.009600pt;}
.ls6_c00325{letter-spacing:0.012800pt;}
.lsd_c00325{letter-spacing:0.019200pt;}
.ls2_c00325{letter-spacing:0.025600pt;}
.ls8_c00325{letter-spacing:0.028800pt;}
.ls5_c00325{letter-spacing:0.032000pt;}
.lsc_c00325{letter-spacing:0.038400pt;}
.ls0_c00325{letter-spacing:0.044800pt;}
.ls4_c00325{letter-spacing:0.051200pt;}
.ls3_c00325{letter-spacing:0.057600pt;}
.lsb_c00325{letter-spacing:0.064000pt;}
.ls9_c00325{letter-spacing:0.067200pt;}
.ls12_c00325{letter-spacing:0.070400pt;}
.ls10_c00325{letter-spacing:0.076800pt;}
.ls11_c00325{letter-spacing:0.096000pt;}
.lsa_c00325{letter-spacing:0.121600pt;}
.lsf_c00325{letter-spacing:0.128000pt;}
.lse_c00325{letter-spacing:5.120000pt;}
.ws0_c00325{word-spacing:-16.128000pt;}
.ws2_c00325{word-spacing:0.000000pt;}
.ws1_c00325{word-spacing:0.122912pt;}
.ws5_c00325{word-spacing:6.206400pt;}
.ws4_c00325{word-spacing:6.211200pt;}
.ws3_c00325{word-spacing:6.230400pt;}
._5_c00325{margin-left:-3.315200pt;}
._0_c00325{margin-left:-2.284800pt;}
._1_c00325{margin-left:-0.953600pt;}
._4_c00325{width:1.107200pt;}
._9_c00325{width:2.771200pt;}
._7_c00325{width:3.904000pt;}
._6_c00325{width:4.800000pt;}
._8_c00325{width:6.054400pt;}
._d_c00325{width:7.014400pt;}
._2_c00325{width:8.460800pt;}
._3_c00325{width:9.574400pt;}
._a_c00325{width:15.040000pt;}
._b_c00325{width:26.201600pt;}
._c_c00325{width:27.161600pt;}
.fs2_c00325{font-size:48.000000pt;}
.fs0_c00325{font-size:53.440000pt;}
.fs1_c00325{font-size:64.000000pt;}
.y0_c00325{bottom:0.000000pt;}
.y6_c00325{bottom:50.987067pt;}
.y5_c00325{bottom:69.387067pt;}
.y23_c00325{bottom:125.547067pt;}
.y22_c00325{bottom:153.147067pt;}
.y21_c00325{bottom:180.747067pt;}
.y20_c00325{bottom:208.347067pt;}
.y1f_c00325{bottom:235.947067pt;}
.y1e_c00325{bottom:263.547067pt;}
.y1d_c00325{bottom:291.147067pt;}
.y1c_c00325{bottom:318.747067pt;}
.y1b_c00325{bottom:346.347067pt;}
.y1a_c00325{bottom:373.947067pt;}
.y19_c00325{bottom:401.547067pt;}
.y18_c00325{bottom:429.147067pt;}
.y17_c00325{bottom:456.747067pt;}
.y16_c00325{bottom:484.347067pt;}
.y15_c00325{bottom:511.947067pt;}
.y14_c00325{bottom:535.947067pt;}
.y13_c00325{bottom:678.986667pt;}
.y12_c00325{bottom:699.707067pt;}
.y11_c00325{bottom:723.467067pt;}
.y10_c00325{bottom:751.067067pt;}
.yf_c00325{bottom:778.667067pt;}
.ye_c00325{bottom:806.267067pt;}
.yd_c00325{bottom:833.867067pt;}
.yc_c00325{bottom:861.467067pt;}
.yb_c00325{bottom:889.067067pt;}
.ya_c00325{bottom:916.587067pt;}
.y9_c00325{bottom:944.187067pt;}
.y8_c00325{bottom:971.787067pt;}
.y7_c00325{bottom:999.387067pt;}
.y4_c00325{bottom:1017.227251pt;}
.y3_c00325{bottom:1032.587243pt;}
.y2_c00325{bottom:1047.867075pt;}
.y1_c00325{bottom:1063.227067pt;}
.h3_c00325{height:42.234375pt;}
.h1_c00325{height:47.020937pt;}
.h2_c00325{height:56.156250pt;}
.h0_c00325{height:1122.666667pt;}
.w1_c00325{width:793.333333pt;}
.w0_c00325{width:793.626667pt;}
.x0_c00325{left:0.000000pt;}
.x4_c00325{left:113.440000pt;}
.x5_c00325{left:396.880000pt;}
.x1_c00325{left:577.440000pt;}
.x3_c00325{left:656.400000pt;}
.x6_c00325{left:673.360000pt;}
.x2_c00325{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1241ab132a403f6ebf4e8450.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.095703;font-style:normal;font-weight:normal;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_4729c2743ff2689603041595.woff2')format("woff");}.ff2_c00326{font-family:ff2_c00326;line-height:1.093262;font-style:normal;font-weight:normal;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_9f6e231447686250a30579ad.woff2')format("woff");}.ff3_c00326{font-family:ff3_c00326;line-height:1.104004;font-style: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;}
.lsd_c00326{letter-spacing:-0.102204px;}
.ls10_c00326{letter-spacing:-0.064800px;}
.ls14_c00326{letter-spacing:-0.057600px;}
.ls15_c00326{letter-spacing:-0.021600px;}
.ls13_c00326{letter-spacing:-0.016200px;}
.lsf_c00326{letter-spacing:-0.014400px;}
.ls11_c00326{letter-spacing:-0.007200px;}
.lse_c00326{letter-spacing:0.000000px;}
.ls7_c00326{letter-spacing:0.007200px;}
.ls9_c00326{letter-spacing:0.010800px;}
.ls1_c00326{letter-spacing:0.014400px;}
.ls6_c00326{letter-spacing:0.021600px;}
.ls0_c00326{letter-spacing:0.028800px;}
.ls3_c00326{letter-spacing:0.036000px;}
.ls2_c00326{letter-spacing:0.043200px;}
.ls8_c00326{letter-spacing:0.050328px;}
.ls4_c00326{letter-spacing:0.050400px;}
.lsa_c00326{letter-spacing:0.057600px;}
.ls5_c00326{letter-spacing:0.072000px;}
.lsc_c00326{letter-spacing:0.079200px;}
.lsb_c00326{letter-spacing:0.100800px;}
.ls12_c00326{letter-spacing:15.033600px;}
.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;}
}
.ws3_c00326{word-spacing:-0.189000px;}
.ws1_c00326{word-spacing:0.000000px;}
.ws0_c00326{word-spacing:0.192384px;}
.ws2_c00326{word-spacing:0.194400px;}
._9_c00326{margin-left:-15.876000px;}
._a_c00326{margin-left:-14.191200px;}
._b_c00326{margin-left:-4.579200px;}
._c_c00326{margin-left:-3.412800px;}
._5_c00326{margin-left:-2.289600px;}
._4_c00326{margin-left:-1.051200px;}
._0_c00326{width:1.034064px;}
._3_c00326{width:2.836800px;}
._19_c00326{width:5.896800px;}
._7_c00326{width:7.207200px;}
._8_c00326{width:8.568000px;}
._1a_c00326{width:11.181600px;}
._6_c00326{width:15.098400px;}
._1_c00326{width:21.340800px;}
._2_c00326{width:22.521600px;}
._17_c00326{width:29.527200px;}
._e_c00326{width:137.750400px;}
._d_c00326{width:193.305600px;}
._16_c00326{width:301.608000px;}
._18_c00326{width:329.760000px;}
._10_c00326{width:365.760000px;}
._15_c00326{width:501.228000px;}
._12_c00326{width:549.734400px;}
._f_c00326{width:589.176000px;}
._14_c00326{width:740.995200px;}
._13_c00326{width:757.368000px;}
._11_c00326{width:777.600000px;}
.fc2_c00326{color:rgb(68,84,106);}
.fc1_c00326{color:rgb(0,0,0);}
.fc0_c00326{color:rgb(32,31,30);}
.fs3_c00326{font-size:54.000000px;}
.fs0_c00326{font-size:60.120000px;}
.fs1_c00326{font-size:72.000000px;}
.fs2_c00326{font-size:83.880000px;}
.y0_c00326{bottom:0.000000px;}
.y5_c00326{bottom:57.360450px;}
.y4_c00326{bottom:78.060450px;}
.y26_c00326{bottom:134.760450px;}
.y25_c00326{bottom:165.810450px;}
.y24_c00326{bottom:196.860450px;}
.y23_c00326{bottom:227.910450px;}
.y22_c00326{bottom:258.960450px;}
.y21_c00326{bottom:290.550450px;}
.y1f_c00326{bottom:322.320450px;}
.y1e_c00326{bottom:353.370450px;}
.y20_c00326{bottom:353.550450px;}
.y1d_c00326{bottom:385.230450px;}
.y1c_c00326{bottom:417.000600px;}
.y1b_c00326{bottom:448.770600px;}
.y1a_c00326{bottom:480.540600px;}
.y19_c00326{bottom:512.400450px;}
.y18_c00326{bottom:544.170450px;}
.y17_c00326{bottom:575.940450px;}
.y16_c00326{bottom:607.980450px;}
.y15_c00326{bottom:643.530450px;}
.y14_c00326{bottom:673.500450px;}
.y13_c00326{bottom:696.629460px;}
.y12_c00326{bottom:735.780450px;}
.y11_c00326{bottom:769.890450px;}
.y10_c00326{bottom:800.940450px;}
.yf_c00326{bottom:831.990450px;}
.ye_c00326{bottom:863.040450px;}
.yd_c00326{bottom:894.090450px;}
.yc_c00326{bottom:925.140450px;}
.yb_c00326{bottom:956.190450px;}
.ya_c00326{bottom:987.240450px;}
.y9_c00326{bottom:1018.290450px;}
.y8_c00326{bottom:1049.340450px;}
.y7_c00326{bottom:1080.390450px;}
.y6_c00326{bottom:1111.440450px;}
.y3_c00326{bottom:1132.140450px;}
.y2_c00326{bottom:1165.441023px;}
.y1_c00326{bottom:1196.040600px;}
.h4_c00326{height:47.513672px;}
.h1_c00326{height:52.898555px;}
.h2_c00326{height:63.175781px;}
.h5_c00326{height:63.949219px;}
.h3_c00326{height:74.500840px;}
.h0_c00326{height:1263.000000px;}
.w1_c00326{width:892.500000px;}
.w0_c00326{width:892.830000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:127.620000px;}
.x3_c00326{left:242.100000px;}
.x4_c00326{left:477.000000px;}
.x2_c00326{left:738.450000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.lsd_c00326{letter-spacing:-0.090848pt;}
.ls10_c00326{letter-spacing:-0.057600pt;}
.ls14_c00326{letter-spacing:-0.051200pt;}
.ls15_c00326{letter-spacing:-0.019200pt;}
.ls13_c00326{letter-spacing:-0.014400pt;}
.lsf_c00326{letter-spacing:-0.012800pt;}
.ls11_c00326{letter-spacing:-0.006400pt;}
.lse_c00326{letter-spacing:0.000000pt;}
.ls7_c00326{letter-spacing:0.006400pt;}
.ls9_c00326{letter-spacing:0.009600pt;}
.ls1_c00326{letter-spacing:0.012800pt;}
.ls6_c00326{letter-spacing:0.019200pt;}
.ls0_c00326{letter-spacing:0.025600pt;}
.ls3_c00326{letter-spacing:0.032000pt;}
.ls2_c00326{letter-spacing:0.038400pt;}
.ls8_c00326{letter-spacing:0.044736pt;}
.ls4_c00326{letter-spacing:0.044800pt;}
.lsa_c00326{letter-spacing:0.051200pt;}
.ls5_c00326{letter-spacing:0.064000pt;}
.lsc_c00326{letter-spacing:0.070400pt;}
.lsb_c00326{letter-spacing:0.089600pt;}
.ls12_c00326{letter-spacing:13.363200pt;}
.ws3_c00326{word-spacing:-0.168000pt;}
.ws1_c00326{word-spacing:0.000000pt;}
.ws0_c00326{word-spacing:0.171008pt;}
.ws2_c00326{word-spacing:0.172800pt;}
._9_c00326{margin-left:-14.112000pt;}
._a_c00326{margin-left:-12.614400pt;}
._b_c00326{margin-left:-4.070400pt;}
._c_c00326{margin-left:-3.033600pt;}
._5_c00326{margin-left:-2.035200pt;}
._4_c00326{margin-left:-0.934400pt;}
._0_c00326{width:0.919168pt;}
._3_c00326{width:2.521600pt;}
._19_c00326{width:5.241600pt;}
._7_c00326{width:6.406400pt;}
._8_c00326{width:7.616000pt;}
._1a_c00326{width:9.939200pt;}
._6_c00326{width:13.420800pt;}
._1_c00326{width:18.969600pt;}
._2_c00326{width:20.019200pt;}
._17_c00326{width:26.246400pt;}
._e_c00326{width:122.444800pt;}
._d_c00326{width:171.827200pt;}
._16_c00326{width:268.096000pt;}
._18_c00326{width:293.120000pt;}
._10_c00326{width:325.120000pt;}
._15_c00326{width:445.536000pt;}
._12_c00326{width:488.652800pt;}
._f_c00326{width:523.712000pt;}
._14_c00326{width:658.662400pt;}
._13_c00326{width:673.216000pt;}
._11_c00326{width:691.200000pt;}
.fs3_c00326{font-size:48.000000pt;}
.fs0_c00326{font-size:53.440000pt;}
.fs1_c00326{font-size:64.000000pt;}
.fs2_c00326{font-size:74.560000pt;}
.y0_c00326{bottom:0.000000pt;}
.y5_c00326{bottom:50.987067pt;}
.y4_c00326{bottom:69.387067pt;}
.y26_c00326{bottom:119.787067pt;}
.y25_c00326{bottom:147.387067pt;}
.y24_c00326{bottom:174.987067pt;}
.y23_c00326{bottom:202.587067pt;}
.y22_c00326{bottom:230.187067pt;}
.y21_c00326{bottom:258.267067pt;}
.y1f_c00326{bottom:286.507067pt;}
.y1e_c00326{bottom:314.107067pt;}
.y20_c00326{bottom:314.267067pt;}
.y1d_c00326{bottom:342.427067pt;}
.y1c_c00326{bottom:370.667200pt;}
.y1b_c00326{bottom:398.907200pt;}
.y1a_c00326{bottom:427.147200pt;}
.y19_c00326{bottom:455.467067pt;}
.y18_c00326{bottom:483.707067pt;}
.y17_c00326{bottom:511.947067pt;}
.y16_c00326{bottom:540.427067pt;}
.y15_c00326{bottom:572.027067pt;}
.y14_c00326{bottom:598.667067pt;}
.y13_c00326{bottom:619.226187pt;}
.y12_c00326{bottom:654.027067pt;}
.y11_c00326{bottom:684.347067pt;}
.y10_c00326{bottom:711.947067pt;}
.yf_c00326{bottom:739.547067pt;}
.ye_c00326{bottom:767.147067pt;}
.yd_c00326{bottom:794.747067pt;}
.yc_c00326{bottom:822.347067pt;}
.yb_c00326{bottom:849.947067pt;}
.ya_c00326{bottom:877.547067pt;}
.y9_c00326{bottom:905.147067pt;}
.y8_c00326{bottom:932.747067pt;}
.y7_c00326{bottom:960.347067pt;}
.y6_c00326{bottom:987.947067pt;}
.y3_c00326{bottom:1006.347067pt;}
.y2_c00326{bottom:1035.947576pt;}
.y1_c00326{bottom:1063.147200pt;}
.h4_c00326{height:42.234375pt;}
.h1_c00326{height:47.020937pt;}
.h2_c00326{height:56.156250pt;}
.h5_c00326{height:56.843750pt;}
.h3_c00326{height:66.222969pt;}
.h0_c00326{height:1122.666667pt;}
.w1_c00326{width:793.333333pt;}
.w0_c00326{width:793.626667pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:113.440000pt;}
.x3_c00326{left:215.200000pt;}
.x4_c00326{left:424.000000pt;}
.x2_c00326{left:656.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_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_b9192f34785f2a978a08db4c.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.095703;font-style:normal;font-weight:normal;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_b1203e9ae78b7e419debac05.woff2')format("woff");}.ff2_c00327{font-family:ff2_c00327;line-height:1.093262;font-style: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;}
.ls16_c00327{letter-spacing:-1.440000px;}
.ls1d_c00327{letter-spacing:-0.561600px;}
.ls1c_c00327{letter-spacing:-0.417600px;}
.ls19_c00327{letter-spacing:-0.216000px;}
.ls11_c00327{letter-spacing:-0.072000px;}
.lsf_c00327{letter-spacing:-0.048096px;}
.ls1a_c00327{letter-spacing:-0.043200px;}
.ls12_c00327{letter-spacing:-0.028800px;}
.ls14_c00327{letter-spacing:-0.021600px;}
.ls15_c00327{letter-spacing:-0.014400px;}
.ls13_c00327{letter-spacing:-0.007200px;}
.ls10_c00327{letter-spacing:0.000000px;}
.ls9_c00327{letter-spacing:0.007200px;}
.ls7_c00327{letter-spacing:0.014400px;}
.lsa_c00327{letter-spacing:0.021600px;}
.lsd_c00327{letter-spacing:0.028800px;}
.ls4_c00327{letter-spacing:0.036000px;}
.ls3_c00327{letter-spacing:0.043200px;}
.lsb_c00327{letter-spacing:0.050400px;}
.ls6_c00327{letter-spacing:0.057600px;}
.ls8_c00327{letter-spacing:0.064800px;}
.lsc_c00327{letter-spacing:0.072000px;}
.ls5_c00327{letter-spacing:0.079200px;}
.ls0_c00327{letter-spacing:0.086400px;}
.ls2_c00327{letter-spacing:0.129600px;}
.ls1_c00327{letter-spacing:0.158400px;}
.ls17_c00327{letter-spacing:4.320000px;}
.ls1b_c00327{letter-spacing:9.360000px;}
.ls18_c00327{letter-spacing:10.080000px;}
.lse_c00327{letter-spacing:12.600000px;}
.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:-18.000000px;}
.ws1_c00327{word-spacing:-17.992800px;}
.ws5_c00327{word-spacing:-0.396000px;}
.ws3_c00327{word-spacing:0.000000px;}
.ws2_c00327{word-spacing:0.138276px;}
.ws4_c00327{word-spacing:10.087200px;}
._f_c00327{margin-left:-12.556800px;}
._c_c00327{margin-left:-10.562400px;}
._d_c00327{margin-left:-8.316000px;}
._8_c00327{margin-left:-5.601600px;}
._9_c00327{margin-left:-3.960000px;}
._7_c00327{margin-left:-2.102400px;}
._0_c00327{margin-left:-1.065600px;}
._3_c00327{width:1.742400px;}
._4_c00327{width:2.822400px;}
._6_c00327{width:4.701600px;}
._10_c00327{width:6.444000px;}
._11_c00327{width:7.466400px;}
._1_c00327{width:8.956800px;}
._b_c00327{width:10.785600px;}
._e_c00327{width:12.628800px;}
._5_c00327{width:14.004000px;}
._a_c00327{width:15.444000px;}
._2_c00327{width:16.804800px;}
.fc1_c00327{color:rgb(255,0,0);}
.fc0_c00327{color:rgb(0,0,0);}
.fs0_c00327{font-size:60.120000px;}
.fs1_c00327{font-size:72.000000px;}
.y0_c00327{bottom:0.000000px;}
.y6_c00327{bottom:57.360450px;}
.y5_c00327{bottom:78.060450px;}
.y26_c00327{bottom:161.850450px;}
.y25_c00327{bottom:192.900450px;}
.y24_c00327{bottom:223.950450px;}
.y23_c00327{bottom:255.000450px;}
.y22_c00327{bottom:286.050450px;}
.y21_c00327{bottom:317.100450px;}
.y20_c00327{bottom:348.150450px;}
.y1f_c00327{bottom:379.200450px;}
.y1e_c00327{bottom:410.250450px;}
.y1d_c00327{bottom:441.300450px;}
.y1c_c00327{bottom:472.350450px;}
.y1b_c00327{bottom:503.400450px;}
.y1a_c00327{bottom:534.450450px;}
.y19_c00327{bottom:565.500450px;}
.y18_c00327{bottom:596.550450px;}
.y17_c00327{bottom:627.600450px;}
.y16_c00327{bottom:658.650450px;}
.y15_c00327{bottom:689.700450px;}
.y14_c00327{bottom:720.750450px;}
.y13_c00327{bottom:751.800450px;}
.y12_c00327{bottom:782.850450px;}
.y11_c00327{bottom:813.900450px;}
.y10_c00327{bottom:844.950450px;}
.yf_c00327{bottom:876.000450px;}
.ye_c00327{bottom:907.050450px;}
.yd_c00327{bottom:938.100450px;}
.yc_c00327{bottom:969.150450px;}
.yb_c00327{bottom:1000.200450px;}
.ya_c00327{bottom:1031.160450px;}
.y9_c00327{bottom:1062.210450px;}
.y8_c00327{bottom:1093.260450px;}
.y7_c00327{bottom:1124.310450px;}
.y4_c00327{bottom:1144.380657px;}
.y3_c00327{bottom:1161.660648px;}
.y2_c00327{bottom:1178.850459px;}
.y1_c00327{bottom:1196.130450px;}
.h1_c00327{height:52.898555px;}
.h2_c00327{height:63.175781px;}
.h3_c00327{height:63.351562px;}
.h0_c00327{height:1263.000000px;}
.w1_c00327{width:892.500000px;}
.w0_c00327{width:892.830000px;}
.x0_c00327{left:0.000000px;}
.x4_c00327{left:127.620000px;}
.x1_c00327{left:649.620000px;}
.x3_c00327{left:738.450000px;}
.x2_c00327{left:765.450198px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls16_c00327{letter-spacing:-1.280000pt;}
.ls1d_c00327{letter-spacing:-0.499200pt;}
.ls1c_c00327{letter-spacing:-0.371200pt;}
.ls19_c00327{letter-spacing:-0.192000pt;}
.ls11_c00327{letter-spacing:-0.064000pt;}
.lsf_c00327{letter-spacing:-0.042752pt;}
.ls1a_c00327{letter-spacing:-0.038400pt;}
.ls12_c00327{letter-spacing:-0.025600pt;}
.ls14_c00327{letter-spacing:-0.019200pt;}
.ls15_c00327{letter-spacing:-0.012800pt;}
.ls13_c00327{letter-spacing:-0.006400pt;}
.ls10_c00327{letter-spacing:0.000000pt;}
.ls9_c00327{letter-spacing:0.006400pt;}
.ls7_c00327{letter-spacing:0.012800pt;}
.lsa_c00327{letter-spacing:0.019200pt;}
.lsd_c00327{letter-spacing:0.025600pt;}
.ls4_c00327{letter-spacing:0.032000pt;}
.ls3_c00327{letter-spacing:0.038400pt;}
.lsb_c00327{letter-spacing:0.044800pt;}
.ls6_c00327{letter-spacing:0.051200pt;}
.ls8_c00327{letter-spacing:0.057600pt;}
.lsc_c00327{letter-spacing:0.064000pt;}
.ls5_c00327{letter-spacing:0.070400pt;}
.ls0_c00327{letter-spacing:0.076800pt;}
.ls2_c00327{letter-spacing:0.115200pt;}
.ls1_c00327{letter-spacing:0.140800pt;}
.ls17_c00327{letter-spacing:3.840000pt;}
.ls1b_c00327{letter-spacing:8.320000pt;}
.ls18_c00327{letter-spacing:8.960000pt;}
.lse_c00327{letter-spacing:11.200000pt;}
.ws0_c00327{word-spacing:-16.000000pt;}
.ws1_c00327{word-spacing:-15.993600pt;}
.ws5_c00327{word-spacing:-0.352000pt;}
.ws3_c00327{word-spacing:0.000000pt;}
.ws2_c00327{word-spacing:0.122912pt;}
.ws4_c00327{word-spacing:8.966400pt;}
._f_c00327{margin-left:-11.161600pt;}
._c_c00327{margin-left:-9.388800pt;}
._d_c00327{margin-left:-7.392000pt;}
._8_c00327{margin-left:-4.979200pt;}
._9_c00327{margin-left:-3.520000pt;}
._7_c00327{margin-left:-1.868800pt;}
._0_c00327{margin-left:-0.947200pt;}
._3_c00327{width:1.548800pt;}
._4_c00327{width:2.508800pt;}
._6_c00327{width:4.179200pt;}
._10_c00327{width:5.728000pt;}
._11_c00327{width:6.636800pt;}
._1_c00327{width:7.961600pt;}
._b_c00327{width:9.587200pt;}
._e_c00327{width:11.225600pt;}
._5_c00327{width:12.448000pt;}
._a_c00327{width:13.728000pt;}
._2_c00327{width:14.937600pt;}
.fs0_c00327{font-size:53.440000pt;}
.fs1_c00327{font-size:64.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.y6_c00327{bottom:50.987067pt;}
.y5_c00327{bottom:69.387067pt;}
.y26_c00327{bottom:143.867067pt;}
.y25_c00327{bottom:171.467067pt;}
.y24_c00327{bottom:199.067067pt;}
.y23_c00327{bottom:226.667067pt;}
.y22_c00327{bottom:254.267067pt;}
.y21_c00327{bottom:281.867067pt;}
.y20_c00327{bottom:309.467067pt;}
.y1f_c00327{bottom:337.067067pt;}
.y1e_c00327{bottom:364.667067pt;}
.y1d_c00327{bottom:392.267067pt;}
.y1c_c00327{bottom:419.867067pt;}
.y1b_c00327{bottom:447.467067pt;}
.y1a_c00327{bottom:475.067067pt;}
.y19_c00327{bottom:502.667067pt;}
.y18_c00327{bottom:530.267067pt;}
.y17_c00327{bottom:557.867067pt;}
.y16_c00327{bottom:585.467067pt;}
.y15_c00327{bottom:613.067067pt;}
.y14_c00327{bottom:640.667067pt;}
.y13_c00327{bottom:668.267067pt;}
.y12_c00327{bottom:695.867067pt;}
.y11_c00327{bottom:723.467067pt;}
.y10_c00327{bottom:751.067067pt;}
.yf_c00327{bottom:778.667067pt;}
.ye_c00327{bottom:806.267067pt;}
.yd_c00327{bottom:833.867067pt;}
.yc_c00327{bottom:861.467067pt;}
.yb_c00327{bottom:889.067067pt;}
.ya_c00327{bottom:916.587067pt;}
.y9_c00327{bottom:944.187067pt;}
.y8_c00327{bottom:971.787067pt;}
.y7_c00327{bottom:999.387067pt;}
.y4_c00327{bottom:1017.227251pt;}
.y3_c00327{bottom:1032.587243pt;}
.y2_c00327{bottom:1047.867075pt;}
.y1_c00327{bottom:1063.227067pt;}
.h1_c00327{height:47.020937pt;}
.h2_c00327{height:56.156250pt;}
.h3_c00327{height:56.312500pt;}
.h0_c00327{height:1122.666667pt;}
.w1_c00327{width:793.333333pt;}
.w0_c00327{width:793.626667pt;}
.x0_c00327{left:0.000000pt;}
.x4_c00327{left:113.440000pt;}
.x1_c00327{left:577.440000pt;}
.x3_c00327{left:656.400000pt;}
.x2_c00327{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_92434d566210ecbbc04a91d0.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.095703;font-style:normal;font-weight:normal;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_8283c1863b7837cde5cc152a.woff2')format("woff");}.ff2_c00328{font-family:ff2_c00328;line-height:1.093262;font-style: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;}
.ls12_c00328{letter-spacing:-2.160000px;}
.ls15_c00328{letter-spacing:-0.244800px;}
.lse_c00328{letter-spacing:-0.102204px;}
.ls14_c00328{letter-spacing:-0.050400px;}
.ls10_c00328{letter-spacing:-0.014400px;}
.ls11_c00328{letter-spacing:-0.007200px;}
.lsf_c00328{letter-spacing:0.000000px;}
.ls1_c00328{letter-spacing:0.007200px;}
.ls3_c00328{letter-spacing:0.010800px;}
.lsc_c00328{letter-spacing:0.014400px;}
.ls2_c00328{letter-spacing:0.021600px;}
.ls6_c00328{letter-spacing:0.028800px;}
.ls9_c00328{letter-spacing:0.036000px;}
.ls0_c00328{letter-spacing:0.050400px;}
.lsd_c00328{letter-spacing:0.057600px;}
.ls7_c00328{letter-spacing:0.064800px;}
.ls8_c00328{letter-spacing:0.072000px;}
.ls4_c00328{letter-spacing:0.075600px;}
.lsb_c00328{letter-spacing:0.079200px;}
.ls5_c00328{letter-spacing:0.086400px;}
.ls13_c00328{letter-spacing:2.520000px;}
.lsa_c00328{letter-spacing:5.760000px;}
.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:-18.021600px;}
.ws2_c00328{word-spacing:0.000000px;}
.ws1_c00328{word-spacing:0.192384px;}
.ws3_c00328{word-spacing:16.718400px;}
.ws4_c00328{word-spacing:16.729200px;}
._4_c00328{margin-left:-3.664800px;}
._1_c00328{margin-left:-1.850400px;}
._0_c00328{width:1.034064px;}
._2_c00328{width:2.498400px;}
._7_c00328{width:3.657600px;}
._8_c00328{width:4.881600px;}
._9_c00328{width:6.278400px;}
._3_c00328{width:7.538400px;}
._c_c00328{width:13.183200px;}
._6_c00328{width:14.896800px;}
._5_c00328{width:16.128000px;}
._b_c00328{width:29.865600px;}
._a_c00328{width:30.902400px;}
.fc3_c00328{color:rgb(255,0,0);}
.fc2_c00328{color:rgb(68,84,106);}
.fc1_c00328{color:rgb(0,0,0);}
.fc0_c00328{color:rgb(32,31,30);}
.fs2_c00328{font-size:54.000000px;}
.fs0_c00328{font-size:60.120000px;}
.fs1_c00328{font-size:72.000000px;}
.y0_c00328{bottom:0.000000px;}
.y5_c00328{bottom:57.360450px;}
.y4_c00328{bottom:78.060450px;}
.y21_c00328{bottom:133.140450px;}
.y20_c00328{bottom:164.190450px;}
.y1f_c00328{bottom:195.240450px;}
.y1e_c00328{bottom:226.290450px;}
.y1d_c00328{bottom:257.340450px;}
.y1c_c00328{bottom:288.390450px;}
.y1b_c00328{bottom:319.440450px;}
.y1a_c00328{bottom:350.490450px;}
.y19_c00328{bottom:381.540450px;}
.y18_c00328{bottom:412.590450px;}
.y17_c00328{bottom:443.640450px;}
.y16_c00328{bottom:474.690450px;}
.y15_c00328{bottom:505.740450px;}
.y14_c00328{bottom:536.790450px;}
.y13_c00328{bottom:567.840450px;}
.y12_c00328{bottom:598.890450px;}
.y11_c00328{bottom:629.940450px;}
.y10_c00328{bottom:660.990450px;}
.yf_c00328{bottom:692.040450px;}
.ye_c00328{bottom:723.000450px;}
.yd_c00328{bottom:754.050450px;}
.yc_c00328{bottom:785.100450px;}
.yb_c00328{bottom:812.100450px;}
.ya_c00328{bottom:992.100450px;}
.y9_c00328{bottom:1015.320450px;}
.y8_c00328{bottom:1053.660450px;}
.y7_c00328{bottom:1080.390450px;}
.y6_c00328{bottom:1111.440450px;}
.y3_c00328{bottom:1132.140450px;}
.y2_c00328{bottom:1165.441023px;}
.y1_c00328{bottom:1196.040600px;}
.h3_c00328{height:47.513672px;}
.h1_c00328{height:52.898555px;}
.h2_c00328{height:63.175781px;}
.h4_c00328{height:63.351562px;}
.h0_c00328{height:1263.000000px;}
.w1_c00328{width:892.500000px;}
.w0_c00328{width:892.830000px;}
.x0_c00328{left:0.000000px;}
.x1_c00328{left:127.620000px;}
.x4_c00328{left:446.490000px;}
.x3_c00328{left:729.990000px;}
.x2_c00328{left:738.450000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls12_c00328{letter-spacing:-1.920000pt;}
.ls15_c00328{letter-spacing:-0.217600pt;}
.lse_c00328{letter-spacing:-0.090848pt;}
.ls14_c00328{letter-spacing:-0.044800pt;}
.ls10_c00328{letter-spacing:-0.012800pt;}
.ls11_c00328{letter-spacing:-0.006400pt;}
.lsf_c00328{letter-spacing:0.000000pt;}
.ls1_c00328{letter-spacing:0.006400pt;}
.ls3_c00328{letter-spacing:0.009600pt;}
.lsc_c00328{letter-spacing:0.012800pt;}
.ls2_c00328{letter-spacing:0.019200pt;}
.ls6_c00328{letter-spacing:0.025600pt;}
.ls9_c00328{letter-spacing:0.032000pt;}
.ls0_c00328{letter-spacing:0.044800pt;}
.lsd_c00328{letter-spacing:0.051200pt;}
.ls7_c00328{letter-spacing:0.057600pt;}
.ls8_c00328{letter-spacing:0.064000pt;}
.ls4_c00328{letter-spacing:0.067200pt;}
.lsb_c00328{letter-spacing:0.070400pt;}
.ls5_c00328{letter-spacing:0.076800pt;}
.ls13_c00328{letter-spacing:2.240000pt;}
.lsa_c00328{letter-spacing:5.120000pt;}
.ws0_c00328{word-spacing:-16.019200pt;}
.ws2_c00328{word-spacing:0.000000pt;}
.ws1_c00328{word-spacing:0.171008pt;}
.ws3_c00328{word-spacing:14.860800pt;}
.ws4_c00328{word-spacing:14.870400pt;}
._4_c00328{margin-left:-3.257600pt;}
._1_c00328{margin-left:-1.644800pt;}
._0_c00328{width:0.919168pt;}
._2_c00328{width:2.220800pt;}
._7_c00328{width:3.251200pt;}
._8_c00328{width:4.339200pt;}
._9_c00328{width:5.580800pt;}
._3_c00328{width:6.700800pt;}
._c_c00328{width:11.718400pt;}
._6_c00328{width:13.241600pt;}
._5_c00328{width:14.336000pt;}
._b_c00328{width:26.547200pt;}
._a_c00328{width:27.468800pt;}
.fs2_c00328{font-size:48.000000pt;}
.fs0_c00328{font-size:53.440000pt;}
.fs1_c00328{font-size:64.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y5_c00328{bottom:50.987067pt;}
.y4_c00328{bottom:69.387067pt;}
.y21_c00328{bottom:118.347067pt;}
.y20_c00328{bottom:145.947067pt;}
.y1f_c00328{bottom:173.547067pt;}
.y1e_c00328{bottom:201.147067pt;}
.y1d_c00328{bottom:228.747067pt;}
.y1c_c00328{bottom:256.347067pt;}
.y1b_c00328{bottom:283.947067pt;}
.y1a_c00328{bottom:311.547067pt;}
.y19_c00328{bottom:339.147067pt;}
.y18_c00328{bottom:366.747067pt;}
.y17_c00328{bottom:394.347067pt;}
.y16_c00328{bottom:421.947067pt;}
.y15_c00328{bottom:449.547067pt;}
.y14_c00328{bottom:477.147067pt;}
.y13_c00328{bottom:504.747067pt;}
.y12_c00328{bottom:532.347067pt;}
.y11_c00328{bottom:559.947067pt;}
.y10_c00328{bottom:587.547067pt;}
.yf_c00328{bottom:615.147067pt;}
.ye_c00328{bottom:642.667067pt;}
.yd_c00328{bottom:670.267067pt;}
.yc_c00328{bottom:697.867067pt;}
.yb_c00328{bottom:721.867067pt;}
.ya_c00328{bottom:881.867067pt;}
.y9_c00328{bottom:902.507067pt;}
.y8_c00328{bottom:936.587067pt;}
.y7_c00328{bottom:960.347067pt;}
.y6_c00328{bottom:987.947067pt;}
.y3_c00328{bottom:1006.347067pt;}
.y2_c00328{bottom:1035.947576pt;}
.y1_c00328{bottom:1063.147200pt;}
.h3_c00328{height:42.234375pt;}
.h1_c00328{height:47.020937pt;}
.h2_c00328{height:56.156250pt;}
.h4_c00328{height:56.312500pt;}
.h0_c00328{height:1122.666667pt;}
.w1_c00328{width:793.333333pt;}
.w0_c00328{width:793.626667pt;}
.x0_c00328{left:0.000000pt;}
.x1_c00328{left:113.440000pt;}
.x4_c00328{left:396.880000pt;}
.x3_c00328{left:648.880000pt;}
.x2_c00328{left:656.400000pt;}
}





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

.ir_c00329:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00329;src:url('chunks/assets/font_5557e80518516986ea085666.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.095703;font-style:normal;font-weight:normal;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_176a5a705c0a860e9ec5cd70.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls15_c00329{letter-spacing:-0.122400px;}
.ls17_c00329{letter-spacing:-0.086400px;}
.ls16_c00329{letter-spacing:-0.057600px;}
.lse_c00329{letter-spacing:-0.048096px;}
.ls18_c00329{letter-spacing:-0.043200px;}
.ls10_c00329{letter-spacing:-0.014400px;}
.ls11_c00329{letter-spacing:-0.007200px;}
.lsf_c00329{letter-spacing:0.000000px;}
.ls9_c00329{letter-spacing:0.007200px;}
.ls1_c00329{letter-spacing:0.014400px;}
.lsd_c00329{letter-spacing:0.016200px;}
.ls2_c00329{letter-spacing:0.021600px;}
.ls4_c00329{letter-spacing:0.028800px;}
.ls0_c00329{letter-spacing:0.032400px;}
.ls8_c00329{letter-spacing:0.036000px;}
.ls6_c00329{letter-spacing:0.043200px;}
.lsc_c00329{letter-spacing:0.050400px;}
.ls5_c00329{letter-spacing:0.057600px;}
.ls7_c00329{letter-spacing:0.064800px;}
.ls3_c00329{letter-spacing:0.072000px;}
.lsb_c00329{letter-spacing:0.079200px;}
.lsa_c00329{letter-spacing:0.100800px;}
.ls13_c00329{letter-spacing:0.223200px;}
.ls14_c00329{letter-spacing:1.440000px;}
.ls12_c00329{letter-spacing:6.120000px;}
.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;}
}
.ws0_c00329{word-spacing:-18.014400px;}
.ws2_c00329{word-spacing:0.000000px;}
.ws1_c00329{word-spacing:0.138276px;}
.ws3_c00329{word-spacing:0.145800px;}
.ws5_c00329{word-spacing:0.162000px;}
.ws6_c00329{word-spacing:0.221400px;}
.ws4_c00329{word-spacing:1.404000px;}
._a_c00329{margin-left:-7.106400px;}
._9_c00329{margin-left:-5.047200px;}
._6_c00329{margin-left:-3.643200px;}
._1_c00329{margin-left:-2.174400px;}
._0_c00329{margin-left:-1.144800px;}
._5_c00329{width:1.036800px;}
._b_c00329{width:2.340000px;}
._7_c00329{width:3.614400px;}
._3_c00329{width:4.903200px;}
._2_c00329{width:5.918400px;}
._4_c00329{width:7.099200px;}
._c_c00329{width:8.748000px;}
._8_c00329{width:10.015200px;}
.fc1_c00329{color:rgb(68,84,106);}
.fc0_c00329{color:rgb(0,0,0);}
.fs2_c00329{font-size:54.000000px;}
.fs0_c00329{font-size:60.120000px;}
.fs1_c00329{font-size:72.000000px;}
.y0_c00329{bottom:0.000000px;}
.y6_c00329{bottom:57.360450px;}
.y5_c00329{bottom:78.060450px;}
.y20_c00329{bottom:149.970450px;}
.y1f_c00329{bottom:181.110450px;}
.y1e_c00329{bottom:208.110450px;}
.y1d_c00329{bottom:344.370450px;}
.y1c_c00329{bottom:371.100450px;}
.y1b_c00329{bottom:402.150450px;}
.y1a_c00329{bottom:433.200450px;}
.y19_c00329{bottom:464.160450px;}
.y18_c00329{bottom:495.210450px;}
.y17_c00329{bottom:526.260450px;}
.y16_c00329{bottom:557.310450px;}
.y15_c00329{bottom:588.360450px;}
.y14_c00329{bottom:619.410450px;}
.y13_c00329{bottom:650.460450px;}
.y12_c00329{bottom:681.510450px;}
.y11_c00329{bottom:712.560450px;}
.y10_c00329{bottom:743.610450px;}
.yf_c00329{bottom:774.660450px;}
.ye_c00329{bottom:805.710450px;}
.yd_c00329{bottom:836.760450px;}
.yc_c00329{bottom:867.810450px;}
.yb_c00329{bottom:898.860450px;}
.ya_c00329{bottom:929.910450px;}
.y9_c00329{bottom:960.960450px;}
.y8_c00329{bottom:987.960450px;}
.y7_c00329{bottom:1128.630450px;}
.y4_c00329{bottom:1144.380657px;}
.y3_c00329{bottom:1161.660648px;}
.y2_c00329{bottom:1178.850459px;}
.y1_c00329{bottom:1196.130450px;}
.h3_c00329{height:47.513672px;}
.h1_c00329{height:52.898555px;}
.h2_c00329{height:63.175781px;}
.h4_c00329{height:63.351562px;}
.h0_c00329{height:1263.000000px;}
.w1_c00329{width:892.500000px;}
.w0_c00329{width:892.830000px;}
.x0_c00329{left:0.000000px;}
.x4_c00329{left:127.620000px;}
.x6_c00329{left:446.490000px;}
.x1_c00329{left:649.620000px;}
.x3_c00329{left:738.450000px;}
.x5_c00329{left:750.780000px;}
.x7_c00329{left:761.219850px;}
.x2_c00329{left:765.450198px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls15_c00329{letter-spacing:-0.108800pt;}
.ls17_c00329{letter-spacing:-0.076800pt;}
.ls16_c00329{letter-spacing:-0.051200pt;}
.lse_c00329{letter-spacing:-0.042752pt;}
.ls18_c00329{letter-spacing:-0.038400pt;}
.ls10_c00329{letter-spacing:-0.012800pt;}
.ls11_c00329{letter-spacing:-0.006400pt;}
.lsf_c00329{letter-spacing:0.000000pt;}
.ls9_c00329{letter-spacing:0.006400pt;}
.ls1_c00329{letter-spacing:0.012800pt;}
.lsd_c00329{letter-spacing:0.014400pt;}
.ls2_c00329{letter-spacing:0.019200pt;}
.ls4_c00329{letter-spacing:0.025600pt;}
.ls0_c00329{letter-spacing:0.028800pt;}
.ls8_c00329{letter-spacing:0.032000pt;}
.ls6_c00329{letter-spacing:0.038400pt;}
.lsc_c00329{letter-spacing:0.044800pt;}
.ls5_c00329{letter-spacing:0.051200pt;}
.ls7_c00329{letter-spacing:0.057600pt;}
.ls3_c00329{letter-spacing:0.064000pt;}
.lsb_c00329{letter-spacing:0.070400pt;}
.lsa_c00329{letter-spacing:0.089600pt;}
.ls13_c00329{letter-spacing:0.198400pt;}
.ls14_c00329{letter-spacing:1.280000pt;}
.ls12_c00329{letter-spacing:5.440000pt;}
.ws0_c00329{word-spacing:-16.012800pt;}
.ws2_c00329{word-spacing:0.000000pt;}
.ws1_c00329{word-spacing:0.122912pt;}
.ws3_c00329{word-spacing:0.129600pt;}
.ws5_c00329{word-spacing:0.144000pt;}
.ws6_c00329{word-spacing:0.196800pt;}
.ws4_c00329{word-spacing:1.248000pt;}
._a_c00329{margin-left:-6.316800pt;}
._9_c00329{margin-left:-4.486400pt;}
._6_c00329{margin-left:-3.238400pt;}
._1_c00329{margin-left:-1.932800pt;}
._0_c00329{margin-left:-1.017600pt;}
._5_c00329{width:0.921600pt;}
._b_c00329{width:2.080000pt;}
._7_c00329{width:3.212800pt;}
._3_c00329{width:4.358400pt;}
._2_c00329{width:5.260800pt;}
._4_c00329{width:6.310400pt;}
._c_c00329{width:7.776000pt;}
._8_c00329{width:8.902400pt;}
.fs2_c00329{font-size:48.000000pt;}
.fs0_c00329{font-size:53.440000pt;}
.fs1_c00329{font-size:64.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y6_c00329{bottom:50.987067pt;}
.y5_c00329{bottom:69.387067pt;}
.y20_c00329{bottom:133.307067pt;}
.y1f_c00329{bottom:160.987067pt;}
.y1e_c00329{bottom:184.987067pt;}
.y1d_c00329{bottom:306.107067pt;}
.y1c_c00329{bottom:329.867067pt;}
.y1b_c00329{bottom:357.467067pt;}
.y1a_c00329{bottom:385.067067pt;}
.y19_c00329{bottom:412.587067pt;}
.y18_c00329{bottom:440.187067pt;}
.y17_c00329{bottom:467.787067pt;}
.y16_c00329{bottom:495.387067pt;}
.y15_c00329{bottom:522.987067pt;}
.y14_c00329{bottom:550.587067pt;}
.y13_c00329{bottom:578.187067pt;}
.y12_c00329{bottom:605.787067pt;}
.y11_c00329{bottom:633.387067pt;}
.y10_c00329{bottom:660.987067pt;}
.yf_c00329{bottom:688.587067pt;}
.ye_c00329{bottom:716.187067pt;}
.yd_c00329{bottom:743.787067pt;}
.yc_c00329{bottom:771.387067pt;}
.yb_c00329{bottom:798.987067pt;}
.ya_c00329{bottom:826.587067pt;}
.y9_c00329{bottom:854.187067pt;}
.y8_c00329{bottom:878.187067pt;}
.y7_c00329{bottom:1003.227067pt;}
.y4_c00329{bottom:1017.227251pt;}
.y3_c00329{bottom:1032.587243pt;}
.y2_c00329{bottom:1047.867075pt;}
.y1_c00329{bottom:1063.227067pt;}
.h3_c00329{height:42.234375pt;}
.h1_c00329{height:47.020937pt;}
.h2_c00329{height:56.156250pt;}
.h4_c00329{height:56.312500pt;}
.h0_c00329{height:1122.666667pt;}
.w1_c00329{width:793.333333pt;}
.w0_c00329{width:793.626667pt;}
.x0_c00329{left:0.000000pt;}
.x4_c00329{left:113.440000pt;}
.x6_c00329{left:396.880000pt;}
.x1_c00329{left:577.440000pt;}
.x3_c00329{left:656.400000pt;}
.x5_c00329{left:667.360000pt;}
.x7_c00329{left:676.639867pt;}
.x2_c00329{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_824e54c4666370e78d3dd9ff.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.095703;font-style:normal;font-weight:normal;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_6cb1c881ff808198550e11c5.woff2')format("woff");}.ff2_c00330{font-family:ff2_c00330;line-height:1.093262;font-style: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;}
.ls14_c00330{letter-spacing:-1.080000px;}
.ls10_c00330{letter-spacing:-0.102204px;}
.ls16_c00330{letter-spacing:-0.093600px;}
.ls15_c00330{letter-spacing:-0.057600px;}
.ls12_c00330{letter-spacing:-0.043200px;}
.ls17_c00330{letter-spacing:-0.014400px;}
.ls18_c00330{letter-spacing:-0.010800px;}
.ls13_c00330{letter-spacing:-0.007200px;}
.ls11_c00330{letter-spacing:0.000000px;}
.lsd_c00330{letter-spacing:0.007200px;}
.ls6_c00330{letter-spacing:0.014400px;}
.ls2_c00330{letter-spacing:0.021600px;}
.lsa_c00330{letter-spacing:0.028800px;}
.ls7_c00330{letter-spacing:0.036000px;}
.ls8_c00330{letter-spacing:0.043200px;}
.ls3_c00330{letter-spacing:0.050400px;}
.lsb_c00330{letter-spacing:0.057600px;}
.lse_c00330{letter-spacing:0.064800px;}
.ls9_c00330{letter-spacing:0.072000px;}
.lsc_c00330{letter-spacing:0.079200px;}
.ls0_c00330{letter-spacing:0.086400px;}
.lsf_c00330{letter-spacing:0.093600px;}
.ls5_c00330{letter-spacing:0.115200px;}
.ls1_c00330{letter-spacing:0.129600px;}
.ls1a_c00330{letter-spacing:3.600000px;}
.ls19_c00330{letter-spacing:9.000000px;}
.ls4_c00330{letter-spacing:26.280000px;}
.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;}
}
.ws1_c00330{word-spacing:-18.064800px;}
.ws0_c00330{word-spacing:-18.050400px;}
.ws4_c00330{word-spacing:-1.080000px;}
.ws3_c00330{word-spacing:0.000000px;}
.ws5_c00330{word-spacing:0.189000px;}
.ws2_c00330{word-spacing:0.192384px;}
.ws6_c00330{word-spacing:9.000000px;}
._b_c00330{margin-left:-9.230400px;}
._c_c00330{margin-left:-3.824496px;}
._a_c00330{margin-left:-2.304000px;}
._1_c00330{margin-left:-1.094400px;}
._0_c00330{width:1.034064px;}
._7_c00330{width:2.060496px;}
._6_c00330{width:3.556800px;}
._4_c00330{width:5.371200px;}
._5_c00330{width:6.595200px;}
._8_c00330{width:7.992000px;}
._9_c00330{width:9.057600px;}
._d_c00330{width:10.144800px;}
._2_c00330{width:16.178400px;}
._3_c00330{width:26.229600px;}
.fc2_c00330{color:rgb(255,0,0);}
.fc3_c00330{color:rgb(68,84,106);}
.fc1_c00330{color:rgb(0,0,0);}
.fc0_c00330{color:rgb(32,31,30);}
.fs2_c00330{font-size:54.000000px;}
.fs0_c00330{font-size:60.120000px;}
.fs1_c00330{font-size:72.000000px;}
.y0_c00330{bottom:0.000000px;}
.y5_c00330{bottom:57.360450px;}
.y4_c00330{bottom:78.060450px;}
.y20_c00330{bottom:113.880450px;}
.y1f_c00330{bottom:144.930450px;}
.y1e_c00330{bottom:175.980450px;}
.y1d_c00330{bottom:207.030450px;}
.y1c_c00330{bottom:238.080450px;}
.y1b_c00330{bottom:269.130450px;}
.y1a_c00330{bottom:300.180450px;}
.y19_c00330{bottom:339.060450px;}
.y18_c00330{bottom:513.660900px;}
.y17_c00330{bottom:551.910450px;}
.y16_c00330{bottom:590.610450px;}
.y15_c00330{bottom:621.660450px;}
.y14_c00330{bottom:652.710450px;}
.y13_c00330{bottom:683.760450px;}
.y12_c00330{bottom:714.810450px;}
.y11_c00330{bottom:745.860450px;}
.y10_c00330{bottom:776.910450px;}
.yf_c00330{bottom:807.960450px;}
.ye_c00330{bottom:850.980450px;}
.yd_c00330{bottom:882.120450px;}
.yc_c00330{bottom:913.170450px;}
.yb_c00330{bottom:956.100450px;}
.ya_c00330{bottom:987.240450px;}
.y9_c00330{bottom:1018.290450px;}
.y8_c00330{bottom:1049.340450px;}
.y7_c00330{bottom:1080.390450px;}
.y6_c00330{bottom:1111.440450px;}
.y3_c00330{bottom:1132.140450px;}
.y2_c00330{bottom:1165.441023px;}
.y1_c00330{bottom:1196.040600px;}
.h4_c00330{height:47.513672px;}
.h1_c00330{height:52.898555px;}
.h2_c00330{height:63.175781px;}
.h3_c00330{height:63.351562px;}
.h0_c00330{height:1263.000000px;}
.w1_c00330{width:892.500000px;}
.w0_c00330{width:892.830000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:127.620000px;}
.x2_c00330{left:738.450000px;}
.x3_c00330{left:758.159850px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls14_c00330{letter-spacing:-0.960000pt;}
.ls10_c00330{letter-spacing:-0.090848pt;}
.ls16_c00330{letter-spacing:-0.083200pt;}
.ls15_c00330{letter-spacing:-0.051200pt;}
.ls12_c00330{letter-spacing:-0.038400pt;}
.ls17_c00330{letter-spacing:-0.012800pt;}
.ls18_c00330{letter-spacing:-0.009600pt;}
.ls13_c00330{letter-spacing:-0.006400pt;}
.ls11_c00330{letter-spacing:0.000000pt;}
.lsd_c00330{letter-spacing:0.006400pt;}
.ls6_c00330{letter-spacing:0.012800pt;}
.ls2_c00330{letter-spacing:0.019200pt;}
.lsa_c00330{letter-spacing:0.025600pt;}
.ls7_c00330{letter-spacing:0.032000pt;}
.ls8_c00330{letter-spacing:0.038400pt;}
.ls3_c00330{letter-spacing:0.044800pt;}
.lsb_c00330{letter-spacing:0.051200pt;}
.lse_c00330{letter-spacing:0.057600pt;}
.ls9_c00330{letter-spacing:0.064000pt;}
.lsc_c00330{letter-spacing:0.070400pt;}
.ls0_c00330{letter-spacing:0.076800pt;}
.lsf_c00330{letter-spacing:0.083200pt;}
.ls5_c00330{letter-spacing:0.102400pt;}
.ls1_c00330{letter-spacing:0.115200pt;}
.ls1a_c00330{letter-spacing:3.200000pt;}
.ls19_c00330{letter-spacing:8.000000pt;}
.ls4_c00330{letter-spacing:23.360000pt;}
.ws1_c00330{word-spacing:-16.057600pt;}
.ws0_c00330{word-spacing:-16.044800pt;}
.ws4_c00330{word-spacing:-0.960000pt;}
.ws3_c00330{word-spacing:0.000000pt;}
.ws5_c00330{word-spacing:0.168000pt;}
.ws2_c00330{word-spacing:0.171008pt;}
.ws6_c00330{word-spacing:8.000000pt;}
._b_c00330{margin-left:-8.204800pt;}
._c_c00330{margin-left:-3.399552pt;}
._a_c00330{margin-left:-2.048000pt;}
._1_c00330{margin-left:-0.972800pt;}
._0_c00330{width:0.919168pt;}
._7_c00330{width:1.831552pt;}
._6_c00330{width:3.161600pt;}
._4_c00330{width:4.774400pt;}
._5_c00330{width:5.862400pt;}
._8_c00330{width:7.104000pt;}
._9_c00330{width:8.051200pt;}
._d_c00330{width:9.017600pt;}
._2_c00330{width:14.380800pt;}
._3_c00330{width:23.315200pt;}
.fs2_c00330{font-size:48.000000pt;}
.fs0_c00330{font-size:53.440000pt;}
.fs1_c00330{font-size:64.000000pt;}
.y0_c00330{bottom:0.000000pt;}
.y5_c00330{bottom:50.987067pt;}
.y4_c00330{bottom:69.387067pt;}
.y20_c00330{bottom:101.227067pt;}
.y1f_c00330{bottom:128.827067pt;}
.y1e_c00330{bottom:156.427067pt;}
.y1d_c00330{bottom:184.027067pt;}
.y1c_c00330{bottom:211.627067pt;}
.y1b_c00330{bottom:239.227067pt;}
.y1a_c00330{bottom:266.827067pt;}
.y19_c00330{bottom:301.387067pt;}
.y18_c00330{bottom:456.587467pt;}
.y17_c00330{bottom:490.587067pt;}
.y16_c00330{bottom:524.987067pt;}
.y15_c00330{bottom:552.587067pt;}
.y14_c00330{bottom:580.187067pt;}
.y13_c00330{bottom:607.787067pt;}
.y12_c00330{bottom:635.387067pt;}
.y11_c00330{bottom:662.987067pt;}
.y10_c00330{bottom:690.587067pt;}
.yf_c00330{bottom:718.187067pt;}
.ye_c00330{bottom:756.427067pt;}
.yd_c00330{bottom:784.107067pt;}
.yc_c00330{bottom:811.707067pt;}
.yb_c00330{bottom:849.867067pt;}
.ya_c00330{bottom:877.547067pt;}
.y9_c00330{bottom:905.147067pt;}
.y8_c00330{bottom:932.747067pt;}
.y7_c00330{bottom:960.347067pt;}
.y6_c00330{bottom:987.947067pt;}
.y3_c00330{bottom:1006.347067pt;}
.y2_c00330{bottom:1035.947576pt;}
.y1_c00330{bottom:1063.147200pt;}
.h4_c00330{height:42.234375pt;}
.h1_c00330{height:47.020937pt;}
.h2_c00330{height:56.156250pt;}
.h3_c00330{height:56.312500pt;}
.h0_c00330{height:1122.666667pt;}
.w1_c00330{width:793.333333pt;}
.w0_c00330{width:793.626667pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:113.440000pt;}
.x2_c00330{left:656.400000pt;}
.x3_c00330{left:673.919867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54d8352d46cbe96a752cf424.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.095703;font-style:normal;font-weight:normal;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_b97db553e749a8cbf9edb10a.woff2')format("woff");}.ff2_c00331{font-family:ff2_c00331;line-height:1.093262;font-style: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;}
.ls12_c00331{letter-spacing:-1.440000px;}
.ls15_c00331{letter-spacing:-0.144000px;}
.ls13_c00331{letter-spacing:-0.050400px;}
.lsc_c00331{letter-spacing:-0.048096px;}
.ls11_c00331{letter-spacing:-0.036000px;}
.lse_c00331{letter-spacing:-0.028800px;}
.lsf_c00331{letter-spacing:-0.021600px;}
.ls14_c00331{letter-spacing:-0.014400px;}
.ls10_c00331{letter-spacing:-0.007200px;}
.lsd_c00331{letter-spacing:0.000000px;}
.ls5_c00331{letter-spacing:0.005400px;}
.ls4_c00331{letter-spacing:0.007200px;}
.ls8_c00331{letter-spacing:0.014400px;}
.ls1_c00331{letter-spacing:0.021600px;}
.ls6_c00331{letter-spacing:0.032400px;}
.ls2_c00331{letter-spacing:0.036000px;}
.ls0_c00331{letter-spacing:0.043200px;}
.lsa_c00331{letter-spacing:0.050400px;}
.lsb_c00331{letter-spacing:0.057600px;}
.ls3_c00331{letter-spacing:0.072000px;}
.ls9_c00331{letter-spacing:0.079200px;}
.ls7_c00331{letter-spacing:0.086400px;}
.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:-18.000000px;}
.ws1_c00331{word-spacing:-17.971200px;}
.ws3_c00331{word-spacing:0.000000px;}
.ws2_c00331{word-spacing:0.138276px;}
.ws6_c00331{word-spacing:0.145800px;}
.ws4_c00331{word-spacing:0.156600px;}
.ws5_c00331{word-spacing:0.172800px;}
._b_c00331{margin-left:-3.405600px;}
._8_c00331{margin-left:-2.376000px;}
._1_c00331{margin-left:-1.267200px;}
._7_c00331{width:1.281600px;}
._2_c00331{width:2.484000px;}
._9_c00331{width:4.680000px;}
._0_c00331{width:5.716800px;}
._4_c00331{width:7.293600px;}
._5_c00331{width:8.323200px;}
._a_c00331{width:9.662400px;}
._3_c00331{width:10.756800px;}
._6_c00331{width:31.644000px;}
.fc1_c00331{color:rgb(68,84,106);}
.fc0_c00331{color:rgb(0,0,0);}
.fs2_c00331{font-size:54.000000px;}
.fs0_c00331{font-size:60.120000px;}
.fs1_c00331{font-size:72.000000px;}
.y0_c00331{bottom:0.000000px;}
.y6_c00331{bottom:57.360450px;}
.y5_c00331{bottom:78.060450px;}
.y1f_c00331{bottom:127.110450px;}
.y1e_c00331{bottom:170.130450px;}
.y1d_c00331{bottom:213.150450px;}
.y1c_c00331{bottom:256.260450px;}
.y1b_c00331{bottom:299.280450px;}
.y1a_c00331{bottom:342.300450px;}
.y19_c00331{bottom:385.320450px;}
.y18_c00331{bottom:428.430450px;}
.y17_c00331{bottom:459.570450px;}
.y16_c00331{bottom:490.620450px;}
.y15_c00331{bottom:521.670450px;}
.y14_c00331{bottom:552.720450px;}
.y13_c00331{bottom:583.770450px;}
.y12_c00331{bottom:614.820450px;}
.y11_c00331{bottom:645.870450px;}
.y10_c00331{bottom:676.920450px;}
.yf_c00331{bottom:707.970450px;}
.ye_c00331{bottom:738.930450px;}
.yd_c00331{bottom:777.900450px;}
.yc_c00331{bottom:961.410450px;}
.yb_c00331{bottom:1000.110450px;}
.ya_c00331{bottom:1031.160450px;}
.y9_c00331{bottom:1062.210450px;}
.y8_c00331{bottom:1093.260450px;}
.y7_c00331{bottom:1124.310450px;}
.y4_c00331{bottom:1144.380657px;}
.y3_c00331{bottom:1161.660648px;}
.y2_c00331{bottom:1178.850459px;}
.y1_c00331{bottom:1196.130450px;}
.h3_c00331{height:47.513672px;}
.h1_c00331{height:52.898555px;}
.h2_c00331{height:63.175781px;}
.h4_c00331{height:63.351562px;}
.h0_c00331{height:1263.000000px;}
.w1_c00331{width:892.500000px;}
.w0_c00331{width:892.830000px;}
.x0_c00331{left:0.000000px;}
.x4_c00331{left:127.620000px;}
.x1_c00331{left:649.620000px;}
.x3_c00331{left:738.450000px;}
.x5_c00331{left:750.690000px;}
.x2_c00331{left:765.450198px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls12_c00331{letter-spacing:-1.280000pt;}
.ls15_c00331{letter-spacing:-0.128000pt;}
.ls13_c00331{letter-spacing:-0.044800pt;}
.lsc_c00331{letter-spacing:-0.042752pt;}
.ls11_c00331{letter-spacing:-0.032000pt;}
.lse_c00331{letter-spacing:-0.025600pt;}
.lsf_c00331{letter-spacing:-0.019200pt;}
.ls14_c00331{letter-spacing:-0.012800pt;}
.ls10_c00331{letter-spacing:-0.006400pt;}
.lsd_c00331{letter-spacing:0.000000pt;}
.ls5_c00331{letter-spacing:0.004800pt;}
.ls4_c00331{letter-spacing:0.006400pt;}
.ls8_c00331{letter-spacing:0.012800pt;}
.ls1_c00331{letter-spacing:0.019200pt;}
.ls6_c00331{letter-spacing:0.028800pt;}
.ls2_c00331{letter-spacing:0.032000pt;}
.ls0_c00331{letter-spacing:0.038400pt;}
.lsa_c00331{letter-spacing:0.044800pt;}
.lsb_c00331{letter-spacing:0.051200pt;}
.ls3_c00331{letter-spacing:0.064000pt;}
.ls9_c00331{letter-spacing:0.070400pt;}
.ls7_c00331{letter-spacing:0.076800pt;}
.ws0_c00331{word-spacing:-16.000000pt;}
.ws1_c00331{word-spacing:-15.974400pt;}
.ws3_c00331{word-spacing:0.000000pt;}
.ws2_c00331{word-spacing:0.122912pt;}
.ws6_c00331{word-spacing:0.129600pt;}
.ws4_c00331{word-spacing:0.139200pt;}
.ws5_c00331{word-spacing:0.153600pt;}
._b_c00331{margin-left:-3.027200pt;}
._8_c00331{margin-left:-2.112000pt;}
._1_c00331{margin-left:-1.126400pt;}
._7_c00331{width:1.139200pt;}
._2_c00331{width:2.208000pt;}
._9_c00331{width:4.160000pt;}
._0_c00331{width:5.081600pt;}
._4_c00331{width:6.483200pt;}
._5_c00331{width:7.398400pt;}
._a_c00331{width:8.588800pt;}
._3_c00331{width:9.561600pt;}
._6_c00331{width:28.128000pt;}
.fs2_c00331{font-size:48.000000pt;}
.fs0_c00331{font-size:53.440000pt;}
.fs1_c00331{font-size:64.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.y6_c00331{bottom:50.987067pt;}
.y5_c00331{bottom:69.387067pt;}
.y1f_c00331{bottom:112.987067pt;}
.y1e_c00331{bottom:151.227067pt;}
.y1d_c00331{bottom:189.467067pt;}
.y1c_c00331{bottom:227.787067pt;}
.y1b_c00331{bottom:266.027067pt;}
.y1a_c00331{bottom:304.267067pt;}
.y19_c00331{bottom:342.507067pt;}
.y18_c00331{bottom:380.827067pt;}
.y17_c00331{bottom:408.507067pt;}
.y16_c00331{bottom:436.107067pt;}
.y15_c00331{bottom:463.707067pt;}
.y14_c00331{bottom:491.307067pt;}
.y13_c00331{bottom:518.907067pt;}
.y12_c00331{bottom:546.507067pt;}
.y11_c00331{bottom:574.107067pt;}
.y10_c00331{bottom:601.707067pt;}
.yf_c00331{bottom:629.307067pt;}
.ye_c00331{bottom:656.827067pt;}
.yd_c00331{bottom:691.467067pt;}
.yc_c00331{bottom:854.587067pt;}
.yb_c00331{bottom:888.987067pt;}
.ya_c00331{bottom:916.587067pt;}
.y9_c00331{bottom:944.187067pt;}
.y8_c00331{bottom:971.787067pt;}
.y7_c00331{bottom:999.387067pt;}
.y4_c00331{bottom:1017.227251pt;}
.y3_c00331{bottom:1032.587243pt;}
.y2_c00331{bottom:1047.867075pt;}
.y1_c00331{bottom:1063.227067pt;}
.h3_c00331{height:42.234375pt;}
.h1_c00331{height:47.020937pt;}
.h2_c00331{height:56.156250pt;}
.h4_c00331{height:56.312500pt;}
.h0_c00331{height:1122.666667pt;}
.w1_c00331{width:793.333333pt;}
.w0_c00331{width:793.626667pt;}
.x0_c00331{left:0.000000pt;}
.x4_c00331{left:113.440000pt;}
.x1_c00331{left:577.440000pt;}
.x3_c00331{left:656.400000pt;}
.x5_c00331{left:667.280000pt;}
.x2_c00331{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6b3349bd50618bf02d32ae8c.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.095703;font-style:normal;font-weight:normal;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_7333262c1d8047d68a757eb4.woff2')format("woff");}.ff2_c00332{font-family:ff2_c00332;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00332{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls10_c00332{letter-spacing:-0.102204px;}
.ls16_c00332{letter-spacing:-0.057600px;}
.ls15_c00332{letter-spacing:-0.021600px;}
.ls13_c00332{letter-spacing:-0.014400px;}
.ls12_c00332{letter-spacing:-0.007200px;}
.ls11_c00332{letter-spacing:0.000000px;}
.lsd_c00332{letter-spacing:0.007200px;}
.ls8_c00332{letter-spacing:0.014400px;}
.ls0_c00332{letter-spacing:0.021600px;}
.ls7_c00332{letter-spacing:0.028800px;}
.ls5_c00332{letter-spacing:0.036000px;}
.ls2_c00332{letter-spacing:0.043200px;}
.lsa_c00332{letter-spacing:0.050400px;}
.ls6_c00332{letter-spacing:0.057600px;}
.ls1_c00332{letter-spacing:0.059400px;}
.ls4_c00332{letter-spacing:0.064800px;}
.ls3_c00332{letter-spacing:0.072000px;}
.lsc_c00332{letter-spacing:0.079200px;}
.ls9_c00332{letter-spacing:0.086400px;}
.lsb_c00332{letter-spacing:0.093600px;}
.lse_c00332{letter-spacing:0.108000px;}
.lsf_c00332{letter-spacing:0.360000px;}
.ls14_c00332{letter-spacing:1.036800px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:-18.021600px;}
.ws2_c00332{word-spacing:0.000000px;}
.ws4_c00332{word-spacing:0.118800px;}
.ws3_c00332{word-spacing:0.156600px;}
.ws5_c00332{word-spacing:0.178200px;}
.ws1_c00332{word-spacing:0.192384px;}
.ws6_c00332{word-spacing:9.777600px;}
._4_c00332{margin-left:-4.608000px;}
._3_c00332{margin-left:-3.283200px;}
._2_c00332{margin-left:-2.133000px;}
._1_c00332{margin-left:-1.096200px;}
._0_c00332{width:1.034064px;}
._9_c00332{width:2.930400px;}
._a_c00332{width:4.248000px;}
._11_c00332{width:5.434200px;}
._10_c00332{width:6.525000px;}
._13_c00332{width:7.642800px;}
._12_c00332{width:8.985600px;}
._d_c00332{width:10.087200px;}
._e_c00332{width:11.325600px;}
._c_c00332{width:12.806136px;}
._b_c00332{width:14.025600px;}
._7_c00332{width:15.444000px;}
._8_c00332{width:16.826400px;}
._5_c00332{width:20.750400px;}
._6_c00332{width:21.816000px;}
._f_c00332{width:31.651200px;}
.fc2_c00332{color:rgb(68,84,106);}
.fc1_c00332{color:rgb(0,0,0);}
.fc0_c00332{color:rgb(32,31,30);}
.fs2_c00332{font-size:54.000000px;}
.fs0_c00332{font-size:60.120000px;}
.fs1_c00332{font-size:72.000000px;}
.y0_c00332{bottom:0.000000px;}
.y5_c00332{bottom:57.360450px;}
.y4_c00332{bottom:78.060450px;}
.y1d_c00332{bottom:129.810450px;}
.y1c_c00332{bottom:172.830450px;}
.y1b_c00332{bottom:215.940450px;}
.y1a_c00332{bottom:258.960450px;}
.y19_c00332{bottom:290.100450px;}
.y18_c00332{bottom:321.150450px;}
.y17_c00332{bottom:364.080450px;}
.y16_c00332{bottom:395.220450px;}
.y15_c00332{bottom:426.270450px;}
.y14_c00332{bottom:457.320450px;}
.y13_c00332{bottom:488.370450px;}
.y12_c00332{bottom:519.420450px;}
.y11_c00332{bottom:562.350450px;}
.y10_c00332{bottom:593.490450px;}
.yf_c00332{bottom:624.540450px;}
.ye_c00332{bottom:655.590450px;}
.yd_c00332{bottom:686.640450px;}
.yc_c00332{bottom:717.690450px;}
.yb_c00332{bottom:748.740450px;}
.ya_c00332{bottom:779.790450px;}
.y9_c00332{bottom:810.840450px;}
.y8_c00332{bottom:853.770450px;}
.y7_c00332{bottom:892.830450px;}
.y6_c00332{bottom:1115.760450px;}
.y3_c00332{bottom:1132.140450px;}
.y2_c00332{bottom:1165.441023px;}
.y1_c00332{bottom:1196.040600px;}
.h3_c00332{height:47.513672px;}
.h1_c00332{height:52.898555px;}
.h2_c00332{height:63.175781px;}
.h4_c00332{height:63.351562px;}
.h0_c00332{height:1263.000000px;}
.w1_c00332{width:892.500000px;}
.w0_c00332{width:892.830000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:127.620000px;}
.x4_c00332{left:446.489850px;}
.x2_c00332{left:738.450000px;}
.x3_c00332{left:747.179850px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls10_c00332{letter-spacing:-0.090848pt;}
.ls16_c00332{letter-spacing:-0.051200pt;}
.ls15_c00332{letter-spacing:-0.019200pt;}
.ls13_c00332{letter-spacing:-0.012800pt;}
.ls12_c00332{letter-spacing:-0.006400pt;}
.ls11_c00332{letter-spacing:0.000000pt;}
.lsd_c00332{letter-spacing:0.006400pt;}
.ls8_c00332{letter-spacing:0.012800pt;}
.ls0_c00332{letter-spacing:0.019200pt;}
.ls7_c00332{letter-spacing:0.025600pt;}
.ls5_c00332{letter-spacing:0.032000pt;}
.ls2_c00332{letter-spacing:0.038400pt;}
.lsa_c00332{letter-spacing:0.044800pt;}
.ls6_c00332{letter-spacing:0.051200pt;}
.ls1_c00332{letter-spacing:0.052800pt;}
.ls4_c00332{letter-spacing:0.057600pt;}
.ls3_c00332{letter-spacing:0.064000pt;}
.lsc_c00332{letter-spacing:0.070400pt;}
.ls9_c00332{letter-spacing:0.076800pt;}
.lsb_c00332{letter-spacing:0.083200pt;}
.lse_c00332{letter-spacing:0.096000pt;}
.lsf_c00332{letter-spacing:0.320000pt;}
.ls14_c00332{letter-spacing:0.921600pt;}
.ws0_c00332{word-spacing:-16.019200pt;}
.ws2_c00332{word-spacing:0.000000pt;}
.ws4_c00332{word-spacing:0.105600pt;}
.ws3_c00332{word-spacing:0.139200pt;}
.ws5_c00332{word-spacing:0.158400pt;}
.ws1_c00332{word-spacing:0.171008pt;}
.ws6_c00332{word-spacing:8.691200pt;}
._4_c00332{margin-left:-4.096000pt;}
._3_c00332{margin-left:-2.918400pt;}
._2_c00332{margin-left:-1.896000pt;}
._1_c00332{margin-left:-0.974400pt;}
._0_c00332{width:0.919168pt;}
._9_c00332{width:2.604800pt;}
._a_c00332{width:3.776000pt;}
._11_c00332{width:4.830400pt;}
._10_c00332{width:5.800000pt;}
._13_c00332{width:6.793600pt;}
._12_c00332{width:7.987200pt;}
._d_c00332{width:8.966400pt;}
._e_c00332{width:10.067200pt;}
._c_c00332{width:11.383232pt;}
._b_c00332{width:12.467200pt;}
._7_c00332{width:13.728000pt;}
._8_c00332{width:14.956800pt;}
._5_c00332{width:18.444800pt;}
._6_c00332{width:19.392000pt;}
._f_c00332{width:28.134400pt;}
.fs2_c00332{font-size:48.000000pt;}
.fs0_c00332{font-size:53.440000pt;}
.fs1_c00332{font-size:64.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.y5_c00332{bottom:50.987067pt;}
.y4_c00332{bottom:69.387067pt;}
.y1d_c00332{bottom:115.387067pt;}
.y1c_c00332{bottom:153.627067pt;}
.y1b_c00332{bottom:191.947067pt;}
.y1a_c00332{bottom:230.187067pt;}
.y19_c00332{bottom:257.867067pt;}
.y18_c00332{bottom:285.467067pt;}
.y17_c00332{bottom:323.627067pt;}
.y16_c00332{bottom:351.307067pt;}
.y15_c00332{bottom:378.907067pt;}
.y14_c00332{bottom:406.507067pt;}
.y13_c00332{bottom:434.107067pt;}
.y12_c00332{bottom:461.707067pt;}
.y11_c00332{bottom:499.867067pt;}
.y10_c00332{bottom:527.547067pt;}
.yf_c00332{bottom:555.147067pt;}
.ye_c00332{bottom:582.747067pt;}
.yd_c00332{bottom:610.347067pt;}
.yc_c00332{bottom:637.947067pt;}
.yb_c00332{bottom:665.547067pt;}
.ya_c00332{bottom:693.147067pt;}
.y9_c00332{bottom:720.747067pt;}
.y8_c00332{bottom:758.907067pt;}
.y7_c00332{bottom:793.627067pt;}
.y6_c00332{bottom:991.787067pt;}
.y3_c00332{bottom:1006.347067pt;}
.y2_c00332{bottom:1035.947576pt;}
.y1_c00332{bottom:1063.147200pt;}
.h3_c00332{height:42.234375pt;}
.h1_c00332{height:47.020937pt;}
.h2_c00332{height:56.156250pt;}
.h4_c00332{height:56.312500pt;}
.h0_c00332{height:1122.666667pt;}
.w1_c00332{width:793.333333pt;}
.w0_c00332{width:793.626667pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:113.440000pt;}
.x4_c00332{left:396.879867pt;}
.x2_c00332{left:656.400000pt;}
.x3_c00332{left:664.159867pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2689e9f231d6e127cb56805.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.095703;font-style:normal;font-weight:normal;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_e6c04a3e8695fb22577a75ea.woff2')format("woff");}.ff2_c00333{font-family:ff2_c00333;line-height:1.093262;font-style:normal;font-weight:normal;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_c6f281ec2edfacbd897b504f.woff2')format("woff");}.ff3_c00333{font-family:ff3_c00333;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00333{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls19_c00333{letter-spacing:-0.093600px;}
.ls12_c00333{letter-spacing:-0.092268px;}
.ls10_c00333{letter-spacing:-0.048096px;}
.ls18_c00333{letter-spacing:-0.036000px;}
.ls15_c00333{letter-spacing:-0.028800px;}
.ls17_c00333{letter-spacing:-0.021600px;}
.ls13_c00333{letter-spacing:-0.007200px;}
.ls11_c00333{letter-spacing:0.000000px;}
.lse_c00333{letter-spacing:0.007200px;}
.ls7_c00333{letter-spacing:0.014400px;}
.ls9_c00333{letter-spacing:0.021600px;}
.ls0_c00333{letter-spacing:0.027000px;}
.lsf_c00333{letter-spacing:0.028800px;}
.lsa_c00333{letter-spacing:0.036000px;}
.ls1_c00333{letter-spacing:0.041940px;}
.ls5_c00333{letter-spacing:0.043200px;}
.ls3_c00333{letter-spacing:0.050400px;}
.ls4_c00333{letter-spacing:0.057600px;}
.lsb_c00333{letter-spacing:0.072000px;}
.ls6_c00333{letter-spacing:0.079200px;}
.ls14_c00333{letter-spacing:0.093600px;}
.lsc_c00333{letter-spacing:0.100800px;}
.ls2_c00333{letter-spacing:0.108000px;}
.ls8_c00333{letter-spacing:0.115200px;}
.lsd_c00333{letter-spacing:0.122400px;}
.ls16_c00333{letter-spacing:2.520000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00333{word-spacing:-18.050400px;}
.ws0_c00333{word-spacing:-18.000000px;}
.ws3_c00333{word-spacing:0.000000px;}
.ws2_c00333{word-spacing:0.138276px;}
.ws4_c00333{word-spacing:0.151200px;}
.ws5_c00333{word-spacing:2.512800px;}
._3_c00333{margin-left:-4.780800px;}
._4_c00333{margin-left:-3.513600px;}
._a_c00333{margin-left:-2.489400px;}
._0_c00333{margin-left:-1.009800px;}
._9_c00333{width:1.116000px;}
._7_c00333{width:2.138400px;}
._8_c00333{width:3.340800px;}
._2_c00333{width:5.680800px;}
._1_c00333{width:6.847200px;}
._6_c00333{width:12.304800px;}
._5_c00333{width:13.305600px;}
._c_c00333{width:14.335200px;}
._b_c00333{width:21.585600px;}
.fc1_c00333{color:rgb(68,84,106);}
.fc0_c00333{color:rgb(0,0,0);}
.fs2_c00333{font-size:54.000000px;}
.fs0_c00333{font-size:60.120000px;}
.fs1_c00333{font-size:72.000000px;}
.fs3_c00333{font-size:83.880000px;}
.y0_c00333{bottom:0.000000px;}
.y6_c00333{bottom:57.360450px;}
.y5_c00333{bottom:78.060450px;}
.y21_c00333{bottom:119.550450px;}
.y20_c00333{bottom:150.600450px;}
.y1f_c00333{bottom:181.650450px;}
.y1e_c00333{bottom:212.700450px;}
.y1d_c00333{bottom:243.750450px;}
.y1c_c00333{bottom:274.800450px;}
.y1b_c00333{bottom:305.850450px;}
.y1a_c00333{bottom:336.900450px;}
.y19_c00333{bottom:367.950450px;}
.y18_c00333{bottom:399.000450px;}
.y17_c00333{bottom:430.050450px;}
.y16_c00333{bottom:461.100450px;}
.y15_c00333{bottom:492.060450px;}
.y14_c00333{bottom:523.110450px;}
.y13_c00333{bottom:554.160450px;}
.y12_c00333{bottom:585.210450px;}
.y11_c00333{bottom:616.260450px;}
.y10_c00333{bottom:647.310450px;}
.yf_c00333{bottom:678.360450px;}
.ye_c00333{bottom:709.410450px;}
.yd_c00333{bottom:740.460450px;}
.yc_c00333{bottom:774.750450px;}
.yb_c00333{bottom:797.790600px;}
.ya_c00333{bottom:843.870450px;}
.y9_c00333{bottom:882.840450px;}
.y8_c00333{bottom:1085.610450px;}
.y7_c00333{bottom:1124.220450px;}
.y4_c00333{bottom:1144.380657px;}
.y3_c00333{bottom:1161.660648px;}
.y2_c00333{bottom:1178.850459px;}
.y1_c00333{bottom:1196.130450px;}
.h1_c00333{height:52.898555px;}
.h2_c00333{height:63.175781px;}
.h3_c00333{height:63.351562px;}
.h4_c00333{height:74.500840px;}
.h0_c00333{height:1263.000000px;}
.w1_c00333{width:892.500000px;}
.w0_c00333{width:892.830000px;}
.x0_c00333{left:0.000000px;}
.x4_c00333{left:127.620000px;}
.x6_c00333{left:446.490000px;}
.x1_c00333{left:649.620000px;}
.x5_c00333{left:722.160000px;}
.x3_c00333{left:738.450000px;}
.x2_c00333{left:765.450198px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls19_c00333{letter-spacing:-0.083200pt;}
.ls12_c00333{letter-spacing:-0.082016pt;}
.ls10_c00333{letter-spacing:-0.042752pt;}
.ls18_c00333{letter-spacing:-0.032000pt;}
.ls15_c00333{letter-spacing:-0.025600pt;}
.ls17_c00333{letter-spacing:-0.019200pt;}
.ls13_c00333{letter-spacing:-0.006400pt;}
.ls11_c00333{letter-spacing:0.000000pt;}
.lse_c00333{letter-spacing:0.006400pt;}
.ls7_c00333{letter-spacing:0.012800pt;}
.ls9_c00333{letter-spacing:0.019200pt;}
.ls0_c00333{letter-spacing:0.024000pt;}
.lsf_c00333{letter-spacing:0.025600pt;}
.lsa_c00333{letter-spacing:0.032000pt;}
.ls1_c00333{letter-spacing:0.037280pt;}
.ls5_c00333{letter-spacing:0.038400pt;}
.ls3_c00333{letter-spacing:0.044800pt;}
.ls4_c00333{letter-spacing:0.051200pt;}
.lsb_c00333{letter-spacing:0.064000pt;}
.ls6_c00333{letter-spacing:0.070400pt;}
.ls14_c00333{letter-spacing:0.083200pt;}
.lsc_c00333{letter-spacing:0.089600pt;}
.ls2_c00333{letter-spacing:0.096000pt;}
.ls8_c00333{letter-spacing:0.102400pt;}
.lsd_c00333{letter-spacing:0.108800pt;}
.ls16_c00333{letter-spacing:2.240000pt;}
.ws1_c00333{word-spacing:-16.044800pt;}
.ws0_c00333{word-spacing:-16.000000pt;}
.ws3_c00333{word-spacing:0.000000pt;}
.ws2_c00333{word-spacing:0.122912pt;}
.ws4_c00333{word-spacing:0.134400pt;}
.ws5_c00333{word-spacing:2.233600pt;}
._3_c00333{margin-left:-4.249600pt;}
._4_c00333{margin-left:-3.123200pt;}
._a_c00333{margin-left:-2.212800pt;}
._0_c00333{margin-left:-0.897600pt;}
._9_c00333{width:0.992000pt;}
._7_c00333{width:1.900800pt;}
._8_c00333{width:2.969600pt;}
._2_c00333{width:5.049600pt;}
._1_c00333{width:6.086400pt;}
._6_c00333{width:10.937600pt;}
._5_c00333{width:11.827200pt;}
._c_c00333{width:12.742400pt;}
._b_c00333{width:19.187200pt;}
.fs2_c00333{font-size:48.000000pt;}
.fs0_c00333{font-size:53.440000pt;}
.fs1_c00333{font-size:64.000000pt;}
.fs3_c00333{font-size:74.560000pt;}
.y0_c00333{bottom:0.000000pt;}
.y6_c00333{bottom:50.987067pt;}
.y5_c00333{bottom:69.387067pt;}
.y21_c00333{bottom:106.267067pt;}
.y20_c00333{bottom:133.867067pt;}
.y1f_c00333{bottom:161.467067pt;}
.y1e_c00333{bottom:189.067067pt;}
.y1d_c00333{bottom:216.667067pt;}
.y1c_c00333{bottom:244.267067pt;}
.y1b_c00333{bottom:271.867067pt;}
.y1a_c00333{bottom:299.467067pt;}
.y19_c00333{bottom:327.067067pt;}
.y18_c00333{bottom:354.667067pt;}
.y17_c00333{bottom:382.267067pt;}
.y16_c00333{bottom:409.867067pt;}
.y15_c00333{bottom:437.387067pt;}
.y14_c00333{bottom:464.987067pt;}
.y13_c00333{bottom:492.587067pt;}
.y12_c00333{bottom:520.187067pt;}
.y11_c00333{bottom:547.787067pt;}
.y10_c00333{bottom:575.387067pt;}
.yf_c00333{bottom:602.987067pt;}
.ye_c00333{bottom:630.587067pt;}
.yd_c00333{bottom:658.187067pt;}
.yc_c00333{bottom:688.667067pt;}
.yb_c00333{bottom:709.147200pt;}
.ya_c00333{bottom:750.107067pt;}
.y9_c00333{bottom:784.747067pt;}
.y8_c00333{bottom:964.987067pt;}
.y7_c00333{bottom:999.307067pt;}
.y4_c00333{bottom:1017.227251pt;}
.y3_c00333{bottom:1032.587243pt;}
.y2_c00333{bottom:1047.867075pt;}
.y1_c00333{bottom:1063.227067pt;}
.h1_c00333{height:47.020937pt;}
.h2_c00333{height:56.156250pt;}
.h3_c00333{height:56.312500pt;}
.h4_c00333{height:66.222969pt;}
.h0_c00333{height:1122.666667pt;}
.w1_c00333{width:793.333333pt;}
.w0_c00333{width:793.626667pt;}
.x0_c00333{left:0.000000pt;}
.x4_c00333{left:113.440000pt;}
.x6_c00333{left:396.880000pt;}
.x1_c00333{left:577.440000pt;}
.x5_c00333{left:641.920000pt;}
.x3_c00333{left:656.400000pt;}
.x2_c00333{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bf4752fdf2463dc803498e2.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.095703;font-style:normal;font-weight:normal;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_51fbfa2f5b358c440dfcdc2e.woff2')format("woff");}.ff2_c00334{font-family:ff2_c00334;line-height:1.093262;font-style: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;}
.ls12_c00334{letter-spacing:-0.316800px;}
.lsd_c00334{letter-spacing:-0.102204px;}
.ls13_c00334{letter-spacing:-0.014400px;}
.lsf_c00334{letter-spacing:-0.010800px;}
.ls10_c00334{letter-spacing:-0.007200px;}
.lse_c00334{letter-spacing:0.000000px;}
.lsb_c00334{letter-spacing:0.005400px;}
.ls5_c00334{letter-spacing:0.007200px;}
.ls0_c00334{letter-spacing:0.010800px;}
.ls9_c00334{letter-spacing:0.014400px;}
.ls6_c00334{letter-spacing:0.021600px;}
.lsa_c00334{letter-spacing:0.027000px;}
.ls4_c00334{letter-spacing:0.028800px;}
.ls2_c00334{letter-spacing:0.036000px;}
.ls1_c00334{letter-spacing:0.037800px;}
.ls8_c00334{letter-spacing:0.043200px;}
.ls3_c00334{letter-spacing:0.057600px;}
.ls7_c00334{letter-spacing:0.072000px;}
.lsc_c00334{letter-spacing:4.320000px;}
.ls11_c00334{letter-spacing:9.360000px;}
.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;}
}
.ws2_c00334{word-spacing:-18.028800px;}
.ws0_c00334{word-spacing:-18.014400px;}
.ws1_c00334{word-spacing:-18.000000px;}
.ws4_c00334{word-spacing:0.000000px;}
.ws6_c00334{word-spacing:0.140400px;}
.ws9_c00334{word-spacing:0.151200px;}
.ws5_c00334{word-spacing:0.167400px;}
.wsa_c00334{word-spacing:0.172800px;}
.ws7_c00334{word-spacing:0.189000px;}
.ws3_c00334{word-spacing:0.192384px;}
.ws8_c00334{word-spacing:11.160000px;}
._5_c00334{margin-left:-9.316800px;}
._e_c00334{margin-left:-5.211000px;}
._c_c00334{margin-left:-3.276000px;}
._3_c00334{margin-left:-2.181600px;}
._1_c00334{margin-left:-1.117800px;}
._0_c00334{width:1.034064px;}
._f_c00334{width:2.119536px;}
._b_c00334{width:3.542400px;}
._d_c00334{width:4.862736px;}
._a_c00334{width:6.112800px;}
._8_c00334{width:7.459200px;}
._6_c00334{width:9.057600px;}
._7_c00334{width:10.310400px;}
._9_c00334{width:11.491200px;}
._4_c00334{width:14.011200px;}
._2_c00334{width:20.484000px;}
.fc3_c00334{color:rgb(255,0,0);}
.fc2_c00334{color:rgb(68,84,106);}
.fc1_c00334{color:rgb(0,0,0);}
.fc0_c00334{color:rgb(32,31,30);}
.fs2_c00334{font-size:54.000000px;}
.fs0_c00334{font-size:60.120000px;}
.fs1_c00334{font-size:72.000000px;}
.y0_c00334{bottom:0.000000px;}
.y5_c00334{bottom:57.360450px;}
.y4_c00334{bottom:78.060450px;}
.y1e_c00334{bottom:127.020450px;}
.y1d_c00334{bottom:158.070450px;}
.y1c_c00334{bottom:189.120450px;}
.y1b_c00334{bottom:220.170450px;}
.y1a_c00334{bottom:251.220450px;}
.y19_c00334{bottom:282.270450px;}
.y18_c00334{bottom:313.320450px;}
.y17_c00334{bottom:340.230450px;}
.y16_c00334{bottom:525.450600px;}
.y15_c00334{bottom:552.270450px;}
.y14_c00334{bottom:583.320450px;}
.y13_c00334{bottom:614.370450px;}
.y12_c00334{bottom:645.420450px;}
.y11_c00334{bottom:676.470450px;}
.y10_c00334{bottom:707.520450px;}
.yf_c00334{bottom:738.570450px;}
.ye_c00334{bottom:769.620450px;}
.yd_c00334{bottom:800.670450px;}
.yc_c00334{bottom:831.720450px;}
.yb_c00334{bottom:862.770450px;}
.ya_c00334{bottom:893.820450px;}
.y9_c00334{bottom:924.870450px;}
.y8_c00334{bottom:955.920450px;}
.y7_c00334{bottom:982.830450px;}
.y6_c00334{bottom:1115.760450px;}
.y3_c00334{bottom:1132.140450px;}
.y2_c00334{bottom:1165.441023px;}
.y1_c00334{bottom:1196.040600px;}
.h3_c00334{height:47.513672px;}
.h1_c00334{height:52.898555px;}
.h2_c00334{height:63.175781px;}
.h4_c00334{height:63.351562px;}
.h0_c00334{height:1263.000000px;}
.w1_c00334{width:892.500000px;}
.w0_c00334{width:892.830000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:127.620000px;}
.x4_c00334{left:446.490000px;}
.x2_c00334{left:738.450000px;}
.x5_c00334{left:759.150000px;}
.x3_c00334{left:761.760000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls12_c00334{letter-spacing:-0.281600pt;}
.lsd_c00334{letter-spacing:-0.090848pt;}
.ls13_c00334{letter-spacing:-0.012800pt;}
.lsf_c00334{letter-spacing:-0.009600pt;}
.ls10_c00334{letter-spacing:-0.006400pt;}
.lse_c00334{letter-spacing:0.000000pt;}
.lsb_c00334{letter-spacing:0.004800pt;}
.ls5_c00334{letter-spacing:0.006400pt;}
.ls0_c00334{letter-spacing:0.009600pt;}
.ls9_c00334{letter-spacing:0.012800pt;}
.ls6_c00334{letter-spacing:0.019200pt;}
.lsa_c00334{letter-spacing:0.024000pt;}
.ls4_c00334{letter-spacing:0.025600pt;}
.ls2_c00334{letter-spacing:0.032000pt;}
.ls1_c00334{letter-spacing:0.033600pt;}
.ls8_c00334{letter-spacing:0.038400pt;}
.ls3_c00334{letter-spacing:0.051200pt;}
.ls7_c00334{letter-spacing:0.064000pt;}
.lsc_c00334{letter-spacing:3.840000pt;}
.ls11_c00334{letter-spacing:8.320000pt;}
.ws2_c00334{word-spacing:-16.025600pt;}
.ws0_c00334{word-spacing:-16.012800pt;}
.ws1_c00334{word-spacing:-16.000000pt;}
.ws4_c00334{word-spacing:0.000000pt;}
.ws6_c00334{word-spacing:0.124800pt;}
.ws9_c00334{word-spacing:0.134400pt;}
.ws5_c00334{word-spacing:0.148800pt;}
.wsa_c00334{word-spacing:0.153600pt;}
.ws7_c00334{word-spacing:0.168000pt;}
.ws3_c00334{word-spacing:0.171008pt;}
.ws8_c00334{word-spacing:9.920000pt;}
._5_c00334{margin-left:-8.281600pt;}
._e_c00334{margin-left:-4.632000pt;}
._c_c00334{margin-left:-2.912000pt;}
._3_c00334{margin-left:-1.939200pt;}
._1_c00334{margin-left:-0.993600pt;}
._0_c00334{width:0.919168pt;}
._f_c00334{width:1.884032pt;}
._b_c00334{width:3.148800pt;}
._d_c00334{width:4.322432pt;}
._a_c00334{width:5.433600pt;}
._8_c00334{width:6.630400pt;}
._6_c00334{width:8.051200pt;}
._7_c00334{width:9.164800pt;}
._9_c00334{width:10.214400pt;}
._4_c00334{width:12.454400pt;}
._2_c00334{width:18.208000pt;}
.fs2_c00334{font-size:48.000000pt;}
.fs0_c00334{font-size:53.440000pt;}
.fs1_c00334{font-size:64.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y5_c00334{bottom:50.987067pt;}
.y4_c00334{bottom:69.387067pt;}
.y1e_c00334{bottom:112.907067pt;}
.y1d_c00334{bottom:140.507067pt;}
.y1c_c00334{bottom:168.107067pt;}
.y1b_c00334{bottom:195.707067pt;}
.y1a_c00334{bottom:223.307067pt;}
.y19_c00334{bottom:250.907067pt;}
.y18_c00334{bottom:278.507067pt;}
.y17_c00334{bottom:302.427067pt;}
.y16_c00334{bottom:467.067200pt;}
.y15_c00334{bottom:490.907067pt;}
.y14_c00334{bottom:518.507067pt;}
.y13_c00334{bottom:546.107067pt;}
.y12_c00334{bottom:573.707067pt;}
.y11_c00334{bottom:601.307067pt;}
.y10_c00334{bottom:628.907067pt;}
.yf_c00334{bottom:656.507067pt;}
.ye_c00334{bottom:684.107067pt;}
.yd_c00334{bottom:711.707067pt;}
.yc_c00334{bottom:739.307067pt;}
.yb_c00334{bottom:766.907067pt;}
.ya_c00334{bottom:794.507067pt;}
.y9_c00334{bottom:822.107067pt;}
.y8_c00334{bottom:849.707067pt;}
.y7_c00334{bottom:873.627067pt;}
.y6_c00334{bottom:991.787067pt;}
.y3_c00334{bottom:1006.347067pt;}
.y2_c00334{bottom:1035.947576pt;}
.y1_c00334{bottom:1063.147200pt;}
.h3_c00334{height:42.234375pt;}
.h1_c00334{height:47.020937pt;}
.h2_c00334{height:56.156250pt;}
.h4_c00334{height:56.312500pt;}
.h0_c00334{height:1122.666667pt;}
.w1_c00334{width:793.333333pt;}
.w0_c00334{width:793.626667pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:113.440000pt;}
.x4_c00334{left:396.880000pt;}
.x2_c00334{left:656.400000pt;}
.x5_c00334{left:674.800000pt;}
.x3_c00334{left:677.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_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_7b39e1310dacfae99eed9057.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.095703;font-style:normal;font-weight:normal;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_98b81e4f789eedc4bc7d2ac9.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.093262;font-style: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;}
.lsc_c00335{letter-spacing:-0.048096px;}
.lse_c00335{letter-spacing:-0.043200px;}
.ls12_c00335{letter-spacing:-0.028800px;}
.ls11_c00335{letter-spacing:-0.014400px;}
.ls10_c00335{letter-spacing:-0.010800px;}
.lsf_c00335{letter-spacing:-0.007200px;}
.lsd_c00335{letter-spacing:0.000000px;}
.ls8_c00335{letter-spacing:0.007200px;}
.ls2_c00335{letter-spacing:0.014400px;}
.ls3_c00335{letter-spacing:0.021600px;}
.ls0_c00335{letter-spacing:0.028800px;}
.ls1_c00335{letter-spacing:0.036000px;}
.ls7_c00335{letter-spacing:0.050400px;}
.ls9_c00335{letter-spacing:0.057600px;}
.lsb_c00335{letter-spacing:0.064800px;}
.lsa_c00335{letter-spacing:0.072000px;}
.ls6_c00335{letter-spacing:0.075600px;}
.ls5_c00335{letter-spacing:0.091800px;}
.ls4_c00335{letter-spacing:0.144000px;}
.ls13_c00335{letter-spacing:8.640000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00335{word-spacing:0.000000px;}
.ws0_c00335{word-spacing:0.138276px;}
.ws3_c00335{word-spacing:12.690000px;}
.ws2_c00335{word-spacing:12.792600px;}
._8_c00335{margin-left:-9.230400px;}
._9_c00335{margin-left:-8.049600px;}
._5_c00335{margin-left:-4.125600px;}
._4_c00335{margin-left:-2.901600px;}
._1_c00335{margin-left:-1.152000px;}
._d_c00335{width:1.058400px;}
._3_c00335{width:5.738400px;}
._7_c00335{width:8.179200px;}
._2_c00335{width:11.822400px;}
._0_c00335{width:12.931200px;}
._6_c00335{width:14.011200px;}
._a_c00335{width:16.970400px;}
._b_c00335{width:21.952800px;}
._c_c00335{width:23.184000px;}
.fc1_c00335{color:rgb(68,84,106);}
.fc0_c00335{color:rgb(0,0,0);}
.fs2_c00335{font-size:54.000000px;}
.fs0_c00335{font-size:60.120000px;}
.fs1_c00335{font-size:72.000000px;}
.y0_c00335{bottom:0.000000px;}
.y6_c00335{bottom:57.360450px;}
.y5_c00335{bottom:78.060450px;}
.y22_c00335{bottom:165.540450px;}
.y21_c00335{bottom:196.590450px;}
.y20_c00335{bottom:227.640450px;}
.y1f_c00335{bottom:258.690450px;}
.y1e_c00335{bottom:289.740450px;}
.y1d_c00335{bottom:320.790450px;}
.y1c_c00335{bottom:351.840450px;}
.y1b_c00335{bottom:382.890450px;}
.y1a_c00335{bottom:413.940450px;}
.y19_c00335{bottom:444.990450px;}
.y18_c00335{bottom:476.040450px;}
.y17_c00335{bottom:507.090450px;}
.y16_c00335{bottom:538.140450px;}
.y15_c00335{bottom:569.190450px;}
.y14_c00335{bottom:600.240450px;}
.y13_c00335{bottom:631.290450px;}
.y12_c00335{bottom:662.340450px;}
.y11_c00335{bottom:689.340450px;}
.y10_c00335{bottom:857.010000px;}
.yf_c00335{bottom:880.320450px;}
.ye_c00335{bottom:907.050450px;}
.yd_c00335{bottom:938.100450px;}
.yc_c00335{bottom:969.150450px;}
.yb_c00335{bottom:1000.200450px;}
.ya_c00335{bottom:1031.160450px;}
.y9_c00335{bottom:1062.210450px;}
.y8_c00335{bottom:1093.260450px;}
.y7_c00335{bottom:1124.310450px;}
.y4_c00335{bottom:1144.380657px;}
.y3_c00335{bottom:1161.660648px;}
.y2_c00335{bottom:1178.850459px;}
.y1_c00335{bottom:1196.130450px;}
.h3_c00335{height:47.513672px;}
.h1_c00335{height:52.898555px;}
.h2_c00335{height:63.175781px;}
.h0_c00335{height:1263.000000px;}
.w1_c00335{width:892.500000px;}
.w0_c00335{width:892.830000px;}
.x0_c00335{left:0.000000px;}
.x4_c00335{left:127.620000px;}
.x6_c00335{left:446.490000px;}
.x1_c00335{left:649.620000px;}
.x3_c00335{left:738.450000px;}
.x5_c00335{left:760.950000px;}
.x2_c00335{left:765.450198px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.lsc_c00335{letter-spacing:-0.042752pt;}
.lse_c00335{letter-spacing:-0.038400pt;}
.ls12_c00335{letter-spacing:-0.025600pt;}
.ls11_c00335{letter-spacing:-0.012800pt;}
.ls10_c00335{letter-spacing:-0.009600pt;}
.lsf_c00335{letter-spacing:-0.006400pt;}
.lsd_c00335{letter-spacing:0.000000pt;}
.ls8_c00335{letter-spacing:0.006400pt;}
.ls2_c00335{letter-spacing:0.012800pt;}
.ls3_c00335{letter-spacing:0.019200pt;}
.ls0_c00335{letter-spacing:0.025600pt;}
.ls1_c00335{letter-spacing:0.032000pt;}
.ls7_c00335{letter-spacing:0.044800pt;}
.ls9_c00335{letter-spacing:0.051200pt;}
.lsb_c00335{letter-spacing:0.057600pt;}
.lsa_c00335{letter-spacing:0.064000pt;}
.ls6_c00335{letter-spacing:0.067200pt;}
.ls5_c00335{letter-spacing:0.081600pt;}
.ls4_c00335{letter-spacing:0.128000pt;}
.ls13_c00335{letter-spacing:7.680000pt;}
.ws1_c00335{word-spacing:0.000000pt;}
.ws0_c00335{word-spacing:0.122912pt;}
.ws3_c00335{word-spacing:11.280000pt;}
.ws2_c00335{word-spacing:11.371200pt;}
._8_c00335{margin-left:-8.204800pt;}
._9_c00335{margin-left:-7.155200pt;}
._5_c00335{margin-left:-3.667200pt;}
._4_c00335{margin-left:-2.579200pt;}
._1_c00335{margin-left:-1.024000pt;}
._d_c00335{width:0.940800pt;}
._3_c00335{width:5.100800pt;}
._7_c00335{width:7.270400pt;}
._2_c00335{width:10.508800pt;}
._0_c00335{width:11.494400pt;}
._6_c00335{width:12.454400pt;}
._a_c00335{width:15.084800pt;}
._b_c00335{width:19.513600pt;}
._c_c00335{width:20.608000pt;}
.fs2_c00335{font-size:48.000000pt;}
.fs0_c00335{font-size:53.440000pt;}
.fs1_c00335{font-size:64.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y6_c00335{bottom:50.987067pt;}
.y5_c00335{bottom:69.387067pt;}
.y22_c00335{bottom:147.147067pt;}
.y21_c00335{bottom:174.747067pt;}
.y20_c00335{bottom:202.347067pt;}
.y1f_c00335{bottom:229.947067pt;}
.y1e_c00335{bottom:257.547067pt;}
.y1d_c00335{bottom:285.147067pt;}
.y1c_c00335{bottom:312.747067pt;}
.y1b_c00335{bottom:340.347067pt;}
.y1a_c00335{bottom:367.947067pt;}
.y19_c00335{bottom:395.547067pt;}
.y18_c00335{bottom:423.147067pt;}
.y17_c00335{bottom:450.747067pt;}
.y16_c00335{bottom:478.347067pt;}
.y15_c00335{bottom:505.947067pt;}
.y14_c00335{bottom:533.547067pt;}
.y13_c00335{bottom:561.147067pt;}
.y12_c00335{bottom:588.747067pt;}
.y11_c00335{bottom:612.747067pt;}
.y10_c00335{bottom:761.786667pt;}
.yf_c00335{bottom:782.507067pt;}
.ye_c00335{bottom:806.267067pt;}
.yd_c00335{bottom:833.867067pt;}
.yc_c00335{bottom:861.467067pt;}
.yb_c00335{bottom:889.067067pt;}
.ya_c00335{bottom:916.587067pt;}
.y9_c00335{bottom:944.187067pt;}
.y8_c00335{bottom:971.787067pt;}
.y7_c00335{bottom:999.387067pt;}
.y4_c00335{bottom:1017.227251pt;}
.y3_c00335{bottom:1032.587243pt;}
.y2_c00335{bottom:1047.867075pt;}
.y1_c00335{bottom:1063.227067pt;}
.h3_c00335{height:42.234375pt;}
.h1_c00335{height:47.020937pt;}
.h2_c00335{height:56.156250pt;}
.h0_c00335{height:1122.666667pt;}
.w1_c00335{width:793.333333pt;}
.w0_c00335{width:793.626667pt;}
.x0_c00335{left:0.000000pt;}
.x4_c00335{left:113.440000pt;}
.x6_c00335{left:396.880000pt;}
.x1_c00335{left:577.440000pt;}
.x3_c00335{left:656.400000pt;}
.x5_c00335{left:676.400000pt;}
.x2_c00335{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.095703;font-style:normal;font-weight:normal;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_487fde15c4ca4df0a2fd59dc.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.093262;font-style:normal;font-weight:normal;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_fd1ac6f16b55ecc151ae5859.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00336;src:url('chunks/assets/font_1e1c034ad3a6f44a7b6edf71.woff2')format("woff");}.ff4_c00336{font-family:ff4_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:ff5_c00336;src:url('chunks/assets/font_748d792d87989287299df810.woff2')format("woff");}.ff5_c00336{font-family:ff5_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;}
.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;}
.ls13_c00336{letter-spacing:-0.151200px;}
.ls12_c00336{letter-spacing:-0.129600px;}
.ls11_c00336{letter-spacing:-0.124200px;}
.ls17_c00336{letter-spacing:-0.118800px;}
.ls1b_c00336{letter-spacing:-0.113400px;}
.ls1f_c00336{letter-spacing:-0.108000px;}
.ls22_c00336{letter-spacing:-0.102600px;}
.lsb_c00336{letter-spacing:-0.102204px;}
.ls14_c00336{letter-spacing:-0.097200px;}
.ls24_c00336{letter-spacing:-0.091800px;}
.ls19_c00336{letter-spacing:-0.086400px;}
.ls1d_c00336{letter-spacing:-0.081000px;}
.ls18_c00336{letter-spacing:-0.075600px;}
.ls15_c00336{letter-spacing:-0.070200px;}
.ls1c_c00336{letter-spacing:-0.064800px;}
.ls23_c00336{letter-spacing:-0.054000px;}
.lse_c00336{letter-spacing:-0.050400px;}
.ls1a_c00336{letter-spacing:-0.048600px;}
.ls25_c00336{letter-spacing:-0.037800px;}
.ls21_c00336{letter-spacing:-0.028800px;}
.lsf_c00336{letter-spacing:-0.021600px;}
.ls1e_c00336{letter-spacing:-0.016200px;}
.lsd_c00336{letter-spacing:-0.014400px;}
.ls16_c00336{letter-spacing:-0.010800px;}
.ls10_c00336{letter-spacing:-0.007200px;}
.lsc_c00336{letter-spacing:0.000000px;}
.ls5_c00336{letter-spacing:0.005400px;}
.ls7_c00336{letter-spacing:0.014400px;}
.ls2_c00336{letter-spacing:0.021600px;}
.ls4_c00336{letter-spacing:0.027000px;}
.ls9_c00336{letter-spacing:0.028800px;}
.ls6_c00336{letter-spacing:0.036000px;}
.ls1_c00336{letter-spacing:0.043200px;}
.ls0_c00336{letter-spacing:0.050328px;}
.ls3_c00336{letter-spacing:0.064800px;}
.lsa_c00336{letter-spacing:0.100800px;}
.ls8_c00336{letter-spacing:0.115200px;}
.ls20_c00336{letter-spacing:0.496800px;}
.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;}
}
.ws0_c00336{word-spacing:-20.008800px;}
.ws1_c00336{word-spacing:-20.001600px;}
.ws3_c00336{word-spacing:0.000000px;}
.ws2_c00336{word-spacing:0.192384px;}
._1_c00336{margin-left:-1.058400px;}
._0_c00336{width:1.034064px;}
._2e_c00336{width:6.444000px;}
._2d_c00336{width:12.830400px;}
._2c_c00336{width:14.025600px;}
._2f_c00336{width:20.131200px;}
._19_c00336{width:71.501400px;}
._2_c00336{width:89.164800px;}
._10_c00336{width:92.689200px;}
._18_c00336{width:169.387200px;}
._c_c00336{width:185.326200px;}
._9_c00336{width:214.440336px;}
._16_c00336{width:224.676000px;}
._f_c00336{width:227.408400px;}
._20_c00336{width:232.759872px;}
._e_c00336{width:247.661136px;}
._7_c00336{width:271.766736px;}
._5_c00336{width:293.310000px;}
._14_c00336{width:296.388000px;}
._11_c00336{width:310.266000px;}
._3_c00336{width:317.743200px;}
._b_c00336{width:323.463600px;}
._a_c00336{width:332.373600px;}
._6_c00336{width:358.693200px;}
._4_c00336{width:368.391600px;}
._12_c00336{width:389.268000px;}
._d_c00336{width:392.437800px;}
._15_c00336{width:397.535400px;}
._8_c00336{width:401.439600px;}
._1e_c00336{width:425.556000px;}
._23_c00336{width:430.440336px;}
._17_c00336{width:435.762000px;}
._2a_c00336{width:440.676000px;}
._13_c00336{width:443.127600px;}
._1c_c00336{width:487.766736px;}
._22_c00336{width:490.639536px;}
._27_c00336{width:499.989600px;}
._1f_c00336{width:503.532000px;}
._26_c00336{width:524.484000px;}
._1b_c00336{width:529.722000px;}
._25_c00336{width:548.373600px;}
._1d_c00336{width:554.022000px;}
._28_c00336{width:557.191800px;}
._29_c00336{width:560.307600px;}
._21_c00336{width:575.373600px;}
._1a_c00336{width:584.424000px;}
._24_c00336{width:608.437800px;}
._2b_c00336{width:669.762000px;}
.fc3_c00336{color:rgb(38,74,96);}
.fc2_c00336{color:rgb(1,2,5);}
.fc1_c00336{color:rgb(0,0,0);}
.fc4_c00336{color:transparent;}
.fc0_c00336{color:rgb(32,31,30);}
.fs4_c00336{font-size:2.880000px;}
.fs3_c00336{font-size:54.000000px;}
.fs0_c00336{font-size:60.120000px;}
.fs1_c00336{font-size:72.000000px;}
.fs2_c00336{font-size:83.880000px;}
.y0_c00336{bottom:0.000000px;}
.y5_c00336{bottom:57.360450px;}
.y4_c00336{bottom:78.060450px;}
.y42_c00336{bottom:149.070450px;}
.y41_c00336{bottom:180.120450px;}
.y40_c00336{bottom:211.170450px;}
.y3f_c00336{bottom:242.130450px;}
.y3e_c00336{bottom:273.180450px;}
.y3d_c00336{bottom:304.230450px;}
.y3c_c00336{bottom:335.280450px;}
.y25_c00336{bottom:363.000600px;}
.y24_c00336{bottom:386.670450px;}
.y23_c00336{bottom:410.340000px;}
.y22_c00336{bottom:433.650450px;}
.y26_c00336{bottom:453.540600px;}
.y21_c00336{bottom:457.320450px;}
.y3b_c00336{bottom:464.700600px;}
.y20_c00336{bottom:480.990450px;}
.y3a_c00336{bottom:488.370600px;}
.y1f_c00336{bottom:504.570450px;}
.y39_c00336{bottom:512.040600px;}
.y1e_c00336{bottom:528.240450px;}
.y38_c00336{bottom:535.620450px;}
.y1d_c00336{bottom:551.910450px;}
.y37_c00336{bottom:559.290450px;}
.y1c_c00336{bottom:575.580450px;}
.y36_c00336{bottom:582.960450px;}
.y1b_c00336{bottom:599.250450px;}
.y35_c00336{bottom:606.630450px;}
.y1a_c00336{bottom:622.920450px;}
.y34_c00336{bottom:630.300450px;}
.y19_c00336{bottom:646.590450px;}
.y33_c00336{bottom:653.970450px;}
.y18_c00336{bottom:670.260450px;}
.y32_c00336{bottom:677.640450px;}
.y17_c00336{bottom:693.930450px;}
.y31_c00336{bottom:701.310450px;}
.y16_c00336{bottom:717.600450px;}
.y30_c00336{bottom:724.980450px;}
.y15_c00336{bottom:741.180450px;}
.y2f_c00336{bottom:748.650450px;}
.y14_c00336{bottom:764.850450px;}
.y2e_c00336{bottom:772.230450px;}
.y13_c00336{bottom:788.520450px;}
.y2d_c00336{bottom:795.900450px;}
.y12_c00336{bottom:812.190450px;}
.y2c_c00336{bottom:819.570450px;}
.y11_c00336{bottom:835.860600px;}
.y2b_c00336{bottom:843.240450px;}
.y10_c00336{bottom:859.530450px;}
.y2a_c00336{bottom:866.910450px;}
.yf_c00336{bottom:883.200450px;}
.y29_c00336{bottom:890.580450px;}
.ye_c00336{bottom:906.870450px;}
.y28_c00336{bottom:914.250450px;}
.yc_c00336{bottom:934.050450px;}
.y27_c00336{bottom:937.920450px;}
.yb_c00336{bottom:965.100450px;}
.ya_c00336{bottom:996.150450px;}
.y9_c00336{bottom:1027.200450px;}
.yd_c00336{bottom:1031.430450px;}
.y8_c00336{bottom:1055.370450px;}
.y7_c00336{bottom:1085.250450px;}
.y6_c00336{bottom:1108.380450px;}
.y3_c00336{bottom:1132.140450px;}
.y2_c00336{bottom:1165.441023px;}
.y1_c00336{bottom:1196.040600px;}
.h7_c00336{height:2.557969px;}
.h4_c00336{height:47.381836px;}
.h6_c00336{height:48.410156px;}
.h1_c00336{height:52.898555px;}
.h2_c00336{height:63.175781px;}
.h5_c00336{height:65.003906px;}
.h3_c00336{height:74.500840px;}
.h0_c00336{height:1263.000000px;}
.w1_c00336{width:892.500000px;}
.w0_c00336{width:892.830000px;}
.x0_c00336{left:0.000000px;}
.x1_c00336{left:127.620000px;}
.x3_c00336{left:135.630000px;}
.x4_c00336{left:143.730000px;}
.x6_c00336{left:169.740000px;}
.x5_c00336{left:312.660000px;}
.x7_c00336{left:494.550000px;}
.x8_c00336{left:502.650000px;}
.xa_c00336{left:507.150000px;}
.xc_c00336{left:524.250000px;}
.xb_c00336{left:528.750000px;}
.x9_c00336{left:725.670000px;}
.x2_c00336{left:738.450000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls13_c00336{letter-spacing:-0.134400pt;}
.ls12_c00336{letter-spacing:-0.115200pt;}
.ls11_c00336{letter-spacing:-0.110400pt;}
.ls17_c00336{letter-spacing:-0.105600pt;}
.ls1b_c00336{letter-spacing:-0.100800pt;}
.ls1f_c00336{letter-spacing:-0.096000pt;}
.ls22_c00336{letter-spacing:-0.091200pt;}
.lsb_c00336{letter-spacing:-0.090848pt;}
.ls14_c00336{letter-spacing:-0.086400pt;}
.ls24_c00336{letter-spacing:-0.081600pt;}
.ls19_c00336{letter-spacing:-0.076800pt;}
.ls1d_c00336{letter-spacing:-0.072000pt;}
.ls18_c00336{letter-spacing:-0.067200pt;}
.ls15_c00336{letter-spacing:-0.062400pt;}
.ls1c_c00336{letter-spacing:-0.057600pt;}
.ls23_c00336{letter-spacing:-0.048000pt;}
.lse_c00336{letter-spacing:-0.044800pt;}
.ls1a_c00336{letter-spacing:-0.043200pt;}
.ls25_c00336{letter-spacing:-0.033600pt;}
.ls21_c00336{letter-spacing:-0.025600pt;}
.lsf_c00336{letter-spacing:-0.019200pt;}
.ls1e_c00336{letter-spacing:-0.014400pt;}
.lsd_c00336{letter-spacing:-0.012800pt;}
.ls16_c00336{letter-spacing:-0.009600pt;}
.ls10_c00336{letter-spacing:-0.006400pt;}
.lsc_c00336{letter-spacing:0.000000pt;}
.ls5_c00336{letter-spacing:0.004800pt;}
.ls7_c00336{letter-spacing:0.012800pt;}
.ls2_c00336{letter-spacing:0.019200pt;}
.ls4_c00336{letter-spacing:0.024000pt;}
.ls9_c00336{letter-spacing:0.025600pt;}
.ls6_c00336{letter-spacing:0.032000pt;}
.ls1_c00336{letter-spacing:0.038400pt;}
.ls0_c00336{letter-spacing:0.044736pt;}
.ls3_c00336{letter-spacing:0.057600pt;}
.lsa_c00336{letter-spacing:0.089600pt;}
.ls8_c00336{letter-spacing:0.102400pt;}
.ls20_c00336{letter-spacing:0.441600pt;}
.ws0_c00336{word-spacing:-17.785600pt;}
.ws1_c00336{word-spacing:-17.779200pt;}
.ws3_c00336{word-spacing:0.000000pt;}
.ws2_c00336{word-spacing:0.171008pt;}
._1_c00336{margin-left:-0.940800pt;}
._0_c00336{width:0.919168pt;}
._2e_c00336{width:5.728000pt;}
._2d_c00336{width:11.404800pt;}
._2c_c00336{width:12.467200pt;}
._2f_c00336{width:17.894400pt;}
._19_c00336{width:63.556800pt;}
._2_c00336{width:79.257600pt;}
._10_c00336{width:82.390400pt;}
._18_c00336{width:150.566400pt;}
._c_c00336{width:164.734400pt;}
._9_c00336{width:190.613632pt;}
._16_c00336{width:199.712000pt;}
._f_c00336{width:202.140800pt;}
._20_c00336{width:206.897664pt;}
._e_c00336{width:220.143232pt;}
._7_c00336{width:241.570432pt;}
._5_c00336{width:260.720000pt;}
._14_c00336{width:263.456000pt;}
._11_c00336{width:275.792000pt;}
._3_c00336{width:282.438400pt;}
._b_c00336{width:287.523200pt;}
._a_c00336{width:295.443200pt;}
._6_c00336{width:318.838400pt;}
._4_c00336{width:327.459200pt;}
._12_c00336{width:346.016000pt;}
._d_c00336{width:348.833600pt;}
._15_c00336{width:353.364800pt;}
._8_c00336{width:356.835200pt;}
._1e_c00336{width:378.272000pt;}
._23_c00336{width:382.613632pt;}
._17_c00336{width:387.344000pt;}
._2a_c00336{width:391.712000pt;}
._13_c00336{width:393.891200pt;}
._1c_c00336{width:433.570432pt;}
._22_c00336{width:436.124032pt;}
._27_c00336{width:444.435200pt;}
._1f_c00336{width:447.584000pt;}
._26_c00336{width:466.208000pt;}
._1b_c00336{width:470.864000pt;}
._25_c00336{width:487.443200pt;}
._1d_c00336{width:492.464000pt;}
._28_c00336{width:495.281600pt;}
._29_c00336{width:498.051200pt;}
._21_c00336{width:511.443200pt;}
._1a_c00336{width:519.488000pt;}
._24_c00336{width:540.833600pt;}
._2b_c00336{width:595.344000pt;}
.fs4_c00336{font-size:2.560000pt;}
.fs3_c00336{font-size:48.000000pt;}
.fs0_c00336{font-size:53.440000pt;}
.fs1_c00336{font-size:64.000000pt;}
.fs2_c00336{font-size:74.560000pt;}
.y0_c00336{bottom:0.000000pt;}
.y5_c00336{bottom:50.987067pt;}
.y4_c00336{bottom:69.387067pt;}
.y42_c00336{bottom:132.507067pt;}
.y41_c00336{bottom:160.107067pt;}
.y40_c00336{bottom:187.707067pt;}
.y3f_c00336{bottom:215.227067pt;}
.y3e_c00336{bottom:242.827067pt;}
.y3d_c00336{bottom:270.427067pt;}
.y3c_c00336{bottom:298.027067pt;}
.y25_c00336{bottom:322.667200pt;}
.y24_c00336{bottom:343.707067pt;}
.y23_c00336{bottom:364.746667pt;}
.y22_c00336{bottom:385.467067pt;}
.y26_c00336{bottom:403.147200pt;}
.y21_c00336{bottom:406.507067pt;}
.y3b_c00336{bottom:413.067200pt;}
.y20_c00336{bottom:427.547067pt;}
.y3a_c00336{bottom:434.107200pt;}
.y1f_c00336{bottom:448.507067pt;}
.y39_c00336{bottom:455.147200pt;}
.y1e_c00336{bottom:469.547067pt;}
.y38_c00336{bottom:476.107067pt;}
.y1d_c00336{bottom:490.587067pt;}
.y37_c00336{bottom:497.147067pt;}
.y1c_c00336{bottom:511.627067pt;}
.y36_c00336{bottom:518.187067pt;}
.y1b_c00336{bottom:532.667067pt;}
.y35_c00336{bottom:539.227067pt;}
.y1a_c00336{bottom:553.707067pt;}
.y34_c00336{bottom:560.267067pt;}
.y19_c00336{bottom:574.747067pt;}
.y33_c00336{bottom:581.307067pt;}
.y18_c00336{bottom:595.787067pt;}
.y32_c00336{bottom:602.347067pt;}
.y17_c00336{bottom:616.827067pt;}
.y31_c00336{bottom:623.387067pt;}
.y16_c00336{bottom:637.867067pt;}
.y30_c00336{bottom:644.427067pt;}
.y15_c00336{bottom:658.827067pt;}
.y2f_c00336{bottom:665.467067pt;}
.y14_c00336{bottom:679.867067pt;}
.y2e_c00336{bottom:686.427067pt;}
.y13_c00336{bottom:700.907067pt;}
.y2d_c00336{bottom:707.467067pt;}
.y12_c00336{bottom:721.947067pt;}
.y2c_c00336{bottom:728.507067pt;}
.y11_c00336{bottom:742.987200pt;}
.y2b_c00336{bottom:749.547067pt;}
.y10_c00336{bottom:764.027067pt;}
.y2a_c00336{bottom:770.587067pt;}
.yf_c00336{bottom:785.067067pt;}
.y29_c00336{bottom:791.627067pt;}
.ye_c00336{bottom:806.107067pt;}
.y28_c00336{bottom:812.667067pt;}
.yc_c00336{bottom:830.267067pt;}
.y27_c00336{bottom:833.707067pt;}
.yb_c00336{bottom:857.867067pt;}
.ya_c00336{bottom:885.467067pt;}
.y9_c00336{bottom:913.067067pt;}
.yd_c00336{bottom:916.827067pt;}
.y8_c00336{bottom:938.107067pt;}
.y7_c00336{bottom:964.667067pt;}
.y6_c00336{bottom:985.227067pt;}
.y3_c00336{bottom:1006.347067pt;}
.y2_c00336{bottom:1035.947576pt;}
.y1_c00336{bottom:1063.147200pt;}
.h7_c00336{height:2.273750pt;}
.h4_c00336{height:42.117188pt;}
.h6_c00336{height:43.031250pt;}
.h1_c00336{height:47.020937pt;}
.h2_c00336{height:56.156250pt;}
.h5_c00336{height:57.781250pt;}
.h3_c00336{height:66.222969pt;}
.h0_c00336{height:1122.666667pt;}
.w1_c00336{width:793.333333pt;}
.w0_c00336{width:793.626667pt;}
.x0_c00336{left:0.000000pt;}
.x1_c00336{left:113.440000pt;}
.x3_c00336{left:120.560000pt;}
.x4_c00336{left:127.760000pt;}
.x6_c00336{left:150.880000pt;}
.x5_c00336{left:277.920000pt;}
.x7_c00336{left:439.600000pt;}
.x8_c00336{left:446.800000pt;}
.xa_c00336{left:450.800000pt;}
.xc_c00336{left:466.000000pt;}
.xb_c00336{left:470.000000pt;}
.x9_c00336{left:645.040000pt;}
.x2_c00336{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.095703;font-style:normal;font-weight:normal;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_e9c0ad39d4b804f14f77c897.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00337{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.lse_c00337{letter-spacing:-0.048096px;}
.ls10_c00337{letter-spacing:-0.043200px;}
.ls12_c00337{letter-spacing:-0.028800px;}
.ls14_c00337{letter-spacing:-0.021600px;}
.ls11_c00337{letter-spacing:-0.007200px;}
.lsf_c00337{letter-spacing:0.000000px;}
.ls2_c00337{letter-spacing:0.007200px;}
.ls1_c00337{letter-spacing:0.014400px;}
.ls6_c00337{letter-spacing:0.021600px;}
.ls0_c00337{letter-spacing:0.028800px;}
.ls8_c00337{letter-spacing:0.036000px;}
.ls3_c00337{letter-spacing:0.043200px;}
.ls5_c00337{letter-spacing:0.050400px;}
.ls9_c00337{letter-spacing:0.057600px;}
.lsa_c00337{letter-spacing:0.064800px;}
.lsb_c00337{letter-spacing:0.072000px;}
.lsc_c00337{letter-spacing:0.079200px;}
.ls7_c00337{letter-spacing:0.086400px;}
.ls4_c00337{letter-spacing:0.100800px;}
.lsd_c00337{letter-spacing:0.115200px;}
.ls13_c00337{letter-spacing:1.800000px;}
.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;}
}
.ws1_c00337{word-spacing:0.000000px;}
.ws0_c00337{word-spacing:0.138276px;}
._8_c00337{margin-left:-4.636800px;}
._2_c00337{margin-left:-2.894400px;}
._3_c00337{margin-left:-1.353600px;}
._4_c00337{width:1.029600px;}
._5_c00337{width:2.044800px;}
._a_c00337{width:3.902400px;}
._9_c00337{width:5.731200px;}
._b_c00337{width:6.796800px;}
._c_c00337{width:10.051200px;}
._6_c00337{width:12.103200px;}
._7_c00337{width:13.212000px;}
._1_c00337{width:16.315200px;}
._d_c00337{width:22.312800px;}
._0_c00337{width:24.091200px;}
.fc0_c00337{color:rgb(0,0,0);}
.fs0_c00337{font-size:60.120000px;}
.fs1_c00337{font-size:72.000000px;}
.y0_c00337{bottom:0.000000px;}
.y6_c00337{bottom:57.360450px;}
.y5_c00337{bottom:78.060450px;}
.y26_c00337{bottom:161.850450px;}
.y25_c00337{bottom:192.900450px;}
.y24_c00337{bottom:223.950450px;}
.y23_c00337{bottom:255.000450px;}
.y22_c00337{bottom:286.050450px;}
.y21_c00337{bottom:317.100450px;}
.y20_c00337{bottom:348.150450px;}
.y1f_c00337{bottom:379.200450px;}
.y1e_c00337{bottom:410.250450px;}
.y1d_c00337{bottom:441.300450px;}
.y1c_c00337{bottom:472.350450px;}
.y1b_c00337{bottom:503.400450px;}
.y1a_c00337{bottom:534.450450px;}
.y19_c00337{bottom:565.500450px;}
.y18_c00337{bottom:596.550450px;}
.y17_c00337{bottom:627.600450px;}
.y16_c00337{bottom:658.650450px;}
.y15_c00337{bottom:689.700450px;}
.y14_c00337{bottom:720.750450px;}
.y13_c00337{bottom:751.800450px;}
.y12_c00337{bottom:782.850450px;}
.y11_c00337{bottom:813.900450px;}
.y10_c00337{bottom:844.950450px;}
.yf_c00337{bottom:876.000450px;}
.ye_c00337{bottom:907.050450px;}
.yd_c00337{bottom:938.100450px;}
.yc_c00337{bottom:969.150450px;}
.yb_c00337{bottom:1000.200450px;}
.ya_c00337{bottom:1031.160450px;}
.y9_c00337{bottom:1062.210450px;}
.y8_c00337{bottom:1093.260450px;}
.y7_c00337{bottom:1124.310450px;}
.y4_c00337{bottom:1144.380657px;}
.y3_c00337{bottom:1161.660648px;}
.y2_c00337{bottom:1178.850459px;}
.y1_c00337{bottom:1196.130450px;}
.h1_c00337{height:52.898555px;}
.h2_c00337{height:63.175781px;}
.h0_c00337{height:1263.000000px;}
.w1_c00337{width:892.500000px;}
.w0_c00337{width:892.830000px;}
.x0_c00337{left:0.000000px;}
.x4_c00337{left:127.620000px;}
.x1_c00337{left:649.620000px;}
.x3_c00337{left:738.450000px;}
.x2_c00337{left:765.450198px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.lse_c00337{letter-spacing:-0.042752pt;}
.ls10_c00337{letter-spacing:-0.038400pt;}
.ls12_c00337{letter-spacing:-0.025600pt;}
.ls14_c00337{letter-spacing:-0.019200pt;}
.ls11_c00337{letter-spacing:-0.006400pt;}
.lsf_c00337{letter-spacing:0.000000pt;}
.ls2_c00337{letter-spacing:0.006400pt;}
.ls1_c00337{letter-spacing:0.012800pt;}
.ls6_c00337{letter-spacing:0.019200pt;}
.ls0_c00337{letter-spacing:0.025600pt;}
.ls8_c00337{letter-spacing:0.032000pt;}
.ls3_c00337{letter-spacing:0.038400pt;}
.ls5_c00337{letter-spacing:0.044800pt;}
.ls9_c00337{letter-spacing:0.051200pt;}
.lsa_c00337{letter-spacing:0.057600pt;}
.lsb_c00337{letter-spacing:0.064000pt;}
.lsc_c00337{letter-spacing:0.070400pt;}
.ls7_c00337{letter-spacing:0.076800pt;}
.ls4_c00337{letter-spacing:0.089600pt;}
.lsd_c00337{letter-spacing:0.102400pt;}
.ls13_c00337{letter-spacing:1.600000pt;}
.ws1_c00337{word-spacing:0.000000pt;}
.ws0_c00337{word-spacing:0.122912pt;}
._8_c00337{margin-left:-4.121600pt;}
._2_c00337{margin-left:-2.572800pt;}
._3_c00337{margin-left:-1.203200pt;}
._4_c00337{width:0.915200pt;}
._5_c00337{width:1.817600pt;}
._a_c00337{width:3.468800pt;}
._9_c00337{width:5.094400pt;}
._b_c00337{width:6.041600pt;}
._c_c00337{width:8.934400pt;}
._6_c00337{width:10.758400pt;}
._7_c00337{width:11.744000pt;}
._1_c00337{width:14.502400pt;}
._d_c00337{width:19.833600pt;}
._0_c00337{width:21.414400pt;}
.fs0_c00337{font-size:53.440000pt;}
.fs1_c00337{font-size:64.000000pt;}
.y0_c00337{bottom:0.000000pt;}
.y6_c00337{bottom:50.987067pt;}
.y5_c00337{bottom:69.387067pt;}
.y26_c00337{bottom:143.867067pt;}
.y25_c00337{bottom:171.467067pt;}
.y24_c00337{bottom:199.067067pt;}
.y23_c00337{bottom:226.667067pt;}
.y22_c00337{bottom:254.267067pt;}
.y21_c00337{bottom:281.867067pt;}
.y20_c00337{bottom:309.467067pt;}
.y1f_c00337{bottom:337.067067pt;}
.y1e_c00337{bottom:364.667067pt;}
.y1d_c00337{bottom:392.267067pt;}
.y1c_c00337{bottom:419.867067pt;}
.y1b_c00337{bottom:447.467067pt;}
.y1a_c00337{bottom:475.067067pt;}
.y19_c00337{bottom:502.667067pt;}
.y18_c00337{bottom:530.267067pt;}
.y17_c00337{bottom:557.867067pt;}
.y16_c00337{bottom:585.467067pt;}
.y15_c00337{bottom:613.067067pt;}
.y14_c00337{bottom:640.667067pt;}
.y13_c00337{bottom:668.267067pt;}
.y12_c00337{bottom:695.867067pt;}
.y11_c00337{bottom:723.467067pt;}
.y10_c00337{bottom:751.067067pt;}
.yf_c00337{bottom:778.667067pt;}
.ye_c00337{bottom:806.267067pt;}
.yd_c00337{bottom:833.867067pt;}
.yc_c00337{bottom:861.467067pt;}
.yb_c00337{bottom:889.067067pt;}
.ya_c00337{bottom:916.587067pt;}
.y9_c00337{bottom:944.187067pt;}
.y8_c00337{bottom:971.787067pt;}
.y7_c00337{bottom:999.387067pt;}
.y4_c00337{bottom:1017.227251pt;}
.y3_c00337{bottom:1032.587243pt;}
.y2_c00337{bottom:1047.867075pt;}
.y1_c00337{bottom:1063.227067pt;}
.h1_c00337{height:47.020937pt;}
.h2_c00337{height:56.156250pt;}
.h0_c00337{height:1122.666667pt;}
.w1_c00337{width:793.333333pt;}
.w0_c00337{width:793.626667pt;}
.x0_c00337{left:0.000000pt;}
.x4_c00337{left:113.440000pt;}
.x1_c00337{left:577.440000pt;}
.x3_c00337{left:656.400000pt;}
.x2_c00337{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.095703;font-style:normal;font-weight:normal;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_8e8aa314091a7d591c6ae07b.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:1.093262;font-style:normal;font-weight:normal;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_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00338{font-family:ff3_c00338;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.lse_c00338{letter-spacing:-0.102204px;}
.ls13_c00338{letter-spacing:-0.093600px;}
.ls15_c00338{letter-spacing:-0.064800px;}
.ls11_c00338{letter-spacing:-0.028800px;}
.ls12_c00338{letter-spacing:-0.021600px;}
.ls14_c00338{letter-spacing:-0.014400px;}
.lsf_c00338{letter-spacing:0.000000px;}
.lsc_c00338{letter-spacing:0.007200px;}
.ls4_c00338{letter-spacing:0.014400px;}
.ls0_c00338{letter-spacing:0.021600px;}
.ls6_c00338{letter-spacing:0.028800px;}
.ls8_c00338{letter-spacing:0.036000px;}
.ls1_c00338{letter-spacing:0.043200px;}
.ls2_c00338{letter-spacing:0.050400px;}
.lsb_c00338{letter-spacing:0.057600px;}
.ls3_c00338{letter-spacing:0.064800px;}
.ls9_c00338{letter-spacing:0.072000px;}
.lsd_c00338{letter-spacing:0.079200px;}
.ls5_c00338{letter-spacing:0.093600px;}
.ls7_c00338{letter-spacing:0.100800px;}
.lsa_c00338{letter-spacing:0.122400px;}
.ls10_c00338{letter-spacing:15.480000px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00338{word-spacing:0.000000px;}
.ws0_c00338{word-spacing:0.192384px;}
._4_c00338{margin-left:-15.861600px;}
._5_c00338{margin-left:-14.832000px;}
._16_c00338{margin-left:-4.939200px;}
._c_c00338{margin-left:-3.636000px;}
._6_c00338{margin-left:-2.512800px;}
._2_c00338{margin-left:-1.022400px;}
._0_c00338{width:1.034064px;}
._b_c00338{width:2.145600px;}
._e_c00338{width:5.428800px;}
._d_c00338{width:6.429600px;}
._10_c00338{width:7.538400px;}
._f_c00338{width:8.733600px;}
._12_c00338{width:10.108800px;}
._13_c00338{width:11.476800px;}
._7_c00338{width:12.535200px;}
._9_c00338{width:13.932000px;}
._3_c00338{width:15.458400px;}
._8_c00338{width:16.855200px;}
._1_c00338{width:20.138400px;}
._a_c00338{width:24.084000px;}
._11_c00338{width:28.382400px;}
._14_c00338{width:33.897600px;}
._15_c00338{width:35.208000px;}
.fc1_c00338{color:rgb(0,0,0);}
.fc0_c00338{color:rgb(32,31,30);}
.fs0_c00338{font-size:60.120000px;}
.fs1_c00338{font-size:72.000000px;}
.fs2_c00338{font-size:83.880000px;}
.y0_c00338{bottom:0.000000px;}
.y5_c00338{bottom:57.360450px;}
.y4_c00338{bottom:78.060450px;}
.y25_c00338{bottom:145.920450px;}
.y24_c00338{bottom:180.030450px;}
.y23_c00338{bottom:211.080450px;}
.y22_c00338{bottom:242.130450px;}
.y21_c00338{bottom:273.090450px;}
.y20_c00338{bottom:304.140450px;}
.y1f_c00338{bottom:335.190450px;}
.y1e_c00338{bottom:366.240450px;}
.y1d_c00338{bottom:397.290450px;}
.y1c_c00338{bottom:428.340450px;}
.y1b_c00338{bottom:459.390450px;}
.y1a_c00338{bottom:490.440450px;}
.y19_c00338{bottom:521.490450px;}
.y18_c00338{bottom:552.540450px;}
.y17_c00338{bottom:583.590450px;}
.y16_c00338{bottom:614.640450px;}
.y15_c00338{bottom:645.690450px;}
.y14_c00338{bottom:676.740450px;}
.y13_c00338{bottom:707.790450px;}
.y12_c00338{bottom:738.840450px;}
.y11_c00338{bottom:769.890450px;}
.y10_c00338{bottom:800.940450px;}
.yf_c00338{bottom:831.990450px;}
.ye_c00338{bottom:863.040450px;}
.yd_c00338{bottom:894.090450px;}
.yc_c00338{bottom:925.140450px;}
.yb_c00338{bottom:956.190450px;}
.ya_c00338{bottom:987.240450px;}
.y9_c00338{bottom:1018.290450px;}
.y8_c00338{bottom:1049.340450px;}
.y7_c00338{bottom:1080.390450px;}
.y6_c00338{bottom:1111.440450px;}
.y3_c00338{bottom:1132.140450px;}
.y2_c00338{bottom:1165.441023px;}
.y1_c00338{bottom:1196.040600px;}
.h1_c00338{height:52.898555px;}
.h2_c00338{height:63.175781px;}
.h3_c00338{height:74.500840px;}
.h0_c00338{height:1263.000000px;}
.w1_c00338{width:892.500000px;}
.w0_c00338{width:892.830000px;}
.x0_c00338{left:0.000000px;}
.x1_c00338{left:127.620000px;}
.x2_c00338{left:738.450000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.lse_c00338{letter-spacing:-0.090848pt;}
.ls13_c00338{letter-spacing:-0.083200pt;}
.ls15_c00338{letter-spacing:-0.057600pt;}
.ls11_c00338{letter-spacing:-0.025600pt;}
.ls12_c00338{letter-spacing:-0.019200pt;}
.ls14_c00338{letter-spacing:-0.012800pt;}
.lsf_c00338{letter-spacing:0.000000pt;}
.lsc_c00338{letter-spacing:0.006400pt;}
.ls4_c00338{letter-spacing:0.012800pt;}
.ls0_c00338{letter-spacing:0.019200pt;}
.ls6_c00338{letter-spacing:0.025600pt;}
.ls8_c00338{letter-spacing:0.032000pt;}
.ls1_c00338{letter-spacing:0.038400pt;}
.ls2_c00338{letter-spacing:0.044800pt;}
.lsb_c00338{letter-spacing:0.051200pt;}
.ls3_c00338{letter-spacing:0.057600pt;}
.ls9_c00338{letter-spacing:0.064000pt;}
.lsd_c00338{letter-spacing:0.070400pt;}
.ls5_c00338{letter-spacing:0.083200pt;}
.ls7_c00338{letter-spacing:0.089600pt;}
.lsa_c00338{letter-spacing:0.108800pt;}
.ls10_c00338{letter-spacing:13.760000pt;}
.ws1_c00338{word-spacing:0.000000pt;}
.ws0_c00338{word-spacing:0.171008pt;}
._4_c00338{margin-left:-14.099200pt;}
._5_c00338{margin-left:-13.184000pt;}
._16_c00338{margin-left:-4.390400pt;}
._c_c00338{margin-left:-3.232000pt;}
._6_c00338{margin-left:-2.233600pt;}
._2_c00338{margin-left:-0.908800pt;}
._0_c00338{width:0.919168pt;}
._b_c00338{width:1.907200pt;}
._e_c00338{width:4.825600pt;}
._d_c00338{width:5.715200pt;}
._10_c00338{width:6.700800pt;}
._f_c00338{width:7.763200pt;}
._12_c00338{width:8.985600pt;}
._13_c00338{width:10.201600pt;}
._7_c00338{width:11.142400pt;}
._9_c00338{width:12.384000pt;}
._3_c00338{width:13.740800pt;}
._8_c00338{width:14.982400pt;}
._1_c00338{width:17.900800pt;}
._a_c00338{width:21.408000pt;}
._11_c00338{width:25.228800pt;}
._14_c00338{width:30.131200pt;}
._15_c00338{width:31.296000pt;}
.fs0_c00338{font-size:53.440000pt;}
.fs1_c00338{font-size:64.000000pt;}
.fs2_c00338{font-size:74.560000pt;}
.y0_c00338{bottom:0.000000pt;}
.y5_c00338{bottom:50.987067pt;}
.y4_c00338{bottom:69.387067pt;}
.y25_c00338{bottom:129.707067pt;}
.y24_c00338{bottom:160.027067pt;}
.y23_c00338{bottom:187.627067pt;}
.y22_c00338{bottom:215.227067pt;}
.y21_c00338{bottom:242.747067pt;}
.y20_c00338{bottom:270.347067pt;}
.y1f_c00338{bottom:297.947067pt;}
.y1e_c00338{bottom:325.547067pt;}
.y1d_c00338{bottom:353.147067pt;}
.y1c_c00338{bottom:380.747067pt;}
.y1b_c00338{bottom:408.347067pt;}
.y1a_c00338{bottom:435.947067pt;}
.y19_c00338{bottom:463.547067pt;}
.y18_c00338{bottom:491.147067pt;}
.y17_c00338{bottom:518.747067pt;}
.y16_c00338{bottom:546.347067pt;}
.y15_c00338{bottom:573.947067pt;}
.y14_c00338{bottom:601.547067pt;}
.y13_c00338{bottom:629.147067pt;}
.y12_c00338{bottom:656.747067pt;}
.y11_c00338{bottom:684.347067pt;}
.y10_c00338{bottom:711.947067pt;}
.yf_c00338{bottom:739.547067pt;}
.ye_c00338{bottom:767.147067pt;}
.yd_c00338{bottom:794.747067pt;}
.yc_c00338{bottom:822.347067pt;}
.yb_c00338{bottom:849.947067pt;}
.ya_c00338{bottom:877.547067pt;}
.y9_c00338{bottom:905.147067pt;}
.y8_c00338{bottom:932.747067pt;}
.y7_c00338{bottom:960.347067pt;}
.y6_c00338{bottom:987.947067pt;}
.y3_c00338{bottom:1006.347067pt;}
.y2_c00338{bottom:1035.947576pt;}
.y1_c00338{bottom:1063.147200pt;}
.h1_c00338{height:47.020937pt;}
.h2_c00338{height:56.156250pt;}
.h3_c00338{height:66.222969pt;}
.h0_c00338{height:1122.666667pt;}
.w1_c00338{width:793.333333pt;}
.w0_c00338{width:793.626667pt;}
.x0_c00338{left:0.000000pt;}
.x1_c00338{left:113.440000pt;}
.x2_c00338{left:656.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_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_7b98e462cc34ab380464a9cc.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.095703;font-style:normal;font-weight:normal;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_99327b85758a90058b803ba4.woff2')format("woff");}.ff2_c00339{font-family:ff2_c00339;line-height:1.093262;font-style:normal;font-weight:normal;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_1d9bbcbce9d6931f0a10fe1f.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00339;src:url('chunks/assets/font_0e645242efe84bfba44b6662.woff2')format("woff");}.ff4_c00339{font-family:ff4_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;}
@font-face{font-family:ff5_c00339;src:url('chunks/assets/font_a536800eae3f6ad5242061e7.woff2')format("woff");}.ff5_c00339{font-family:ff5_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;}
.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:16.919400px;}
.ls20_c00339{letter-spacing:-1.080000px;}
.ls18_c00339{letter-spacing:-0.151200px;}
.ls14_c00339{letter-spacing:-0.124200px;}
.ls1a_c00339{letter-spacing:-0.102600px;}
.ls16_c00339{letter-spacing:-0.097200px;}
.ls1b_c00339{letter-spacing:-0.086400px;}
.ls1e_c00339{letter-spacing:-0.070200px;}
.ls19_c00339{letter-spacing:-0.059400px;}
.ls1c_c00339{letter-spacing:-0.048600px;}
.lsf_c00339{letter-spacing:-0.048096px;}
.ls17_c00339{letter-spacing:-0.032400px;}
.ls1d_c00339{letter-spacing:-0.016200px;}
.ls11_c00339{letter-spacing:-0.014400px;}
.ls13_c00339{letter-spacing:-0.007200px;}
.ls12_c00339{letter-spacing:-0.005400px;}
.ls10_c00339{letter-spacing:0.000000px;}
.ls9_c00339{letter-spacing:0.007200px;}
.ls3_c00339{letter-spacing:0.014400px;}
.lsa_c00339{letter-spacing:0.021600px;}
.lsc_c00339{letter-spacing:0.028800px;}
.lsb_c00339{letter-spacing:0.036000px;}
.ls0_c00339{letter-spacing:0.041940px;}
.ls2_c00339{letter-spacing:0.043200px;}
.ls8_c00339{letter-spacing:0.057600px;}
.ls4_c00339{letter-spacing:0.058716px;}
.ls1_c00339{letter-spacing:0.067104px;}
.lsd_c00339{letter-spacing:0.072000px;}
.lse_c00339{letter-spacing:0.100800px;}
.ls6_c00339{letter-spacing:0.102600px;}
.ls15_c00339{letter-spacing:0.135000px;}
.ls1f_c00339{letter-spacing:0.496800px;}
.ls21_c00339{letter-spacing:4.680000px;}
.ls7_c00339{letter-spacing:123.588000px;}
.ls5_c00339{letter-spacing:252.360000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00339{word-spacing:0.000000px;}
.ws0_c00339{word-spacing:0.138276px;}
.ws2_c00339{word-spacing:0.183600px;}
._19_c00339{margin-left:-5.378400px;}
._18_c00339{margin-left:-3.895200px;}
._0_c00339{margin-left:-1.483200px;}
._1_c00339{width:1.035000px;}
._12_c00339{width:2.192400px;}
._10_c00339{width:3.254400px;}
._f_c00339{width:4.262400px;}
._11_c00339{width:5.738400px;}
._17_c00339{width:6.969600px;}
._15_c00339{width:9.676800px;}
._16_c00339{width:10.929600px;}
._13_c00339{width:15.206400px;}
._14_c00339{width:16.444800px;}
._2_c00339{width:100.375200px;}
._3_c00339{width:123.460200px;}
._9_c00339{width:133.997400px;}
._b_c00339{width:146.331000px;}
._c_c00339{width:164.799000px;}
._8_c00339{width:174.281400px;}
._e_c00339{width:277.840800px;}
._5_c00339{width:307.594800px;}
._a_c00339{width:337.521600px;}
._4_c00339{width:350.181000px;}
._6_c00339{width:476.830800px;}
._7_c00339{width:534.243600px;}
._d_c00339{width:548.571600px;}
.fc3_c00339{color:rgb(38,74,96);}
.fc2_c00339{color:rgb(1,2,5);}
.fc1_c00339{color:rgb(68,84,106);}
.fc0_c00339{color:rgb(0,0,0);}
.fs3_c00339{font-size:54.000000px;}
.fs0_c00339{font-size:60.120000px;}
.fs1_c00339{font-size:72.000000px;}
.fs2_c00339{font-size:83.880000px;}
.y0_c00339{bottom:0.000000px;}
.y6_c00339{bottom:57.360450px;}
.y5_c00339{bottom:78.060450px;}
.y27_c00339{bottom:136.020450px;}
.y26_c00339{bottom:167.070450px;}
.y25_c00339{bottom:198.120450px;}
.y24_c00339{bottom:229.170450px;}
.y23_c00339{bottom:260.220450px;}
.y22_c00339{bottom:291.270450px;}
.y21_c00339{bottom:322.320450px;}
.y20_c00339{bottom:353.370450px;}
.y1f_c00339{bottom:384.420450px;}
.y1e_c00339{bottom:415.470450px;}
.y1d_c00339{bottom:446.520450px;}
.y1c_c00339{bottom:477.570450px;}
.y1b_c00339{bottom:508.620450px;}
.y1a_c00339{bottom:539.670450px;}
.y19_c00339{bottom:570.720450px;}
.y18_c00339{bottom:601.770450px;}
.y17_c00339{bottom:635.070450px;}
.y16_c00339{bottom:664.320450px;}
.y15_c00339{bottom:693.570450px;}
.y14_c00339{bottom:722.820450px;}
.y13_c00339{bottom:752.070450px;}
.y12_c00339{bottom:779.790600px;}
.y11_c00339{bottom:809.040600px;}
.y10_c00339{bottom:838.290600px;}
.yf_c00339{bottom:869.430600px;}
.ye_c00339{bottom:904.890450px;}
.yd_c00339{bottom:934.770450px;}
.yc_c00339{bottom:957.900450px;}
.yb_c00339{bottom:994.980450px;}
.ya_c00339{bottom:1026.030450px;}
.y9_c00339{bottom:1057.080450px;}
.y8_c00339{bottom:1088.130450px;}
.y7_c00339{bottom:1121.340450px;}
.y4_c00339{bottom:1144.380657px;}
.y3_c00339{bottom:1161.660648px;}
.y2_c00339{bottom:1178.850459px;}
.y1_c00339{bottom:1196.130450px;}
.h4_c00339{height:47.513672px;}
.h6_c00339{height:48.410156px;}
.h1_c00339{height:52.898555px;}
.h2_c00339{height:63.175781px;}
.h5_c00339{height:65.329556px;}
.h3_c00339{height:74.500840px;}
.h0_c00339{height:1263.000000px;}
.w1_c00339{width:892.500000px;}
.w0_c00339{width:892.830000px;}
.x0_c00339{left:0.000000px;}
.x4_c00339{left:127.620000px;}
.x5_c00339{left:258.480000px;}
.x6_c00339{left:293.130000px;}
.x1_c00339{left:649.620000px;}
.x3_c00339{left:738.450000px;}
.x2_c00339{left:765.450198px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.v1_c00339{vertical-align:15.039467pt;}
.ls20_c00339{letter-spacing:-0.960000pt;}
.ls18_c00339{letter-spacing:-0.134400pt;}
.ls14_c00339{letter-spacing:-0.110400pt;}
.ls1a_c00339{letter-spacing:-0.091200pt;}
.ls16_c00339{letter-spacing:-0.086400pt;}
.ls1b_c00339{letter-spacing:-0.076800pt;}
.ls1e_c00339{letter-spacing:-0.062400pt;}
.ls19_c00339{letter-spacing:-0.052800pt;}
.ls1c_c00339{letter-spacing:-0.043200pt;}
.lsf_c00339{letter-spacing:-0.042752pt;}
.ls17_c00339{letter-spacing:-0.028800pt;}
.ls1d_c00339{letter-spacing:-0.014400pt;}
.ls11_c00339{letter-spacing:-0.012800pt;}
.ls13_c00339{letter-spacing:-0.006400pt;}
.ls12_c00339{letter-spacing:-0.004800pt;}
.ls10_c00339{letter-spacing:0.000000pt;}
.ls9_c00339{letter-spacing:0.006400pt;}
.ls3_c00339{letter-spacing:0.012800pt;}
.lsa_c00339{letter-spacing:0.019200pt;}
.lsc_c00339{letter-spacing:0.025600pt;}
.lsb_c00339{letter-spacing:0.032000pt;}
.ls0_c00339{letter-spacing:0.037280pt;}
.ls2_c00339{letter-spacing:0.038400pt;}
.ls8_c00339{letter-spacing:0.051200pt;}
.ls4_c00339{letter-spacing:0.052192pt;}
.ls1_c00339{letter-spacing:0.059648pt;}
.lsd_c00339{letter-spacing:0.064000pt;}
.lse_c00339{letter-spacing:0.089600pt;}
.ls6_c00339{letter-spacing:0.091200pt;}
.ls15_c00339{letter-spacing:0.120000pt;}
.ls1f_c00339{letter-spacing:0.441600pt;}
.ls21_c00339{letter-spacing:4.160000pt;}
.ls7_c00339{letter-spacing:109.856000pt;}
.ls5_c00339{letter-spacing:224.320000pt;}
.ws1_c00339{word-spacing:0.000000pt;}
.ws0_c00339{word-spacing:0.122912pt;}
.ws2_c00339{word-spacing:0.163200pt;}
._19_c00339{margin-left:-4.780800pt;}
._18_c00339{margin-left:-3.462400pt;}
._0_c00339{margin-left:-1.318400pt;}
._1_c00339{width:0.920000pt;}
._12_c00339{width:1.948800pt;}
._10_c00339{width:2.892800pt;}
._f_c00339{width:3.788800pt;}
._11_c00339{width:5.100800pt;}
._17_c00339{width:6.195200pt;}
._15_c00339{width:8.601600pt;}
._16_c00339{width:9.715200pt;}
._13_c00339{width:13.516800pt;}
._14_c00339{width:14.617600pt;}
._2_c00339{width:89.222400pt;}
._3_c00339{width:109.742400pt;}
._9_c00339{width:119.108800pt;}
._b_c00339{width:130.072000pt;}
._c_c00339{width:146.488000pt;}
._8_c00339{width:154.916800pt;}
._e_c00339{width:246.969600pt;}
._5_c00339{width:273.417600pt;}
._a_c00339{width:300.019200pt;}
._4_c00339{width:311.272000pt;}
._6_c00339{width:423.849600pt;}
._7_c00339{width:474.883200pt;}
._d_c00339{width:487.619200pt;}
.fs3_c00339{font-size:48.000000pt;}
.fs0_c00339{font-size:53.440000pt;}
.fs1_c00339{font-size:64.000000pt;}
.fs2_c00339{font-size:74.560000pt;}
.y0_c00339{bottom:0.000000pt;}
.y6_c00339{bottom:50.987067pt;}
.y5_c00339{bottom:69.387067pt;}
.y27_c00339{bottom:120.907067pt;}
.y26_c00339{bottom:148.507067pt;}
.y25_c00339{bottom:176.107067pt;}
.y24_c00339{bottom:203.707067pt;}
.y23_c00339{bottom:231.307067pt;}
.y22_c00339{bottom:258.907067pt;}
.y21_c00339{bottom:286.507067pt;}
.y20_c00339{bottom:314.107067pt;}
.y1f_c00339{bottom:341.707067pt;}
.y1e_c00339{bottom:369.307067pt;}
.y1d_c00339{bottom:396.907067pt;}
.y1c_c00339{bottom:424.507067pt;}
.y1b_c00339{bottom:452.107067pt;}
.y1a_c00339{bottom:479.707067pt;}
.y19_c00339{bottom:507.307067pt;}
.y18_c00339{bottom:534.907067pt;}
.y17_c00339{bottom:564.507067pt;}
.y16_c00339{bottom:590.507067pt;}
.y15_c00339{bottom:616.507067pt;}
.y14_c00339{bottom:642.507067pt;}
.y13_c00339{bottom:668.507067pt;}
.y12_c00339{bottom:693.147200pt;}
.y11_c00339{bottom:719.147200pt;}
.y10_c00339{bottom:745.147200pt;}
.yf_c00339{bottom:772.827200pt;}
.ye_c00339{bottom:804.347067pt;}
.yd_c00339{bottom:830.907067pt;}
.yc_c00339{bottom:851.467067pt;}
.yb_c00339{bottom:884.427067pt;}
.ya_c00339{bottom:912.027067pt;}
.y9_c00339{bottom:939.627067pt;}
.y8_c00339{bottom:967.227067pt;}
.y7_c00339{bottom:996.747067pt;}
.y4_c00339{bottom:1017.227251pt;}
.y3_c00339{bottom:1032.587243pt;}
.y2_c00339{bottom:1047.867075pt;}
.y1_c00339{bottom:1063.227067pt;}
.h4_c00339{height:42.234375pt;}
.h6_c00339{height:43.031250pt;}
.h1_c00339{height:47.020937pt;}
.h2_c00339{height:56.156250pt;}
.h5_c00339{height:58.070717pt;}
.h3_c00339{height:66.222969pt;}
.h0_c00339{height:1122.666667pt;}
.w1_c00339{width:793.333333pt;}
.w0_c00339{width:793.626667pt;}
.x0_c00339{left:0.000000pt;}
.x4_c00339{left:113.440000pt;}
.x5_c00339{left:229.760000pt;}
.x6_c00339{left:260.560000pt;}
.x1_c00339{left:577.440000pt;}
.x3_c00339{left:656.400000pt;}
.x2_c00339{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dfaa220c4f4b50f038ef6b66.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.095703;font-style:normal;font-weight:normal;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_61ef57507e55d9c6beb2854a.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:1.093262;font-style: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;}
.ls1b_c00340{letter-spacing:-3.240000px;}
.ls19_c00340{letter-spacing:-0.280800px;}
.ls14_c00340{letter-spacing:-0.102204px;}
.ls1a_c00340{letter-spacing:-0.050400px;}
.ls18_c00340{letter-spacing:-0.014400px;}
.ls16_c00340{letter-spacing:-0.010800px;}
.ls17_c00340{letter-spacing:-0.007200px;}
.ls15_c00340{letter-spacing:0.000000px;}
.lsf_c00340{letter-spacing:0.007200px;}
.ls0_c00340{letter-spacing:0.010800px;}
.lsd_c00340{letter-spacing:0.014400px;}
.lse_c00340{letter-spacing:0.021600px;}
.ls13_c00340{letter-spacing:0.028800px;}
.ls9_c00340{letter-spacing:0.036000px;}
.ls12_c00340{letter-spacing:0.037800px;}
.ls7_c00340{letter-spacing:0.043200px;}
.lsc_c00340{letter-spacing:0.050400px;}
.ls1_c00340{letter-spacing:0.054000px;}
.ls8_c00340{letter-spacing:0.064800px;}
.lsb_c00340{letter-spacing:0.072000px;}
.ls2_c00340{letter-spacing:0.075600px;}
.ls6_c00340{letter-spacing:0.079200px;}
.ls4_c00340{letter-spacing:0.086400px;}
.ls10_c00340{letter-spacing:0.093600px;}
.lsa_c00340{letter-spacing:0.115200px;}
.ls5_c00340{letter-spacing:0.122400px;}
.ls11_c00340{letter-spacing:0.172800px;}
.ls3_c00340{letter-spacing:1119.600000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00340{word-spacing:-18.064800px;}
.ws2_c00340{word-spacing:0.000000px;}
.ws7_c00340{word-spacing:0.140400px;}
.ws6_c00340{word-spacing:0.156600px;}
.ws1_c00340{word-spacing:0.192384px;}
.ws5_c00340{word-spacing:8.046000px;}
.ws4_c00340{word-spacing:8.089200px;}
.ws3_c00340{word-spacing:8.110800px;}
._8_c00340{margin-left:-3.672000px;}
._9_c00340{margin-left:-2.448000px;}
._1_c00340{margin-left:-1.166400px;}
._0_c00340{width:1.034064px;}
._3_c00340{width:2.155536px;}
._a_c00340{width:3.201264px;}
._5_c00340{width:4.269600px;}
._d_c00340{width:6.926400px;}
._6_c00340{width:8.733600px;}
._7_c00340{width:10.008000px;}
._2_c00340{width:11.167200px;}
._4_c00340{width:12.564000px;}
._c_c00340{width:13.816800px;}
._b_c00340{width:1251.360000px;}
.fc2_c00340{color:rgb(68,84,106);}
.fc1_c00340{color:rgb(0,0,0);}
.fc0_c00340{color:rgb(32,31,30);}
.fs2_c00340{font-size:54.000000px;}
.fs0_c00340{font-size:60.120000px;}
.fs1_c00340{font-size:72.000000px;}
.y0_c00340{bottom:0.000000px;}
.y5_c00340{bottom:57.360450px;}
.y4_c00340{bottom:78.060450px;}
.y1d_c00340{bottom:136.020450px;}
.y1c_c00340{bottom:167.070450px;}
.y1b_c00340{bottom:198.120450px;}
.y1a_c00340{bottom:229.170450px;}
.y19_c00340{bottom:256.080450px;}
.y18_c00340{bottom:431.040600px;}
.y17_c00340{bottom:457.770450px;}
.y16_c00340{bottom:488.820450px;}
.y15_c00340{bottom:519.870450px;}
.y14_c00340{bottom:550.920450px;}
.y13_c00340{bottom:581.970450px;}
.y12_c00340{bottom:613.020450px;}
.y11_c00340{bottom:644.070450px;}
.y10_c00340{bottom:675.120450px;}
.yf_c00340{bottom:706.170450px;}
.ye_c00340{bottom:737.220450px;}
.yd_c00340{bottom:768.270450px;}
.yc_c00340{bottom:799.320450px;}
.yb_c00340{bottom:830.280450px;}
.ya_c00340{bottom:861.330450px;}
.y9_c00340{bottom:892.380450px;}
.y8_c00340{bottom:919.380450px;}
.y7_c00340{bottom:1092.450000px;}
.y6_c00340{bottom:1115.760450px;}
.y3_c00340{bottom:1132.140450px;}
.y2_c00340{bottom:1165.441023px;}
.y1_c00340{bottom:1196.040600px;}
.h3_c00340{height:47.513672px;}
.h1_c00340{height:52.898555px;}
.h2_c00340{height:63.175781px;}
.h4_c00340{height:63.351562px;}
.h0_c00340{height:1263.000000px;}
.w1_c00340{width:892.500000px;}
.w0_c00340{width:892.830000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:127.620000px;}
.x4_c00340{left:434.700000px;}
.x3_c00340{left:474.120000px;}
.x2_c00340{left:738.450000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls1b_c00340{letter-spacing:-2.880000pt;}
.ls19_c00340{letter-spacing:-0.249600pt;}
.ls14_c00340{letter-spacing:-0.090848pt;}
.ls1a_c00340{letter-spacing:-0.044800pt;}
.ls18_c00340{letter-spacing:-0.012800pt;}
.ls16_c00340{letter-spacing:-0.009600pt;}
.ls17_c00340{letter-spacing:-0.006400pt;}
.ls15_c00340{letter-spacing:0.000000pt;}
.lsf_c00340{letter-spacing:0.006400pt;}
.ls0_c00340{letter-spacing:0.009600pt;}
.lsd_c00340{letter-spacing:0.012800pt;}
.lse_c00340{letter-spacing:0.019200pt;}
.ls13_c00340{letter-spacing:0.025600pt;}
.ls9_c00340{letter-spacing:0.032000pt;}
.ls12_c00340{letter-spacing:0.033600pt;}
.ls7_c00340{letter-spacing:0.038400pt;}
.lsc_c00340{letter-spacing:0.044800pt;}
.ls1_c00340{letter-spacing:0.048000pt;}
.ls8_c00340{letter-spacing:0.057600pt;}
.lsb_c00340{letter-spacing:0.064000pt;}
.ls2_c00340{letter-spacing:0.067200pt;}
.ls6_c00340{letter-spacing:0.070400pt;}
.ls4_c00340{letter-spacing:0.076800pt;}
.ls10_c00340{letter-spacing:0.083200pt;}
.lsa_c00340{letter-spacing:0.102400pt;}
.ls5_c00340{letter-spacing:0.108800pt;}
.ls11_c00340{letter-spacing:0.153600pt;}
.ls3_c00340{letter-spacing:995.200000pt;}
.ws0_c00340{word-spacing:-16.057600pt;}
.ws2_c00340{word-spacing:0.000000pt;}
.ws7_c00340{word-spacing:0.124800pt;}
.ws6_c00340{word-spacing:0.139200pt;}
.ws1_c00340{word-spacing:0.171008pt;}
.ws5_c00340{word-spacing:7.152000pt;}
.ws4_c00340{word-spacing:7.190400pt;}
.ws3_c00340{word-spacing:7.209600pt;}
._8_c00340{margin-left:-3.264000pt;}
._9_c00340{margin-left:-2.176000pt;}
._1_c00340{margin-left:-1.036800pt;}
._0_c00340{width:0.919168pt;}
._3_c00340{width:1.916032pt;}
._a_c00340{width:2.845568pt;}
._5_c00340{width:3.795200pt;}
._d_c00340{width:6.156800pt;}
._6_c00340{width:7.763200pt;}
._7_c00340{width:8.896000pt;}
._2_c00340{width:9.926400pt;}
._4_c00340{width:11.168000pt;}
._c_c00340{width:12.281600pt;}
._b_c00340{width:1112.320000pt;}
.fs2_c00340{font-size:48.000000pt;}
.fs0_c00340{font-size:53.440000pt;}
.fs1_c00340{font-size:64.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y5_c00340{bottom:50.987067pt;}
.y4_c00340{bottom:69.387067pt;}
.y1d_c00340{bottom:120.907067pt;}
.y1c_c00340{bottom:148.507067pt;}
.y1b_c00340{bottom:176.107067pt;}
.y1a_c00340{bottom:203.707067pt;}
.y19_c00340{bottom:227.627067pt;}
.y18_c00340{bottom:383.147200pt;}
.y17_c00340{bottom:406.907067pt;}
.y16_c00340{bottom:434.507067pt;}
.y15_c00340{bottom:462.107067pt;}
.y14_c00340{bottom:489.707067pt;}
.y13_c00340{bottom:517.307067pt;}
.y12_c00340{bottom:544.907067pt;}
.y11_c00340{bottom:572.507067pt;}
.y10_c00340{bottom:600.107067pt;}
.yf_c00340{bottom:627.707067pt;}
.ye_c00340{bottom:655.307067pt;}
.yd_c00340{bottom:682.907067pt;}
.yc_c00340{bottom:710.507067pt;}
.yb_c00340{bottom:738.027067pt;}
.ya_c00340{bottom:765.627067pt;}
.y9_c00340{bottom:793.227067pt;}
.y8_c00340{bottom:817.227067pt;}
.y7_c00340{bottom:971.066667pt;}
.y6_c00340{bottom:991.787067pt;}
.y3_c00340{bottom:1006.347067pt;}
.y2_c00340{bottom:1035.947576pt;}
.y1_c00340{bottom:1063.147200pt;}
.h3_c00340{height:42.234375pt;}
.h1_c00340{height:47.020937pt;}
.h2_c00340{height:56.156250pt;}
.h4_c00340{height:56.312500pt;}
.h0_c00340{height:1122.666667pt;}
.w1_c00340{width:793.333333pt;}
.w0_c00340{width:793.626667pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:113.440000pt;}
.x4_c00340{left:386.400000pt;}
.x3_c00340{left:421.440000pt;}
.x2_c00340{left:656.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_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_9502b8d4882c14d90c8b1c17.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.095703;font-style:normal;font-weight:normal;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_8e4aefea28b39242784124f8.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.093262;font-style:normal;font-weight:normal;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_b09162e99d03b765671d2249.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_69f0d6b76721fdc0fe45d49d.woff2')format("woff");}.ff4_c00341{font-family:ff4_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;}
@font-face{font-family:ff5_c00341;src:url('chunks/assets/font_7e21285f9b48109aeeb77395.woff2')format("woff");}.ff5_c00341{font-family:ff5_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;}
.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:16.920000px;}
.ls15_c00341{letter-spacing:-0.151200px;}
.ls14_c00341{letter-spacing:-0.124200px;}
.ls18_c00341{letter-spacing:-0.113400px;}
.ls16_c00341{letter-spacing:-0.102600px;}
.ls1d_c00341{letter-spacing:-0.050400px;}
.lsf_c00341{letter-spacing:-0.048096px;}
.ls1b_c00341{letter-spacing:-0.043200px;}
.ls1e_c00341{letter-spacing:-0.036000px;}
.ls17_c00341{letter-spacing:-0.032400px;}
.ls12_c00341{letter-spacing:-0.028800px;}
.ls19_c00341{letter-spacing:-0.027000px;}
.ls13_c00341{letter-spacing:-0.021600px;}
.ls1c_c00341{letter-spacing:-0.014400px;}
.ls11_c00341{letter-spacing:-0.007200px;}
.ls10_c00341{letter-spacing:0.000000px;}
.ls7_c00341{letter-spacing:0.007200px;}
.ls3_c00341{letter-spacing:0.010800px;}
.lsa_c00341{letter-spacing:0.014400px;}
.lsc_c00341{letter-spacing:0.021600px;}
.ls0_c00341{letter-spacing:0.028800px;}
.ls9_c00341{letter-spacing:0.036000px;}
.ls2_c00341{letter-spacing:0.041940px;}
.ls6_c00341{letter-spacing:0.043200px;}
.ls8_c00341{letter-spacing:0.050400px;}
.lsb_c00341{letter-spacing:0.057600px;}
.ls1_c00341{letter-spacing:0.064800px;}
.lsd_c00341{letter-spacing:0.072000px;}
.lse_c00341{letter-spacing:0.079200px;}
.ls1a_c00341{letter-spacing:0.496800px;}
.ls5_c00341{letter-spacing:73.909800px;}
.ls4_c00341{letter-spacing:94.680000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00341{word-spacing:-14.887800px;}
.ws2_c00341{word-spacing:0.000000px;}
.ws1_c00341{word-spacing:0.138276px;}
.ws3_c00341{word-spacing:0.167400px;}
._5_c00341{margin-left:-2.651400px;}
._8_c00341{margin-left:-1.026000px;}
._2_c00341{width:1.209600px;}
._c_c00341{width:2.498400px;}
._1_c00341{width:4.190400px;}
._0_c00341{width:5.731200px;}
._d_c00341{width:8.395200px;}
._b_c00341{width:9.712800px;}
._a_c00341{width:14.752800px;}
._e_c00341{width:26.949600px;}
._6_c00341{width:86.769000px;}
._7_c00341{width:353.043000px;}
._4_c00341{width:377.110800px;}
._3_c00341{width:434.521800px;}
._9_c00341{width:447.937200px;}
.fc3_c00341{color:rgb(38,74,96);}
.fc2_c00341{color:rgb(1,2,5);}
.fc1_c00341{color:rgb(68,84,106);}
.fc0_c00341{color:rgb(0,0,0);}
.fs3_c00341{font-size:54.000000px;}
.fs0_c00341{font-size:60.120000px;}
.fs1_c00341{font-size:72.000000px;}
.fs2_c00341{font-size:83.880000px;}
.y0_c00341{bottom:0.000000px;}
.y6_c00341{bottom:57.360450px;}
.y5_c00341{bottom:78.060450px;}
.y29_c00341{bottom:119.640450px;}
.y28_c00341{bottom:150.690450px;}
.y27_c00341{bottom:181.740450px;}
.y26_c00341{bottom:212.790450px;}
.y25_c00341{bottom:243.840450px;}
.y24_c00341{bottom:274.890450px;}
.y23_c00341{bottom:305.940450px;}
.y22_c00341{bottom:336.990450px;}
.y21_c00341{bottom:368.040450px;}
.y20_c00341{bottom:399.090450px;}
.y1f_c00341{bottom:430.140450px;}
.y1e_c00341{bottom:461.190450px;}
.y1d_c00341{bottom:492.240450px;}
.y1c_c00341{bottom:523.290450px;}
.y1b_c00341{bottom:554.340450px;}
.y1a_c00341{bottom:585.390450px;}
.y19_c00341{bottom:616.440450px;}
.y18_c00341{bottom:647.490450px;}
.y17_c00341{bottom:678.540450px;}
.y16_c00341{bottom:709.590450px;}
.y15_c00341{bottom:740.640450px;}
.y14_c00341{bottom:771.690450px;}
.y13_c00341{bottom:802.740450px;}
.y12_c00341{bottom:830.460450px;}
.y11_c00341{bottom:854.040600px;}
.y10_c00341{bottom:877.710450px;}
.yf_c00341{bottom:901.380450px;}
.ye_c00341{bottom:925.050450px;}
.yd_c00341{bottom:948.720450px;}
.yc_c00341{bottom:967.800450px;}
.yb_c00341{bottom:1003.170450px;}
.ya_c00341{bottom:1033.140450px;}
.y9_c00341{bottom:1056.180450px;}
.y8_c00341{bottom:1093.260450px;}
.y7_c00341{bottom:1124.310450px;}
.y4_c00341{bottom:1144.380657px;}
.y3_c00341{bottom:1161.660648px;}
.y2_c00341{bottom:1178.850459px;}
.y1_c00341{bottom:1196.130450px;}
.h4_c00341{height:47.513672px;}
.h6_c00341{height:48.410156px;}
.h1_c00341{height:52.898555px;}
.h2_c00341{height:63.175781px;}
.h5_c00341{height:65.330156px;}
.h3_c00341{height:74.500840px;}
.h0_c00341{height:1263.000000px;}
.w1_c00341{width:892.500000px;}
.w0_c00341{width:892.830000px;}
.x0_c00341{left:0.000000px;}
.x4_c00341{left:127.620000px;}
.x5_c00341{left:328.410000px;}
.x7_c00341{left:350.640000px;}
.x6_c00341{left:496.620000px;}
.x1_c00341{left:649.620000px;}
.x3_c00341{left:738.450000px;}
.x2_c00341{left:765.450198px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.v1_c00341{vertical-align:15.040000pt;}
.ls15_c00341{letter-spacing:-0.134400pt;}
.ls14_c00341{letter-spacing:-0.110400pt;}
.ls18_c00341{letter-spacing:-0.100800pt;}
.ls16_c00341{letter-spacing:-0.091200pt;}
.ls1d_c00341{letter-spacing:-0.044800pt;}
.lsf_c00341{letter-spacing:-0.042752pt;}
.ls1b_c00341{letter-spacing:-0.038400pt;}
.ls1e_c00341{letter-spacing:-0.032000pt;}
.ls17_c00341{letter-spacing:-0.028800pt;}
.ls12_c00341{letter-spacing:-0.025600pt;}
.ls19_c00341{letter-spacing:-0.024000pt;}
.ls13_c00341{letter-spacing:-0.019200pt;}
.ls1c_c00341{letter-spacing:-0.012800pt;}
.ls11_c00341{letter-spacing:-0.006400pt;}
.ls10_c00341{letter-spacing:0.000000pt;}
.ls7_c00341{letter-spacing:0.006400pt;}
.ls3_c00341{letter-spacing:0.009600pt;}
.lsa_c00341{letter-spacing:0.012800pt;}
.lsc_c00341{letter-spacing:0.019200pt;}
.ls0_c00341{letter-spacing:0.025600pt;}
.ls9_c00341{letter-spacing:0.032000pt;}
.ls2_c00341{letter-spacing:0.037280pt;}
.ls6_c00341{letter-spacing:0.038400pt;}
.ls8_c00341{letter-spacing:0.044800pt;}
.lsb_c00341{letter-spacing:0.051200pt;}
.ls1_c00341{letter-spacing:0.057600pt;}
.lsd_c00341{letter-spacing:0.064000pt;}
.lse_c00341{letter-spacing:0.070400pt;}
.ls1a_c00341{letter-spacing:0.441600pt;}
.ls5_c00341{letter-spacing:65.697600pt;}
.ls4_c00341{letter-spacing:84.160000pt;}
.ws0_c00341{word-spacing:-13.233600pt;}
.ws2_c00341{word-spacing:0.000000pt;}
.ws1_c00341{word-spacing:0.122912pt;}
.ws3_c00341{word-spacing:0.148800pt;}
._5_c00341{margin-left:-2.356800pt;}
._8_c00341{margin-left:-0.912000pt;}
._2_c00341{width:1.075200pt;}
._c_c00341{width:2.220800pt;}
._1_c00341{width:3.724800pt;}
._0_c00341{width:5.094400pt;}
._d_c00341{width:7.462400pt;}
._b_c00341{width:8.633600pt;}
._a_c00341{width:13.113600pt;}
._e_c00341{width:23.955200pt;}
._6_c00341{width:77.128000pt;}
._7_c00341{width:313.816000pt;}
._4_c00341{width:335.209600pt;}
._3_c00341{width:386.241600pt;}
._9_c00341{width:398.166400pt;}
.fs3_c00341{font-size:48.000000pt;}
.fs0_c00341{font-size:53.440000pt;}
.fs1_c00341{font-size:64.000000pt;}
.fs2_c00341{font-size:74.560000pt;}
.y0_c00341{bottom:0.000000pt;}
.y6_c00341{bottom:50.987067pt;}
.y5_c00341{bottom:69.387067pt;}
.y29_c00341{bottom:106.347067pt;}
.y28_c00341{bottom:133.947067pt;}
.y27_c00341{bottom:161.547067pt;}
.y26_c00341{bottom:189.147067pt;}
.y25_c00341{bottom:216.747067pt;}
.y24_c00341{bottom:244.347067pt;}
.y23_c00341{bottom:271.947067pt;}
.y22_c00341{bottom:299.547067pt;}
.y21_c00341{bottom:327.147067pt;}
.y20_c00341{bottom:354.747067pt;}
.y1f_c00341{bottom:382.347067pt;}
.y1e_c00341{bottom:409.947067pt;}
.y1d_c00341{bottom:437.547067pt;}
.y1c_c00341{bottom:465.147067pt;}
.y1b_c00341{bottom:492.747067pt;}
.y1a_c00341{bottom:520.347067pt;}
.y19_c00341{bottom:547.947067pt;}
.y18_c00341{bottom:575.547067pt;}
.y17_c00341{bottom:603.147067pt;}
.y16_c00341{bottom:630.747067pt;}
.y15_c00341{bottom:658.347067pt;}
.y14_c00341{bottom:685.947067pt;}
.y13_c00341{bottom:713.547067pt;}
.y12_c00341{bottom:738.187067pt;}
.y11_c00341{bottom:759.147200pt;}
.y10_c00341{bottom:780.187067pt;}
.yf_c00341{bottom:801.227067pt;}
.ye_c00341{bottom:822.267067pt;}
.yd_c00341{bottom:843.307067pt;}
.yc_c00341{bottom:860.267067pt;}
.yb_c00341{bottom:891.707067pt;}
.ya_c00341{bottom:918.347067pt;}
.y9_c00341{bottom:938.827067pt;}
.y8_c00341{bottom:971.787067pt;}
.y7_c00341{bottom:999.387067pt;}
.y4_c00341{bottom:1017.227251pt;}
.y3_c00341{bottom:1032.587243pt;}
.y2_c00341{bottom:1047.867075pt;}
.y1_c00341{bottom:1063.227067pt;}
.h4_c00341{height:42.234375pt;}
.h6_c00341{height:43.031250pt;}
.h1_c00341{height:47.020937pt;}
.h2_c00341{height:56.156250pt;}
.h5_c00341{height:58.071250pt;}
.h3_c00341{height:66.222969pt;}
.h0_c00341{height:1122.666667pt;}
.w1_c00341{width:793.333333pt;}
.w0_c00341{width:793.626667pt;}
.x0_c00341{left:0.000000pt;}
.x4_c00341{left:113.440000pt;}
.x5_c00341{left:291.920000pt;}
.x7_c00341{left:311.680000pt;}
.x6_c00341{left:441.440000pt;}
.x1_c00341{left:577.440000pt;}
.x3_c00341{left:656.400000pt;}
.x2_c00341{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_db84776fd4648795201e711a.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.095703;font-style:normal;font-weight:normal;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_701618f0d258e29539078cfa.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:1.093262;font-style:normal;font-weight:normal;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_30322f3a9df1673ab369db4d.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00342;src:url('chunks/assets/font_c2544f007b0e58c5463a8b2d.woff2')format("woff");}.ff4_c00342{font-family:ff4_c00342;line-height:0.896973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00342;src:url('chunks/assets/font_3bd64a79fa364803b63afb65.woff2')format("woff");}.ff5_c00342{font-family:ff5_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:ff6_c00342;src:url('chunks/assets/font_4b91dfb5389bd678393f8686.woff2')format("woff");}.ff6_c00342{font-family:ff6_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;}
.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;}
.ls14_c00342{letter-spacing:-0.151200px;}
.ls12_c00342{letter-spacing:-0.124200px;}
.lsb_c00342{letter-spacing:-0.102204px;}
.ls16_c00342{letter-spacing:-0.091800px;}
.ls17_c00342{letter-spacing:-0.081000px;}
.ls11_c00342{letter-spacing:-0.079200px;}
.ls10_c00342{letter-spacing:-0.028800px;}
.lsf_c00342{letter-spacing:-0.007200px;}
.lsd_c00342{letter-spacing:-0.005400px;}
.lsc_c00342{letter-spacing:0.000000px;}
.ls3_c00342{letter-spacing:0.007200px;}
.ls7_c00342{letter-spacing:0.014400px;}
.lsa_c00342{letter-spacing:0.016200px;}
.ls1_c00342{letter-spacing:0.021600px;}
.ls5_c00342{letter-spacing:0.028800px;}
.ls9_c00342{letter-spacing:0.033552px;}
.lse_c00342{letter-spacing:0.041940px;}
.ls8_c00342{letter-spacing:0.050328px;}
.ls6_c00342{letter-spacing:0.057600px;}
.ls4_c00342{letter-spacing:0.100800px;}
.ls15_c00342{letter-spacing:0.156600px;}
.ls18_c00342{letter-spacing:0.496800px;}
.ls2_c00342{letter-spacing:49.680000px;}
.ls13_c00342{letter-spacing:204.238800px;}
.ls0_c00342{letter-spacing:1098.000000px;}
.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.936800px;}
.ws6_c00342{word-spacing:-0.199800px;}
.ws2_c00342{word-spacing:0.000000px;}
.ws5_c00342{word-spacing:0.162000px;}
.ws4_c00342{word-spacing:0.178200px;}
.ws3_c00342{word-spacing:0.183600px;}
.ws1_c00342{word-spacing:0.192384px;}
._b_c00342{margin-left:-204.357600px;}
._1_c00342{margin-left:-1.069200px;}
._0_c00342{width:1.034064px;}
._8_c00342{width:5.536800px;}
._5_c00342{width:10.382400px;}
._3_c00342{width:14.389200px;}
._6_c00342{width:28.742400px;}
._4_c00342{width:39.211200px;}
._7_c00342{width:40.658400px;}
._2_c00342{width:49.658400px;}
._f_c00342{width:95.796000px;}
._9_c00342{width:133.725600px;}
._c_c00342{width:139.870800px;}
._a_c00342{width:143.107200px;}
._e_c00342{width:260.290800px;}
._d_c00342{width:270.788400px;}
._10_c00342{width:306.903600px;}
.fc5_c00342{color:rgb(38,74,96);}
.fc3_c00342{color:rgb(255,0,0);}
.fc4_c00342{color:rgb(1,2,5);}
.fc2_c00342{color:rgb(68,84,106);}
.fc1_c00342{color:rgb(0,0,0);}
.fc0_c00342{color:rgb(32,31,30);}
.fs2_c00342{font-size:54.000000px;}
.fs0_c00342{font-size:60.120000px;}
.fs1_c00342{font-size:72.000000px;}
.fs3_c00342{font-size:83.880000px;}
.y0_c00342{bottom:0.000000px;}
.y22_c00342{bottom:3.240450px;}
.y5_c00342{bottom:57.360450px;}
.y4_c00342{bottom:78.060450px;}
.y20_c00342{bottom:148.800450px;}
.y1f_c00342{bottom:176.520450px;}
.y1e_c00342{bottom:200.190450px;}
.y1d_c00342{bottom:223.860450px;}
.y1c_c00342{bottom:247.530450px;}
.y1b_c00342{bottom:271.200450px;}
.y19_c00342{bottom:298.380450px;}
.y18_c00342{bottom:329.430450px;}
.y17_c00342{bottom:360.480450px;}
.y16_c00342{bottom:391.530450px;}
.y1a_c00342{bottom:395.760450px;}
.y15_c00342{bottom:426.900450px;}
.y14_c00342{bottom:456.870600px;}
.y13_c00342{bottom:479.910450px;}
.y12_c00342{bottom:517.260450px;}
.y11_c00342{bottom:550.470450px;}
.y10_c00342{bottom:596.550450px;}
.yf_c00342{bottom:639.570450px;}
.ye_c00342{bottom:670.710450px;}
.yd_c00342{bottom:701.760450px;}
.yc_c00342{bottom:732.810450px;}
.yb_c00342{bottom:763.860450px;}
.ya_c00342{bottom:794.910450px;}
.y9_c00342{bottom:825.960450px;}
.y21_c00342{bottom:871.950000px;}
.y23_c00342{bottom:875.190450px;}
.y8_c00342{bottom:918.750450px;}
.y7_c00342{bottom:945.750450px;}
.y6_c00342{bottom:1115.760450px;}
.y3_c00342{bottom:1132.140450px;}
.y2_c00342{bottom:1165.441023px;}
.y1_c00342{bottom:1196.040600px;}
.h7_c00342{height:15.300000px;}
.h3_c00342{height:47.513672px;}
.h6_c00342{height:48.410156px;}
.h1_c00342{height:52.898555px;}
.h2_c00342{height:63.175781px;}
.h5_c00342{height:65.003906px;}
.h4_c00342{height:74.500840px;}
.h0_c00342{height:1263.000000px;}
.w2_c00342{width:288.360000px;}
.w1_c00342{width:892.500000px;}
.w0_c00342{width:892.830000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:127.620000px;}
.x8_c00342{left:133.110000px;}
.x9_c00342{left:283.140000px;}
.x5_c00342{left:327.960000px;}
.x7_c00342{left:382.770000px;}
.x4_c00342{left:404.550000px;}
.x3_c00342{left:454.950000px;}
.x6_c00342{left:493.470000px;}
.x2_c00342{left:738.450000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls14_c00342{letter-spacing:-0.134400pt;}
.ls12_c00342{letter-spacing:-0.110400pt;}
.lsb_c00342{letter-spacing:-0.090848pt;}
.ls16_c00342{letter-spacing:-0.081600pt;}
.ls17_c00342{letter-spacing:-0.072000pt;}
.ls11_c00342{letter-spacing:-0.070400pt;}
.ls10_c00342{letter-spacing:-0.025600pt;}
.lsf_c00342{letter-spacing:-0.006400pt;}
.lsd_c00342{letter-spacing:-0.004800pt;}
.lsc_c00342{letter-spacing:0.000000pt;}
.ls3_c00342{letter-spacing:0.006400pt;}
.ls7_c00342{letter-spacing:0.012800pt;}
.lsa_c00342{letter-spacing:0.014400pt;}
.ls1_c00342{letter-spacing:0.019200pt;}
.ls5_c00342{letter-spacing:0.025600pt;}
.ls9_c00342{letter-spacing:0.029824pt;}
.lse_c00342{letter-spacing:0.037280pt;}
.ls8_c00342{letter-spacing:0.044736pt;}
.ls6_c00342{letter-spacing:0.051200pt;}
.ls4_c00342{letter-spacing:0.089600pt;}
.ls15_c00342{letter-spacing:0.139200pt;}
.ls18_c00342{letter-spacing:0.441600pt;}
.ls2_c00342{letter-spacing:44.160000pt;}
.ls13_c00342{letter-spacing:181.545600pt;}
.ls0_c00342{letter-spacing:976.000000pt;}
.ws0_c00342{word-spacing:-17.721600pt;}
.ws6_c00342{word-spacing:-0.177600pt;}
.ws2_c00342{word-spacing:0.000000pt;}
.ws5_c00342{word-spacing:0.144000pt;}
.ws4_c00342{word-spacing:0.158400pt;}
.ws3_c00342{word-spacing:0.163200pt;}
.ws1_c00342{word-spacing:0.171008pt;}
._b_c00342{margin-left:-181.651200pt;}
._1_c00342{margin-left:-0.950400pt;}
._0_c00342{width:0.919168pt;}
._8_c00342{width:4.921600pt;}
._5_c00342{width:9.228800pt;}
._3_c00342{width:12.790400pt;}
._6_c00342{width:25.548800pt;}
._4_c00342{width:34.854400pt;}
._7_c00342{width:36.140800pt;}
._2_c00342{width:44.140800pt;}
._f_c00342{width:85.152000pt;}
._9_c00342{width:118.867200pt;}
._c_c00342{width:124.329600pt;}
._a_c00342{width:127.206400pt;}
._e_c00342{width:231.369600pt;}
._d_c00342{width:240.700800pt;}
._10_c00342{width:272.803200pt;}
.fs2_c00342{font-size:48.000000pt;}
.fs0_c00342{font-size:53.440000pt;}
.fs1_c00342{font-size:64.000000pt;}
.fs3_c00342{font-size:74.560000pt;}
.y0_c00342{bottom:0.000000pt;}
.y22_c00342{bottom:2.880400pt;}
.y5_c00342{bottom:50.987067pt;}
.y4_c00342{bottom:69.387067pt;}
.y20_c00342{bottom:132.267067pt;}
.y1f_c00342{bottom:156.907067pt;}
.y1e_c00342{bottom:177.947067pt;}
.y1d_c00342{bottom:198.987067pt;}
.y1c_c00342{bottom:220.027067pt;}
.y1b_c00342{bottom:241.067067pt;}
.y19_c00342{bottom:265.227067pt;}
.y18_c00342{bottom:292.827067pt;}
.y17_c00342{bottom:320.427067pt;}
.y16_c00342{bottom:348.027067pt;}
.y1a_c00342{bottom:351.787067pt;}
.y15_c00342{bottom:379.467067pt;}
.y14_c00342{bottom:406.107200pt;}
.y13_c00342{bottom:426.587067pt;}
.y12_c00342{bottom:459.787067pt;}
.y11_c00342{bottom:489.307067pt;}
.y10_c00342{bottom:530.267067pt;}
.yf_c00342{bottom:568.507067pt;}
.ye_c00342{bottom:596.187067pt;}
.yd_c00342{bottom:623.787067pt;}
.yc_c00342{bottom:651.387067pt;}
.yb_c00342{bottom:678.987067pt;}
.ya_c00342{bottom:706.587067pt;}
.y9_c00342{bottom:734.187067pt;}
.y21_c00342{bottom:775.066667pt;}
.y23_c00342{bottom:777.947067pt;}
.y8_c00342{bottom:816.667067pt;}
.y7_c00342{bottom:840.667067pt;}
.y6_c00342{bottom:991.787067pt;}
.y3_c00342{bottom:1006.347067pt;}
.y2_c00342{bottom:1035.947576pt;}
.y1_c00342{bottom:1063.147200pt;}
.h7_c00342{height:13.600000pt;}
.h3_c00342{height:42.234375pt;}
.h6_c00342{height:43.031250pt;}
.h1_c00342{height:47.020937pt;}
.h2_c00342{height:56.156250pt;}
.h5_c00342{height:57.781250pt;}
.h4_c00342{height:66.222969pt;}
.h0_c00342{height:1122.666667pt;}
.w2_c00342{width:256.320000pt;}
.w1_c00342{width:793.333333pt;}
.w0_c00342{width:793.626667pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:113.440000pt;}
.x8_c00342{left:118.320000pt;}
.x9_c00342{left:251.680000pt;}
.x5_c00342{left:291.520000pt;}
.x7_c00342{left:340.240000pt;}
.x4_c00342{left:359.600000pt;}
.x3_c00342{left:404.400000pt;}
.x6_c00342{left:438.640000pt;}
.x2_c00342{left:656.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_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_fa09f10df8fc7fc3b851470c.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.095703;font-style:normal;font-weight:normal;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_5113e37f661633cba7ba30cb.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.093262;font-style:normal;font-weight:normal;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_6dc97b153face976d55a0b38.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_eb55b0cfdd1577a74f4f4949.woff2')format("woff");}.ff4_c00343{font-family:ff4_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:ff5_c00343;src:url('chunks/assets/font_7bede7a9acbfd7bc7029960d.woff2')format("woff");}.ff5_c00343{font-family:ff5_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;}
.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;}
.ls10_c00343{letter-spacing:-0.252000px;}
.ls13_c00343{letter-spacing:-0.216000px;}
.ls19_c00343{letter-spacing:-0.151200px;}
.ls17_c00343{letter-spacing:-0.124200px;}
.ls18_c00343{letter-spacing:-0.113400px;}
.ls1c_c00343{letter-spacing:-0.091800px;}
.ls1d_c00343{letter-spacing:-0.081000px;}
.ls1b_c00343{letter-spacing:-0.064800px;}
.ls14_c00343{letter-spacing:-0.057600px;}
.ls11_c00343{letter-spacing:-0.050400px;}
.lse_c00343{letter-spacing:-0.048096px;}
.ls16_c00343{letter-spacing:-0.043200px;}
.ls15_c00343{letter-spacing:-0.028800px;}
.ls12_c00343{letter-spacing:-0.007200px;}
.lsf_c00343{letter-spacing:0.000000px;}
.ls9_c00343{letter-spacing:0.007200px;}
.lsc_c00343{letter-spacing:0.010800px;}
.ls5_c00343{letter-spacing:0.014400px;}
.ls4_c00343{letter-spacing:0.021600px;}
.ls7_c00343{letter-spacing:0.028800px;}
.ls3_c00343{letter-spacing:0.036000px;}
.lsb_c00343{letter-spacing:0.041940px;}
.ls0_c00343{letter-spacing:0.050400px;}
.lsd_c00343{letter-spacing:0.064800px;}
.lsa_c00343{letter-spacing:0.072000px;}
.ls6_c00343{letter-spacing:0.079200px;}
.ls2_c00343{letter-spacing:0.086400px;}
.ls1_c00343{letter-spacing:0.093600px;}
.ls8_c00343{letter-spacing:0.122400px;}
.ls1a_c00343{letter-spacing:0.124200px;}
.ls1e_c00343{letter-spacing:0.496800px;}
.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:-20.023200px;}
.ws3_c00343{word-spacing:-2.246400px;}
.ws2_c00343{word-spacing:0.000000px;}
.ws1_c00343{word-spacing:0.138276px;}
.ws4_c00343{word-spacing:0.167400px;}
._3_c00343{margin-left:-3.160800px;}
._1_c00343{margin-left:-1.260000px;}
._2_c00343{width:1.159200px;}
._5_c00343{width:2.880000px;}
._6_c00343{width:4.600800px;}
._0_c00343{width:6.069600px;}
._f_c00343{width:8.971200px;}
._4_c00343{width:12.204000px;}
._e_c00343{width:13.780800px;}
._c_c00343{width:95.796000px;}
._a_c00343{width:107.438400px;}
._7_c00343{width:186.348600px;}
._9_c00343{width:243.734400px;}
._8_c00343{width:251.622000px;}
._b_c00343{width:260.290800px;}
._d_c00343{width:307.285200px;}
.fc3_c00343{color:rgb(38,74,96);}
.fc2_c00343{color:rgb(1,2,5);}
.fc1_c00343{color:rgb(68,84,106);}
.fc0_c00343{color:rgb(0,0,0);}
.fs3_c00343{font-size:54.000000px;}
.fs0_c00343{font-size:60.120000px;}
.fs1_c00343{font-size:72.000000px;}
.fs2_c00343{font-size:83.880000px;}
.y0_c00343{bottom:0.000000px;}
.y6_c00343{bottom:57.360450px;}
.y5_c00343{bottom:78.060450px;}
.y29_c00343{bottom:142.590450px;}
.y28_c00343{bottom:173.640450px;}
.y27_c00343{bottom:204.690450px;}
.y26_c00343{bottom:235.740450px;}
.y25_c00343{bottom:263.460450px;}
.y24_c00343{bottom:287.130450px;}
.y23_c00343{bottom:310.710600px;}
.y22_c00343{bottom:334.380450px;}
.y21_c00343{bottom:358.050450px;}
.y20_c00343{bottom:381.720450px;}
.y1e_c00343{bottom:408.900450px;}
.y1d_c00343{bottom:439.950600px;}
.y1f_c00343{bottom:444.180600px;}
.y1c_c00343{bottom:475.410450px;}
.y1b_c00343{bottom:505.290600px;}
.y1a_c00343{bottom:528.420450px;}
.y19_c00343{bottom:565.500450px;}
.y18_c00343{bottom:596.550450px;}
.y17_c00343{bottom:627.600450px;}
.y16_c00343{bottom:658.650450px;}
.y15_c00343{bottom:689.700450px;}
.y14_c00343{bottom:720.750450px;}
.y13_c00343{bottom:751.800450px;}
.y12_c00343{bottom:782.850450px;}
.y11_c00343{bottom:813.900450px;}
.y10_c00343{bottom:844.950450px;}
.yf_c00343{bottom:876.000450px;}
.ye_c00343{bottom:907.050450px;}
.yd_c00343{bottom:938.100450px;}
.yc_c00343{bottom:969.150450px;}
.yb_c00343{bottom:1000.200450px;}
.ya_c00343{bottom:1031.160450px;}
.y9_c00343{bottom:1062.210450px;}
.y8_c00343{bottom:1093.260450px;}
.y7_c00343{bottom:1124.310450px;}
.y4_c00343{bottom:1144.380657px;}
.y3_c00343{bottom:1161.660648px;}
.y2_c00343{bottom:1178.850459px;}
.y1_c00343{bottom:1196.130450px;}
.h5_c00343{height:47.513672px;}
.h7_c00343{height:48.410156px;}
.h1_c00343{height:52.898555px;}
.h2_c00343{height:63.175781px;}
.h3_c00343{height:63.351562px;}
.h6_c00343{height:65.003906px;}
.h4_c00343{height:74.500840px;}
.h0_c00343{height:1263.000000px;}
.w1_c00343{width:892.500000px;}
.w0_c00343{width:892.830000px;}
.x0_c00343{left:0.000000px;}
.x4_c00343{left:127.620000px;}
.x5_c00343{left:327.960000px;}
.x7_c00343{left:332.460000px;}
.x8_c00343{left:382.770000px;}
.x6_c00343{left:493.470000px;}
.x1_c00343{left:649.620000px;}
.x3_c00343{left:738.450000px;}
.x2_c00343{left:765.450198px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls10_c00343{letter-spacing:-0.224000pt;}
.ls13_c00343{letter-spacing:-0.192000pt;}
.ls19_c00343{letter-spacing:-0.134400pt;}
.ls17_c00343{letter-spacing:-0.110400pt;}
.ls18_c00343{letter-spacing:-0.100800pt;}
.ls1c_c00343{letter-spacing:-0.081600pt;}
.ls1d_c00343{letter-spacing:-0.072000pt;}
.ls1b_c00343{letter-spacing:-0.057600pt;}
.ls14_c00343{letter-spacing:-0.051200pt;}
.ls11_c00343{letter-spacing:-0.044800pt;}
.lse_c00343{letter-spacing:-0.042752pt;}
.ls16_c00343{letter-spacing:-0.038400pt;}
.ls15_c00343{letter-spacing:-0.025600pt;}
.ls12_c00343{letter-spacing:-0.006400pt;}
.lsf_c00343{letter-spacing:0.000000pt;}
.ls9_c00343{letter-spacing:0.006400pt;}
.lsc_c00343{letter-spacing:0.009600pt;}
.ls5_c00343{letter-spacing:0.012800pt;}
.ls4_c00343{letter-spacing:0.019200pt;}
.ls7_c00343{letter-spacing:0.025600pt;}
.ls3_c00343{letter-spacing:0.032000pt;}
.lsb_c00343{letter-spacing:0.037280pt;}
.ls0_c00343{letter-spacing:0.044800pt;}
.lsd_c00343{letter-spacing:0.057600pt;}
.lsa_c00343{letter-spacing:0.064000pt;}
.ls6_c00343{letter-spacing:0.070400pt;}
.ls2_c00343{letter-spacing:0.076800pt;}
.ls1_c00343{letter-spacing:0.083200pt;}
.ls8_c00343{letter-spacing:0.108800pt;}
.ls1a_c00343{letter-spacing:0.110400pt;}
.ls1e_c00343{letter-spacing:0.441600pt;}
.ws0_c00343{word-spacing:-17.798400pt;}
.ws3_c00343{word-spacing:-1.996800pt;}
.ws2_c00343{word-spacing:0.000000pt;}
.ws1_c00343{word-spacing:0.122912pt;}
.ws4_c00343{word-spacing:0.148800pt;}
._3_c00343{margin-left:-2.809600pt;}
._1_c00343{margin-left:-1.120000pt;}
._2_c00343{width:1.030400pt;}
._5_c00343{width:2.560000pt;}
._6_c00343{width:4.089600pt;}
._0_c00343{width:5.395200pt;}
._f_c00343{width:7.974400pt;}
._4_c00343{width:10.848000pt;}
._e_c00343{width:12.249600pt;}
._c_c00343{width:85.152000pt;}
._a_c00343{width:95.500800pt;}
._7_c00343{width:165.643200pt;}
._9_c00343{width:216.652800pt;}
._8_c00343{width:223.664000pt;}
._b_c00343{width:231.369600pt;}
._d_c00343{width:273.142400pt;}
.fs3_c00343{font-size:48.000000pt;}
.fs0_c00343{font-size:53.440000pt;}
.fs1_c00343{font-size:64.000000pt;}
.fs2_c00343{font-size:74.560000pt;}
.y0_c00343{bottom:0.000000pt;}
.y6_c00343{bottom:50.987067pt;}
.y5_c00343{bottom:69.387067pt;}
.y29_c00343{bottom:126.747067pt;}
.y28_c00343{bottom:154.347067pt;}
.y27_c00343{bottom:181.947067pt;}
.y26_c00343{bottom:209.547067pt;}
.y25_c00343{bottom:234.187067pt;}
.y24_c00343{bottom:255.227067pt;}
.y23_c00343{bottom:276.187200pt;}
.y22_c00343{bottom:297.227067pt;}
.y21_c00343{bottom:318.267067pt;}
.y20_c00343{bottom:339.307067pt;}
.y1e_c00343{bottom:363.467067pt;}
.y1d_c00343{bottom:391.067200pt;}
.y1f_c00343{bottom:394.827200pt;}
.y1c_c00343{bottom:422.587067pt;}
.y1b_c00343{bottom:449.147200pt;}
.y1a_c00343{bottom:469.707067pt;}
.y19_c00343{bottom:502.667067pt;}
.y18_c00343{bottom:530.267067pt;}
.y17_c00343{bottom:557.867067pt;}
.y16_c00343{bottom:585.467067pt;}
.y15_c00343{bottom:613.067067pt;}
.y14_c00343{bottom:640.667067pt;}
.y13_c00343{bottom:668.267067pt;}
.y12_c00343{bottom:695.867067pt;}
.y11_c00343{bottom:723.467067pt;}
.y10_c00343{bottom:751.067067pt;}
.yf_c00343{bottom:778.667067pt;}
.ye_c00343{bottom:806.267067pt;}
.yd_c00343{bottom:833.867067pt;}
.yc_c00343{bottom:861.467067pt;}
.yb_c00343{bottom:889.067067pt;}
.ya_c00343{bottom:916.587067pt;}
.y9_c00343{bottom:944.187067pt;}
.y8_c00343{bottom:971.787067pt;}
.y7_c00343{bottom:999.387067pt;}
.y4_c00343{bottom:1017.227251pt;}
.y3_c00343{bottom:1032.587243pt;}
.y2_c00343{bottom:1047.867075pt;}
.y1_c00343{bottom:1063.227067pt;}
.h5_c00343{height:42.234375pt;}
.h7_c00343{height:43.031250pt;}
.h1_c00343{height:47.020937pt;}
.h2_c00343{height:56.156250pt;}
.h3_c00343{height:56.312500pt;}
.h6_c00343{height:57.781250pt;}
.h4_c00343{height:66.222969pt;}
.h0_c00343{height:1122.666667pt;}
.w1_c00343{width:793.333333pt;}
.w0_c00343{width:793.626667pt;}
.x0_c00343{left:0.000000pt;}
.x4_c00343{left:113.440000pt;}
.x5_c00343{left:291.520000pt;}
.x7_c00343{left:295.520000pt;}
.x8_c00343{left:340.240000pt;}
.x6_c00343{left:438.640000pt;}
.x1_c00343{left:577.440000pt;}
.x3_c00343{left:656.400000pt;}
.x2_c00343{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42569ecef4b547df94914d1f.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.095703;font-style:normal;font-weight:normal;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_967827654d5dead9e8b9747d.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:1.093262;font-style: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;}
.lse_c00344{letter-spacing:-0.102204px;}
.ls15_c00344{letter-spacing:-0.086400px;}
.ls12_c00344{letter-spacing:-0.079200px;}
.ls10_c00344{letter-spacing:-0.064800px;}
.ls1d_c00344{letter-spacing:-0.048600px;}
.ls11_c00344{letter-spacing:-0.036000px;}
.ls1c_c00344{letter-spacing:-0.032400px;}
.ls13_c00344{letter-spacing:-0.028800px;}
.ls14_c00344{letter-spacing:-0.021600px;}
.ls17_c00344{letter-spacing:-0.014400px;}
.ls19_c00344{letter-spacing:-0.007200px;}
.lsf_c00344{letter-spacing:0.000000px;}
.ls0_c00344{letter-spacing:0.007200px;}
.ls2_c00344{letter-spacing:0.014400px;}
.ls1_c00344{letter-spacing:0.021600px;}
.ls3_c00344{letter-spacing:0.028800px;}
.ls9_c00344{letter-spacing:0.036000px;}
.ls8_c00344{letter-spacing:0.043200px;}
.lsc_c00344{letter-spacing:0.050400px;}
.ls7_c00344{letter-spacing:0.064800px;}
.ls4_c00344{letter-spacing:0.072000px;}
.lsd_c00344{letter-spacing:0.075600px;}
.lsb_c00344{letter-spacing:0.079200px;}
.ls5_c00344{letter-spacing:0.086400px;}
.lsa_c00344{letter-spacing:0.108000px;}
.ls6_c00344{letter-spacing:0.165600px;}
.ls1b_c00344{letter-spacing:3.240000px;}
.ls1a_c00344{letter-spacing:5.760000px;}
.ls16_c00344{letter-spacing:7.560000px;}
.ls18_c00344{letter-spacing:9.698400px;}
.ls1e_c00344{letter-spacing:756.000000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00344{word-spacing:-18.043200px;}
.ws1_c00344{word-spacing:-13.575600px;}
.ws3_c00344{word-spacing:0.000000px;}
.ws2_c00344{word-spacing:0.192384px;}
.ws4_c00344{word-spacing:12.967200px;}
.ws5_c00344{word-spacing:13.532400px;}
.ws6_c00344{word-spacing:13.548600px;}
._12_c00344{margin-left:-756.000000px;}
._7_c00344{margin-left:-9.756000px;}
._6_c00344{margin-left:-8.697600px;}
._5_c00344{margin-left:-7.416000px;}
._b_c00344{margin-left:-6.004800px;}
._e_c00344{margin-left:-3.909600px;}
._d_c00344{margin-left:-2.772000px;}
._2_c00344{margin-left:-1.137600px;}
._0_c00344{width:1.034064px;}
._1_c00344{width:2.880000px;}
._3_c00344{width:5.018400px;}
._c_c00344{width:6.429600px;}
._4_c00344{width:7.531200px;}
._8_c00344{width:8.992800px;}
._a_c00344{width:11.772000px;}
._9_c00344{width:12.938400px;}
._10_c00344{width:15.249600px;}
._11_c00344{width:16.466400px;}
._f_c00344{width:20.865600px;}
._13_c00344{width:81.000000px;}
.fc2_c00344{color:rgb(68,84,106);}
.fc1_c00344{color:rgb(0,0,0);}
.fc0_c00344{color:rgb(32,31,30);}
.fs2_c00344{font-size:54.000000px;}
.fs0_c00344{font-size:60.120000px;}
.fs1_c00344{font-size:72.000000px;}
.y0_c00344{bottom:0.000000px;}
.y5_c00344{bottom:57.360450px;}
.y4_c00344{bottom:78.060450px;}
.y23_c00344{bottom:124.230450px;}
.y22_c00344{bottom:155.280450px;}
.y21_c00344{bottom:186.330450px;}
.y20_c00344{bottom:217.380450px;}
.y1f_c00344{bottom:244.380450px;}
.y1e_c00344{bottom:378.390600px;}
.y1d_c00344{bottom:401.610600px;}
.y1c_c00344{bottom:428.340450px;}
.y1b_c00344{bottom:459.390450px;}
.y1a_c00344{bottom:490.440450px;}
.y19_c00344{bottom:521.490450px;}
.y18_c00344{bottom:552.540450px;}
.y17_c00344{bottom:583.590450px;}
.y16_c00344{bottom:614.640450px;}
.y15_c00344{bottom:645.690450px;}
.y14_c00344{bottom:676.740450px;}
.y13_c00344{bottom:707.790450px;}
.y12_c00344{bottom:738.840450px;}
.y11_c00344{bottom:769.890450px;}
.y10_c00344{bottom:800.940450px;}
.yf_c00344{bottom:831.990450px;}
.ye_c00344{bottom:863.040450px;}
.yd_c00344{bottom:894.090450px;}
.yc_c00344{bottom:925.140450px;}
.yb_c00344{bottom:956.190450px;}
.ya_c00344{bottom:987.240450px;}
.y9_c00344{bottom:1018.290450px;}
.y8_c00344{bottom:1049.340450px;}
.y7_c00344{bottom:1080.390450px;}
.y6_c00344{bottom:1111.440450px;}
.y3_c00344{bottom:1132.140450px;}
.y2_c00344{bottom:1165.441023px;}
.y1_c00344{bottom:1196.040600px;}
.h4_c00344{height:47.513672px;}
.h1_c00344{height:52.898555px;}
.h2_c00344{height:63.175781px;}
.h5_c00344{height:63.350962px;}
.h3_c00344{height:63.351562px;}
.h0_c00344{height:1263.000000px;}
.w1_c00344{width:892.500000px;}
.w0_c00344{width:892.830000px;}
.x0_c00344{left:0.000000px;}
.x1_c00344{left:127.620000px;}
.x3_c00344{left:342.450000px;}
.x2_c00344{left:738.450000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.lse_c00344{letter-spacing:-0.090848pt;}
.ls15_c00344{letter-spacing:-0.076800pt;}
.ls12_c00344{letter-spacing:-0.070400pt;}
.ls10_c00344{letter-spacing:-0.057600pt;}
.ls1d_c00344{letter-spacing:-0.043200pt;}
.ls11_c00344{letter-spacing:-0.032000pt;}
.ls1c_c00344{letter-spacing:-0.028800pt;}
.ls13_c00344{letter-spacing:-0.025600pt;}
.ls14_c00344{letter-spacing:-0.019200pt;}
.ls17_c00344{letter-spacing:-0.012800pt;}
.ls19_c00344{letter-spacing:-0.006400pt;}
.lsf_c00344{letter-spacing:0.000000pt;}
.ls0_c00344{letter-spacing:0.006400pt;}
.ls2_c00344{letter-spacing:0.012800pt;}
.ls1_c00344{letter-spacing:0.019200pt;}
.ls3_c00344{letter-spacing:0.025600pt;}
.ls9_c00344{letter-spacing:0.032000pt;}
.ls8_c00344{letter-spacing:0.038400pt;}
.lsc_c00344{letter-spacing:0.044800pt;}
.ls7_c00344{letter-spacing:0.057600pt;}
.ls4_c00344{letter-spacing:0.064000pt;}
.lsd_c00344{letter-spacing:0.067200pt;}
.lsb_c00344{letter-spacing:0.070400pt;}
.ls5_c00344{letter-spacing:0.076800pt;}
.lsa_c00344{letter-spacing:0.096000pt;}
.ls6_c00344{letter-spacing:0.147200pt;}
.ls1b_c00344{letter-spacing:2.880000pt;}
.ls1a_c00344{letter-spacing:5.120000pt;}
.ls16_c00344{letter-spacing:6.720000pt;}
.ls18_c00344{letter-spacing:8.620800pt;}
.ls1e_c00344{letter-spacing:672.000000pt;}
.ws0_c00344{word-spacing:-16.038400pt;}
.ws1_c00344{word-spacing:-12.067200pt;}
.ws3_c00344{word-spacing:0.000000pt;}
.ws2_c00344{word-spacing:0.171008pt;}
.ws4_c00344{word-spacing:11.526400pt;}
.ws5_c00344{word-spacing:12.028800pt;}
.ws6_c00344{word-spacing:12.043200pt;}
._12_c00344{margin-left:-672.000000pt;}
._7_c00344{margin-left:-8.672000pt;}
._6_c00344{margin-left:-7.731200pt;}
._5_c00344{margin-left:-6.592000pt;}
._b_c00344{margin-left:-5.337600pt;}
._e_c00344{margin-left:-3.475200pt;}
._d_c00344{margin-left:-2.464000pt;}
._2_c00344{margin-left:-1.011200pt;}
._0_c00344{width:0.919168pt;}
._1_c00344{width:2.560000pt;}
._3_c00344{width:4.460800pt;}
._c_c00344{width:5.715200pt;}
._4_c00344{width:6.694400pt;}
._8_c00344{width:7.993600pt;}
._a_c00344{width:10.464000pt;}
._9_c00344{width:11.500800pt;}
._10_c00344{width:13.555200pt;}
._11_c00344{width:14.636800pt;}
._f_c00344{width:18.547200pt;}
._13_c00344{width:72.000000pt;}
.fs2_c00344{font-size:48.000000pt;}
.fs0_c00344{font-size:53.440000pt;}
.fs1_c00344{font-size:64.000000pt;}
.y0_c00344{bottom:0.000000pt;}
.y5_c00344{bottom:50.987067pt;}
.y4_c00344{bottom:69.387067pt;}
.y23_c00344{bottom:110.427067pt;}
.y22_c00344{bottom:138.027067pt;}
.y21_c00344{bottom:165.627067pt;}
.y20_c00344{bottom:193.227067pt;}
.y1f_c00344{bottom:217.227067pt;}
.y1e_c00344{bottom:336.347200pt;}
.y1d_c00344{bottom:356.987200pt;}
.y1c_c00344{bottom:380.747067pt;}
.y1b_c00344{bottom:408.347067pt;}
.y1a_c00344{bottom:435.947067pt;}
.y19_c00344{bottom:463.547067pt;}
.y18_c00344{bottom:491.147067pt;}
.y17_c00344{bottom:518.747067pt;}
.y16_c00344{bottom:546.347067pt;}
.y15_c00344{bottom:573.947067pt;}
.y14_c00344{bottom:601.547067pt;}
.y13_c00344{bottom:629.147067pt;}
.y12_c00344{bottom:656.747067pt;}
.y11_c00344{bottom:684.347067pt;}
.y10_c00344{bottom:711.947067pt;}
.yf_c00344{bottom:739.547067pt;}
.ye_c00344{bottom:767.147067pt;}
.yd_c00344{bottom:794.747067pt;}
.yc_c00344{bottom:822.347067pt;}
.yb_c00344{bottom:849.947067pt;}
.ya_c00344{bottom:877.547067pt;}
.y9_c00344{bottom:905.147067pt;}
.y8_c00344{bottom:932.747067pt;}
.y7_c00344{bottom:960.347067pt;}
.y6_c00344{bottom:987.947067pt;}
.y3_c00344{bottom:1006.347067pt;}
.y2_c00344{bottom:1035.947576pt;}
.y1_c00344{bottom:1063.147200pt;}
.h4_c00344{height:42.234375pt;}
.h1_c00344{height:47.020937pt;}
.h2_c00344{height:56.156250pt;}
.h5_c00344{height:56.311967pt;}
.h3_c00344{height:56.312500pt;}
.h0_c00344{height:1122.666667pt;}
.w1_c00344{width:793.333333pt;}
.w0_c00344{width:793.626667pt;}
.x0_c00344{left:0.000000pt;}
.x1_c00344{left:113.440000pt;}
.x3_c00344{left:304.400000pt;}
.x2_c00344{left:656.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_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_726ac14b060ae2f88f749a34.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.095703;font-style:normal;font-weight:normal;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_019425753559261066b067c8.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.093262;font-style: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;}
.lsf_c00345{letter-spacing:-0.072000px;}
.lsc_c00345{letter-spacing:-0.048096px;}
.ls10_c00345{letter-spacing:-0.043200px;}
.lse_c00345{letter-spacing:-0.036000px;}
.ls11_c00345{letter-spacing:-0.021600px;}
.ls12_c00345{letter-spacing:-0.007200px;}
.lsd_c00345{letter-spacing:0.000000px;}
.ls2_c00345{letter-spacing:0.007200px;}
.ls9_c00345{letter-spacing:0.010800px;}
.lsa_c00345{letter-spacing:0.014400px;}
.ls5_c00345{letter-spacing:0.021600px;}
.ls3_c00345{letter-spacing:0.028800px;}
.ls6_c00345{letter-spacing:0.036000px;}
.ls0_c00345{letter-spacing:0.043200px;}
.lsb_c00345{letter-spacing:0.050400px;}
.ls8_c00345{letter-spacing:0.057600px;}
.ls1_c00345{letter-spacing:0.064800px;}
.ls4_c00345{letter-spacing:0.072000px;}
.ls7_c00345{letter-spacing:0.086400px;}
.ls13_c00345{letter-spacing:9.000000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00345{word-spacing:0.000000px;}
.ws0_c00345{word-spacing:0.138276px;}
.ws2_c00345{word-spacing:0.167400px;}
._a_c00345{margin-left:-9.331200px;}
._b_c00345{margin-left:-7.920000px;}
._6_c00345{margin-left:-4.752000px;}
._1_c00345{margin-left:-3.218400px;}
._0_c00345{margin-left:-2.203200px;}
._4_c00345{margin-left:-1.180800px;}
._c_c00345{width:1.699200px;}
._5_c00345{width:3.254400px;}
._2_c00345{width:4.312800px;}
._d_c00345{width:5.385600px;}
._8_c00345{width:6.436800px;}
._9_c00345{width:8.964000px;}
._7_c00345{width:9.979200px;}
._3_c00345{width:11.131200px;}
.fc1_c00345{color:rgb(68,84,106);}
.fc0_c00345{color:rgb(0,0,0);}
.fs2_c00345{font-size:54.000000px;}
.fs0_c00345{font-size:60.120000px;}
.fs1_c00345{font-size:72.000000px;}
.y0_c00345{bottom:0.000000px;}
.y6_c00345{bottom:57.360450px;}
.y5_c00345{bottom:78.060450px;}
.y1b_c00345{bottom:132.240600px;}
.y1a_c00345{bottom:163.290600px;}
.y19_c00345{bottom:194.340600px;}
.y18_c00345{bottom:225.390600px;}
.y17_c00345{bottom:256.440600px;}
.y16_c00345{bottom:287.490600px;}
.y15_c00345{bottom:318.540600px;}
.y14_c00345{bottom:349.590600px;}
.y13_c00345{bottom:380.640600px;}
.y12_c00345{bottom:411.690600px;}
.y11_c00345{bottom:442.650600px;}
.y10_c00345{bottom:459.210600px;}
.yf_c00345{bottom:880.320450px;}
.ye_c00345{bottom:907.050450px;}
.yd_c00345{bottom:938.100450px;}
.yc_c00345{bottom:969.150450px;}
.yb_c00345{bottom:1000.200450px;}
.ya_c00345{bottom:1031.160450px;}
.y9_c00345{bottom:1062.210450px;}
.y8_c00345{bottom:1093.260450px;}
.y7_c00345{bottom:1124.310450px;}
.y4_c00345{bottom:1144.380657px;}
.y3_c00345{bottom:1161.660648px;}
.y2_c00345{bottom:1178.850459px;}
.y1_c00345{bottom:1196.130450px;}
.h3_c00345{height:47.513672px;}
.h1_c00345{height:52.898555px;}
.h2_c00345{height:63.175781px;}
.h0_c00345{height:1263.000000px;}
.w1_c00345{width:892.500000px;}
.w0_c00345{width:892.830000px;}
.x0_c00345{left:0.000000px;}
.x4_c00345{left:127.620000px;}
.x5_c00345{left:574.200000px;}
.x1_c00345{left:649.620000px;}
.x3_c00345{left:738.450000px;}
.x2_c00345{left:765.450198px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.lsf_c00345{letter-spacing:-0.064000pt;}
.lsc_c00345{letter-spacing:-0.042752pt;}
.ls10_c00345{letter-spacing:-0.038400pt;}
.lse_c00345{letter-spacing:-0.032000pt;}
.ls11_c00345{letter-spacing:-0.019200pt;}
.ls12_c00345{letter-spacing:-0.006400pt;}
.lsd_c00345{letter-spacing:0.000000pt;}
.ls2_c00345{letter-spacing:0.006400pt;}
.ls9_c00345{letter-spacing:0.009600pt;}
.lsa_c00345{letter-spacing:0.012800pt;}
.ls5_c00345{letter-spacing:0.019200pt;}
.ls3_c00345{letter-spacing:0.025600pt;}
.ls6_c00345{letter-spacing:0.032000pt;}
.ls0_c00345{letter-spacing:0.038400pt;}
.lsb_c00345{letter-spacing:0.044800pt;}
.ls8_c00345{letter-spacing:0.051200pt;}
.ls1_c00345{letter-spacing:0.057600pt;}
.ls4_c00345{letter-spacing:0.064000pt;}
.ls7_c00345{letter-spacing:0.076800pt;}
.ls13_c00345{letter-spacing:8.000000pt;}
.ws1_c00345{word-spacing:0.000000pt;}
.ws0_c00345{word-spacing:0.122912pt;}
.ws2_c00345{word-spacing:0.148800pt;}
._a_c00345{margin-left:-8.294400pt;}
._b_c00345{margin-left:-7.040000pt;}
._6_c00345{margin-left:-4.224000pt;}
._1_c00345{margin-left:-2.860800pt;}
._0_c00345{margin-left:-1.958400pt;}
._4_c00345{margin-left:-1.049600pt;}
._c_c00345{width:1.510400pt;}
._5_c00345{width:2.892800pt;}
._2_c00345{width:3.833600pt;}
._d_c00345{width:4.787200pt;}
._8_c00345{width:5.721600pt;}
._9_c00345{width:7.968000pt;}
._7_c00345{width:8.870400pt;}
._3_c00345{width:9.894400pt;}
.fs2_c00345{font-size:48.000000pt;}
.fs0_c00345{font-size:53.440000pt;}
.fs1_c00345{font-size:64.000000pt;}
.y0_c00345{bottom:0.000000pt;}
.y6_c00345{bottom:50.987067pt;}
.y5_c00345{bottom:69.387067pt;}
.y1b_c00345{bottom:117.547200pt;}
.y1a_c00345{bottom:145.147200pt;}
.y19_c00345{bottom:172.747200pt;}
.y18_c00345{bottom:200.347200pt;}
.y17_c00345{bottom:227.947200pt;}
.y16_c00345{bottom:255.547200pt;}
.y15_c00345{bottom:283.147200pt;}
.y14_c00345{bottom:310.747200pt;}
.y13_c00345{bottom:338.347200pt;}
.y12_c00345{bottom:365.947200pt;}
.y11_c00345{bottom:393.467200pt;}
.y10_c00345{bottom:408.187200pt;}
.yf_c00345{bottom:782.507067pt;}
.ye_c00345{bottom:806.267067pt;}
.yd_c00345{bottom:833.867067pt;}
.yc_c00345{bottom:861.467067pt;}
.yb_c00345{bottom:889.067067pt;}
.ya_c00345{bottom:916.587067pt;}
.y9_c00345{bottom:944.187067pt;}
.y8_c00345{bottom:971.787067pt;}
.y7_c00345{bottom:999.387067pt;}
.y4_c00345{bottom:1017.227251pt;}
.y3_c00345{bottom:1032.587243pt;}
.y2_c00345{bottom:1047.867075pt;}
.y1_c00345{bottom:1063.227067pt;}
.h3_c00345{height:42.234375pt;}
.h1_c00345{height:47.020937pt;}
.h2_c00345{height:56.156250pt;}
.h0_c00345{height:1122.666667pt;}
.w1_c00345{width:793.333333pt;}
.w0_c00345{width:793.626667pt;}
.x0_c00345{left:0.000000pt;}
.x4_c00345{left:113.440000pt;}
.x5_c00345{left:510.400000pt;}
.x1_c00345{left:577.440000pt;}
.x3_c00345{left:656.400000pt;}
.x2_c00345{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7394e6174efd3418426c10ff.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.095703;font-style:normal;font-weight:normal;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_db34d06cb004175dd88afa98.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:1.093262;font-style: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;}
.ls11_c00346{letter-spacing:-0.158400px;}
.lsd_c00346{letter-spacing:-0.102204px;}
.ls12_c00346{letter-spacing:-0.086400px;}
.lsf_c00346{letter-spacing:-0.014400px;}
.lse_c00346{letter-spacing:0.000000px;}
.ls2_c00346{letter-spacing:0.007200px;}
.lsb_c00346{letter-spacing:0.014400px;}
.ls4_c00346{letter-spacing:0.021600px;}
.ls1_c00346{letter-spacing:0.028800px;}
.ls9_c00346{letter-spacing:0.036000px;}
.lsc_c00346{letter-spacing:0.043200px;}
.ls5_c00346{letter-spacing:0.050400px;}
.ls3_c00346{letter-spacing:0.057600px;}
.lsa_c00346{letter-spacing:0.064800px;}
.ls0_c00346{letter-spacing:0.072000px;}
.ls6_c00346{letter-spacing:0.079200px;}
.ls7_c00346{letter-spacing:0.100800px;}
.ls8_c00346{letter-spacing:0.122400px;}
.ls10_c00346{letter-spacing:3.600000px;}
.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;}
}
.ws5_c00346{word-spacing:-2.548800px;}
.ws1_c00346{word-spacing:0.000000px;}
.ws0_c00346{word-spacing:0.192384px;}
.ws3_c00346{word-spacing:6.688800px;}
.ws2_c00346{word-spacing:6.811200px;}
.ws4_c00346{word-spacing:7.070400px;}
._a_c00346{margin-left:-4.478400px;}
._9_c00346{margin-left:-3.470400px;}
._8_c00346{margin-left:-2.210400px;}
._2_c00346{margin-left:-1.051200px;}
._0_c00346{width:1.034064px;}
._5_c00346{width:2.044800px;}
._6_c00346{width:3.398400px;}
._7_c00346{width:4.428000px;}
._3_c00346{width:5.515200px;}
._1_c00346{width:6.768000px;}
._4_c00346{width:7.927200px;}
._c_c00346{width:9.266400px;}
._b_c00346{width:23.760000px;}
.fc1_c00346{color:rgb(0,0,0);}
.fc0_c00346{color:rgb(32,31,30);}
.fs0_c00346{font-size:60.120000px;}
.fs1_c00346{font-size:72.000000px;}
.y0_c00346{bottom:0.000000px;}
.y5_c00346{bottom:57.360450px;}
.y4_c00346{bottom:78.060450px;}
.y23_c00346{bottom:211.080450px;}
.y22_c00346{bottom:242.130450px;}
.y21_c00346{bottom:273.090450px;}
.y20_c00346{bottom:304.140450px;}
.y1f_c00346{bottom:335.190450px;}
.y1e_c00346{bottom:366.240450px;}
.y1d_c00346{bottom:397.290450px;}
.y1c_c00346{bottom:428.340450px;}
.y1b_c00346{bottom:459.390450px;}
.y1a_c00346{bottom:490.440450px;}
.y19_c00346{bottom:521.490450px;}
.y18_c00346{bottom:552.540450px;}
.y17_c00346{bottom:583.590450px;}
.y16_c00346{bottom:614.640450px;}
.y15_c00346{bottom:645.690450px;}
.y14_c00346{bottom:676.740450px;}
.y13_c00346{bottom:707.790450px;}
.y12_c00346{bottom:738.840450px;}
.y11_c00346{bottom:769.890450px;}
.y10_c00346{bottom:800.940450px;}
.yf_c00346{bottom:831.990450px;}
.ye_c00346{bottom:863.040450px;}
.yd_c00346{bottom:894.090450px;}
.yc_c00346{bottom:925.140450px;}
.yb_c00346{bottom:956.190450px;}
.ya_c00346{bottom:987.240450px;}
.y9_c00346{bottom:1018.290450px;}
.y8_c00346{bottom:1049.340450px;}
.y7_c00346{bottom:1080.390450px;}
.y6_c00346{bottom:1111.440450px;}
.y3_c00346{bottom:1132.140450px;}
.y2_c00346{bottom:1165.441023px;}
.y1_c00346{bottom:1196.040600px;}
.h1_c00346{height:52.898555px;}
.h2_c00346{height:63.175781px;}
.h3_c00346{height:63.351562px;}
.h0_c00346{height:1263.000000px;}
.w1_c00346{width:892.500000px;}
.w0_c00346{width:892.830000px;}
.x0_c00346{left:0.000000px;}
.x1_c00346{left:127.620000px;}
.x2_c00346{left:738.450000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls11_c00346{letter-spacing:-0.140800pt;}
.lsd_c00346{letter-spacing:-0.090848pt;}
.ls12_c00346{letter-spacing:-0.076800pt;}
.lsf_c00346{letter-spacing:-0.012800pt;}
.lse_c00346{letter-spacing:0.000000pt;}
.ls2_c00346{letter-spacing:0.006400pt;}
.lsb_c00346{letter-spacing:0.012800pt;}
.ls4_c00346{letter-spacing:0.019200pt;}
.ls1_c00346{letter-spacing:0.025600pt;}
.ls9_c00346{letter-spacing:0.032000pt;}
.lsc_c00346{letter-spacing:0.038400pt;}
.ls5_c00346{letter-spacing:0.044800pt;}
.ls3_c00346{letter-spacing:0.051200pt;}
.lsa_c00346{letter-spacing:0.057600pt;}
.ls0_c00346{letter-spacing:0.064000pt;}
.ls6_c00346{letter-spacing:0.070400pt;}
.ls7_c00346{letter-spacing:0.089600pt;}
.ls8_c00346{letter-spacing:0.108800pt;}
.ls10_c00346{letter-spacing:3.200000pt;}
.ws5_c00346{word-spacing:-2.265600pt;}
.ws1_c00346{word-spacing:0.000000pt;}
.ws0_c00346{word-spacing:0.171008pt;}
.ws3_c00346{word-spacing:5.945600pt;}
.ws2_c00346{word-spacing:6.054400pt;}
.ws4_c00346{word-spacing:6.284800pt;}
._a_c00346{margin-left:-3.980800pt;}
._9_c00346{margin-left:-3.084800pt;}
._8_c00346{margin-left:-1.964800pt;}
._2_c00346{margin-left:-0.934400pt;}
._0_c00346{width:0.919168pt;}
._5_c00346{width:1.817600pt;}
._6_c00346{width:3.020800pt;}
._7_c00346{width:3.936000pt;}
._3_c00346{width:4.902400pt;}
._1_c00346{width:6.016000pt;}
._4_c00346{width:7.046400pt;}
._c_c00346{width:8.236800pt;}
._b_c00346{width:21.120000pt;}
.fs0_c00346{font-size:53.440000pt;}
.fs1_c00346{font-size:64.000000pt;}
.y0_c00346{bottom:0.000000pt;}
.y5_c00346{bottom:50.987067pt;}
.y4_c00346{bottom:69.387067pt;}
.y23_c00346{bottom:187.627067pt;}
.y22_c00346{bottom:215.227067pt;}
.y21_c00346{bottom:242.747067pt;}
.y20_c00346{bottom:270.347067pt;}
.y1f_c00346{bottom:297.947067pt;}
.y1e_c00346{bottom:325.547067pt;}
.y1d_c00346{bottom:353.147067pt;}
.y1c_c00346{bottom:380.747067pt;}
.y1b_c00346{bottom:408.347067pt;}
.y1a_c00346{bottom:435.947067pt;}
.y19_c00346{bottom:463.547067pt;}
.y18_c00346{bottom:491.147067pt;}
.y17_c00346{bottom:518.747067pt;}
.y16_c00346{bottom:546.347067pt;}
.y15_c00346{bottom:573.947067pt;}
.y14_c00346{bottom:601.547067pt;}
.y13_c00346{bottom:629.147067pt;}
.y12_c00346{bottom:656.747067pt;}
.y11_c00346{bottom:684.347067pt;}
.y10_c00346{bottom:711.947067pt;}
.yf_c00346{bottom:739.547067pt;}
.ye_c00346{bottom:767.147067pt;}
.yd_c00346{bottom:794.747067pt;}
.yc_c00346{bottom:822.347067pt;}
.yb_c00346{bottom:849.947067pt;}
.ya_c00346{bottom:877.547067pt;}
.y9_c00346{bottom:905.147067pt;}
.y8_c00346{bottom:932.747067pt;}
.y7_c00346{bottom:960.347067pt;}
.y6_c00346{bottom:987.947067pt;}
.y3_c00346{bottom:1006.347067pt;}
.y2_c00346{bottom:1035.947576pt;}
.y1_c00346{bottom:1063.147200pt;}
.h1_c00346{height:47.020937pt;}
.h2_c00346{height:56.156250pt;}
.h3_c00346{height:56.312500pt;}
.h0_c00346{height:1122.666667pt;}
.w1_c00346{width:793.333333pt;}
.w0_c00346{width:793.626667pt;}
.x0_c00346{left:0.000000pt;}
.x1_c00346{left:113.440000pt;}
.x2_c00346{left:656.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_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_1b219e5542d106641a4612e1.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.095703;font-style:normal;font-weight:normal;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_1ba95257bf06be951b63e38a.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.093262;font-style:normal;font-weight:normal;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_83827d5a56557b43849e467c.woff2')format("woff");}.ff3_c00347{font-family:ff3_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;}
.m1_c00347{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0_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);}
.v3_c00347{vertical-align:-20.880000px;}
.v1_c00347{vertical-align:-13.680000px;}
.v0_c00347{vertical-align:0.000000px;}
.v2_c00347{vertical-align:27.000000px;}
.ls1c_c00347{letter-spacing:-0.151200px;}
.ls17_c00347{letter-spacing:-0.118800px;}
.ls1d_c00347{letter-spacing:-0.102600px;}
.ls1e_c00347{letter-spacing:-0.091800px;}
.ls19_c00347{letter-spacing:-0.075600px;}
.ls1a_c00347{letter-spacing:-0.070200px;}
.ls18_c00347{letter-spacing:-0.054000px;}
.ls11_c00347{letter-spacing:-0.048096px;}
.ls16_c00347{letter-spacing:-0.037800px;}
.ls1b_c00347{letter-spacing:-0.032400px;}
.ls14_c00347{letter-spacing:-0.028800px;}
.ls15_c00347{letter-spacing:-0.021600px;}
.ls23_c00347{letter-spacing:-0.014400px;}
.ls13_c00347{letter-spacing:-0.007200px;}
.ls12_c00347{letter-spacing:0.000000px;}
.ls1_c00347{letter-spacing:0.005400px;}
.lsd_c00347{letter-spacing:0.007200px;}
.ls0_c00347{letter-spacing:0.010800px;}
.ls9_c00347{letter-spacing:0.014400px;}
.lsa_c00347{letter-spacing:0.021600px;}
.ls4_c00347{letter-spacing:0.027000px;}
.ls7_c00347{letter-spacing:0.028800px;}
.lsc_c00347{letter-spacing:0.036000px;}
.ls3_c00347{letter-spacing:0.043200px;}
.ls8_c00347{letter-spacing:0.050400px;}
.ls10_c00347{letter-spacing:0.057600px;}
.ls5_c00347{letter-spacing:0.064800px;}
.lsb_c00347{letter-spacing:0.079200px;}
.ls6_c00347{letter-spacing:0.086400px;}
.lse_c00347{letter-spacing:0.093600px;}
.ls24_c00347{letter-spacing:0.096192px;}
.lsf_c00347{letter-spacing:0.108000px;}
.ls20_c00347{letter-spacing:0.181944px;}
.ls1f_c00347{letter-spacing:0.496800px;}
.ls22_c00347{letter-spacing:3.513600px;}
.ls21_c00347{letter-spacing:9.720000px;}
.ls2_c00347{letter-spacing:984.600000px;}
.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:-12.151944px;}
.ws1_c00347{word-spacing:-9.720000px;}
.ws3_c00347{word-spacing:0.000000px;}
.ws2_c00347{word-spacing:0.138276px;}
.ws4_c00347{word-spacing:0.167400px;}
._10_c00347{margin-left:-10.778400px;}
._f_c00347{margin-left:-9.021600px;}
._12_c00347{margin-left:-4.579200px;}
._11_c00347{margin-left:-3.513600px;}
._c_c00347{margin-left:-2.289600px;}
._0_c00347{margin-left:-1.193400px;}
._a_c00347{width:1.065600px;}
._9_c00347{width:2.548800px;}
._b_c00347{width:3.628800px;}
._e_c00347{width:8.877600px;}
._d_c00347{width:10.036800px;}
._13_c00347{width:11.188800px;}
._8_c00347{width:102.859200px;}
._4_c00347{width:133.473000px;}
._1_c00347{width:162.986400px;}
._7_c00347{width:164.077200px;}
._6_c00347{width:223.104600px;}
._3_c00347{width:229.586400px;}
._2_c00347{width:253.346400px;}
._5_c00347{width:575.353800px;}
.fc2_c00347{color:rgb(38,74,96);}
.fc3_c00347{color:rgb(1,2,5);}
.fc1_c00347{color:rgb(68,84,106);}
.fc0_c00347{color:rgb(0,0,0);}
.fs4_c00347{font-size:38.880000px;}
.fs3_c00347{font-size:47.880000px;}
.fs2_c00347{font-size:54.000000px;}
.fs0_c00347{font-size:60.120000px;}
.fs1_c00347{font-size:72.000000px;}
.y0_c00347{bottom:0.000000px;}
.y14_c00347{bottom:0.090450px;}
.y6_c00347{bottom:57.360450px;}
.y5_c00347{bottom:78.060450px;}
.y2f_c00347{bottom:115.140450px;}
.y2e_c00347{bottom:127.830450px;}
.y2d_c00347{bottom:164.550450px;}
.y2c_c00347{bottom:195.600450px;}
.y2b_c00347{bottom:226.650450px;}
.y2a_c00347{bottom:257.700450px;}
.y29_c00347{bottom:288.750450px;}
.y28_c00347{bottom:319.800450px;}
.y27_c00347{bottom:350.850450px;}
.y26_c00347{bottom:381.900450px;}
.y25_c00347{bottom:412.950450px;}
.y24_c00347{bottom:444.000450px;}
.y23_c00347{bottom:474.960450px;}
.y22_c00347{bottom:506.010450px;}
.y21_c00347{bottom:537.060450px;}
.y20_c00347{bottom:627.150450px;}
.y1a_c00347{bottom:653.070450px;}
.y1f_c00347{bottom:721.650450px;}
.y1d_c00347{bottom:747.570450px;}
.y1e_c00347{bottom:816.150450px;}
.y1b_c00347{bottom:842.070450px;}
.y1c_c00347{bottom:910.650450px;}
.y12_c00347{bottom:939.360450px;}
.y18_c00347{bottom:940.440450px;}
.yb_c00347{bottom:945.300450px;}
.y11_c00347{bottom:949.080450px;}
.y17_c00347{bottom:949.530450px;}
.ye_c00347{bottom:950.160900px;}
.yf_c00347{bottom:953.220450px;}
.y16_c00347{bottom:954.300450px;}
.yc_c00347{bottom:955.470450px;}
.yd_c00347{bottom:957.360450px;}
.y15_c00347{bottom:958.890450px;}
.y10_c00347{bottom:960.690000px;}
.y13_c00347{bottom:962.130000px;}
.y19_c00347{bottom:1008.300450px;}
.ya_c00347{bottom:1050.600450px;}
.y9_c00347{bottom:1065.990450px;}
.y8_c00347{bottom:1093.440450px;}
.y7_c00347{bottom:1128.630450px;}
.y4_c00347{bottom:1144.380657px;}
.y3_c00347{bottom:1161.660648px;}
.y2_c00347{bottom:1178.850459px;}
.y1_c00347{bottom:1196.130450px;}
.h6_c00347{height:28.620000px;}
.h8_c00347{height:34.114922px;}
.h3_c00347{height:47.513672px;}
.h5_c00347{height:48.410156px;}
.h1_c00347{height:52.898555px;}
.h2_c00347{height:63.175781px;}
.h4_c00347{height:64.546875px;}
.h7_c00347{height:69.011895px;}
.h0_c00347{height:1263.000000px;}
.w2_c00347{width:9.990000px;}
.w1_c00347{width:892.500000px;}
.w0_c00347{width:892.830000px;}
.x0_c00347{left:0.000000px;}
.x11_c00347{left:12.510000px;}
.x5_c00347{left:94.140000px;}
.x1a_c00347{left:98.640000px;}
.x17_c00347{left:113.940000px;}
.x4_c00347{left:127.620000px;}
.x18_c00347{left:216.090000px;}
.x8_c00347{left:265.770000px;}
.x19_c00347{left:276.390000px;}
.x9_c00347{left:325.260000px;}
.xa_c00347{left:377.279550px;}
.x6_c00347{left:385.830000px;}
.xb_c00347{left:401.309550px;}
.xc_c00347{left:451.800000px;}
.xd_c00347{left:503.819550px;}
.xe_c00347{left:555.750000px;}
.xf_c00347{left:579.780000px;}
.x10_c00347{left:591.300000px;}
.x12_c00347{left:630.360000px;}
.x1_c00347{left:649.620000px;}
.x13_c00347{left:654.299550px;}
.x14_c00347{left:704.880000px;}
.x15_c00347{left:728.910000px;}
.x3_c00347{left:738.450000px;}
.x16_c00347{left:760.050000px;}
.x2_c00347{left:765.450198px;}
.x7_c00347{left:781.740000px;}
@media print{
.v3_c00347{vertical-align:-18.560000pt;}
.v1_c00347{vertical-align:-12.160000pt;}
.v0_c00347{vertical-align:0.000000pt;}
.v2_c00347{vertical-align:24.000000pt;}
.ls1c_c00347{letter-spacing:-0.134400pt;}
.ls17_c00347{letter-spacing:-0.105600pt;}
.ls1d_c00347{letter-spacing:-0.091200pt;}
.ls1e_c00347{letter-spacing:-0.081600pt;}
.ls19_c00347{letter-spacing:-0.067200pt;}
.ls1a_c00347{letter-spacing:-0.062400pt;}
.ls18_c00347{letter-spacing:-0.048000pt;}
.ls11_c00347{letter-spacing:-0.042752pt;}
.ls16_c00347{letter-spacing:-0.033600pt;}
.ls1b_c00347{letter-spacing:-0.028800pt;}
.ls14_c00347{letter-spacing:-0.025600pt;}
.ls15_c00347{letter-spacing:-0.019200pt;}
.ls23_c00347{letter-spacing:-0.012800pt;}
.ls13_c00347{letter-spacing:-0.006400pt;}
.ls12_c00347{letter-spacing:0.000000pt;}
.ls1_c00347{letter-spacing:0.004800pt;}
.lsd_c00347{letter-spacing:0.006400pt;}
.ls0_c00347{letter-spacing:0.009600pt;}
.ls9_c00347{letter-spacing:0.012800pt;}
.lsa_c00347{letter-spacing:0.019200pt;}
.ls4_c00347{letter-spacing:0.024000pt;}
.ls7_c00347{letter-spacing:0.025600pt;}
.lsc_c00347{letter-spacing:0.032000pt;}
.ls3_c00347{letter-spacing:0.038400pt;}
.ls8_c00347{letter-spacing:0.044800pt;}
.ls10_c00347{letter-spacing:0.051200pt;}
.ls5_c00347{letter-spacing:0.057600pt;}
.lsb_c00347{letter-spacing:0.070400pt;}
.ls6_c00347{letter-spacing:0.076800pt;}
.lse_c00347{letter-spacing:0.083200pt;}
.ls24_c00347{letter-spacing:0.085504pt;}
.lsf_c00347{letter-spacing:0.096000pt;}
.ls20_c00347{letter-spacing:0.161728pt;}
.ls1f_c00347{letter-spacing:0.441600pt;}
.ls22_c00347{letter-spacing:3.123200pt;}
.ls21_c00347{letter-spacing:8.640000pt;}
.ls2_c00347{letter-spacing:875.200000pt;}
.ws0_c00347{word-spacing:-10.801728pt;}
.ws1_c00347{word-spacing:-8.640000pt;}
.ws3_c00347{word-spacing:0.000000pt;}
.ws2_c00347{word-spacing:0.122912pt;}
.ws4_c00347{word-spacing:0.148800pt;}
._10_c00347{margin-left:-9.580800pt;}
._f_c00347{margin-left:-8.019200pt;}
._12_c00347{margin-left:-4.070400pt;}
._11_c00347{margin-left:-3.123200pt;}
._c_c00347{margin-left:-2.035200pt;}
._0_c00347{margin-left:-1.060800pt;}
._a_c00347{width:0.947200pt;}
._9_c00347{width:2.265600pt;}
._b_c00347{width:3.225600pt;}
._e_c00347{width:7.891200pt;}
._d_c00347{width:8.921600pt;}
._13_c00347{width:9.945600pt;}
._8_c00347{width:91.430400pt;}
._4_c00347{width:118.642667pt;}
._1_c00347{width:144.876800pt;}
._7_c00347{width:145.846400pt;}
._6_c00347{width:198.315200pt;}
._3_c00347{width:204.076800pt;}
._2_c00347{width:225.196800pt;}
._5_c00347{width:511.425600pt;}
.fs4_c00347{font-size:34.560000pt;}
.fs3_c00347{font-size:42.560000pt;}
.fs2_c00347{font-size:48.000000pt;}
.fs0_c00347{font-size:53.440000pt;}
.fs1_c00347{font-size:64.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.y14_c00347{bottom:0.080400pt;}
.y6_c00347{bottom:50.987067pt;}
.y5_c00347{bottom:69.387067pt;}
.y2f_c00347{bottom:102.347067pt;}
.y2e_c00347{bottom:113.627067pt;}
.y2d_c00347{bottom:146.267067pt;}
.y2c_c00347{bottom:173.867067pt;}
.y2b_c00347{bottom:201.467067pt;}
.y2a_c00347{bottom:229.067067pt;}
.y29_c00347{bottom:256.667067pt;}
.y28_c00347{bottom:284.267067pt;}
.y27_c00347{bottom:311.867067pt;}
.y26_c00347{bottom:339.467067pt;}
.y25_c00347{bottom:367.067067pt;}
.y24_c00347{bottom:394.667067pt;}
.y23_c00347{bottom:422.187067pt;}
.y22_c00347{bottom:449.787067pt;}
.y21_c00347{bottom:477.387067pt;}
.y20_c00347{bottom:557.467067pt;}
.y1a_c00347{bottom:580.507067pt;}
.y1f_c00347{bottom:641.467067pt;}
.y1d_c00347{bottom:664.507067pt;}
.y1e_c00347{bottom:725.467067pt;}
.y1b_c00347{bottom:748.507067pt;}
.y1c_c00347{bottom:809.467067pt;}
.y12_c00347{bottom:834.987067pt;}
.y18_c00347{bottom:835.947067pt;}
.yb_c00347{bottom:840.267067pt;}
.y11_c00347{bottom:843.627067pt;}
.y17_c00347{bottom:844.027067pt;}
.ye_c00347{bottom:844.587467pt;}
.yf_c00347{bottom:847.307067pt;}
.y16_c00347{bottom:848.267067pt;}
.yc_c00347{bottom:849.307067pt;}
.yd_c00347{bottom:850.987067pt;}
.y15_c00347{bottom:852.347067pt;}
.y10_c00347{bottom:853.946667pt;}
.y13_c00347{bottom:855.226667pt;}
.y19_c00347{bottom:896.267067pt;}
.ya_c00347{bottom:933.867067pt;}
.y9_c00347{bottom:947.547067pt;}
.y8_c00347{bottom:971.947067pt;}
.y7_c00347{bottom:1003.227067pt;}
.y4_c00347{bottom:1017.227251pt;}
.y3_c00347{bottom:1032.587243pt;}
.y2_c00347{bottom:1047.867075pt;}
.y1_c00347{bottom:1063.227067pt;}
.h6_c00347{height:25.440000pt;}
.h8_c00347{height:30.324375pt;}
.h3_c00347{height:42.234375pt;}
.h5_c00347{height:43.031250pt;}
.h1_c00347{height:47.020937pt;}
.h2_c00347{height:56.156250pt;}
.h4_c00347{height:57.375000pt;}
.h7_c00347{height:61.343906pt;}
.h0_c00347{height:1122.666667pt;}
.w2_c00347{width:8.880000pt;}
.w1_c00347{width:793.333333pt;}
.w0_c00347{width:793.626667pt;}
.x0_c00347{left:0.000000pt;}
.x11_c00347{left:11.120000pt;}
.x5_c00347{left:83.680000pt;}
.x1a_c00347{left:87.680000pt;}
.x17_c00347{left:101.280000pt;}
.x4_c00347{left:113.440000pt;}
.x18_c00347{left:192.080000pt;}
.x8_c00347{left:236.240000pt;}
.x19_c00347{left:245.680000pt;}
.x9_c00347{left:289.120000pt;}
.xa_c00347{left:335.359600pt;}
.x6_c00347{left:342.960000pt;}
.xb_c00347{left:356.719600pt;}
.xc_c00347{left:401.600000pt;}
.xd_c00347{left:447.839600pt;}
.xe_c00347{left:494.000000pt;}
.xf_c00347{left:515.360000pt;}
.x10_c00347{left:525.600000pt;}
.x12_c00347{left:560.320000pt;}
.x1_c00347{left:577.440000pt;}
.x13_c00347{left:581.599600pt;}
.x14_c00347{left:626.560000pt;}
.x15_c00347{left:647.920000pt;}
.x3_c00347{left:656.400000pt;}
.x16_c00347{left:675.600000pt;}
.x2_c00347{left:680.400176pt;}
.x7_c00347{left:694.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_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_dbc96499d13e8919cc2e4aa0.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.095703;font-style:normal;font-weight:normal;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_4a69a06d6ecee59a05f390af.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_95cc06a364f93672d356fa54.woff2')format("woff");}.ff3_c00348{font-family:ff3_c00348;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00348;src:url('chunks/assets/font_206b69a2db6da78802ce2dc1.woff2')format("woff");}.ff4_c00348{font-family:ff4_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;}
.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;}
.ls11_c00348{letter-spacing:-0.151200px;}
.ls10_c00348{letter-spacing:-0.124200px;}
.lsa_c00348{letter-spacing:-0.102204px;}
.lsf_c00348{letter-spacing:-0.043200px;}
.ls13_c00348{letter-spacing:-0.032400px;}
.lse_c00348{letter-spacing:-0.027000px;}
.lsd_c00348{letter-spacing:-0.021600px;}
.ls15_c00348{letter-spacing:-0.007200px;}
.lsc_c00348{letter-spacing:-0.005400px;}
.lsb_c00348{letter-spacing:0.000000px;}
.ls3_c00348{letter-spacing:0.005400px;}
.ls9_c00348{letter-spacing:0.007200px;}
.ls2_c00348{letter-spacing:0.014400px;}
.ls1_c00348{letter-spacing:0.021600px;}
.ls7_c00348{letter-spacing:0.036000px;}
.ls0_c00348{letter-spacing:0.043200px;}
.ls5_c00348{letter-spacing:0.050400px;}
.ls6_c00348{letter-spacing:0.057600px;}
.ls4_c00348{letter-spacing:0.064800px;}
.ls8_c00348{letter-spacing:0.086400px;}
.ls12_c00348{letter-spacing:0.156600px;}
.ls14_c00348{letter-spacing:0.496800px;}
.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;}
}
.ws1_c00348{word-spacing:0.000000px;}
.ws3_c00348{word-spacing:0.135000px;}
.ws5_c00348{word-spacing:0.156600px;}
.ws2_c00348{word-spacing:0.183600px;}
.ws0_c00348{word-spacing:0.192384px;}
.ws4_c00348{word-spacing:0.199800px;}
._10_c00348{margin-left:-2.563200px;}
._1_c00348{margin-left:-1.069200px;}
._0_c00348{width:1.034064px;}
._d_c00348{width:2.181600px;}
._e_c00348{width:3.272400px;}
._c_c00348{width:4.834800px;}
._3_c00348{width:5.961600px;}
._f_c00348{width:7.876800px;}
._11_c00348{width:16.632000px;}
._4_c00348{width:88.311600px;}
._a_c00348{width:779.978736px;}
._5_c00348{width:1128.024000px;}
._7_c00348{width:1305.136800px;}
._6_c00348{width:1308.174336px;}
._8_c00348{width:1316.228400px;}
._9_c00348{width:1341.068400px;}
._b_c00348{width:1352.343600px;}
._2_c00348{width:1458.000000px;}
.fc4_c00348{color:rgb(38,74,96);}
.fc3_c00348{color:rgb(1,2,5);}
.fc2_c00348{color:rgb(68,84,106);}
.fc1_c00348{color:rgb(0,0,0);}
.fc0_c00348{color:rgb(32,31,30);}
.fs2_c00348{font-size:54.000000px;}
.fs0_c00348{font-size:60.120000px;}
.fs1_c00348{font-size:72.000000px;}
.y0_c00348{bottom:0.000000px;}
.y5_c00348{bottom:57.360450px;}
.y4_c00348{bottom:78.060450px;}
.y23_c00348{bottom:136.110450px;}
.y22_c00348{bottom:167.160450px;}
.y21_c00348{bottom:198.210450px;}
.y20_c00348{bottom:229.260450px;}
.y1f_c00348{bottom:260.310450px;}
.y1e_c00348{bottom:291.360450px;}
.y1d_c00348{bottom:322.410450px;}
.y1c_c00348{bottom:353.460450px;}
.y1b_c00348{bottom:384.510450px;}
.y1a_c00348{bottom:415.560450px;}
.y19_c00348{bottom:446.610450px;}
.y18_c00348{bottom:477.660450px;}
.y17_c00348{bottom:508.710450px;}
.y16_c00348{bottom:539.760450px;}
.y15_c00348{bottom:570.810450px;}
.y14_c00348{bottom:601.860450px;}
.y13_c00348{bottom:631.650450px;}
.y12_c00348{bottom:656.040450px;}
.y11_c00348{bottom:681.780450px;}
.y10_c00348{bottom:707.520450px;}
.yf_c00348{bottom:733.260450px;}
.ye_c00348{bottom:757.650450px;}
.yd_c00348{bottom:782.130450px;}
.yb_c00348{bottom:833.610600px;}
.ya_c00348{bottom:864.570450px;}
.yc_c00348{bottom:868.800450px;}
.y9_c00348{bottom:900.030450px;}
.y8_c00348{bottom:929.910450px;}
.y7_c00348{bottom:957.000450px;}
.y6_c00348{bottom:1115.760450px;}
.y3_c00348{bottom:1132.140450px;}
.y2_c00348{bottom:1165.441023px;}
.y1_c00348{bottom:1196.040600px;}
.h3_c00348{height:47.513672px;}
.h5_c00348{height:48.410156px;}
.h1_c00348{height:52.898555px;}
.h2_c00348{height:63.175781px;}
.h4_c00348{height:65.003906px;}
.h0_c00348{height:1263.000000px;}
.w1_c00348{width:892.500000px;}
.w0_c00348{width:892.830000px;}
.x0_c00348{left:0.000000px;}
.x1_c00348{left:127.620000px;}
.x4_c00348{left:167.490000px;}
.x6_c00348{left:193.320000px;}
.x3_c00348{left:380.430000px;}
.x5_c00348{left:565.380000px;}
.x2_c00348{left:738.450000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls11_c00348{letter-spacing:-0.134400pt;}
.ls10_c00348{letter-spacing:-0.110400pt;}
.lsa_c00348{letter-spacing:-0.090848pt;}
.lsf_c00348{letter-spacing:-0.038400pt;}
.ls13_c00348{letter-spacing:-0.028800pt;}
.lse_c00348{letter-spacing:-0.024000pt;}
.lsd_c00348{letter-spacing:-0.019200pt;}
.ls15_c00348{letter-spacing:-0.006400pt;}
.lsc_c00348{letter-spacing:-0.004800pt;}
.lsb_c00348{letter-spacing:0.000000pt;}
.ls3_c00348{letter-spacing:0.004800pt;}
.ls9_c00348{letter-spacing:0.006400pt;}
.ls2_c00348{letter-spacing:0.012800pt;}
.ls1_c00348{letter-spacing:0.019200pt;}
.ls7_c00348{letter-spacing:0.032000pt;}
.ls0_c00348{letter-spacing:0.038400pt;}
.ls5_c00348{letter-spacing:0.044800pt;}
.ls6_c00348{letter-spacing:0.051200pt;}
.ls4_c00348{letter-spacing:0.057600pt;}
.ls8_c00348{letter-spacing:0.076800pt;}
.ls12_c00348{letter-spacing:0.139200pt;}
.ls14_c00348{letter-spacing:0.441600pt;}
.ws1_c00348{word-spacing:0.000000pt;}
.ws3_c00348{word-spacing:0.120000pt;}
.ws5_c00348{word-spacing:0.139200pt;}
.ws2_c00348{word-spacing:0.163200pt;}
.ws0_c00348{word-spacing:0.171008pt;}
.ws4_c00348{word-spacing:0.177600pt;}
._10_c00348{margin-left:-2.278400pt;}
._1_c00348{margin-left:-0.950400pt;}
._0_c00348{width:0.919168pt;}
._d_c00348{width:1.939200pt;}
._e_c00348{width:2.908800pt;}
._c_c00348{width:4.297600pt;}
._3_c00348{width:5.299200pt;}
._f_c00348{width:7.001600pt;}
._11_c00348{width:14.784000pt;}
._4_c00348{width:78.499200pt;}
._a_c00348{width:693.314432pt;}
._5_c00348{width:1002.688000pt;}
._7_c00348{width:1160.121600pt;}
._6_c00348{width:1162.821632pt;}
._8_c00348{width:1169.980800pt;}
._9_c00348{width:1192.060800pt;}
._b_c00348{width:1202.083200pt;}
._2_c00348{width:1296.000000pt;}
.fs2_c00348{font-size:48.000000pt;}
.fs0_c00348{font-size:53.440000pt;}
.fs1_c00348{font-size:64.000000pt;}
.y0_c00348{bottom:0.000000pt;}
.y5_c00348{bottom:50.987067pt;}
.y4_c00348{bottom:69.387067pt;}
.y23_c00348{bottom:120.987067pt;}
.y22_c00348{bottom:148.587067pt;}
.y21_c00348{bottom:176.187067pt;}
.y20_c00348{bottom:203.787067pt;}
.y1f_c00348{bottom:231.387067pt;}
.y1e_c00348{bottom:258.987067pt;}
.y1d_c00348{bottom:286.587067pt;}
.y1c_c00348{bottom:314.187067pt;}
.y1b_c00348{bottom:341.787067pt;}
.y1a_c00348{bottom:369.387067pt;}
.y19_c00348{bottom:396.987067pt;}
.y18_c00348{bottom:424.587067pt;}
.y17_c00348{bottom:452.187067pt;}
.y16_c00348{bottom:479.787067pt;}
.y15_c00348{bottom:507.387067pt;}
.y14_c00348{bottom:534.987067pt;}
.y13_c00348{bottom:561.467067pt;}
.y12_c00348{bottom:583.147067pt;}
.y11_c00348{bottom:606.027067pt;}
.y10_c00348{bottom:628.907067pt;}
.yf_c00348{bottom:651.787067pt;}
.ye_c00348{bottom:673.467067pt;}
.yd_c00348{bottom:695.227067pt;}
.yb_c00348{bottom:740.987200pt;}
.ya_c00348{bottom:768.507067pt;}
.yc_c00348{bottom:772.267067pt;}
.y9_c00348{bottom:800.027067pt;}
.y8_c00348{bottom:826.587067pt;}
.y7_c00348{bottom:850.667067pt;}
.y6_c00348{bottom:991.787067pt;}
.y3_c00348{bottom:1006.347067pt;}
.y2_c00348{bottom:1035.947576pt;}
.y1_c00348{bottom:1063.147200pt;}
.h3_c00348{height:42.234375pt;}
.h5_c00348{height:43.031250pt;}
.h1_c00348{height:47.020937pt;}
.h2_c00348{height:56.156250pt;}
.h4_c00348{height:57.781250pt;}
.h0_c00348{height:1122.666667pt;}
.w1_c00348{width:793.333333pt;}
.w0_c00348{width:793.626667pt;}
.x0_c00348{left:0.000000pt;}
.x1_c00348{left:113.440000pt;}
.x4_c00348{left:148.880000pt;}
.x6_c00348{left:171.840000pt;}
.x3_c00348{left:338.160000pt;}
.x5_c00348{left:502.560000pt;}
.x2_c00348{left:656.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_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_fe9d511a06c4f9f2550b692f.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.095703;font-style:normal;font-weight:normal;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_130c49a95aa4c4ae016e5484.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.093262;font-style:normal;font-weight:normal;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_1f5e27bba25861c172d1891c.woff2')format("woff");}.ff3_c00349{font-family:ff3_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:ff4_c00349;src:url('chunks/assets/font_39364099ffbad597c685b407.woff2')format("woff");}.ff4_c00349{font-family:ff4_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;}
.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;}
.ls1d_c00349{letter-spacing:-0.151200px;}
.ls1b_c00349{letter-spacing:-0.124200px;}
.ls1e_c00349{letter-spacing:-0.086400px;}
.ls15_c00349{letter-spacing:-0.079200px;}
.ls1c_c00349{letter-spacing:-0.064800px;}
.ls22_c00349{letter-spacing:-0.057600px;}
.ls14_c00349{letter-spacing:-0.050400px;}
.ls20_c00349{letter-spacing:-0.048600px;}
.lsf_c00349{letter-spacing:-0.048096px;}
.ls17_c00349{letter-spacing:-0.043200px;}
.ls12_c00349{letter-spacing:-0.036000px;}
.ls16_c00349{letter-spacing:-0.028800px;}
.ls11_c00349{letter-spacing:-0.021600px;}
.ls1a_c00349{letter-spacing:-0.014400px;}
.ls1f_c00349{letter-spacing:-0.010800px;}
.ls19_c00349{letter-spacing:-0.007200px;}
.ls18_c00349{letter-spacing:-0.005400px;}
.ls10_c00349{letter-spacing:0.000000px;}
.ls0_c00349{letter-spacing:0.005400px;}
.lsa_c00349{letter-spacing:0.007200px;}
.ls4_c00349{letter-spacing:0.014400px;}
.ls2_c00349{letter-spacing:0.021600px;}
.ls9_c00349{letter-spacing:0.027000px;}
.lse_c00349{letter-spacing:0.028800px;}
.lsb_c00349{letter-spacing:0.036000px;}
.ls1_c00349{letter-spacing:0.037800px;}
.ls6_c00349{letter-spacing:0.043200px;}
.ls3_c00349{letter-spacing:0.050400px;}
.ls5_c00349{letter-spacing:0.057600px;}
.lsd_c00349{letter-spacing:0.079200px;}
.ls7_c00349{letter-spacing:0.093600px;}
.lsc_c00349{letter-spacing:0.100800px;}
.ls23_c00349{letter-spacing:0.108000px;}
.ls21_c00349{letter-spacing:0.496800px;}
.ls13_c00349{letter-spacing:8.280000px;}
.ls8_c00349{letter-spacing:119.268000px;}
.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:-17.942400px;}
.ws2_c00349{word-spacing:0.000000px;}
.ws1_c00349{word-spacing:0.138276px;}
.ws5_c00349{word-spacing:0.140400px;}
.ws3_c00349{word-spacing:0.172800px;}
.ws6_c00349{word-spacing:0.183600px;}
.ws4_c00349{word-spacing:0.199800px;}
._7_c00349{margin-left:-8.969400px;}
._6_c00349{margin-left:-7.432200px;}
._11_c00349{margin-left:-4.833000px;}
._2_c00349{margin-left:-3.717000px;}
._1_c00349{margin-left:-2.570400px;}
._0_c00349{margin-left:-1.344600px;}
._3_c00349{width:1.425600px;}
._4_c00349{width:2.808000px;}
._14_c00349{width:4.996800px;}
._13_c00349{width:6.969600px;}
._5_c00349{width:8.222400px;}
._12_c00349{width:9.676800px;}
._15_c00349{width:27.388800px;}
._8_c00349{width:119.340000px;}
._b_c00349{width:705.895200px;}
._f_c00349{width:759.906000px;}
._9_c00349{width:996.667200px;}
._a_c00349{width:1000.287000px;}
._c_c00349{width:1056.852000px;}
._d_c00349{width:1157.043600px;}
._10_c00349{width:1236.974400px;}
._e_c00349{width:1252.332000px;}
.fc4_c00349{color:rgb(255,0,0);}
.fc3_c00349{color:rgb(38,74,96);}
.fc2_c00349{color:rgb(1,2,5);}
.fc1_c00349{color:rgb(68,84,106);}
.fc0_c00349{color:rgb(0,0,0);}
.fs2_c00349{font-size:54.000000px;}
.fs0_c00349{font-size:60.120000px;}
.fs1_c00349{font-size:72.000000px;}
.y0_c00349{bottom:0.000000px;}
.y6_c00349{bottom:57.360450px;}
.y5_c00349{bottom:78.060450px;}
.y26_c00349{bottom:132.510600px;}
.y25_c00349{bottom:163.560600px;}
.y24_c00349{bottom:194.610600px;}
.y23_c00349{bottom:225.660600px;}
.y22_c00349{bottom:256.710600px;}
.y21_c00349{bottom:287.760600px;}
.y20_c00349{bottom:318.810600px;}
.y1f_c00349{bottom:349.860600px;}
.y1e_c00349{bottom:380.910600px;}
.y1d_c00349{bottom:411.960600px;}
.y1c_c00349{bottom:439.680600px;}
.y1b_c00349{bottom:463.260450px;}
.y1a_c00349{bottom:486.930600px;}
.y19_c00349{bottom:510.600450px;}
.y18_c00349{bottom:534.270450px;}
.y17_c00349{bottom:557.940450px;}
.y16_c00349{bottom:581.610450px;}
.y15_c00349{bottom:605.280450px;}
.y13_c00349{bottom:632.460450px;}
.y12_c00349{bottom:663.510450px;}
.y14_c00349{bottom:667.740450px;}
.y11_c00349{bottom:698.880450px;}
.y10_c00349{bottom:725.610450px;}
.yf_c00349{bottom:756.660450px;}
.ye_c00349{bottom:787.710450px;}
.yd_c00349{bottom:818.760450px;}
.yc_c00349{bottom:849.810450px;}
.yb_c00349{bottom:880.860450px;}
.ya_c00349{bottom:911.910450px;}
.y9_c00349{bottom:942.960450px;}
.y8_c00349{bottom:969.960450px;}
.y7_c00349{bottom:1128.630450px;}
.y4_c00349{bottom:1144.380657px;}
.y3_c00349{bottom:1161.660648px;}
.y2_c00349{bottom:1178.850459px;}
.y1_c00349{bottom:1196.130450px;}
.h3_c00349{height:47.513672px;}
.h5_c00349{height:48.410156px;}
.h1_c00349{height:52.898555px;}
.h2_c00349{height:63.175781px;}
.h4_c00349{height:65.003906px;}
.h0_c00349{height:1263.000000px;}
.w1_c00349{width:892.500000px;}
.w0_c00349{width:892.830000px;}
.x0_c00349{left:0.000000px;}
.x4_c00349{left:127.620000px;}
.x6_c00349{left:220.680000px;}
.x8_c00349{left:254.250000px;}
.x7_c00349{left:597.330000px;}
.x1_c00349{left:649.620000px;}
.x5_c00349{left:737.280000px;}
.x3_c00349{left:738.450000px;}
.x2_c00349{left:765.450198px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls1d_c00349{letter-spacing:-0.134400pt;}
.ls1b_c00349{letter-spacing:-0.110400pt;}
.ls1e_c00349{letter-spacing:-0.076800pt;}
.ls15_c00349{letter-spacing:-0.070400pt;}
.ls1c_c00349{letter-spacing:-0.057600pt;}
.ls22_c00349{letter-spacing:-0.051200pt;}
.ls14_c00349{letter-spacing:-0.044800pt;}
.ls20_c00349{letter-spacing:-0.043200pt;}
.lsf_c00349{letter-spacing:-0.042752pt;}
.ls17_c00349{letter-spacing:-0.038400pt;}
.ls12_c00349{letter-spacing:-0.032000pt;}
.ls16_c00349{letter-spacing:-0.025600pt;}
.ls11_c00349{letter-spacing:-0.019200pt;}
.ls1a_c00349{letter-spacing:-0.012800pt;}
.ls1f_c00349{letter-spacing:-0.009600pt;}
.ls19_c00349{letter-spacing:-0.006400pt;}
.ls18_c00349{letter-spacing:-0.004800pt;}
.ls10_c00349{letter-spacing:0.000000pt;}
.ls0_c00349{letter-spacing:0.004800pt;}
.lsa_c00349{letter-spacing:0.006400pt;}
.ls4_c00349{letter-spacing:0.012800pt;}
.ls2_c00349{letter-spacing:0.019200pt;}
.ls9_c00349{letter-spacing:0.024000pt;}
.lse_c00349{letter-spacing:0.025600pt;}
.lsb_c00349{letter-spacing:0.032000pt;}
.ls1_c00349{letter-spacing:0.033600pt;}
.ls6_c00349{letter-spacing:0.038400pt;}
.ls3_c00349{letter-spacing:0.044800pt;}
.ls5_c00349{letter-spacing:0.051200pt;}
.lsd_c00349{letter-spacing:0.070400pt;}
.ls7_c00349{letter-spacing:0.083200pt;}
.lsc_c00349{letter-spacing:0.089600pt;}
.ls23_c00349{letter-spacing:0.096000pt;}
.ls21_c00349{letter-spacing:0.441600pt;}
.ls13_c00349{letter-spacing:7.360000pt;}
.ls8_c00349{letter-spacing:106.016000pt;}
.ws0_c00349{word-spacing:-15.948800pt;}
.ws2_c00349{word-spacing:0.000000pt;}
.ws1_c00349{word-spacing:0.122912pt;}
.ws5_c00349{word-spacing:0.124800pt;}
.ws3_c00349{word-spacing:0.153600pt;}
.ws6_c00349{word-spacing:0.163200pt;}
.ws4_c00349{word-spacing:0.177600pt;}
._7_c00349{margin-left:-7.972800pt;}
._6_c00349{margin-left:-6.606400pt;}
._11_c00349{margin-left:-4.296000pt;}
._2_c00349{margin-left:-3.304000pt;}
._1_c00349{margin-left:-2.284800pt;}
._0_c00349{margin-left:-1.195200pt;}
._3_c00349{width:1.267200pt;}
._4_c00349{width:2.496000pt;}
._14_c00349{width:4.441600pt;}
._13_c00349{width:6.195200pt;}
._5_c00349{width:7.308800pt;}
._12_c00349{width:8.601600pt;}
._15_c00349{width:24.345600pt;}
._8_c00349{width:106.080000pt;}
._b_c00349{width:627.462400pt;}
._f_c00349{width:675.472000pt;}
._9_c00349{width:885.926400pt;}
._a_c00349{width:889.144000pt;}
._c_c00349{width:939.424000pt;}
._d_c00349{width:1028.483200pt;}
._10_c00349{width:1099.532800pt;}
._e_c00349{width:1113.184000pt;}
.fs2_c00349{font-size:48.000000pt;}
.fs0_c00349{font-size:53.440000pt;}
.fs1_c00349{font-size:64.000000pt;}
.y0_c00349{bottom:0.000000pt;}
.y6_c00349{bottom:50.987067pt;}
.y5_c00349{bottom:69.387067pt;}
.y26_c00349{bottom:117.787200pt;}
.y25_c00349{bottom:145.387200pt;}
.y24_c00349{bottom:172.987200pt;}
.y23_c00349{bottom:200.587200pt;}
.y22_c00349{bottom:228.187200pt;}
.y21_c00349{bottom:255.787200pt;}
.y20_c00349{bottom:283.387200pt;}
.y1f_c00349{bottom:310.987200pt;}
.y1e_c00349{bottom:338.587200pt;}
.y1d_c00349{bottom:366.187200pt;}
.y1c_c00349{bottom:390.827200pt;}
.y1b_c00349{bottom:411.787067pt;}
.y1a_c00349{bottom:432.827200pt;}
.y19_c00349{bottom:453.867067pt;}
.y18_c00349{bottom:474.907067pt;}
.y17_c00349{bottom:495.947067pt;}
.y16_c00349{bottom:516.987067pt;}
.y15_c00349{bottom:538.027067pt;}
.y13_c00349{bottom:562.187067pt;}
.y12_c00349{bottom:589.787067pt;}
.y14_c00349{bottom:593.547067pt;}
.y11_c00349{bottom:621.227067pt;}
.y10_c00349{bottom:644.987067pt;}
.yf_c00349{bottom:672.587067pt;}
.ye_c00349{bottom:700.187067pt;}
.yd_c00349{bottom:727.787067pt;}
.yc_c00349{bottom:755.387067pt;}
.yb_c00349{bottom:782.987067pt;}
.ya_c00349{bottom:810.587067pt;}
.y9_c00349{bottom:838.187067pt;}
.y8_c00349{bottom:862.187067pt;}
.y7_c00349{bottom:1003.227067pt;}
.y4_c00349{bottom:1017.227251pt;}
.y3_c00349{bottom:1032.587243pt;}
.y2_c00349{bottom:1047.867075pt;}
.y1_c00349{bottom:1063.227067pt;}
.h3_c00349{height:42.234375pt;}
.h5_c00349{height:43.031250pt;}
.h1_c00349{height:47.020937pt;}
.h2_c00349{height:56.156250pt;}
.h4_c00349{height:57.781250pt;}
.h0_c00349{height:1122.666667pt;}
.w1_c00349{width:793.333333pt;}
.w0_c00349{width:793.626667pt;}
.x0_c00349{left:0.000000pt;}
.x4_c00349{left:113.440000pt;}
.x6_c00349{left:196.160000pt;}
.x8_c00349{left:226.000000pt;}
.x7_c00349{left:530.960000pt;}
.x1_c00349{left:577.440000pt;}
.x5_c00349{left:655.360000pt;}
.x3_c00349{left:656.400000pt;}
.x2_c00349{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f89341261c001de0b29e7fb8.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.095703;font-style:normal;font-weight:normal;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_e890fbfa3c42ffc4357f0cdb.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:1.093262;font-style: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;}
.ls16_c00350{letter-spacing:-0.518400px;}
.ls10_c00350{letter-spacing:-0.223200px;}
.lsd_c00350{letter-spacing:-0.102204px;}
.ls13_c00350{letter-spacing:-0.021600px;}
.ls11_c00350{letter-spacing:-0.014400px;}
.ls14_c00350{letter-spacing:-0.010800px;}
.lsf_c00350{letter-spacing:-0.007200px;}
.lse_c00350{letter-spacing:0.000000px;}
.ls5_c00350{letter-spacing:0.007200px;}
.ls2_c00350{letter-spacing:0.014400px;}
.lsb_c00350{letter-spacing:0.021600px;}
.ls3_c00350{letter-spacing:0.028800px;}
.ls0_c00350{letter-spacing:0.036000px;}
.ls1_c00350{letter-spacing:0.043200px;}
.ls7_c00350{letter-spacing:0.050400px;}
.ls6_c00350{letter-spacing:0.072000px;}
.lsa_c00350{letter-spacing:0.075600px;}
.ls4_c00350{letter-spacing:0.093600px;}
.ls9_c00350{letter-spacing:0.129600px;}
.lsc_c00350{letter-spacing:0.187200px;}
.ls12_c00350{letter-spacing:1.800000px;}
.ls15_c00350{letter-spacing:2.880000px;}
.ls8_c00350{letter-spacing:3.960000px;}
.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:-18.036000px;}
.ws1_c00350{word-spacing:-18.000000px;}
.ws3_c00350{word-spacing:0.000000px;}
.ws2_c00350{word-spacing:0.192384px;}
.ws5_c00350{word-spacing:7.738200px;}
.ws4_c00350{word-spacing:7.749000px;}
._2_c00350{margin-left:-5.464800px;}
._1_c00350{margin-left:-4.356000px;}
._8_c00350{margin-left:-2.908800px;}
._3_c00350{margin-left:-1.015200px;}
._0_c00350{width:1.034064px;}
._5_c00350{width:2.551536px;}
._9_c00350{width:4.691664px;}
._4_c00350{width:6.076800px;}
._6_c00350{width:7.927200px;}
._7_c00350{width:16.524000px;}
._a_c00350{width:1100.160000px;}
.fc2_c00350{color:rgb(255,0,0);}
.fc3_c00350{color:rgb(68,84,106);}
.fc1_c00350{color:rgb(0,0,0);}
.fc0_c00350{color:rgb(32,31,30);}
.fs2_c00350{font-size:54.000000px;}
.fs0_c00350{font-size:60.120000px;}
.fs1_c00350{font-size:72.000000px;}
.y0_c00350{bottom:0.000000px;}
.y5_c00350{bottom:57.360450px;}
.y4_c00350{bottom:78.060450px;}
.y21_c00350{bottom:114.240600px;}
.y20_c00350{bottom:157.350600px;}
.y1f_c00350{bottom:200.370600px;}
.y1e_c00350{bottom:243.390600px;}
.y1d_c00350{bottom:274.530600px;}
.y1c_c00350{bottom:305.580600px;}
.y1b_c00350{bottom:336.630600px;}
.y1a_c00350{bottom:367.680600px;}
.y19_c00350{bottom:398.730600px;}
.y18_c00350{bottom:429.780600px;}
.y17_c00350{bottom:456.780600px;}
.y16_c00350{bottom:626.700000px;}
.y15_c00350{bottom:650.010450px;}
.y14_c00350{bottom:676.740450px;}
.y13_c00350{bottom:707.790450px;}
.y12_c00350{bottom:738.840450px;}
.y11_c00350{bottom:769.890450px;}
.y10_c00350{bottom:800.940450px;}
.yf_c00350{bottom:831.990450px;}
.ye_c00350{bottom:863.040450px;}
.yd_c00350{bottom:894.090450px;}
.yc_c00350{bottom:925.140450px;}
.yb_c00350{bottom:956.190450px;}
.ya_c00350{bottom:987.240450px;}
.y9_c00350{bottom:1018.290450px;}
.y8_c00350{bottom:1049.340450px;}
.y7_c00350{bottom:1080.390450px;}
.y6_c00350{bottom:1111.440450px;}
.y3_c00350{bottom:1132.140450px;}
.y2_c00350{bottom:1165.441023px;}
.y1_c00350{bottom:1196.040600px;}
.h3_c00350{height:47.513672px;}
.h1_c00350{height:52.898555px;}
.h2_c00350{height:63.175781px;}
.h4_c00350{height:63.351562px;}
.h0_c00350{height:1263.000000px;}
.w1_c00350{width:892.500000px;}
.w0_c00350{width:892.830000px;}
.x0_c00350{left:0.000000px;}
.x1_c00350{left:127.620000px;}
.x3_c00350{left:471.870000px;}
.x2_c00350{left:738.450000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls16_c00350{letter-spacing:-0.460800pt;}
.ls10_c00350{letter-spacing:-0.198400pt;}
.lsd_c00350{letter-spacing:-0.090848pt;}
.ls13_c00350{letter-spacing:-0.019200pt;}
.ls11_c00350{letter-spacing:-0.012800pt;}
.ls14_c00350{letter-spacing:-0.009600pt;}
.lsf_c00350{letter-spacing:-0.006400pt;}
.lse_c00350{letter-spacing:0.000000pt;}
.ls5_c00350{letter-spacing:0.006400pt;}
.ls2_c00350{letter-spacing:0.012800pt;}
.lsb_c00350{letter-spacing:0.019200pt;}
.ls3_c00350{letter-spacing:0.025600pt;}
.ls0_c00350{letter-spacing:0.032000pt;}
.ls1_c00350{letter-spacing:0.038400pt;}
.ls7_c00350{letter-spacing:0.044800pt;}
.ls6_c00350{letter-spacing:0.064000pt;}
.lsa_c00350{letter-spacing:0.067200pt;}
.ls4_c00350{letter-spacing:0.083200pt;}
.ls9_c00350{letter-spacing:0.115200pt;}
.lsc_c00350{letter-spacing:0.166400pt;}
.ls12_c00350{letter-spacing:1.600000pt;}
.ls15_c00350{letter-spacing:2.560000pt;}
.ls8_c00350{letter-spacing:3.520000pt;}
.ws0_c00350{word-spacing:-16.032000pt;}
.ws1_c00350{word-spacing:-16.000000pt;}
.ws3_c00350{word-spacing:0.000000pt;}
.ws2_c00350{word-spacing:0.171008pt;}
.ws5_c00350{word-spacing:6.878400pt;}
.ws4_c00350{word-spacing:6.888000pt;}
._2_c00350{margin-left:-4.857600pt;}
._1_c00350{margin-left:-3.872000pt;}
._8_c00350{margin-left:-2.585600pt;}
._3_c00350{margin-left:-0.902400pt;}
._0_c00350{width:0.919168pt;}
._5_c00350{width:2.268032pt;}
._9_c00350{width:4.170368pt;}
._4_c00350{width:5.401600pt;}
._6_c00350{width:7.046400pt;}
._7_c00350{width:14.688000pt;}
._a_c00350{width:977.920000pt;}
.fs2_c00350{font-size:48.000000pt;}
.fs0_c00350{font-size:53.440000pt;}
.fs1_c00350{font-size:64.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y5_c00350{bottom:50.987067pt;}
.y4_c00350{bottom:69.387067pt;}
.y21_c00350{bottom:101.547200pt;}
.y20_c00350{bottom:139.867200pt;}
.y1f_c00350{bottom:178.107200pt;}
.y1e_c00350{bottom:216.347200pt;}
.y1d_c00350{bottom:244.027200pt;}
.y1c_c00350{bottom:271.627200pt;}
.y1b_c00350{bottom:299.227200pt;}
.y1a_c00350{bottom:326.827200pt;}
.y19_c00350{bottom:354.427200pt;}
.y18_c00350{bottom:382.027200pt;}
.y17_c00350{bottom:406.027200pt;}
.y16_c00350{bottom:557.066667pt;}
.y15_c00350{bottom:577.787067pt;}
.y14_c00350{bottom:601.547067pt;}
.y13_c00350{bottom:629.147067pt;}
.y12_c00350{bottom:656.747067pt;}
.y11_c00350{bottom:684.347067pt;}
.y10_c00350{bottom:711.947067pt;}
.yf_c00350{bottom:739.547067pt;}
.ye_c00350{bottom:767.147067pt;}
.yd_c00350{bottom:794.747067pt;}
.yc_c00350{bottom:822.347067pt;}
.yb_c00350{bottom:849.947067pt;}
.ya_c00350{bottom:877.547067pt;}
.y9_c00350{bottom:905.147067pt;}
.y8_c00350{bottom:932.747067pt;}
.y7_c00350{bottom:960.347067pt;}
.y6_c00350{bottom:987.947067pt;}
.y3_c00350{bottom:1006.347067pt;}
.y2_c00350{bottom:1035.947576pt;}
.y1_c00350{bottom:1063.147200pt;}
.h3_c00350{height:42.234375pt;}
.h1_c00350{height:47.020937pt;}
.h2_c00350{height:56.156250pt;}
.h4_c00350{height:56.312500pt;}
.h0_c00350{height:1122.666667pt;}
.w1_c00350{width:793.333333pt;}
.w0_c00350{width:793.626667pt;}
.x0_c00350{left:0.000000pt;}
.x1_c00350{left:113.440000pt;}
.x3_c00350{left:419.440000pt;}
.x2_c00350{left:656.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_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_32bad116723ad3df947f1393.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.095703;font-style:normal;font-weight:normal;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_2a0488b4bbafacae00b07436.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:1.104004;font-style: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;}
.ls11_c00351{letter-spacing:-0.064800px;}
.ls13_c00351{letter-spacing:-0.050400px;}
.lsc_c00351{letter-spacing:-0.048096px;}
.lsf_c00351{letter-spacing:-0.043200px;}
.ls10_c00351{letter-spacing:-0.036000px;}
.lse_c00351{letter-spacing:-0.032400px;}
.ls14_c00351{letter-spacing:-0.028800px;}
.ls12_c00351{letter-spacing:-0.014400px;}
.ls15_c00351{letter-spacing:-0.007200px;}
.lsd_c00351{letter-spacing:0.000000px;}
.ls0_c00351{letter-spacing:0.005400px;}
.ls3_c00351{letter-spacing:0.007200px;}
.ls8_c00351{letter-spacing:0.014400px;}
.ls1_c00351{letter-spacing:0.016200px;}
.ls7_c00351{letter-spacing:0.021600px;}
.ls2_c00351{letter-spacing:0.036000px;}
.lsa_c00351{letter-spacing:0.043200px;}
.ls6_c00351{letter-spacing:0.050400px;}
.ls4_c00351{letter-spacing:0.057600px;}
.ls5_c00351{letter-spacing:0.064800px;}
.lsb_c00351{letter-spacing:0.072000px;}
.ls9_c00351{letter-spacing:0.093600px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00351{word-spacing:0.000000px;}
.ws0_c00351{word-spacing:0.138276px;}
.ws4_c00351{word-spacing:0.162000px;}
.ws2_c00351{word-spacing:0.172800px;}
.ws3_c00351{word-spacing:0.210600px;}
.ws5_c00351{word-spacing:6.062400px;}
._8_c00351{margin-left:-3.261600px;}
._7_c00351{margin-left:-2.181600px;}
._0_c00351{margin-left:-1.134000px;}
._b_c00351{width:1.008000px;}
._c_c00351{width:2.289600px;}
._1_c00351{width:4.284000px;}
._d_c00351{width:5.385600px;}
._4_c00351{width:6.472800px;}
._9_c00351{width:7.977600px;}
._a_c00351{width:9.201600px;}
._3_c00351{width:10.868400px;}
._2_c00351{width:11.880000px;}
._e_c00351{width:13.053600px;}
._f_c00351{width:14.241600px;}
._5_c00351{width:19.468800px;}
._6_c00351{width:20.642400px;}
.fc2_c00351{color:transparent;}
.fc1_c00351{color:rgb(68,84,106);}
.fc0_c00351{color:rgb(0,0,0);}
.fs2_c00351{font-size:54.000000px;}
.fs0_c00351{font-size:60.120000px;}
.fs1_c00351{font-size:72.000000px;}
.fs3_c00351{font-size:83.880000px;}
.y0_c00351{bottom:0.000000px;}
.y6_c00351{bottom:57.360450px;}
.y5_c00351{bottom:78.060450px;}
.y21_c00351{bottom:168.060450px;}
.y20_c00351{bottom:191.187066px;}
.y1f_c00351{bottom:220.257777px;}
.y1e_c00351{bottom:249.328488px;}
.y1d_c00351{bottom:278.399199px;}
.y1c_c00351{bottom:307.469910px;}
.y1b_c00351{bottom:336.450450px;}
.y1a_c00351{bottom:374.340450px;}
.y19_c00351{bottom:413.040450px;}
.y18_c00351{bottom:456.060450px;}
.y17_c00351{bottom:487.200450px;}
.y16_c00351{bottom:518.250450px;}
.y15_c00351{bottom:549.300450px;}
.y14_c00351{bottom:580.350450px;}
.y13_c00351{bottom:611.400450px;}
.y12_c00351{bottom:642.450450px;}
.y11_c00351{bottom:673.500450px;}
.y10_c00351{bottom:704.550450px;}
.yf_c00351{bottom:735.600450px;}
.ye_c00351{bottom:766.650450px;}
.yd_c00351{bottom:797.700450px;}
.yc_c00351{bottom:828.750450px;}
.yb_c00351{bottom:859.710450px;}
.ya_c00351{bottom:890.760450px;}
.y9_c00351{bottom:921.810450px;}
.y8_c00351{bottom:960.780450px;}
.y7_c00351{bottom:1128.630450px;}
.y4_c00351{bottom:1144.380657px;}
.y3_c00351{bottom:1161.660648px;}
.y2_c00351{bottom:1178.850459px;}
.y1_c00351{bottom:1196.130450px;}
.h3_c00351{height:47.513672px;}
.h1_c00351{height:52.898555px;}
.h2_c00351{height:63.175781px;}
.h4_c00351{height:63.351562px;}
.h5_c00351{height:74.500840px;}
.h0_c00351{height:1263.000000px;}
.w1_c00351{width:892.500000px;}
.w0_c00351{width:892.830000px;}
.x0_c00351{left:0.000000px;}
.x4_c00351{left:127.620000px;}
.x1_c00351{left:649.620000px;}
.x5_c00351{left:728.820000px;}
.x3_c00351{left:738.450000px;}
.x2_c00351{left:765.450198px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls11_c00351{letter-spacing:-0.057600pt;}
.ls13_c00351{letter-spacing:-0.044800pt;}
.lsc_c00351{letter-spacing:-0.042752pt;}
.lsf_c00351{letter-spacing:-0.038400pt;}
.ls10_c00351{letter-spacing:-0.032000pt;}
.lse_c00351{letter-spacing:-0.028800pt;}
.ls14_c00351{letter-spacing:-0.025600pt;}
.ls12_c00351{letter-spacing:-0.012800pt;}
.ls15_c00351{letter-spacing:-0.006400pt;}
.lsd_c00351{letter-spacing:0.000000pt;}
.ls0_c00351{letter-spacing:0.004800pt;}
.ls3_c00351{letter-spacing:0.006400pt;}
.ls8_c00351{letter-spacing:0.012800pt;}
.ls1_c00351{letter-spacing:0.014400pt;}
.ls7_c00351{letter-spacing:0.019200pt;}
.ls2_c00351{letter-spacing:0.032000pt;}
.lsa_c00351{letter-spacing:0.038400pt;}
.ls6_c00351{letter-spacing:0.044800pt;}
.ls4_c00351{letter-spacing:0.051200pt;}
.ls5_c00351{letter-spacing:0.057600pt;}
.lsb_c00351{letter-spacing:0.064000pt;}
.ls9_c00351{letter-spacing:0.083200pt;}
.ws1_c00351{word-spacing:0.000000pt;}
.ws0_c00351{word-spacing:0.122912pt;}
.ws4_c00351{word-spacing:0.144000pt;}
.ws2_c00351{word-spacing:0.153600pt;}
.ws3_c00351{word-spacing:0.187200pt;}
.ws5_c00351{word-spacing:5.388800pt;}
._8_c00351{margin-left:-2.899200pt;}
._7_c00351{margin-left:-1.939200pt;}
._0_c00351{margin-left:-1.008000pt;}
._b_c00351{width:0.896000pt;}
._c_c00351{width:2.035200pt;}
._1_c00351{width:3.808000pt;}
._d_c00351{width:4.787200pt;}
._4_c00351{width:5.753600pt;}
._9_c00351{width:7.091200pt;}
._a_c00351{width:8.179200pt;}
._3_c00351{width:9.660800pt;}
._2_c00351{width:10.560000pt;}
._e_c00351{width:11.603200pt;}
._f_c00351{width:12.659200pt;}
._5_c00351{width:17.305600pt;}
._6_c00351{width:18.348800pt;}
.fs2_c00351{font-size:48.000000pt;}
.fs0_c00351{font-size:53.440000pt;}
.fs1_c00351{font-size:64.000000pt;}
.fs3_c00351{font-size:74.560000pt;}
.y0_c00351{bottom:0.000000pt;}
.y6_c00351{bottom:50.987067pt;}
.y5_c00351{bottom:69.387067pt;}
.y21_c00351{bottom:149.387067pt;}
.y20_c00351{bottom:169.944059pt;}
.y1f_c00351{bottom:195.784691pt;}
.y1e_c00351{bottom:221.625323pt;}
.y1d_c00351{bottom:247.465955pt;}
.y1c_c00351{bottom:273.306587pt;}
.y1b_c00351{bottom:299.067067pt;}
.y1a_c00351{bottom:332.747067pt;}
.y19_c00351{bottom:367.147067pt;}
.y18_c00351{bottom:405.387067pt;}
.y17_c00351{bottom:433.067067pt;}
.y16_c00351{bottom:460.667067pt;}
.y15_c00351{bottom:488.267067pt;}
.y14_c00351{bottom:515.867067pt;}
.y13_c00351{bottom:543.467067pt;}
.y12_c00351{bottom:571.067067pt;}
.y11_c00351{bottom:598.667067pt;}
.y10_c00351{bottom:626.267067pt;}
.yf_c00351{bottom:653.867067pt;}
.ye_c00351{bottom:681.467067pt;}
.yd_c00351{bottom:709.067067pt;}
.yc_c00351{bottom:736.667067pt;}
.yb_c00351{bottom:764.187067pt;}
.ya_c00351{bottom:791.787067pt;}
.y9_c00351{bottom:819.387067pt;}
.y8_c00351{bottom:854.027067pt;}
.y7_c00351{bottom:1003.227067pt;}
.y4_c00351{bottom:1017.227251pt;}
.y3_c00351{bottom:1032.587243pt;}
.y2_c00351{bottom:1047.867075pt;}
.y1_c00351{bottom:1063.227067pt;}
.h3_c00351{height:42.234375pt;}
.h1_c00351{height:47.020937pt;}
.h2_c00351{height:56.156250pt;}
.h4_c00351{height:56.312500pt;}
.h5_c00351{height:66.222969pt;}
.h0_c00351{height:1122.666667pt;}
.w1_c00351{width:793.333333pt;}
.w0_c00351{width:793.626667pt;}
.x0_c00351{left:0.000000pt;}
.x4_c00351{left:113.440000pt;}
.x1_c00351{left:577.440000pt;}
.x5_c00351{left:647.840000pt;}
.x3_c00351{left:656.400000pt;}
.x2_c00351{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d68463b24e87671097dedc84.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.095703;font-style:normal;font-weight:normal;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_e400d5b03aa4a0d2b12ce9a6.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_7a2a5127249762dd890402a1.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_e85aca3dccb07d06b20ffa6f.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00352;src:url('chunks/assets/font_67e3b3978b3ced61742e9049.woff2')format("woff");}.ff5_c00352{font-family:ff5_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;}
.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;}
.ls20_c00352{letter-spacing:-0.302400px;}
.ls11_c00352{letter-spacing:-0.151200px;}
.ls1c_c00352{letter-spacing:-0.135000px;}
.lsf_c00352{letter-spacing:-0.124200px;}
.ls12_c00352{letter-spacing:-0.118800px;}
.ls19_c00352{letter-spacing:-0.113400px;}
.ls13_c00352{letter-spacing:-0.108000px;}
.lsb_c00352{letter-spacing:-0.102204px;}
.ls1d_c00352{letter-spacing:-0.097200px;}
.ls1e_c00352{letter-spacing:-0.091800px;}
.ls18_c00352{letter-spacing:-0.086400px;}
.ls14_c00352{letter-spacing:-0.081000px;}
.ls15_c00352{letter-spacing:-0.075600px;}
.ls1a_c00352{letter-spacing:-0.070200px;}
.ls10_c00352{letter-spacing:-0.064800px;}
.lse_c00352{letter-spacing:-0.050400px;}
.ls17_c00352{letter-spacing:-0.043200px;}
.ls1b_c00352{letter-spacing:-0.032400px;}
.ls16_c00352{letter-spacing:-0.027000px;}
.lsd_c00352{letter-spacing:-0.007200px;}
.lsc_c00352{letter-spacing:0.000000px;}
.ls5_c00352{letter-spacing:0.014400px;}
.ls3_c00352{letter-spacing:0.028800px;}
.ls0_c00352{letter-spacing:0.033552px;}
.ls4_c00352{letter-spacing:0.036000px;}
.ls2_c00352{letter-spacing:0.043200px;}
.ls1_c00352{letter-spacing:0.050328px;}
.ls9_c00352{letter-spacing:0.050400px;}
.lsa_c00352{letter-spacing:0.057600px;}
.ls6_c00352{letter-spacing:0.079200px;}
.ls8_c00352{letter-spacing:0.100800px;}
.ls7_c00352{letter-spacing:0.108000px;}
.ls1f_c00352{letter-spacing:0.496800px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00352{word-spacing:-17.697600px;}
.ws2_c00352{word-spacing:0.000000px;}
.ws3_c00352{word-spacing:0.178200px;}
.ws1_c00352{word-spacing:0.192384px;}
._2_c00352{margin-left:-3.592800px;}
._17_c00352{margin-left:-2.383200px;}
._3_c00352{margin-left:-1.382400px;}
._0_c00352{width:1.034064px;}
._1_c00352{width:2.116800px;}
._16_c00352{width:3.168000px;}
._15_c00352{width:4.636800px;}
._18_c00352{width:5.918400px;}
._13_c00352{width:17.847000px;}
._4_c00352{width:57.765600px;}
._5_c00352{width:246.780000px;}
._a_c00352{width:267.198336px;}
._9_c00352{width:279.153936px;}
._c_c00352{width:288.666000px;}
._f_c00352{width:297.468000px;}
._6_c00352{width:369.885600px;}
._11_c00352{width:393.498936px;}
._b_c00352{width:396.234000px;}
._d_c00352{width:423.296136px;}
._10_c00352{width:450.312336px;}
._12_c00352{width:452.861136px;}
._8_c00352{width:501.912000px;}
._e_c00352{width:582.485400px;}
._7_c00352{width:597.492000px;}
._14_c00352{width:602.730000px;}
.fc4_c00352{color:rgb(38,74,96);}
.fc3_c00352{color:rgb(1,2,5);}
.fc2_c00352{color:rgb(68,84,106);}
.fc1_c00352{color:rgb(0,0,0);}
.fc0_c00352{color:rgb(32,31,30);}
.fs3_c00352{font-size:54.000000px;}
.fs0_c00352{font-size:60.120000px;}
.fs1_c00352{font-size:72.000000px;}
.fs2_c00352{font-size:83.880000px;}
.y0_c00352{bottom:0.000000px;}
.y5_c00352{bottom:57.360450px;}
.y4_c00352{bottom:78.060450px;}
.y2a_c00352{bottom:128.190450px;}
.y29_c00352{bottom:159.240450px;}
.y28_c00352{bottom:190.290450px;}
.y27_c00352{bottom:221.340450px;}
.y26_c00352{bottom:252.390450px;}
.y25_c00352{bottom:283.440450px;}
.y24_c00352{bottom:314.490450px;}
.y23_c00352{bottom:345.540450px;}
.y22_c00352{bottom:376.590450px;}
.y21_c00352{bottom:407.640450px;}
.y20_c00352{bottom:435.360600px;}
.y1f_c00352{bottom:458.940150px;}
.y1e_c00352{bottom:482.250600px;}
.y1d_c00352{bottom:505.920450px;}
.y1c_c00352{bottom:529.590450px;}
.y1b_c00352{bottom:553.260450px;}
.y1a_c00352{bottom:576.930450px;}
.y19_c00352{bottom:600.600450px;}
.y18_c00352{bottom:624.180450px;}
.y17_c00352{bottom:647.850450px;}
.y16_c00352{bottom:671.520450px;}
.y15_c00352{bottom:695.190450px;}
.y14_c00352{bottom:718.860450px;}
.y13_c00352{bottom:742.530450px;}
.y12_c00352{bottom:766.200450px;}
.y11_c00352{bottom:789.870450px;}
.y10_c00352{bottom:813.540600px;}
.ye_c00352{bottom:840.720450px;}
.yd_c00352{bottom:871.770450px;}
.yf_c00352{bottom:876.000600px;}
.yc_c00352{bottom:907.140450px;}
.yb_c00352{bottom:945.750450px;}
.ya_c00352{bottom:988.860450px;}
.y9_c00352{bottom:1020.000450px;}
.y8_c00352{bottom:1051.050450px;}
.y7_c00352{bottom:1085.250450px;}
.y6_c00352{bottom:1108.380450px;}
.y3_c00352{bottom:1132.140450px;}
.y2_c00352{bottom:1165.441023px;}
.y1_c00352{bottom:1196.040600px;}
.h4_c00352{height:47.513672px;}
.h6_c00352{height:48.410156px;}
.h1_c00352{height:52.898555px;}
.h2_c00352{height:63.175781px;}
.h7_c00352{height:63.351562px;}
.h5_c00352{height:65.003906px;}
.h3_c00352{height:74.500840px;}
.h0_c00352{height:1263.000000px;}
.w1_c00352{width:892.500000px;}
.w0_c00352{width:892.830000px;}
.x0_c00352{left:0.000000px;}
.x1_c00352{left:127.620000px;}
.x3_c00352{left:285.750000px;}
.x5_c00352{left:351.180000px;}
.x4_c00352{left:535.680000px;}
.x2_c00352{left:738.450000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls20_c00352{letter-spacing:-0.268800pt;}
.ls11_c00352{letter-spacing:-0.134400pt;}
.ls1c_c00352{letter-spacing:-0.120000pt;}
.lsf_c00352{letter-spacing:-0.110400pt;}
.ls12_c00352{letter-spacing:-0.105600pt;}
.ls19_c00352{letter-spacing:-0.100800pt;}
.ls13_c00352{letter-spacing:-0.096000pt;}
.lsb_c00352{letter-spacing:-0.090848pt;}
.ls1d_c00352{letter-spacing:-0.086400pt;}
.ls1e_c00352{letter-spacing:-0.081600pt;}
.ls18_c00352{letter-spacing:-0.076800pt;}
.ls14_c00352{letter-spacing:-0.072000pt;}
.ls15_c00352{letter-spacing:-0.067200pt;}
.ls1a_c00352{letter-spacing:-0.062400pt;}
.ls10_c00352{letter-spacing:-0.057600pt;}
.lse_c00352{letter-spacing:-0.044800pt;}
.ls17_c00352{letter-spacing:-0.038400pt;}
.ls1b_c00352{letter-spacing:-0.028800pt;}
.ls16_c00352{letter-spacing:-0.024000pt;}
.lsd_c00352{letter-spacing:-0.006400pt;}
.lsc_c00352{letter-spacing:0.000000pt;}
.ls5_c00352{letter-spacing:0.012800pt;}
.ls3_c00352{letter-spacing:0.025600pt;}
.ls0_c00352{letter-spacing:0.029824pt;}
.ls4_c00352{letter-spacing:0.032000pt;}
.ls2_c00352{letter-spacing:0.038400pt;}
.ls1_c00352{letter-spacing:0.044736pt;}
.ls9_c00352{letter-spacing:0.044800pt;}
.lsa_c00352{letter-spacing:0.051200pt;}
.ls6_c00352{letter-spacing:0.070400pt;}
.ls8_c00352{letter-spacing:0.089600pt;}
.ls7_c00352{letter-spacing:0.096000pt;}
.ls1f_c00352{letter-spacing:0.441600pt;}
.ws0_c00352{word-spacing:-15.731200pt;}
.ws2_c00352{word-spacing:0.000000pt;}
.ws3_c00352{word-spacing:0.158400pt;}
.ws1_c00352{word-spacing:0.171008pt;}
._2_c00352{margin-left:-3.193600pt;}
._17_c00352{margin-left:-2.118400pt;}
._3_c00352{margin-left:-1.228800pt;}
._0_c00352{width:0.919168pt;}
._1_c00352{width:1.881600pt;}
._16_c00352{width:2.816000pt;}
._15_c00352{width:4.121600pt;}
._18_c00352{width:5.260800pt;}
._13_c00352{width:15.864000pt;}
._4_c00352{width:51.347200pt;}
._5_c00352{width:219.360000pt;}
._a_c00352{width:237.509632pt;}
._9_c00352{width:248.136832pt;}
._c_c00352{width:256.592000pt;}
._f_c00352{width:264.416000pt;}
._6_c00352{width:328.787200pt;}
._11_c00352{width:349.776832pt;}
._b_c00352{width:352.208000pt;}
._d_c00352{width:376.263232pt;}
._10_c00352{width:400.277632pt;}
._12_c00352{width:402.543232pt;}
._8_c00352{width:446.144000pt;}
._e_c00352{width:517.764800pt;}
._7_c00352{width:531.104000pt;}
._14_c00352{width:535.760000pt;}
.fs3_c00352{font-size:48.000000pt;}
.fs0_c00352{font-size:53.440000pt;}
.fs1_c00352{font-size:64.000000pt;}
.fs2_c00352{font-size:74.560000pt;}
.y0_c00352{bottom:0.000000pt;}
.y5_c00352{bottom:50.987067pt;}
.y4_c00352{bottom:69.387067pt;}
.y2a_c00352{bottom:113.947067pt;}
.y29_c00352{bottom:141.547067pt;}
.y28_c00352{bottom:169.147067pt;}
.y27_c00352{bottom:196.747067pt;}
.y26_c00352{bottom:224.347067pt;}
.y25_c00352{bottom:251.947067pt;}
.y24_c00352{bottom:279.547067pt;}
.y23_c00352{bottom:307.147067pt;}
.y22_c00352{bottom:334.747067pt;}
.y21_c00352{bottom:362.347067pt;}
.y20_c00352{bottom:386.987200pt;}
.y1f_c00352{bottom:407.946800pt;}
.y1e_c00352{bottom:428.667200pt;}
.y1d_c00352{bottom:449.707067pt;}
.y1c_c00352{bottom:470.747067pt;}
.y1b_c00352{bottom:491.787067pt;}
.y1a_c00352{bottom:512.827067pt;}
.y19_c00352{bottom:533.867067pt;}
.y18_c00352{bottom:554.827067pt;}
.y17_c00352{bottom:575.867067pt;}
.y16_c00352{bottom:596.907067pt;}
.y15_c00352{bottom:617.947067pt;}
.y14_c00352{bottom:638.987067pt;}
.y13_c00352{bottom:660.027067pt;}
.y12_c00352{bottom:681.067067pt;}
.y11_c00352{bottom:702.107067pt;}
.y10_c00352{bottom:723.147200pt;}
.ye_c00352{bottom:747.307067pt;}
.yd_c00352{bottom:774.907067pt;}
.yf_c00352{bottom:778.667200pt;}
.yc_c00352{bottom:806.347067pt;}
.yb_c00352{bottom:840.667067pt;}
.ya_c00352{bottom:878.987067pt;}
.y9_c00352{bottom:906.667067pt;}
.y8_c00352{bottom:934.267067pt;}
.y7_c00352{bottom:964.667067pt;}
.y6_c00352{bottom:985.227067pt;}
.y3_c00352{bottom:1006.347067pt;}
.y2_c00352{bottom:1035.947576pt;}
.y1_c00352{bottom:1063.147200pt;}
.h4_c00352{height:42.234375pt;}
.h6_c00352{height:43.031250pt;}
.h1_c00352{height:47.020937pt;}
.h2_c00352{height:56.156250pt;}
.h7_c00352{height:56.312500pt;}
.h5_c00352{height:57.781250pt;}
.h3_c00352{height:66.222969pt;}
.h0_c00352{height:1122.666667pt;}
.w1_c00352{width:793.333333pt;}
.w0_c00352{width:793.626667pt;}
.x0_c00352{left:0.000000pt;}
.x1_c00352{left:113.440000pt;}
.x3_c00352{left:254.000000pt;}
.x5_c00352{left:312.160000pt;}
.x4_c00352{left:476.160000pt;}
.x2_c00352{left:656.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_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_eb9889cc3f6939f8a787fb33.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.095703;font-style:normal;font-weight:normal;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_bee5dfe05fa8d7743704ccd2.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.093262;font-style: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;}
.ls17_c00353{letter-spacing:-0.180000px;}
.ls16_c00353{letter-spacing:-0.093600px;}
.lsf_c00353{letter-spacing:-0.048096px;}
.ls12_c00353{letter-spacing:-0.043200px;}
.ls14_c00353{letter-spacing:-0.021600px;}
.ls13_c00353{letter-spacing:-0.010800px;}
.ls15_c00353{letter-spacing:-0.007200px;}
.ls10_c00353{letter-spacing:0.000000px;}
.ls3_c00353{letter-spacing:0.007200px;}
.ls1_c00353{letter-spacing:0.010800px;}
.ls0_c00353{letter-spacing:0.014400px;}
.lsa_c00353{letter-spacing:0.021600px;}
.ls7_c00353{letter-spacing:0.028800px;}
.ls6_c00353{letter-spacing:0.036000px;}
.lsd_c00353{letter-spacing:0.043200px;}
.ls8_c00353{letter-spacing:0.050400px;}
.lse_c00353{letter-spacing:0.057600px;}
.ls4_c00353{letter-spacing:0.064800px;}
.ls9_c00353{letter-spacing:0.072000px;}
.lsb_c00353{letter-spacing:0.079200px;}
.ls2_c00353{letter-spacing:0.086400px;}
.lsc_c00353{letter-spacing:0.093600px;}
.ls11_c00353{letter-spacing:0.648000px;}
.ls5_c00353{letter-spacing:6.120000px;}
.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:-18.086400px;}
.ws1_c00353{word-spacing:-18.064800px;}
.ws2_c00353{word-spacing:-18.000000px;}
.ws4_c00353{word-spacing:0.000000px;}
.ws3_c00353{word-spacing:0.138276px;}
.ws7_c00353{word-spacing:0.156600px;}
.ws6_c00353{word-spacing:0.167400px;}
.ws5_c00353{word-spacing:0.189000px;}
._5_c00353{margin-left:-2.404800px;}
._0_c00353{margin-left:-1.296000px;}
._1_c00353{width:1.022400px;}
._7_c00353{width:2.210400px;}
._6_c00353{width:3.247200px;}
._3_c00353{width:4.968000px;}
._2_c00353{width:5.976000px;}
._4_c00353{width:6.991200px;}
._9_c00353{width:8.330400px;}
._8_c00353{width:9.331200px;}
._b_c00353{width:10.339200px;}
._a_c00353{width:12.556800px;}
.fc2_c00353{color:rgb(255,0,0);}
.fc1_c00353{color:rgb(68,84,106);}
.fc0_c00353{color:rgb(0,0,0);}
.fs2_c00353{font-size:54.000000px;}
.fs0_c00353{font-size:60.120000px;}
.fs1_c00353{font-size:72.000000px;}
.y0_c00353{bottom:0.000000px;}
.y6_c00353{bottom:57.360450px;}
.y5_c00353{bottom:78.060450px;}
.y1e_c00353{bottom:132.960600px;}
.y1d_c00353{bottom:164.010600px;}
.y1c_c00353{bottom:195.060600px;}
.y1b_c00353{bottom:226.110600px;}
.y1a_c00353{bottom:257.160600px;}
.y19_c00353{bottom:288.210600px;}
.y18_c00353{bottom:319.260600px;}
.y17_c00353{bottom:350.310600px;}
.y16_c00353{bottom:381.360600px;}
.y15_c00353{bottom:412.410600px;}
.y14_c00353{bottom:439.410600px;}
.y13_c00353{bottom:628.590450px;}
.y12_c00353{bottom:655.320450px;}
.y11_c00353{bottom:686.370450px;}
.y10_c00353{bottom:717.420450px;}
.yf_c00353{bottom:748.470450px;}
.ye_c00353{bottom:779.520450px;}
.yd_c00353{bottom:810.570450px;}
.yc_c00353{bottom:841.620450px;}
.yb_c00353{bottom:868.530450px;}
.ya_c00353{bottom:1035.480450px;}
.y9_c00353{bottom:1062.210450px;}
.y8_c00353{bottom:1093.260450px;}
.y7_c00353{bottom:1124.310450px;}
.y4_c00353{bottom:1144.380657px;}
.y3_c00353{bottom:1161.660648px;}
.y2_c00353{bottom:1178.850459px;}
.y1_c00353{bottom:1196.130450px;}
.h3_c00353{height:47.513672px;}
.h1_c00353{height:52.898555px;}
.h2_c00353{height:63.175781px;}
.h4_c00353{height:63.351562px;}
.h0_c00353{height:1263.000000px;}
.w1_c00353{width:892.500000px;}
.w0_c00353{width:892.830000px;}
.x0_c00353{left:0.000000px;}
.x4_c00353{left:127.620000px;}
.x1_c00353{left:649.620000px;}
.x5_c00353{left:733.410000px;}
.x3_c00353{left:738.450000px;}
.x6_c00353{left:749.159850px;}
.x2_c00353{left:765.450198px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls17_c00353{letter-spacing:-0.160000pt;}
.ls16_c00353{letter-spacing:-0.083200pt;}
.lsf_c00353{letter-spacing:-0.042752pt;}
.ls12_c00353{letter-spacing:-0.038400pt;}
.ls14_c00353{letter-spacing:-0.019200pt;}
.ls13_c00353{letter-spacing:-0.009600pt;}
.ls15_c00353{letter-spacing:-0.006400pt;}
.ls10_c00353{letter-spacing:0.000000pt;}
.ls3_c00353{letter-spacing:0.006400pt;}
.ls1_c00353{letter-spacing:0.009600pt;}
.ls0_c00353{letter-spacing:0.012800pt;}
.lsa_c00353{letter-spacing:0.019200pt;}
.ls7_c00353{letter-spacing:0.025600pt;}
.ls6_c00353{letter-spacing:0.032000pt;}
.lsd_c00353{letter-spacing:0.038400pt;}
.ls8_c00353{letter-spacing:0.044800pt;}
.lse_c00353{letter-spacing:0.051200pt;}
.ls4_c00353{letter-spacing:0.057600pt;}
.ls9_c00353{letter-spacing:0.064000pt;}
.lsb_c00353{letter-spacing:0.070400pt;}
.ls2_c00353{letter-spacing:0.076800pt;}
.lsc_c00353{letter-spacing:0.083200pt;}
.ls11_c00353{letter-spacing:0.576000pt;}
.ls5_c00353{letter-spacing:5.440000pt;}
.ws0_c00353{word-spacing:-16.076800pt;}
.ws1_c00353{word-spacing:-16.057600pt;}
.ws2_c00353{word-spacing:-16.000000pt;}
.ws4_c00353{word-spacing:0.000000pt;}
.ws3_c00353{word-spacing:0.122912pt;}
.ws7_c00353{word-spacing:0.139200pt;}
.ws6_c00353{word-spacing:0.148800pt;}
.ws5_c00353{word-spacing:0.168000pt;}
._5_c00353{margin-left:-2.137600pt;}
._0_c00353{margin-left:-1.152000pt;}
._1_c00353{width:0.908800pt;}
._7_c00353{width:1.964800pt;}
._6_c00353{width:2.886400pt;}
._3_c00353{width:4.416000pt;}
._2_c00353{width:5.312000pt;}
._4_c00353{width:6.214400pt;}
._9_c00353{width:7.404800pt;}
._8_c00353{width:8.294400pt;}
._b_c00353{width:9.190400pt;}
._a_c00353{width:11.161600pt;}
.fs2_c00353{font-size:48.000000pt;}
.fs0_c00353{font-size:53.440000pt;}
.fs1_c00353{font-size:64.000000pt;}
.y0_c00353{bottom:0.000000pt;}
.y6_c00353{bottom:50.987067pt;}
.y5_c00353{bottom:69.387067pt;}
.y1e_c00353{bottom:118.187200pt;}
.y1d_c00353{bottom:145.787200pt;}
.y1c_c00353{bottom:173.387200pt;}
.y1b_c00353{bottom:200.987200pt;}
.y1a_c00353{bottom:228.587200pt;}
.y19_c00353{bottom:256.187200pt;}
.y18_c00353{bottom:283.787200pt;}
.y17_c00353{bottom:311.387200pt;}
.y16_c00353{bottom:338.987200pt;}
.y15_c00353{bottom:366.587200pt;}
.y14_c00353{bottom:390.587200pt;}
.y13_c00353{bottom:558.747067pt;}
.y12_c00353{bottom:582.507067pt;}
.y11_c00353{bottom:610.107067pt;}
.y10_c00353{bottom:637.707067pt;}
.yf_c00353{bottom:665.307067pt;}
.ye_c00353{bottom:692.907067pt;}
.yd_c00353{bottom:720.507067pt;}
.yc_c00353{bottom:748.107067pt;}
.yb_c00353{bottom:772.027067pt;}
.ya_c00353{bottom:920.427067pt;}
.y9_c00353{bottom:944.187067pt;}
.y8_c00353{bottom:971.787067pt;}
.y7_c00353{bottom:999.387067pt;}
.y4_c00353{bottom:1017.227251pt;}
.y3_c00353{bottom:1032.587243pt;}
.y2_c00353{bottom:1047.867075pt;}
.y1_c00353{bottom:1063.227067pt;}
.h3_c00353{height:42.234375pt;}
.h1_c00353{height:47.020937pt;}
.h2_c00353{height:56.156250pt;}
.h4_c00353{height:56.312500pt;}
.h0_c00353{height:1122.666667pt;}
.w1_c00353{width:793.333333pt;}
.w0_c00353{width:793.626667pt;}
.x0_c00353{left:0.000000pt;}
.x4_c00353{left:113.440000pt;}
.x1_c00353{left:577.440000pt;}
.x5_c00353{left:651.920000pt;}
.x3_c00353{left:656.400000pt;}
.x6_c00353{left:665.919867pt;}
.x2_c00353{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66940075bd3bf5c130742521.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.095703;font-style:normal;font-weight:normal;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_c58c207b75f007b211b3e394.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:1.093262;font-style: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;}
.lsa_c00354{letter-spacing:-0.102204px;}
.ls13_c00354{letter-spacing:-0.064800px;}
.lsd_c00354{letter-spacing:-0.057600px;}
.ls10_c00354{letter-spacing:-0.043200px;}
.ls14_c00354{letter-spacing:-0.028800px;}
.lsf_c00354{letter-spacing:-0.021600px;}
.lse_c00354{letter-spacing:-0.014400px;}
.ls12_c00354{letter-spacing:-0.007200px;}
.lsc_c00354{letter-spacing:-0.005400px;}
.lsb_c00354{letter-spacing:0.000000px;}
.ls0_c00354{letter-spacing:0.007200px;}
.ls4_c00354{letter-spacing:0.014400px;}
.ls6_c00354{letter-spacing:0.021600px;}
.ls7_c00354{letter-spacing:0.028800px;}
.ls2_c00354{letter-spacing:0.036000px;}
.ls3_c00354{letter-spacing:0.043200px;}
.ls8_c00354{letter-spacing:0.057600px;}
.ls5_c00354{letter-spacing:0.064800px;}
.ls1_c00354{letter-spacing:0.072000px;}
.ls9_c00354{letter-spacing:0.086400px;}
.ls11_c00354{letter-spacing:19.080000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00354{word-spacing:0.000000px;}
.ws2_c00354{word-spacing:0.178200px;}
.ws3_c00354{word-spacing:0.183600px;}
.ws0_c00354{word-spacing:0.192384px;}
._14_c00354{margin-left:-19.771200px;}
._13_c00354{margin-left:-18.612000px;}
._3_c00354{margin-left:-2.829600px;}
._4_c00354{margin-left:-1.548000px;}
._0_c00354{width:1.034064px;}
._c_c00354{width:2.076336px;}
._f_c00354{width:3.492432px;}
._15_c00354{width:4.858704px;}
._11_c00354{width:7.696800px;}
._10_c00354{width:8.964000px;}
._16_c00354{width:10.404000px;}
._12_c00354{width:19.072800px;}
._1_c00354{width:28.584000px;}
._2_c00354{width:29.800800px;}
._d_c00354{width:55.058400px;}
._b_c00354{width:64.612800px;}
._6_c00354{width:81.316800px;}
._7_c00354{width:173.620800px;}
._8_c00354{width:244.800000px;}
._a_c00354{width:280.771200px;}
._5_c00354{width:364.356000px;}
._9_c00354{width:525.585600px;}
._e_c00354{width:769.701600px;}
.fc2_c00354{color:rgb(68,84,106);}
.fc1_c00354{color:rgb(0,0,0);}
.fc0_c00354{color:rgb(32,31,30);}
.fs2_c00354{font-size:54.000000px;}
.fs0_c00354{font-size:60.120000px;}
.fs1_c00354{font-size:72.000000px;}
.y0_c00354{bottom:0.000000px;}
.y5_c00354{bottom:57.360450px;}
.y4_c00354{bottom:78.060450px;}
.y21_c00354{bottom:243.660450px;}
.y20_c00354{bottom:274.710450px;}
.y1f_c00354{bottom:305.760450px;}
.y1e_c00354{bottom:336.810450px;}
.y1d_c00354{bottom:367.860450px;}
.y1c_c00354{bottom:398.910450px;}
.y1b_c00354{bottom:429.960450px;}
.y1a_c00354{bottom:461.010450px;}
.y19_c00354{bottom:492.060450px;}
.y18_c00354{bottom:523.110450px;}
.y17_c00354{bottom:554.160450px;}
.y16_c00354{bottom:597.090450px;}
.y15_c00354{bottom:628.230450px;}
.y14_c00354{bottom:659.280450px;}
.y13_c00354{bottom:690.330450px;}
.y12_c00354{bottom:733.260450px;}
.y11_c00354{bottom:765.210450px;}
.y10_c00354{bottom:796.980450px;}
.yf_c00354{bottom:828.750450px;}
.ye_c00354{bottom:859.800450px;}
.yd_c00354{bottom:891.570450px;}
.yc_c00354{bottom:923.430450px;}
.yb_c00354{bottom:955.200450px;}
.ya_c00354{bottom:986.970450px;}
.y9_c00354{bottom:1022.610450px;}
.y8_c00354{bottom:1049.340450px;}
.y7_c00354{bottom:1080.390450px;}
.y6_c00354{bottom:1111.440450px;}
.y3_c00354{bottom:1132.140450px;}
.y2_c00354{bottom:1165.441023px;}
.y1_c00354{bottom:1196.040600px;}
.h3_c00354{height:47.513672px;}
.h1_c00354{height:52.898555px;}
.h2_c00354{height:63.175781px;}
.h0_c00354{height:1263.000000px;}
.w1_c00354{width:892.500000px;}
.w0_c00354{width:892.830000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:127.620000px;}
.x3_c00354{left:251.640000px;}
.x4_c00354{left:486.540000px;}
.x2_c00354{left:738.450000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.lsa_c00354{letter-spacing:-0.090848pt;}
.ls13_c00354{letter-spacing:-0.057600pt;}
.lsd_c00354{letter-spacing:-0.051200pt;}
.ls10_c00354{letter-spacing:-0.038400pt;}
.ls14_c00354{letter-spacing:-0.025600pt;}
.lsf_c00354{letter-spacing:-0.019200pt;}
.lse_c00354{letter-spacing:-0.012800pt;}
.ls12_c00354{letter-spacing:-0.006400pt;}
.lsc_c00354{letter-spacing:-0.004800pt;}
.lsb_c00354{letter-spacing:0.000000pt;}
.ls0_c00354{letter-spacing:0.006400pt;}
.ls4_c00354{letter-spacing:0.012800pt;}
.ls6_c00354{letter-spacing:0.019200pt;}
.ls7_c00354{letter-spacing:0.025600pt;}
.ls2_c00354{letter-spacing:0.032000pt;}
.ls3_c00354{letter-spacing:0.038400pt;}
.ls8_c00354{letter-spacing:0.051200pt;}
.ls5_c00354{letter-spacing:0.057600pt;}
.ls1_c00354{letter-spacing:0.064000pt;}
.ls9_c00354{letter-spacing:0.076800pt;}
.ls11_c00354{letter-spacing:16.960000pt;}
.ws1_c00354{word-spacing:0.000000pt;}
.ws2_c00354{word-spacing:0.158400pt;}
.ws3_c00354{word-spacing:0.163200pt;}
.ws0_c00354{word-spacing:0.171008pt;}
._14_c00354{margin-left:-17.574400pt;}
._13_c00354{margin-left:-16.544000pt;}
._3_c00354{margin-left:-2.515200pt;}
._4_c00354{margin-left:-1.376000pt;}
._0_c00354{width:0.919168pt;}
._c_c00354{width:1.845632pt;}
._f_c00354{width:3.104384pt;}
._15_c00354{width:4.318848pt;}
._11_c00354{width:6.841600pt;}
._10_c00354{width:7.968000pt;}
._16_c00354{width:9.248000pt;}
._12_c00354{width:16.953600pt;}
._1_c00354{width:25.408000pt;}
._2_c00354{width:26.489600pt;}
._d_c00354{width:48.940800pt;}
._b_c00354{width:57.433600pt;}
._6_c00354{width:72.281600pt;}
._7_c00354{width:154.329600pt;}
._8_c00354{width:217.600000pt;}
._a_c00354{width:249.574400pt;}
._5_c00354{width:323.872000pt;}
._9_c00354{width:467.187200pt;}
._e_c00354{width:684.179200pt;}
.fs2_c00354{font-size:48.000000pt;}
.fs0_c00354{font-size:53.440000pt;}
.fs1_c00354{font-size:64.000000pt;}
.y0_c00354{bottom:0.000000pt;}
.y5_c00354{bottom:50.987067pt;}
.y4_c00354{bottom:69.387067pt;}
.y21_c00354{bottom:216.587067pt;}
.y20_c00354{bottom:244.187067pt;}
.y1f_c00354{bottom:271.787067pt;}
.y1e_c00354{bottom:299.387067pt;}
.y1d_c00354{bottom:326.987067pt;}
.y1c_c00354{bottom:354.587067pt;}
.y1b_c00354{bottom:382.187067pt;}
.y1a_c00354{bottom:409.787067pt;}
.y19_c00354{bottom:437.387067pt;}
.y18_c00354{bottom:464.987067pt;}
.y17_c00354{bottom:492.587067pt;}
.y16_c00354{bottom:530.747067pt;}
.y15_c00354{bottom:558.427067pt;}
.y14_c00354{bottom:586.027067pt;}
.y13_c00354{bottom:613.627067pt;}
.y12_c00354{bottom:651.787067pt;}
.y11_c00354{bottom:680.187067pt;}
.y10_c00354{bottom:708.427067pt;}
.yf_c00354{bottom:736.667067pt;}
.ye_c00354{bottom:764.267067pt;}
.yd_c00354{bottom:792.507067pt;}
.yc_c00354{bottom:820.827067pt;}
.yb_c00354{bottom:849.067067pt;}
.ya_c00354{bottom:877.307067pt;}
.y9_c00354{bottom:908.987067pt;}
.y8_c00354{bottom:932.747067pt;}
.y7_c00354{bottom:960.347067pt;}
.y6_c00354{bottom:987.947067pt;}
.y3_c00354{bottom:1006.347067pt;}
.y2_c00354{bottom:1035.947576pt;}
.y1_c00354{bottom:1063.147200pt;}
.h3_c00354{height:42.234375pt;}
.h1_c00354{height:47.020937pt;}
.h2_c00354{height:56.156250pt;}
.h0_c00354{height:1122.666667pt;}
.w1_c00354{width:793.333333pt;}
.w0_c00354{width:793.626667pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:113.440000pt;}
.x3_c00354{left:223.680000pt;}
.x4_c00354{left:432.480000pt;}
.x2_c00354{left:656.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_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_34f1d3981daca18b3e035ee3.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.095703;font-style:normal;font-weight:normal;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_aab88c6b4026511ec7a85370.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.093262;font-style: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);}
.v2_c00355{vertical-align:-20.880000px;}
.v0_c00355{vertical-align:0.000000px;}
.v1_c00355{vertical-align:27.000000px;}
.ls1c_c00355{letter-spacing:-0.084168px;}
.ls17_c00355{letter-spacing:-0.072000px;}
.ls1b_c00355{letter-spacing:-0.066132px;}
.ls18_c00355{letter-spacing:-0.050400px;}
.ls12_c00355{letter-spacing:-0.048096px;}
.ls1a_c00355{letter-spacing:-0.036000px;}
.ls19_c00355{letter-spacing:-0.028800px;}
.ls14_c00355{letter-spacing:-0.014400px;}
.ls15_c00355{letter-spacing:-0.007200px;}
.ls13_c00355{letter-spacing:0.000000px;}
.ls1_c00355{letter-spacing:0.007200px;}
.ls0_c00355{letter-spacing:0.014400px;}
.ls11_c00355{letter-spacing:0.018036px;}
.ls4_c00355{letter-spacing:0.021600px;}
.lsf_c00355{letter-spacing:0.024048px;}
.ls6_c00355{letter-spacing:0.028800px;}
.ls10_c00355{letter-spacing:0.030060px;}
.lsb_c00355{letter-spacing:0.036000px;}
.lsa_c00355{letter-spacing:0.043200px;}
.ls8_c00355{letter-spacing:0.050400px;}
.ls5_c00355{letter-spacing:0.057600px;}
.lsc_c00355{letter-spacing:0.064800px;}
.ls3_c00355{letter-spacing:0.072000px;}
.ls7_c00355{letter-spacing:0.079200px;}
.ls9_c00355{letter-spacing:0.086400px;}
.lsd_c00355{letter-spacing:0.093600px;}
.lse_c00355{letter-spacing:0.096192px;}
.ls2_c00355{letter-spacing:0.115200px;}
.ls16_c00355{letter-spacing:0.181944px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00355{word-spacing:-17.949600px;}
.ws4_c00355{word-spacing:-15.060060px;}
.ws3_c00355{word-spacing:-14.945832px;}
.ws0_c00355{word-spacing:-12.151944px;}
.ws2_c00355{word-spacing:-9.720000px;}
.ws7_c00355{word-spacing:-0.006012px;}
.ws6_c00355{word-spacing:0.000000px;}
.ws5_c00355{word-spacing:0.138276px;}
._1_c00355{margin-left:-4.752000px;}
._0_c00355{margin-left:-3.600000px;}
._8_c00355{margin-left:-2.232000px;}
._3_c00355{margin-left:-1.065600px;}
._9_c00355{width:1.425600px;}
._7_c00355{width:2.440800px;}
._4_c00355{width:3.931200px;}
._5_c00355{width:5.112000px;}
._2_c00355{width:7.192800px;}
._6_c00355{width:8.272800px;}
._a_c00355{width:10.396800px;}
.fc0_c00355{color:rgb(0,0,0);}
.fs3_c00355{font-size:38.880000px;}
.fs2_c00355{font-size:47.880000px;}
.fs0_c00355{font-size:60.120000px;}
.fs1_c00355{font-size:72.000000px;}
.y0_c00355{bottom:0.000000px;}
.y6_c00355{bottom:57.360450px;}
.y5_c00355{bottom:78.060450px;}
.y24_c00355{bottom:109.920648px;}
.y23_c00355{bottom:127.110459px;}
.y22_c00355{bottom:149.610450px;}
.y21_c00355{bottom:162.300450px;}
.y20_c00355{bottom:336.180450px;}
.y1f_c00355{bottom:367.230450px;}
.y1e_c00355{bottom:398.280450px;}
.y1d_c00355{bottom:429.330450px;}
.y1c_c00355{bottom:460.380450px;}
.y1b_c00355{bottom:491.430450px;}
.y1a_c00355{bottom:522.480450px;}
.y19_c00355{bottom:553.530450px;}
.y18_c00355{bottom:584.580450px;}
.y17_c00355{bottom:615.630450px;}
.y16_c00355{bottom:646.680450px;}
.y15_c00355{bottom:677.640450px;}
.y14_c00355{bottom:708.690450px;}
.y13_c00355{bottom:739.740450px;}
.y12_c00355{bottom:770.790450px;}
.y11_c00355{bottom:801.840450px;}
.y10_c00355{bottom:832.890450px;}
.yf_c00355{bottom:863.940450px;}
.ye_c00355{bottom:894.990450px;}
.yd_c00355{bottom:926.040450px;}
.yc_c00355{bottom:957.090450px;}
.yb_c00355{bottom:988.140450px;}
.ya_c00355{bottom:1019.190450px;}
.y9_c00355{bottom:1050.240450px;}
.y8_c00355{bottom:1093.170450px;}
.y7_c00355{bottom:1124.310450px;}
.y4_c00355{bottom:1144.380657px;}
.y3_c00355{bottom:1161.660648px;}
.y2_c00355{bottom:1178.850459px;}
.y1_c00355{bottom:1196.130450px;}
.h5_c00355{height:34.114922px;}
.h6_c00355{height:52.751777px;}
.h1_c00355{height:52.898555px;}
.h2_c00355{height:63.175781px;}
.h4_c00355{height:63.351562px;}
.h3_c00355{height:69.011895px;}
.h0_c00355{height:1263.000000px;}
.w1_c00355{width:892.500000px;}
.w0_c00355{width:892.830000px;}
.x0_c00355{left:0.000000px;}
.x4_c00355{left:127.620000px;}
.x1_c00355{left:649.620000px;}
.x3_c00355{left:738.450000px;}
.x2_c00355{left:765.450198px;}
@media print{
.v2_c00355{vertical-align:-18.560000pt;}
.v0_c00355{vertical-align:0.000000pt;}
.v1_c00355{vertical-align:24.000000pt;}
.ls1c_c00355{letter-spacing:-0.074816pt;}
.ls17_c00355{letter-spacing:-0.064000pt;}
.ls1b_c00355{letter-spacing:-0.058784pt;}
.ls18_c00355{letter-spacing:-0.044800pt;}
.ls12_c00355{letter-spacing:-0.042752pt;}
.ls1a_c00355{letter-spacing:-0.032000pt;}
.ls19_c00355{letter-spacing:-0.025600pt;}
.ls14_c00355{letter-spacing:-0.012800pt;}
.ls15_c00355{letter-spacing:-0.006400pt;}
.ls13_c00355{letter-spacing:0.000000pt;}
.ls1_c00355{letter-spacing:0.006400pt;}
.ls0_c00355{letter-spacing:0.012800pt;}
.ls11_c00355{letter-spacing:0.016032pt;}
.ls4_c00355{letter-spacing:0.019200pt;}
.lsf_c00355{letter-spacing:0.021376pt;}
.ls6_c00355{letter-spacing:0.025600pt;}
.ls10_c00355{letter-spacing:0.026720pt;}
.lsb_c00355{letter-spacing:0.032000pt;}
.lsa_c00355{letter-spacing:0.038400pt;}
.ls8_c00355{letter-spacing:0.044800pt;}
.ls5_c00355{letter-spacing:0.051200pt;}
.lsc_c00355{letter-spacing:0.057600pt;}
.ls3_c00355{letter-spacing:0.064000pt;}
.ls7_c00355{letter-spacing:0.070400pt;}
.ls9_c00355{letter-spacing:0.076800pt;}
.lsd_c00355{letter-spacing:0.083200pt;}
.lse_c00355{letter-spacing:0.085504pt;}
.ls2_c00355{letter-spacing:0.102400pt;}
.ls16_c00355{letter-spacing:0.161728pt;}
.ws1_c00355{word-spacing:-15.955200pt;}
.ws4_c00355{word-spacing:-13.386720pt;}
.ws3_c00355{word-spacing:-13.285184pt;}
.ws0_c00355{word-spacing:-10.801728pt;}
.ws2_c00355{word-spacing:-8.640000pt;}
.ws7_c00355{word-spacing:-0.005344pt;}
.ws6_c00355{word-spacing:0.000000pt;}
.ws5_c00355{word-spacing:0.122912pt;}
._1_c00355{margin-left:-4.224000pt;}
._0_c00355{margin-left:-3.200000pt;}
._8_c00355{margin-left:-1.984000pt;}
._3_c00355{margin-left:-0.947200pt;}
._9_c00355{width:1.267200pt;}
._7_c00355{width:2.169600pt;}
._4_c00355{width:3.494400pt;}
._5_c00355{width:4.544000pt;}
._2_c00355{width:6.393600pt;}
._6_c00355{width:7.353600pt;}
._a_c00355{width:9.241600pt;}
.fs3_c00355{font-size:34.560000pt;}
.fs2_c00355{font-size:42.560000pt;}
.fs0_c00355{font-size:53.440000pt;}
.fs1_c00355{font-size:64.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.y6_c00355{bottom:50.987067pt;}
.y5_c00355{bottom:69.387067pt;}
.y24_c00355{bottom:97.707243pt;}
.y23_c00355{bottom:112.987075pt;}
.y22_c00355{bottom:132.987067pt;}
.y21_c00355{bottom:144.267067pt;}
.y20_c00355{bottom:298.827067pt;}
.y1f_c00355{bottom:326.427067pt;}
.y1e_c00355{bottom:354.027067pt;}
.y1d_c00355{bottom:381.627067pt;}
.y1c_c00355{bottom:409.227067pt;}
.y1b_c00355{bottom:436.827067pt;}
.y1a_c00355{bottom:464.427067pt;}
.y19_c00355{bottom:492.027067pt;}
.y18_c00355{bottom:519.627067pt;}
.y17_c00355{bottom:547.227067pt;}
.y16_c00355{bottom:574.827067pt;}
.y15_c00355{bottom:602.347067pt;}
.y14_c00355{bottom:629.947067pt;}
.y13_c00355{bottom:657.547067pt;}
.y12_c00355{bottom:685.147067pt;}
.y11_c00355{bottom:712.747067pt;}
.y10_c00355{bottom:740.347067pt;}
.yf_c00355{bottom:767.947067pt;}
.ye_c00355{bottom:795.547067pt;}
.yd_c00355{bottom:823.147067pt;}
.yc_c00355{bottom:850.747067pt;}
.yb_c00355{bottom:878.347067pt;}
.ya_c00355{bottom:905.947067pt;}
.y9_c00355{bottom:933.547067pt;}
.y8_c00355{bottom:971.707067pt;}
.y7_c00355{bottom:999.387067pt;}
.y4_c00355{bottom:1017.227251pt;}
.y3_c00355{bottom:1032.587243pt;}
.y2_c00355{bottom:1047.867075pt;}
.y1_c00355{bottom:1063.227067pt;}
.h5_c00355{height:30.324375pt;}
.h6_c00355{height:46.890469pt;}
.h1_c00355{height:47.020937pt;}
.h2_c00355{height:56.156250pt;}
.h4_c00355{height:56.312500pt;}
.h3_c00355{height:61.343906pt;}
.h0_c00355{height:1122.666667pt;}
.w1_c00355{width:793.333333pt;}
.w0_c00355{width:793.626667pt;}
.x0_c00355{left:0.000000pt;}
.x4_c00355{left:113.440000pt;}
.x1_c00355{left:577.440000pt;}
.x3_c00355{left:656.400000pt;}
.x2_c00355{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21ab3c9a29397258b9cec18f.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.095703;font-style:normal;font-weight:normal;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_8776ead19d4abcf8619c6d3f.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:1.093262;font-style: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;}
.ls10_c00356{letter-spacing:-0.102204px;}
.ls17_c00356{letter-spacing:-0.043200px;}
.ls15_c00356{letter-spacing:-0.036000px;}
.ls12_c00356{letter-spacing:-0.028800px;}
.ls14_c00356{letter-spacing:-0.021600px;}
.ls16_c00356{letter-spacing:-0.014400px;}
.ls19_c00356{letter-spacing:-0.010800px;}
.ls13_c00356{letter-spacing:-0.007200px;}
.ls18_c00356{letter-spacing:-0.005400px;}
.ls11_c00356{letter-spacing:0.000000px;}
.lsb_c00356{letter-spacing:0.007200px;}
.lsf_c00356{letter-spacing:0.014400px;}
.lsc_c00356{letter-spacing:0.021600px;}
.ls4_c00356{letter-spacing:0.028800px;}
.ls0_c00356{letter-spacing:0.032400px;}
.ls3_c00356{letter-spacing:0.036000px;}
.ls1_c00356{letter-spacing:0.043200px;}
.ls8_c00356{letter-spacing:0.050400px;}
.ls5_c00356{letter-spacing:0.064800px;}
.lsa_c00356{letter-spacing:0.072000px;}
.lse_c00356{letter-spacing:0.079200px;}
.ls9_c00356{letter-spacing:0.086400px;}
.ls6_c00356{letter-spacing:0.100800px;}
.ls7_c00356{letter-spacing:0.108000px;}
.lsd_c00356{letter-spacing:3.240000px;}
.ls2_c00356{letter-spacing:710.818200px;}
.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:-18.072000px;}
.ws0_c00356{word-spacing:-18.064800px;}
.ws5_c00356{word-spacing:-0.221400px;}
.ws3_c00356{word-spacing:0.000000px;}
.ws4_c00356{word-spacing:0.145800px;}
.ws2_c00356{word-spacing:0.192384px;}
.ws6_c00356{word-spacing:3.225600px;}
.ws7_c00356{word-spacing:3.276000px;}
.ws8_c00356{word-spacing:12.787200px;}
.ws9_c00356{word-spacing:12.792600px;}
._6_c00356{margin-left:-3.362400px;}
._5_c00356{margin-left:-2.152800px;}
._1_c00356{margin-left:-1.063800px;}
._0_c00356{width:1.034064px;}
._8_c00356{width:2.196000px;}
._7_c00356{width:3.218400px;}
._9_c00356{width:6.062400px;}
._3_c00356{width:7.588800px;}
._4_c00356{width:8.884800px;}
._2_c00356{width:94.683600px;}
.fc3_c00356{color:rgb(255,0,0);}
.fc2_c00356{color:rgb(68,84,106);}
.fc1_c00356{color:rgb(0,0,0);}
.fc0_c00356{color:rgb(32,31,30);}
.fs2_c00356{font-size:54.000000px;}
.fs0_c00356{font-size:60.120000px;}
.fs1_c00356{font-size:72.000000px;}
.y0_c00356{bottom:0.000000px;}
.y5_c00356{bottom:57.360450px;}
.y4_c00356{bottom:78.060450px;}
.y1d_c00356{bottom:159.780450px;}
.y1c_c00356{bottom:199.200900px;}
.y1b_c00356{bottom:359.760450px;}
.y1a_c00356{bottom:386.490450px;}
.y19_c00356{bottom:417.540450px;}
.y18_c00356{bottom:448.590450px;}
.y17_c00356{bottom:479.640450px;}
.y16_c00356{bottom:510.690450px;}
.y15_c00356{bottom:541.740450px;}
.y14_c00356{bottom:572.790450px;}
.y13_c00356{bottom:603.840450px;}
.y12_c00356{bottom:634.890450px;}
.y11_c00356{bottom:665.940450px;}
.y10_c00356{bottom:696.990450px;}
.yf_c00356{bottom:728.040450px;}
.ye_c00356{bottom:759.090450px;}
.yd_c00356{bottom:802.020450px;}
.yc_c00356{bottom:833.160450px;}
.yb_c00356{bottom:864.210450px;}
.ya_c00356{bottom:895.260450px;}
.y9_c00356{bottom:926.310450px;}
.y8_c00356{bottom:957.360450px;}
.y7_c00356{bottom:996.780900px;}
.y6_c00356{bottom:1115.760450px;}
.y3_c00356{bottom:1132.140450px;}
.y2_c00356{bottom:1165.441023px;}
.y1_c00356{bottom:1196.040600px;}
.h3_c00356{height:47.513672px;}
.h1_c00356{height:52.898555px;}
.h2_c00356{height:63.175781px;}
.h4_c00356{height:63.351562px;}
.h0_c00356{height:1263.000000px;}
.w1_c00356{width:892.500000px;}
.w0_c00356{width:892.830000px;}
.x0_c00356{left:0.000000px;}
.x1_c00356{left:127.620000px;}
.x3_c00356{left:165.420000px;}
.x4_c00356{left:355.140900px;}
.x2_c00356{left:738.450000px;}
.x5_c00356{left:755.820900px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls10_c00356{letter-spacing:-0.090848pt;}
.ls17_c00356{letter-spacing:-0.038400pt;}
.ls15_c00356{letter-spacing:-0.032000pt;}
.ls12_c00356{letter-spacing:-0.025600pt;}
.ls14_c00356{letter-spacing:-0.019200pt;}
.ls16_c00356{letter-spacing:-0.012800pt;}
.ls19_c00356{letter-spacing:-0.009600pt;}
.ls13_c00356{letter-spacing:-0.006400pt;}
.ls18_c00356{letter-spacing:-0.004800pt;}
.ls11_c00356{letter-spacing:0.000000pt;}
.lsb_c00356{letter-spacing:0.006400pt;}
.lsf_c00356{letter-spacing:0.012800pt;}
.lsc_c00356{letter-spacing:0.019200pt;}
.ls4_c00356{letter-spacing:0.025600pt;}
.ls0_c00356{letter-spacing:0.028800pt;}
.ls3_c00356{letter-spacing:0.032000pt;}
.ls1_c00356{letter-spacing:0.038400pt;}
.ls8_c00356{letter-spacing:0.044800pt;}
.ls5_c00356{letter-spacing:0.057600pt;}
.lsa_c00356{letter-spacing:0.064000pt;}
.lse_c00356{letter-spacing:0.070400pt;}
.ls9_c00356{letter-spacing:0.076800pt;}
.ls6_c00356{letter-spacing:0.089600pt;}
.ls7_c00356{letter-spacing:0.096000pt;}
.lsd_c00356{letter-spacing:2.880000pt;}
.ls2_c00356{letter-spacing:631.838400pt;}
.ws1_c00356{word-spacing:-16.064000pt;}
.ws0_c00356{word-spacing:-16.057600pt;}
.ws5_c00356{word-spacing:-0.196800pt;}
.ws3_c00356{word-spacing:0.000000pt;}
.ws4_c00356{word-spacing:0.129600pt;}
.ws2_c00356{word-spacing:0.171008pt;}
.ws6_c00356{word-spacing:2.867200pt;}
.ws7_c00356{word-spacing:2.912000pt;}
.ws8_c00356{word-spacing:11.366400pt;}
.ws9_c00356{word-spacing:11.371200pt;}
._6_c00356{margin-left:-2.988800pt;}
._5_c00356{margin-left:-1.913600pt;}
._1_c00356{margin-left:-0.945600pt;}
._0_c00356{width:0.919168pt;}
._8_c00356{width:1.952000pt;}
._7_c00356{width:2.860800pt;}
._9_c00356{width:5.388800pt;}
._3_c00356{width:6.745600pt;}
._4_c00356{width:7.897600pt;}
._2_c00356{width:84.163200pt;}
.fs2_c00356{font-size:48.000000pt;}
.fs0_c00356{font-size:53.440000pt;}
.fs1_c00356{font-size:64.000000pt;}
.y0_c00356{bottom:0.000000pt;}
.y5_c00356{bottom:50.987067pt;}
.y4_c00356{bottom:69.387067pt;}
.y1d_c00356{bottom:142.027067pt;}
.y1c_c00356{bottom:177.067467pt;}
.y1b_c00356{bottom:319.787067pt;}
.y1a_c00356{bottom:343.547067pt;}
.y19_c00356{bottom:371.147067pt;}
.y18_c00356{bottom:398.747067pt;}
.y17_c00356{bottom:426.347067pt;}
.y16_c00356{bottom:453.947067pt;}
.y15_c00356{bottom:481.547067pt;}
.y14_c00356{bottom:509.147067pt;}
.y13_c00356{bottom:536.747067pt;}
.y12_c00356{bottom:564.347067pt;}
.y11_c00356{bottom:591.947067pt;}
.y10_c00356{bottom:619.547067pt;}
.yf_c00356{bottom:647.147067pt;}
.ye_c00356{bottom:674.747067pt;}
.yd_c00356{bottom:712.907067pt;}
.yc_c00356{bottom:740.587067pt;}
.yb_c00356{bottom:768.187067pt;}
.ya_c00356{bottom:795.787067pt;}
.y9_c00356{bottom:823.387067pt;}
.y8_c00356{bottom:850.987067pt;}
.y7_c00356{bottom:886.027467pt;}
.y6_c00356{bottom:991.787067pt;}
.y3_c00356{bottom:1006.347067pt;}
.y2_c00356{bottom:1035.947576pt;}
.y1_c00356{bottom:1063.147200pt;}
.h3_c00356{height:42.234375pt;}
.h1_c00356{height:47.020937pt;}
.h2_c00356{height:56.156250pt;}
.h4_c00356{height:56.312500pt;}
.h0_c00356{height:1122.666667pt;}
.w1_c00356{width:793.333333pt;}
.w0_c00356{width:793.626667pt;}
.x0_c00356{left:0.000000pt;}
.x1_c00356{left:113.440000pt;}
.x3_c00356{left:147.040000pt;}
.x4_c00356{left:315.680800pt;}
.x2_c00356{left:656.400000pt;}
.x5_c00356{left:671.840800pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7136b92d8b70227142286d2b.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.095703;font-style:normal;font-weight:normal;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_196b4c8dc8fd4bce45a6437f.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.093262;font-style:normal;font-weight:normal;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_35c2a7c8e6682276f7a64fb2.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00357;src:url('chunks/assets/font_a99f20c5caa3ee0f76db93b5.woff2')format("woff");}.ff4_c00357{font-family:ff4_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:ff5_c00357;src:url('chunks/assets/font_9fd6be38eb54e99b9039f779.woff2')format("woff");}.ff5_c00357{font-family:ff5_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;}
.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);}
.v2_c00357{vertical-align:-20.880000px;}
.v0_c00357{vertical-align:0.000000px;}
.v1_c00357{vertical-align:27.000000px;}
.ls10_c00357{letter-spacing:-0.288000px;}
.ls13_c00357{letter-spacing:-0.151200px;}
.ls17_c00357{letter-spacing:-0.124200px;}
.ls1e_c00357{letter-spacing:-0.108216px;}
.ls1d_c00357{letter-spacing:-0.096192px;}
.ls1a_c00357{letter-spacing:-0.091800px;}
.ls14_c00357{letter-spacing:-0.064800px;}
.ls18_c00357{letter-spacing:-0.059400px;}
.ls11_c00357{letter-spacing:-0.050400px;}
.lsd_c00357{letter-spacing:-0.048096px;}
.ls19_c00357{letter-spacing:-0.043200px;}
.ls15_c00357{letter-spacing:-0.016200px;}
.lsf_c00357{letter-spacing:-0.014400px;}
.ls16_c00357{letter-spacing:-0.007200px;}
.lse_c00357{letter-spacing:0.000000px;}
.ls0_c00357{letter-spacing:0.007200px;}
.ls4_c00357{letter-spacing:0.014400px;}
.lsb_c00357{letter-spacing:0.021600px;}
.ls8_c00357{letter-spacing:0.028800px;}
.ls3_c00357{letter-spacing:0.036000px;}
.ls2_c00357{letter-spacing:0.043200px;}
.ls5_c00357{letter-spacing:0.050328px;}
.lsa_c00357{letter-spacing:0.050400px;}
.ls7_c00357{letter-spacing:0.057600px;}
.ls1_c00357{letter-spacing:0.079200px;}
.lsc_c00357{letter-spacing:0.086400px;}
.ls9_c00357{letter-spacing:0.093600px;}
.ls12_c00357{letter-spacing:0.181944px;}
.ls1b_c00357{letter-spacing:0.496800px;}
.ls1c_c00357{letter-spacing:2.822400px;}
.ls6_c00357{letter-spacing:161.748000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00357{word-spacing:-20.023200px;}
.ws0_c00357{word-spacing:-18.036000px;}
.ws1_c00357{word-spacing:-12.151944px;}
.ws3_c00357{word-spacing:-9.720000px;}
.ws5_c00357{word-spacing:0.000000px;}
.ws4_c00357{word-spacing:0.138276px;}
.ws6_c00357{word-spacing:0.194400px;}
._10_c00357{margin-left:-4.111200px;}
._8_c00357{margin-left:-2.880000px;}
._0_c00357{margin-left:-1.152000px;}
._1_c00357{width:1.310400px;}
._9_c00357{width:2.664000px;}
._a_c00357{width:4.291200px;}
._11_c00357{width:6.444000px;}
._b_c00357{width:7.524000px;}
._f_c00357{width:8.604000px;}
._e_c00357{width:9.900000px;}
._d_c00357{width:11.131200px;}
._c_c00357{width:19.188000px;}
._2_c00357{width:63.525600px;}
._4_c00357{width:99.507600px;}
._3_c00357{width:161.816400px;}
._5_c00357{width:447.771600px;}
._6_c00357{width:453.970800px;}
._7_c00357{width:500.749200px;}
.fc3_c00357{color:rgb(38,74,96);}
.fc2_c00357{color:rgb(1,2,5);}
.fc1_c00357{color:rgb(68,84,106);}
.fc0_c00357{color:rgb(0,0,0);}
.fs5_c00357{font-size:38.880000px;}
.fs2_c00357{font-size:47.880000px;}
.fs4_c00357{font-size:54.000000px;}
.fs0_c00357{font-size:60.120000px;}
.fs1_c00357{font-size:72.000000px;}
.fs3_c00357{font-size:83.880000px;}
.y0_c00357{bottom:0.000000px;}
.y6_c00357{bottom:57.360450px;}
.y5_c00357{bottom:78.060450px;}
.y29_c00357{bottom:115.140450px;}
.y28_c00357{bottom:127.830450px;}
.y27_c00357{bottom:184.710450px;}
.y26_c00357{bottom:215.760450px;}
.y25_c00357{bottom:246.810450px;}
.y24_c00357{bottom:277.860450px;}
.y23_c00357{bottom:308.910450px;}
.y22_c00357{bottom:339.960450px;}
.y21_c00357{bottom:371.010450px;}
.y20_c00357{bottom:402.060450px;}
.y1f_c00357{bottom:433.110450px;}
.y1e_c00357{bottom:464.160450px;}
.y1d_c00357{bottom:495.210450px;}
.y1c_c00357{bottom:526.260450px;}
.y1b_c00357{bottom:557.310450px;}
.y1a_c00357{bottom:588.360450px;}
.y19_c00357{bottom:619.410450px;}
.y18_c00357{bottom:650.460450px;}
.y17_c00357{bottom:681.510450px;}
.y16_c00357{bottom:712.560450px;}
.y15_c00357{bottom:740.280450px;}
.y14_c00357{bottom:763.860450px;}
.y13_c00357{bottom:787.530450px;}
.y12_c00357{bottom:811.200450px;}
.y10_c00357{bottom:838.380450px;}
.yf_c00357{bottom:869.430600px;}
.y11_c00357{bottom:873.660450px;}
.ye_c00357{bottom:904.890450px;}
.yd_c00357{bottom:934.770450px;}
.yc_c00357{bottom:957.901386px;}
.yb_c00357{bottom:997.140450px;}
.ya_c00357{bottom:1031.160450px;}
.y9_c00357{bottom:1062.210450px;}
.y8_c00357{bottom:1093.260450px;}
.y7_c00357{bottom:1124.310450px;}
.y4_c00357{bottom:1144.380657px;}
.y3_c00357{bottom:1161.660648px;}
.y2_c00357{bottom:1178.850459px;}
.y1_c00357{bottom:1196.130450px;}
.h8_c00357{height:34.114922px;}
.h7_c00357{height:48.410156px;}
.h1_c00357{height:52.898555px;}
.h2_c00357{height:63.175781px;}
.h5_c00357{height:63.351562px;}
.h6_c00357{height:65.003906px;}
.h3_c00357{height:69.011895px;}
.h4_c00357{height:74.500840px;}
.h0_c00357{height:1263.000000px;}
.w1_c00357{width:892.500000px;}
.w0_c00357{width:892.830000px;}
.x0_c00357{left:0.000000px;}
.x4_c00357{left:127.620000px;}
.x5_c00357{left:309.060000px;}
.x7_c00357{left:353.250000px;}
.x6_c00357{left:512.370000px;}
.x1_c00357{left:649.620000px;}
.x3_c00357{left:738.450000px;}
.x2_c00357{left:765.450198px;}
@media print{
.v2_c00357{vertical-align:-18.560000pt;}
.v0_c00357{vertical-align:0.000000pt;}
.v1_c00357{vertical-align:24.000000pt;}
.ls10_c00357{letter-spacing:-0.256000pt;}
.ls13_c00357{letter-spacing:-0.134400pt;}
.ls17_c00357{letter-spacing:-0.110400pt;}
.ls1e_c00357{letter-spacing:-0.096192pt;}
.ls1d_c00357{letter-spacing:-0.085504pt;}
.ls1a_c00357{letter-spacing:-0.081600pt;}
.ls14_c00357{letter-spacing:-0.057600pt;}
.ls18_c00357{letter-spacing:-0.052800pt;}
.ls11_c00357{letter-spacing:-0.044800pt;}
.lsd_c00357{letter-spacing:-0.042752pt;}
.ls19_c00357{letter-spacing:-0.038400pt;}
.ls15_c00357{letter-spacing:-0.014400pt;}
.lsf_c00357{letter-spacing:-0.012800pt;}
.ls16_c00357{letter-spacing:-0.006400pt;}
.lse_c00357{letter-spacing:0.000000pt;}
.ls0_c00357{letter-spacing:0.006400pt;}
.ls4_c00357{letter-spacing:0.012800pt;}
.lsb_c00357{letter-spacing:0.019200pt;}
.ls8_c00357{letter-spacing:0.025600pt;}
.ls3_c00357{letter-spacing:0.032000pt;}
.ls2_c00357{letter-spacing:0.038400pt;}
.ls5_c00357{letter-spacing:0.044736pt;}
.lsa_c00357{letter-spacing:0.044800pt;}
.ls7_c00357{letter-spacing:0.051200pt;}
.ls1_c00357{letter-spacing:0.070400pt;}
.lsc_c00357{letter-spacing:0.076800pt;}
.ls9_c00357{letter-spacing:0.083200pt;}
.ls12_c00357{letter-spacing:0.161728pt;}
.ls1b_c00357{letter-spacing:0.441600pt;}
.ls1c_c00357{letter-spacing:2.508800pt;}
.ls6_c00357{letter-spacing:143.776000pt;}
.ws2_c00357{word-spacing:-17.798400pt;}
.ws0_c00357{word-spacing:-16.032000pt;}
.ws1_c00357{word-spacing:-10.801728pt;}
.ws3_c00357{word-spacing:-8.640000pt;}
.ws5_c00357{word-spacing:0.000000pt;}
.ws4_c00357{word-spacing:0.122912pt;}
.ws6_c00357{word-spacing:0.172800pt;}
._10_c00357{margin-left:-3.654400pt;}
._8_c00357{margin-left:-2.560000pt;}
._0_c00357{margin-left:-1.024000pt;}
._1_c00357{width:1.164800pt;}
._9_c00357{width:2.368000pt;}
._a_c00357{width:3.814400pt;}
._11_c00357{width:5.728000pt;}
._b_c00357{width:6.688000pt;}
._f_c00357{width:7.648000pt;}
._e_c00357{width:8.800000pt;}
._d_c00357{width:9.894400pt;}
._c_c00357{width:17.056000pt;}
._2_c00357{width:56.467200pt;}
._4_c00357{width:88.451200pt;}
._3_c00357{width:143.836800pt;}
._5_c00357{width:398.019200pt;}
._6_c00357{width:403.529600pt;}
._7_c00357{width:445.110400pt;}
.fs5_c00357{font-size:34.560000pt;}
.fs2_c00357{font-size:42.560000pt;}
.fs4_c00357{font-size:48.000000pt;}
.fs0_c00357{font-size:53.440000pt;}
.fs1_c00357{font-size:64.000000pt;}
.fs3_c00357{font-size:74.560000pt;}
.y0_c00357{bottom:0.000000pt;}
.y6_c00357{bottom:50.987067pt;}
.y5_c00357{bottom:69.387067pt;}
.y29_c00357{bottom:102.347067pt;}
.y28_c00357{bottom:113.627067pt;}
.y27_c00357{bottom:164.187067pt;}
.y26_c00357{bottom:191.787067pt;}
.y25_c00357{bottom:219.387067pt;}
.y24_c00357{bottom:246.987067pt;}
.y23_c00357{bottom:274.587067pt;}
.y22_c00357{bottom:302.187067pt;}
.y21_c00357{bottom:329.787067pt;}
.y20_c00357{bottom:357.387067pt;}
.y1f_c00357{bottom:384.987067pt;}
.y1e_c00357{bottom:412.587067pt;}
.y1d_c00357{bottom:440.187067pt;}
.y1c_c00357{bottom:467.787067pt;}
.y1b_c00357{bottom:495.387067pt;}
.y1a_c00357{bottom:522.987067pt;}
.y19_c00357{bottom:550.587067pt;}
.y18_c00357{bottom:578.187067pt;}
.y17_c00357{bottom:605.787067pt;}
.y16_c00357{bottom:633.387067pt;}
.y15_c00357{bottom:658.027067pt;}
.y14_c00357{bottom:678.987067pt;}
.y13_c00357{bottom:700.027067pt;}
.y12_c00357{bottom:721.067067pt;}
.y10_c00357{bottom:745.227067pt;}
.yf_c00357{bottom:772.827200pt;}
.y11_c00357{bottom:776.587067pt;}
.ye_c00357{bottom:804.347067pt;}
.yd_c00357{bottom:830.907067pt;}
.yc_c00357{bottom:851.467899pt;}
.yb_c00357{bottom:886.347067pt;}
.ya_c00357{bottom:916.587067pt;}
.y9_c00357{bottom:944.187067pt;}
.y8_c00357{bottom:971.787067pt;}
.y7_c00357{bottom:999.387067pt;}
.y4_c00357{bottom:1017.227251pt;}
.y3_c00357{bottom:1032.587243pt;}
.y2_c00357{bottom:1047.867075pt;}
.y1_c00357{bottom:1063.227067pt;}
.h8_c00357{height:30.324375pt;}
.h7_c00357{height:43.031250pt;}
.h1_c00357{height:47.020937pt;}
.h2_c00357{height:56.156250pt;}
.h5_c00357{height:56.312500pt;}
.h6_c00357{height:57.781250pt;}
.h3_c00357{height:61.343906pt;}
.h4_c00357{height:66.222969pt;}
.h0_c00357{height:1122.666667pt;}
.w1_c00357{width:793.333333pt;}
.w0_c00357{width:793.626667pt;}
.x0_c00357{left:0.000000pt;}
.x4_c00357{left:113.440000pt;}
.x5_c00357{left:274.720000pt;}
.x7_c00357{left:314.000000pt;}
.x6_c00357{left:455.440000pt;}
.x1_c00357{left:577.440000pt;}
.x3_c00357{left:656.400000pt;}
.x2_c00357{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_966d3f30b4c69ba2e67bef11.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.095703;font-style:normal;font-weight:normal;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_f6a3c21aeb10730ac8c0749c.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_19f6f23b9ba992db65252e8c.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_24f851ac3562d954a2232f6a.woff2')format("woff");}.ff4_c00358{font-family:ff4_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;}
.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;}
.ls15_c00358{letter-spacing:-0.151200px;}
.ls13_c00358{letter-spacing:-0.145800px;}
.ls16_c00358{letter-spacing:-0.135000px;}
.ls12_c00358{letter-spacing:-0.124200px;}
.ls17_c00358{letter-spacing:-0.118800px;}
.lsf_c00358{letter-spacing:-0.102204px;}
.ls14_c00358{letter-spacing:-0.091800px;}
.ls19_c00358{letter-spacing:-0.021600px;}
.ls11_c00358{letter-spacing:-0.007200px;}
.ls10_c00358{letter-spacing:0.000000px;}
.ls9_c00358{letter-spacing:0.007200px;}
.ls0_c00358{letter-spacing:0.010800px;}
.ls8_c00358{letter-spacing:0.014400px;}
.ls2_c00358{letter-spacing:0.016200px;}
.ls5_c00358{letter-spacing:0.021600px;}
.lse_c00358{letter-spacing:0.028800px;}
.ls3_c00358{letter-spacing:0.036000px;}
.ls6_c00358{letter-spacing:0.043200px;}
.lsa_c00358{letter-spacing:0.050400px;}
.ls4_c00358{letter-spacing:0.057600px;}
.ls1_c00358{letter-spacing:0.064800px;}
.ls7_c00358{letter-spacing:0.072000px;}
.lsd_c00358{letter-spacing:0.079200px;}
.lsb_c00358{letter-spacing:0.093600px;}
.ls18_c00358{letter-spacing:0.496800px;}
.lsc_c00358{letter-spacing:3.960000px;}
.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:-18.000000px;}
.ws5_c00358{word-spacing:-0.770400px;}
.ws2_c00358{word-spacing:0.000000px;}
.ws3_c00358{word-spacing:0.167400px;}
.ws1_c00358{word-spacing:0.192384px;}
.ws4_c00358{word-spacing:3.592800px;}
._d_c00358{margin-left:-2.217600px;}
._6_c00358{margin-left:-1.026000px;}
._0_c00358{width:1.034064px;}
._7_c00358{width:2.143872px;}
._9_c00358{width:3.587328px;}
._e_c00358{width:6.084000px;}
._8_c00358{width:7.912800px;}
._a_c00358{width:9.676800px;}
._b_c00358{width:12.981600px;}
._c_c00358{width:14.803200px;}
._1_c00358{width:62.085600px;}
._5_c00358{width:152.172000px;}
._3_c00358{width:199.947600px;}
._4_c00358{width:211.330800px;}
._2_c00358{width:258.384600px;}
.fc5_c00358{color:rgb(255,0,0);}
.fc4_c00358{color:rgb(38,74,96);}
.fc3_c00358{color:rgb(1,2,5);}
.fc2_c00358{color:rgb(68,84,106);}
.fc1_c00358{color:rgb(0,0,0);}
.fc0_c00358{color:rgb(32,31,30);}
.fs2_c00358{font-size:54.000000px;}
.fs0_c00358{font-size:60.120000px;}
.fs1_c00358{font-size:72.000000px;}
.y0_c00358{bottom:0.000000px;}
.y5_c00358{bottom:57.360450px;}
.y4_c00358{bottom:78.060450px;}
.y28_c00358{bottom:139.080450px;}
.y27_c00358{bottom:170.130450px;}
.y26_c00358{bottom:201.180450px;}
.y25_c00358{bottom:232.230450px;}
.y24_c00358{bottom:263.280450px;}
.y23_c00358{bottom:294.330450px;}
.y22_c00358{bottom:325.380450px;}
.y21_c00358{bottom:356.430450px;}
.y20_c00358{bottom:387.480450px;}
.y1f_c00358{bottom:418.530450px;}
.y1e_c00358{bottom:449.580450px;}
.y1d_c00358{bottom:480.630450px;}
.y1c_c00358{bottom:511.680450px;}
.y1b_c00358{bottom:542.730450px;}
.y1a_c00358{bottom:573.780450px;}
.y19_c00358{bottom:604.830450px;}
.y18_c00358{bottom:635.880450px;}
.y17_c00358{bottom:666.930450px;}
.y16_c00358{bottom:697.890450px;}
.y15_c00358{bottom:728.940450px;}
.y14_c00358{bottom:759.990450px;}
.y13_c00358{bottom:791.040450px;}
.y12_c00358{bottom:822.090450px;}
.y11_c00358{bottom:853.140450px;}
.y10_c00358{bottom:880.860600px;}
.yf_c00358{bottom:904.530450px;}
.ye_c00358{bottom:927.840450px;}
.yd_c00358{bottom:951.510450px;}
.yc_c00358{bottom:975.180450px;}
.yb_c00358{bottom:998.400450px;}
.ya_c00358{bottom:1022.070450px;}
.y8_c00358{bottom:1049.250450px;}
.y7_c00358{bottom:1080.300450px;}
.y9_c00358{bottom:1084.530450px;}
.y6_c00358{bottom:1115.760450px;}
.y3_c00358{bottom:1132.140450px;}
.y2_c00358{bottom:1165.441023px;}
.y1_c00358{bottom:1196.040600px;}
.h3_c00358{height:47.513672px;}
.h5_c00358{height:48.410156px;}
.h1_c00358{height:52.898555px;}
.h2_c00358{height:63.175781px;}
.h6_c00358{height:63.351562px;}
.h4_c00358{height:65.003906px;}
.h0_c00358{height:1263.000000px;}
.w1_c00358{width:892.500000px;}
.w0_c00358{width:892.830000px;}
.x0_c00358{left:0.000000px;}
.x1_c00358{left:127.620000px;}
.x3_c00358{left:306.810000px;}
.x5_c00358{left:311.310000px;}
.x6_c00358{left:379.620000px;}
.x4_c00358{left:478.080000px;}
.x2_c00358{left:738.450000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls15_c00358{letter-spacing:-0.134400pt;}
.ls13_c00358{letter-spacing:-0.129600pt;}
.ls16_c00358{letter-spacing:-0.120000pt;}
.ls12_c00358{letter-spacing:-0.110400pt;}
.ls17_c00358{letter-spacing:-0.105600pt;}
.lsf_c00358{letter-spacing:-0.090848pt;}
.ls14_c00358{letter-spacing:-0.081600pt;}
.ls19_c00358{letter-spacing:-0.019200pt;}
.ls11_c00358{letter-spacing:-0.006400pt;}
.ls10_c00358{letter-spacing:0.000000pt;}
.ls9_c00358{letter-spacing:0.006400pt;}
.ls0_c00358{letter-spacing:0.009600pt;}
.ls8_c00358{letter-spacing:0.012800pt;}
.ls2_c00358{letter-spacing:0.014400pt;}
.ls5_c00358{letter-spacing:0.019200pt;}
.lse_c00358{letter-spacing:0.025600pt;}
.ls3_c00358{letter-spacing:0.032000pt;}
.ls6_c00358{letter-spacing:0.038400pt;}
.lsa_c00358{letter-spacing:0.044800pt;}
.ls4_c00358{letter-spacing:0.051200pt;}
.ls1_c00358{letter-spacing:0.057600pt;}
.ls7_c00358{letter-spacing:0.064000pt;}
.lsd_c00358{letter-spacing:0.070400pt;}
.lsb_c00358{letter-spacing:0.083200pt;}
.ls18_c00358{letter-spacing:0.441600pt;}
.lsc_c00358{letter-spacing:3.520000pt;}
.ws0_c00358{word-spacing:-16.000000pt;}
.ws5_c00358{word-spacing:-0.684800pt;}
.ws2_c00358{word-spacing:0.000000pt;}
.ws3_c00358{word-spacing:0.148800pt;}
.ws1_c00358{word-spacing:0.171008pt;}
.ws4_c00358{word-spacing:3.193600pt;}
._d_c00358{margin-left:-1.971200pt;}
._6_c00358{margin-left:-0.912000pt;}
._0_c00358{width:0.919168pt;}
._7_c00358{width:1.905664pt;}
._9_c00358{width:3.188736pt;}
._e_c00358{width:5.408000pt;}
._8_c00358{width:7.033600pt;}
._a_c00358{width:8.601600pt;}
._b_c00358{width:11.539200pt;}
._c_c00358{width:13.158400pt;}
._1_c00358{width:55.187200pt;}
._5_c00358{width:135.264000pt;}
._3_c00358{width:177.731200pt;}
._4_c00358{width:187.849600pt;}
._2_c00358{width:229.675200pt;}
.fs2_c00358{font-size:48.000000pt;}
.fs0_c00358{font-size:53.440000pt;}
.fs1_c00358{font-size:64.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y5_c00358{bottom:50.987067pt;}
.y4_c00358{bottom:69.387067pt;}
.y28_c00358{bottom:123.627067pt;}
.y27_c00358{bottom:151.227067pt;}
.y26_c00358{bottom:178.827067pt;}
.y25_c00358{bottom:206.427067pt;}
.y24_c00358{bottom:234.027067pt;}
.y23_c00358{bottom:261.627067pt;}
.y22_c00358{bottom:289.227067pt;}
.y21_c00358{bottom:316.827067pt;}
.y20_c00358{bottom:344.427067pt;}
.y1f_c00358{bottom:372.027067pt;}
.y1e_c00358{bottom:399.627067pt;}
.y1d_c00358{bottom:427.227067pt;}
.y1c_c00358{bottom:454.827067pt;}
.y1b_c00358{bottom:482.427067pt;}
.y1a_c00358{bottom:510.027067pt;}
.y19_c00358{bottom:537.627067pt;}
.y18_c00358{bottom:565.227067pt;}
.y17_c00358{bottom:592.827067pt;}
.y16_c00358{bottom:620.347067pt;}
.y15_c00358{bottom:647.947067pt;}
.y14_c00358{bottom:675.547067pt;}
.y13_c00358{bottom:703.147067pt;}
.y12_c00358{bottom:730.747067pt;}
.y11_c00358{bottom:758.347067pt;}
.y10_c00358{bottom:782.987200pt;}
.yf_c00358{bottom:804.027067pt;}
.ye_c00358{bottom:824.747067pt;}
.yd_c00358{bottom:845.787067pt;}
.yc_c00358{bottom:866.827067pt;}
.yb_c00358{bottom:887.467067pt;}
.ya_c00358{bottom:908.507067pt;}
.y8_c00358{bottom:932.667067pt;}
.y7_c00358{bottom:960.267067pt;}
.y9_c00358{bottom:964.027067pt;}
.y6_c00358{bottom:991.787067pt;}
.y3_c00358{bottom:1006.347067pt;}
.y2_c00358{bottom:1035.947576pt;}
.y1_c00358{bottom:1063.147200pt;}
.h3_c00358{height:42.234375pt;}
.h5_c00358{height:43.031250pt;}
.h1_c00358{height:47.020937pt;}
.h2_c00358{height:56.156250pt;}
.h6_c00358{height:56.312500pt;}
.h4_c00358{height:57.781250pt;}
.h0_c00358{height:1122.666667pt;}
.w1_c00358{width:793.333333pt;}
.w0_c00358{width:793.626667pt;}
.x0_c00358{left:0.000000pt;}
.x1_c00358{left:113.440000pt;}
.x3_c00358{left:272.720000pt;}
.x5_c00358{left:276.720000pt;}
.x6_c00358{left:337.440000pt;}
.x4_c00358{left:424.960000pt;}
.x2_c00358{left:656.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_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_68d6c25e6336676d9ca6786c.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.095703;font-style:normal;font-weight:normal;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_e22a7e861ecdfe58e5ce4c16.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_86553ccf486b040f95164328.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_13e4c6e9a2b74dbc3af2e38a.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:0.896973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00359;src:url('chunks/assets/font_d35c0a49cd4985d8735d6a22.woff2')format("woff");}.ff5_c00359{font-family:ff5_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;}
@font-face{font-family:ff6_c00359;src:url('chunks/assets/font_c7efc59fec0bcde468072aae.woff2')format("woff");}.ff6_c00359{font-family:ff6_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;}
.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;}
.v1_c00359{vertical-align:16.920000px;}
.ls15_c00359{letter-spacing:-0.151200px;}
.ls13_c00359{letter-spacing:-0.145800px;}
.ls19_c00359{letter-spacing:-0.129600px;}
.ls12_c00359{letter-spacing:-0.124200px;}
.ls14_c00359{letter-spacing:-0.118800px;}
.ls1d_c00359{letter-spacing:-0.097200px;}
.ls1b_c00359{letter-spacing:-0.091800px;}
.ls1a_c00359{letter-spacing:-0.086400px;}
.ls1e_c00359{letter-spacing:-0.064800px;}
.ls1c_c00359{letter-spacing:-0.059400px;}
.lse_c00359{letter-spacing:-0.048096px;}
.ls18_c00359{letter-spacing:-0.043200px;}
.ls17_c00359{letter-spacing:-0.037800px;}
.ls11_c00359{letter-spacing:-0.027000px;}
.ls16_c00359{letter-spacing:-0.016200px;}
.ls10_c00359{letter-spacing:-0.007200px;}
.lsf_c00359{letter-spacing:0.000000px;}
.lsb_c00359{letter-spacing:0.005400px;}
.ls7_c00359{letter-spacing:0.010800px;}
.ls2_c00359{letter-spacing:0.014400px;}
.ls4_c00359{letter-spacing:0.016200px;}
.lsa_c00359{letter-spacing:0.021600px;}
.ls6_c00359{letter-spacing:0.025164px;}
.ls1_c00359{letter-spacing:0.036000px;}
.ls0_c00359{letter-spacing:0.043200px;}
.lsc_c00359{letter-spacing:0.048600px;}
.ls3_c00359{letter-spacing:0.064800px;}
.ls5_c00359{letter-spacing:0.075600px;}
.lsd_c00359{letter-spacing:0.108000px;}
.ls1f_c00359{letter-spacing:0.118800px;}
.ls20_c00359{letter-spacing:0.496800px;}
.ls9_c00359{letter-spacing:88.308000px;}
.ls8_c00359{letter-spacing:154.800000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00359{word-spacing:0.000000px;}
.ws0_c00359{word-spacing:0.138276px;}
.ws4_c00359{word-spacing:0.167400px;}
.ws2_c00359{word-spacing:12.765600px;}
.ws3_c00359{word-spacing:12.808800px;}
._1_c00359{margin-left:-1.108800px;}
._0_c00359{width:1.396800px;}
._1b_c00359{width:3.369600px;}
._1a_c00359{width:4.644000px;}
._1c_c00359{width:7.509600px;}
._4_c00359{width:88.462800px;}
._d_c00359{width:300.247200px;}
._12_c00359{width:312.877800px;}
._18_c00359{width:494.717400px;}
._11_c00359{width:505.485000px;}
._17_c00359{width:723.758400px;}
._3_c00359{width:795.600000px;}
._5_c00359{width:858.949200px;}
._2_c00359{width:873.000000px;}
._13_c00359{width:906.192000px;}
._14_c00359{width:913.064400px;}
._a_c00359{width:915.829200px;}
._10_c00359{width:1029.985200px;}
._15_c00359{width:1034.947800px;}
._e_c00359{width:1047.178800px;}
._6_c00359{width:1054.101600px;}
._8_c00359{width:1072.213200px;}
._c_c00359{width:1074.178800px;}
._16_c00359{width:1079.557200px;}
._9_c00359{width:1092.393000px;}
._19_c00359{width:1097.542800px;}
._f_c00359{width:1107.972000px;}
._7_c00359{width:1113.210000px;}
._b_c00359{width:1119.339000px;}
.fc3_c00359{color:rgb(38,74,96);}
.fc2_c00359{color:rgb(1,2,5);}
.fc1_c00359{color:rgb(68,84,106);}
.fc0_c00359{color:rgb(0,0,0);}
.fs2_c00359{font-size:54.000000px;}
.fs0_c00359{font-size:60.120000px;}
.fs1_c00359{font-size:72.000000px;}
.fs3_c00359{font-size:83.880000px;}
.y0_c00359{bottom:0.000000px;}
.y6_c00359{bottom:57.360450px;}
.y5_c00359{bottom:78.060450px;}
.y2a_c00359{bottom:116.400450px;}
.y29_c00359{bottom:147.450450px;}
.y28_c00359{bottom:178.500450px;}
.y27_c00359{bottom:206.220450px;}
.y26_c00359{bottom:229.890450px;}
.y25_c00359{bottom:253.560450px;}
.y24_c00359{bottom:277.230450px;}
.y23_c00359{bottom:300.900450px;}
.y22_c00359{bottom:324.570450px;}
.y21_c00359{bottom:348.240450px;}
.y20_c00359{bottom:371.820450px;}
.y1f_c00359{bottom:395.490450px;}
.y1e_c00359{bottom:419.160600px;}
.y1d_c00359{bottom:442.830450px;}
.y1c_c00359{bottom:466.500600px;}
.y1b_c00359{bottom:490.170450px;}
.y1a_c00359{bottom:513.840600px;}
.y19_c00359{bottom:537.510450px;}
.y18_c00359{bottom:561.180450px;}
.y17_c00359{bottom:584.760450px;}
.y16_c00359{bottom:608.430450px;}
.y15_c00359{bottom:632.100450px;}
.y14_c00359{bottom:655.770450px;}
.y13_c00359{bottom:679.440450px;}
.y12_c00359{bottom:706.620450px;}
.y11_c00359{bottom:742.080450px;}
.y10_c00359{bottom:771.960450px;}
.yf_c00359{bottom:795.089460px;}
.ye_c00359{bottom:834.240450px;}
.yd_c00359{bottom:868.350450px;}
.yc_c00359{bottom:884.910450px;}
.yb_c00359{bottom:1012.260450px;}
.ya_c00359{bottom:1035.480450px;}
.y9_c00359{bottom:1062.210450px;}
.y8_c00359{bottom:1093.260450px;}
.y7_c00359{bottom:1124.310450px;}
.y4_c00359{bottom:1144.380657px;}
.y3_c00359{bottom:1161.660648px;}
.y2_c00359{bottom:1178.850459px;}
.y1_c00359{bottom:1196.130450px;}
.h3_c00359{height:47.513672px;}
.h7_c00359{height:48.410156px;}
.h1_c00359{height:52.898555px;}
.h5_c00359{height:57.135059px;}
.h2_c00359{height:63.175781px;}
.h6_c00359{height:65.330156px;}
.h4_c00359{height:74.500840px;}
.h0_c00359{height:1263.000000px;}
.w1_c00359{width:892.500000px;}
.w0_c00359{width:892.830000px;}
.x0_c00359{left:0.000000px;}
.x4_c00359{left:127.620000px;}
.x6_c00359{left:220.680000px;}
.x7_c00359{left:246.510000px;}
.x5_c00359{left:321.120000px;}
.x1_c00359{left:649.620000px;}
.x3_c00359{left:738.450000px;}
.x2_c00359{left:765.450198px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.v1_c00359{vertical-align:15.040000pt;}
.ls15_c00359{letter-spacing:-0.134400pt;}
.ls13_c00359{letter-spacing:-0.129600pt;}
.ls19_c00359{letter-spacing:-0.115200pt;}
.ls12_c00359{letter-spacing:-0.110400pt;}
.ls14_c00359{letter-spacing:-0.105600pt;}
.ls1d_c00359{letter-spacing:-0.086400pt;}
.ls1b_c00359{letter-spacing:-0.081600pt;}
.ls1a_c00359{letter-spacing:-0.076800pt;}
.ls1e_c00359{letter-spacing:-0.057600pt;}
.ls1c_c00359{letter-spacing:-0.052800pt;}
.lse_c00359{letter-spacing:-0.042752pt;}
.ls18_c00359{letter-spacing:-0.038400pt;}
.ls17_c00359{letter-spacing:-0.033600pt;}
.ls11_c00359{letter-spacing:-0.024000pt;}
.ls16_c00359{letter-spacing:-0.014400pt;}
.ls10_c00359{letter-spacing:-0.006400pt;}
.lsf_c00359{letter-spacing:0.000000pt;}
.lsb_c00359{letter-spacing:0.004800pt;}
.ls7_c00359{letter-spacing:0.009600pt;}
.ls2_c00359{letter-spacing:0.012800pt;}
.ls4_c00359{letter-spacing:0.014400pt;}
.lsa_c00359{letter-spacing:0.019200pt;}
.ls6_c00359{letter-spacing:0.022368pt;}
.ls1_c00359{letter-spacing:0.032000pt;}
.ls0_c00359{letter-spacing:0.038400pt;}
.lsc_c00359{letter-spacing:0.043200pt;}
.ls3_c00359{letter-spacing:0.057600pt;}
.ls5_c00359{letter-spacing:0.067200pt;}
.lsd_c00359{letter-spacing:0.096000pt;}
.ls1f_c00359{letter-spacing:0.105600pt;}
.ls20_c00359{letter-spacing:0.441600pt;}
.ls9_c00359{letter-spacing:78.496000pt;}
.ls8_c00359{letter-spacing:137.600000pt;}
.ws1_c00359{word-spacing:0.000000pt;}
.ws0_c00359{word-spacing:0.122912pt;}
.ws4_c00359{word-spacing:0.148800pt;}
.ws2_c00359{word-spacing:11.347200pt;}
.ws3_c00359{word-spacing:11.385600pt;}
._1_c00359{margin-left:-0.985600pt;}
._0_c00359{width:1.241600pt;}
._1b_c00359{width:2.995200pt;}
._1a_c00359{width:4.128000pt;}
._1c_c00359{width:6.675200pt;}
._4_c00359{width:78.633600pt;}
._d_c00359{width:266.886400pt;}
._12_c00359{width:278.113600pt;}
._18_c00359{width:439.748800pt;}
._11_c00359{width:449.320000pt;}
._17_c00359{width:643.340800pt;}
._3_c00359{width:707.200000pt;}
._5_c00359{width:763.510400pt;}
._2_c00359{width:776.000000pt;}
._13_c00359{width:805.504000pt;}
._14_c00359{width:811.612800pt;}
._a_c00359{width:814.070400pt;}
._10_c00359{width:915.542400pt;}
._15_c00359{width:919.953600pt;}
._e_c00359{width:930.825600pt;}
._6_c00359{width:936.979200pt;}
._8_c00359{width:953.078400pt;}
._c_c00359{width:954.825600pt;}
._16_c00359{width:959.606400pt;}
._9_c00359{width:971.016000pt;}
._19_c00359{width:975.593600pt;}
._f_c00359{width:984.864000pt;}
._7_c00359{width:989.520000pt;}
._b_c00359{width:994.968000pt;}
.fs2_c00359{font-size:48.000000pt;}
.fs0_c00359{font-size:53.440000pt;}
.fs1_c00359{font-size:64.000000pt;}
.fs3_c00359{font-size:74.560000pt;}
.y0_c00359{bottom:0.000000pt;}
.y6_c00359{bottom:50.987067pt;}
.y5_c00359{bottom:69.387067pt;}
.y2a_c00359{bottom:103.467067pt;}
.y29_c00359{bottom:131.067067pt;}
.y28_c00359{bottom:158.667067pt;}
.y27_c00359{bottom:183.307067pt;}
.y26_c00359{bottom:204.347067pt;}
.y25_c00359{bottom:225.387067pt;}
.y24_c00359{bottom:246.427067pt;}
.y23_c00359{bottom:267.467067pt;}
.y22_c00359{bottom:288.507067pt;}
.y21_c00359{bottom:309.547067pt;}
.y20_c00359{bottom:330.507067pt;}
.y1f_c00359{bottom:351.547067pt;}
.y1e_c00359{bottom:372.587200pt;}
.y1d_c00359{bottom:393.627067pt;}
.y1c_c00359{bottom:414.667200pt;}
.y1b_c00359{bottom:435.707067pt;}
.y1a_c00359{bottom:456.747200pt;}
.y19_c00359{bottom:477.787067pt;}
.y18_c00359{bottom:498.827067pt;}
.y17_c00359{bottom:519.787067pt;}
.y16_c00359{bottom:540.827067pt;}
.y15_c00359{bottom:561.867067pt;}
.y14_c00359{bottom:582.907067pt;}
.y13_c00359{bottom:603.947067pt;}
.y12_c00359{bottom:628.107067pt;}
.y11_c00359{bottom:659.627067pt;}
.y10_c00359{bottom:686.187067pt;}
.yf_c00359{bottom:706.746187pt;}
.ye_c00359{bottom:741.547067pt;}
.yd_c00359{bottom:771.867067pt;}
.yc_c00359{bottom:786.587067pt;}
.yb_c00359{bottom:899.787067pt;}
.ya_c00359{bottom:920.427067pt;}
.y9_c00359{bottom:944.187067pt;}
.y8_c00359{bottom:971.787067pt;}
.y7_c00359{bottom:999.387067pt;}
.y4_c00359{bottom:1017.227251pt;}
.y3_c00359{bottom:1032.587243pt;}
.y2_c00359{bottom:1047.867075pt;}
.y1_c00359{bottom:1063.227067pt;}
.h3_c00359{height:42.234375pt;}
.h7_c00359{height:43.031250pt;}
.h1_c00359{height:47.020937pt;}
.h5_c00359{height:50.786719pt;}
.h2_c00359{height:56.156250pt;}
.h6_c00359{height:58.071250pt;}
.h4_c00359{height:66.222969pt;}
.h0_c00359{height:1122.666667pt;}
.w1_c00359{width:793.333333pt;}
.w0_c00359{width:793.626667pt;}
.x0_c00359{left:0.000000pt;}
.x4_c00359{left:113.440000pt;}
.x6_c00359{left:196.160000pt;}
.x7_c00359{left:219.120000pt;}
.x5_c00359{left:285.440000pt;}
.x1_c00359{left:577.440000pt;}
.x3_c00359{left:656.400000pt;}
.x2_c00359{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00f42be66459d1c190e501e4.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.095703;font-style:normal;font-weight:normal;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_77af1a81d7bc3be46b9ccc4c.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:1.093262;font-style: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;}
.ls16_c00360{letter-spacing:-0.360000px;}
.ls11_c00360{letter-spacing:-0.223200px;}
.lsb_c00360{letter-spacing:-0.102204px;}
.lse_c00360{letter-spacing:-0.086400px;}
.lsf_c00360{letter-spacing:-0.064800px;}
.ls18_c00360{letter-spacing:-0.050400px;}
.ls1a_c00360{letter-spacing:-0.043200px;}
.ls13_c00360{letter-spacing:-0.036000px;}
.ls12_c00360{letter-spacing:-0.021600px;}
.ls10_c00360{letter-spacing:-0.014400px;}
.lsd_c00360{letter-spacing:-0.007200px;}
.lsc_c00360{letter-spacing:0.000000px;}
.ls4_c00360{letter-spacing:0.007200px;}
.ls6_c00360{letter-spacing:0.014400px;}
.ls1_c00360{letter-spacing:0.021600px;}
.ls7_c00360{letter-spacing:0.028800px;}
.ls0_c00360{letter-spacing:0.036000px;}
.ls2_c00360{letter-spacing:0.050400px;}
.ls5_c00360{letter-spacing:0.064800px;}
.ls9_c00360{letter-spacing:0.079200px;}
.ls8_c00360{letter-spacing:0.100800px;}
.ls3_c00360{letter-spacing:0.108000px;}
.lsa_c00360{letter-spacing:0.144000px;}
.ls19_c00360{letter-spacing:1.080000px;}
.ls15_c00360{letter-spacing:2.880000px;}
.ls17_c00360{letter-spacing:7.200000px;}
.ls14_c00360{letter-spacing:10.080000px;}
.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:0.000000px;}
.ws2_c00360{word-spacing:0.007200px;}
.ws0_c00360{word-spacing:0.192384px;}
.ws4_c00360{word-spacing:2.844000px;}
.ws3_c00360{word-spacing:3.024000px;}
.ws5_c00360{word-spacing:7.005600px;}
._d_c00360{margin-left:-10.720800px;}
._c_c00360{margin-left:-9.655200px;}
._12_c00360{margin-left:-8.042400px;}
._11_c00360{margin-left:-7.027200px;}
._13_c00360{margin-left:-5.911200px;}
._5_c00360{margin-left:-3.996000px;}
._7_c00360{margin-left:-2.988000px;}
._3_c00360{margin-left:-1.022400px;}
._0_c00360{width:1.034064px;}
._9_c00360{width:2.260800px;}
._e_c00360{width:3.300336px;}
._a_c00360{width:4.305600px;}
._1_c00360{width:5.724000px;}
._2_c00360{width:7.164000px;}
._b_c00360{width:9.352800px;}
._8_c00360{width:10.411200px;}
._10_c00360{width:11.728800px;}
._f_c00360{width:12.938400px;}
._4_c00360{width:16.480800px;}
._6_c00360{width:23.349600px;}
.fc1_c00360{color:rgb(0,0,0);}
.fc0_c00360{color:rgb(32,31,30);}
.fs0_c00360{font-size:60.120000px;}
.fs1_c00360{font-size:72.000000px;}
.y0_c00360{bottom:0.000000px;}
.y5_c00360{bottom:57.360450px;}
.y4_c00360{bottom:78.060450px;}
.y26_c00360{bottom:117.930450px;}
.y25_c00360{bottom:148.980450px;}
.y24_c00360{bottom:180.030450px;}
.y23_c00360{bottom:211.080450px;}
.y22_c00360{bottom:242.130450px;}
.y21_c00360{bottom:273.090450px;}
.y20_c00360{bottom:304.140450px;}
.y1f_c00360{bottom:335.190450px;}
.y1e_c00360{bottom:366.240450px;}
.y1d_c00360{bottom:397.290450px;}
.y1c_c00360{bottom:428.340450px;}
.y1b_c00360{bottom:459.390450px;}
.y1a_c00360{bottom:490.440450px;}
.y19_c00360{bottom:521.490450px;}
.y18_c00360{bottom:552.540450px;}
.y17_c00360{bottom:583.590450px;}
.y16_c00360{bottom:614.640450px;}
.y15_c00360{bottom:645.690450px;}
.y14_c00360{bottom:676.740450px;}
.y13_c00360{bottom:707.790450px;}
.y12_c00360{bottom:738.840450px;}
.y11_c00360{bottom:769.890450px;}
.y10_c00360{bottom:800.940450px;}
.yf_c00360{bottom:831.990450px;}
.ye_c00360{bottom:863.040450px;}
.yd_c00360{bottom:894.090450px;}
.yc_c00360{bottom:925.140450px;}
.yb_c00360{bottom:956.190450px;}
.ya_c00360{bottom:987.240450px;}
.y9_c00360{bottom:1018.290450px;}
.y8_c00360{bottom:1049.340450px;}
.y7_c00360{bottom:1080.390450px;}
.y6_c00360{bottom:1111.440450px;}
.y3_c00360{bottom:1132.140450px;}
.y2_c00360{bottom:1165.441023px;}
.y1_c00360{bottom:1196.040600px;}
.h1_c00360{height:52.898555px;}
.h2_c00360{height:63.175781px;}
.h3_c00360{height:63.351562px;}
.h0_c00360{height:1263.000000px;}
.w1_c00360{width:892.500000px;}
.w0_c00360{width:892.830000px;}
.x0_c00360{left:0.000000px;}
.x1_c00360{left:127.620000px;}
.x2_c00360{left:738.450000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls16_c00360{letter-spacing:-0.320000pt;}
.ls11_c00360{letter-spacing:-0.198400pt;}
.lsb_c00360{letter-spacing:-0.090848pt;}
.lse_c00360{letter-spacing:-0.076800pt;}
.lsf_c00360{letter-spacing:-0.057600pt;}
.ls18_c00360{letter-spacing:-0.044800pt;}
.ls1a_c00360{letter-spacing:-0.038400pt;}
.ls13_c00360{letter-spacing:-0.032000pt;}
.ls12_c00360{letter-spacing:-0.019200pt;}
.ls10_c00360{letter-spacing:-0.012800pt;}
.lsd_c00360{letter-spacing:-0.006400pt;}
.lsc_c00360{letter-spacing:0.000000pt;}
.ls4_c00360{letter-spacing:0.006400pt;}
.ls6_c00360{letter-spacing:0.012800pt;}
.ls1_c00360{letter-spacing:0.019200pt;}
.ls7_c00360{letter-spacing:0.025600pt;}
.ls0_c00360{letter-spacing:0.032000pt;}
.ls2_c00360{letter-spacing:0.044800pt;}
.ls5_c00360{letter-spacing:0.057600pt;}
.ls9_c00360{letter-spacing:0.070400pt;}
.ls8_c00360{letter-spacing:0.089600pt;}
.ls3_c00360{letter-spacing:0.096000pt;}
.lsa_c00360{letter-spacing:0.128000pt;}
.ls19_c00360{letter-spacing:0.960000pt;}
.ls15_c00360{letter-spacing:2.560000pt;}
.ls17_c00360{letter-spacing:6.400000pt;}
.ls14_c00360{letter-spacing:8.960000pt;}
.ws1_c00360{word-spacing:0.000000pt;}
.ws2_c00360{word-spacing:0.006400pt;}
.ws0_c00360{word-spacing:0.171008pt;}
.ws4_c00360{word-spacing:2.528000pt;}
.ws3_c00360{word-spacing:2.688000pt;}
.ws5_c00360{word-spacing:6.227200pt;}
._d_c00360{margin-left:-9.529600pt;}
._c_c00360{margin-left:-8.582400pt;}
._12_c00360{margin-left:-7.148800pt;}
._11_c00360{margin-left:-6.246400pt;}
._13_c00360{margin-left:-5.254400pt;}
._5_c00360{margin-left:-3.552000pt;}
._7_c00360{margin-left:-2.656000pt;}
._3_c00360{margin-left:-0.908800pt;}
._0_c00360{width:0.919168pt;}
._9_c00360{width:2.009600pt;}
._e_c00360{width:2.933632pt;}
._a_c00360{width:3.827200pt;}
._1_c00360{width:5.088000pt;}
._2_c00360{width:6.368000pt;}
._b_c00360{width:8.313600pt;}
._8_c00360{width:9.254400pt;}
._10_c00360{width:10.425600pt;}
._f_c00360{width:11.500800pt;}
._4_c00360{width:14.649600pt;}
._6_c00360{width:20.755200pt;}
.fs0_c00360{font-size:53.440000pt;}
.fs1_c00360{font-size:64.000000pt;}
.y0_c00360{bottom:0.000000pt;}
.y5_c00360{bottom:50.987067pt;}
.y4_c00360{bottom:69.387067pt;}
.y26_c00360{bottom:104.827067pt;}
.y25_c00360{bottom:132.427067pt;}
.y24_c00360{bottom:160.027067pt;}
.y23_c00360{bottom:187.627067pt;}
.y22_c00360{bottom:215.227067pt;}
.y21_c00360{bottom:242.747067pt;}
.y20_c00360{bottom:270.347067pt;}
.y1f_c00360{bottom:297.947067pt;}
.y1e_c00360{bottom:325.547067pt;}
.y1d_c00360{bottom:353.147067pt;}
.y1c_c00360{bottom:380.747067pt;}
.y1b_c00360{bottom:408.347067pt;}
.y1a_c00360{bottom:435.947067pt;}
.y19_c00360{bottom:463.547067pt;}
.y18_c00360{bottom:491.147067pt;}
.y17_c00360{bottom:518.747067pt;}
.y16_c00360{bottom:546.347067pt;}
.y15_c00360{bottom:573.947067pt;}
.y14_c00360{bottom:601.547067pt;}
.y13_c00360{bottom:629.147067pt;}
.y12_c00360{bottom:656.747067pt;}
.y11_c00360{bottom:684.347067pt;}
.y10_c00360{bottom:711.947067pt;}
.yf_c00360{bottom:739.547067pt;}
.ye_c00360{bottom:767.147067pt;}
.yd_c00360{bottom:794.747067pt;}
.yc_c00360{bottom:822.347067pt;}
.yb_c00360{bottom:849.947067pt;}
.ya_c00360{bottom:877.547067pt;}
.y9_c00360{bottom:905.147067pt;}
.y8_c00360{bottom:932.747067pt;}
.y7_c00360{bottom:960.347067pt;}
.y6_c00360{bottom:987.947067pt;}
.y3_c00360{bottom:1006.347067pt;}
.y2_c00360{bottom:1035.947576pt;}
.y1_c00360{bottom:1063.147200pt;}
.h1_c00360{height:47.020937pt;}
.h2_c00360{height:56.156250pt;}
.h3_c00360{height:56.312500pt;}
.h0_c00360{height:1122.666667pt;}
.w1_c00360{width:793.333333pt;}
.w0_c00360{width:793.626667pt;}
.x0_c00360{left:0.000000pt;}
.x1_c00360{left:113.440000pt;}
.x2_c00360{left:656.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_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_60be3dd24d8199935c3545e7.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.095703;font-style:normal;font-weight:normal;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_bbe4f0bf60c331ed69400151.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.093262;font-style:normal;font-weight:normal;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_b2ffc5107b228292272292a9.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_29e0ba591c8fde7898da6d0c.woff2')format("woff");}.ff4_c00361{font-family:ff4_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:ff5_c00361;src:url('chunks/assets/font_326ced2414096362d18350a4.woff2')format("woff");}.ff5_c00361{font-family:ff5_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;}
.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:16.920000px;}
.ls13_c00361{letter-spacing:-0.151200px;}
.ls1a_c00361{letter-spacing:-0.135000px;}
.ls18_c00361{letter-spacing:-0.129600px;}
.ls11_c00361{letter-spacing:-0.124200px;}
.ls1e_c00361{letter-spacing:-0.113400px;}
.ls16_c00361{letter-spacing:-0.108000px;}
.ls17_c00361{letter-spacing:-0.102600px;}
.ls1c_c00361{letter-spacing:-0.097200px;}
.ls14_c00361{letter-spacing:-0.091800px;}
.ls1d_c00361{letter-spacing:-0.086400px;}
.ls19_c00361{letter-spacing:-0.081000px;}
.ls1b_c00361{letter-spacing:-0.064800px;}
.ls12_c00361{letter-spacing:-0.059400px;}
.ls9_c00361{letter-spacing:-0.048096px;}
.lsd_c00361{letter-spacing:-0.043200px;}
.lsf_c00361{letter-spacing:-0.021600px;}
.lsb_c00361{letter-spacing:-0.016200px;}
.lsc_c00361{letter-spacing:-0.014400px;}
.lse_c00361{letter-spacing:-0.007200px;}
.ls10_c00361{letter-spacing:-0.005400px;}
.lsa_c00361{letter-spacing:0.000000px;}
.ls6_c00361{letter-spacing:0.007200px;}
.ls3_c00361{letter-spacing:0.014400px;}
.ls0_c00361{letter-spacing:0.032400px;}
.ls2_c00361{letter-spacing:0.043200px;}
.ls1_c00361{letter-spacing:0.075600px;}
.ls4_c00361{letter-spacing:0.100656px;}
.ls5_c00361{letter-spacing:0.122400px;}
.ls15_c00361{letter-spacing:0.205200px;}
.ls8_c00361{letter-spacing:76.788000px;}
.ls7_c00361{letter-spacing:139.680000px;}
.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;}
}
.ws1_c00361{word-spacing:0.000000px;}
.ws0_c00361{word-spacing:0.138276px;}
.ws5_c00361{word-spacing:0.183600px;}
.ws4_c00361{word-spacing:14.185800px;}
.ws3_c00361{word-spacing:14.218200px;}
.ws2_c00361{word-spacing:14.234400px;}
._0_c00361{margin-left:-1.150200px;}
._1_c00361{width:1.454400px;}
._2_c00361{width:11.116800px;}
._a_c00361{width:18.943200px;}
._3_c00361{width:28.807200px;}
._4_c00361{width:29.966400px;}
._e_c00361{width:31.849200px;}
._f_c00361{width:32.859000px;}
._8_c00361{width:37.697400px;}
._c_c00361{width:38.750400px;}
._5_c00361{width:76.858200px;}
._9_c00361{width:114.768000px;}
._10_c00361{width:132.393600px;}
._6_c00361{width:155.624400px;}
._b_c00361{width:317.667600px;}
._d_c00361{width:389.714400px;}
._7_c00361{width:423.957600px;}
.fc3_c00361{color:rgb(38,74,96);}
.fc2_c00361{color:rgb(1,2,5);}
.fc1_c00361{color:rgb(68,84,106);}
.fc0_c00361{color:rgb(0,0,0);}
.fs2_c00361{font-size:54.000000px;}
.fs0_c00361{font-size:60.120000px;}
.fs1_c00361{font-size:72.000000px;}
.fs3_c00361{font-size:83.880000px;}
.y0_c00361{bottom:0.000000px;}
.y6_c00361{bottom:57.360450px;}
.y5_c00361{bottom:78.060450px;}
.y27_c00361{bottom:128.280450px;}
.y26_c00361{bottom:151.590450px;}
.y25_c00361{bottom:175.260450px;}
.y24_c00361{bottom:198.840450px;}
.y23_c00361{bottom:222.150450px;}
.y22_c00361{bottom:245.820450px;}
.y21_c00361{bottom:269.490450px;}
.y20_c00361{bottom:292.800450px;}
.y1f_c00361{bottom:316.470450px;}
.y1e_c00361{bottom:339.690450px;}
.y1d_c00361{bottom:363.360450px;}
.y1c_c00361{bottom:387.030150px;}
.y1b_c00361{bottom:410.340600px;}
.y1a_c00361{bottom:434.010450px;}
.y19_c00361{bottom:457.680450px;}
.y18_c00361{bottom:480.900450px;}
.y17_c00361{bottom:504.570450px;}
.y16_c00361{bottom:528.240450px;}
.y15_c00361{bottom:555.420450px;}
.y14_c00361{bottom:590.880450px;}
.y13_c00361{bottom:617.610450px;}
.y12_c00361{bottom:648.660450px;}
.y11_c00361{bottom:679.710450px;}
.y10_c00361{bottom:710.670450px;}
.yf_c00361{bottom:744.960450px;}
.ye_c00361{bottom:768.090450px;}
.yd_c00361{bottom:805.170450px;}
.yc_c00361{bottom:836.220450px;}
.yb_c00361{bottom:867.270450px;}
.ya_c00361{bottom:898.320450px;}
.y9_c00361{bottom:944.310450px;}
.y8_c00361{bottom:1105.410450px;}
.y7_c00361{bottom:1128.630450px;}
.y4_c00361{bottom:1144.380657px;}
.y3_c00361{bottom:1161.660648px;}
.y2_c00361{bottom:1178.850459px;}
.y1_c00361{bottom:1196.130450px;}
.h3_c00361{height:47.513672px;}
.h6_c00361{height:48.410156px;}
.h1_c00361{height:52.898555px;}
.h2_c00361{height:63.175781px;}
.h5_c00361{height:65.330156px;}
.h4_c00361{height:74.500840px;}
.h0_c00361{height:1263.000000px;}
.w1_c00361{width:892.500000px;}
.w0_c00361{width:892.830000px;}
.x0_c00361{left:0.000000px;}
.x4_c00361{left:127.620000px;}
.x6_c00361{left:306.990000px;}
.x7_c00361{left:329.940000px;}
.x8_c00361{left:514.440000px;}
.x1_c00361{left:649.620000px;}
.x5_c00361{left:720.000000px;}
.x3_c00361{left:738.450000px;}
.x2_c00361{left:765.450198px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.v1_c00361{vertical-align:15.040000pt;}
.ls13_c00361{letter-spacing:-0.134400pt;}
.ls1a_c00361{letter-spacing:-0.120000pt;}
.ls18_c00361{letter-spacing:-0.115200pt;}
.ls11_c00361{letter-spacing:-0.110400pt;}
.ls1e_c00361{letter-spacing:-0.100800pt;}
.ls16_c00361{letter-spacing:-0.096000pt;}
.ls17_c00361{letter-spacing:-0.091200pt;}
.ls1c_c00361{letter-spacing:-0.086400pt;}
.ls14_c00361{letter-spacing:-0.081600pt;}
.ls1d_c00361{letter-spacing:-0.076800pt;}
.ls19_c00361{letter-spacing:-0.072000pt;}
.ls1b_c00361{letter-spacing:-0.057600pt;}
.ls12_c00361{letter-spacing:-0.052800pt;}
.ls9_c00361{letter-spacing:-0.042752pt;}
.lsd_c00361{letter-spacing:-0.038400pt;}
.lsf_c00361{letter-spacing:-0.019200pt;}
.lsb_c00361{letter-spacing:-0.014400pt;}
.lsc_c00361{letter-spacing:-0.012800pt;}
.lse_c00361{letter-spacing:-0.006400pt;}
.ls10_c00361{letter-spacing:-0.004800pt;}
.lsa_c00361{letter-spacing:0.000000pt;}
.ls6_c00361{letter-spacing:0.006400pt;}
.ls3_c00361{letter-spacing:0.012800pt;}
.ls0_c00361{letter-spacing:0.028800pt;}
.ls2_c00361{letter-spacing:0.038400pt;}
.ls1_c00361{letter-spacing:0.067200pt;}
.ls4_c00361{letter-spacing:0.089472pt;}
.ls5_c00361{letter-spacing:0.108800pt;}
.ls15_c00361{letter-spacing:0.182400pt;}
.ls8_c00361{letter-spacing:68.256000pt;}
.ls7_c00361{letter-spacing:124.160000pt;}
.ws1_c00361{word-spacing:0.000000pt;}
.ws0_c00361{word-spacing:0.122912pt;}
.ws5_c00361{word-spacing:0.163200pt;}
.ws4_c00361{word-spacing:12.609600pt;}
.ws3_c00361{word-spacing:12.638400pt;}
.ws2_c00361{word-spacing:12.652800pt;}
._0_c00361{margin-left:-1.022400pt;}
._1_c00361{width:1.292800pt;}
._2_c00361{width:9.881600pt;}
._a_c00361{width:16.838400pt;}
._3_c00361{width:25.606400pt;}
._4_c00361{width:26.636800pt;}
._e_c00361{width:28.310400pt;}
._f_c00361{width:29.208000pt;}
._8_c00361{width:33.508800pt;}
._c_c00361{width:34.444800pt;}
._5_c00361{width:68.318400pt;}
._9_c00361{width:102.016000pt;}
._10_c00361{width:117.683200pt;}
._6_c00361{width:138.332800pt;}
._b_c00361{width:282.371200pt;}
._d_c00361{width:346.412800pt;}
._7_c00361{width:376.851200pt;}
.fs2_c00361{font-size:48.000000pt;}
.fs0_c00361{font-size:53.440000pt;}
.fs1_c00361{font-size:64.000000pt;}
.fs3_c00361{font-size:74.560000pt;}
.y0_c00361{bottom:0.000000pt;}
.y6_c00361{bottom:50.987067pt;}
.y5_c00361{bottom:69.387067pt;}
.y27_c00361{bottom:114.027067pt;}
.y26_c00361{bottom:134.747067pt;}
.y25_c00361{bottom:155.787067pt;}
.y24_c00361{bottom:176.747067pt;}
.y23_c00361{bottom:197.467067pt;}
.y22_c00361{bottom:218.507067pt;}
.y21_c00361{bottom:239.547067pt;}
.y20_c00361{bottom:260.267067pt;}
.y1f_c00361{bottom:281.307067pt;}
.y1e_c00361{bottom:301.947067pt;}
.y1d_c00361{bottom:322.987067pt;}
.y1c_c00361{bottom:344.026800pt;}
.y1b_c00361{bottom:364.747200pt;}
.y1a_c00361{bottom:385.787067pt;}
.y19_c00361{bottom:406.827067pt;}
.y18_c00361{bottom:427.467067pt;}
.y17_c00361{bottom:448.507067pt;}
.y16_c00361{bottom:469.547067pt;}
.y15_c00361{bottom:493.707067pt;}
.y14_c00361{bottom:525.227067pt;}
.y13_c00361{bottom:548.987067pt;}
.y12_c00361{bottom:576.587067pt;}
.y11_c00361{bottom:604.187067pt;}
.y10_c00361{bottom:631.707067pt;}
.yf_c00361{bottom:662.187067pt;}
.ye_c00361{bottom:682.747067pt;}
.yd_c00361{bottom:715.707067pt;}
.yc_c00361{bottom:743.307067pt;}
.yb_c00361{bottom:770.907067pt;}
.ya_c00361{bottom:798.507067pt;}
.y9_c00361{bottom:839.387067pt;}
.y8_c00361{bottom:982.587067pt;}
.y7_c00361{bottom:1003.227067pt;}
.y4_c00361{bottom:1017.227251pt;}
.y3_c00361{bottom:1032.587243pt;}
.y2_c00361{bottom:1047.867075pt;}
.y1_c00361{bottom:1063.227067pt;}
.h3_c00361{height:42.234375pt;}
.h6_c00361{height:43.031250pt;}
.h1_c00361{height:47.020937pt;}
.h2_c00361{height:56.156250pt;}
.h5_c00361{height:58.071250pt;}
.h4_c00361{height:66.222969pt;}
.h0_c00361{height:1122.666667pt;}
.w1_c00361{width:793.333333pt;}
.w0_c00361{width:793.626667pt;}
.x0_c00361{left:0.000000pt;}
.x4_c00361{left:113.440000pt;}
.x6_c00361{left:272.880000pt;}
.x7_c00361{left:293.280000pt;}
.x8_c00361{left:457.280000pt;}
.x1_c00361{left:577.440000pt;}
.x5_c00361{left:640.000000pt;}
.x3_c00361{left:656.400000pt;}
.x2_c00361{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.095703;font-style:normal;font-weight:normal;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_86ba4ecc7f9e95fd1ff9f0af.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_a07ffa6c01733dcafde313c1.woff2')format("woff");}.ff3_c00362{font-family:ff3_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;}
.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;}
.ls13_c00362{letter-spacing:-0.151200px;}
.ls15_c00362{letter-spacing:-0.129600px;}
.ls17_c00362{letter-spacing:-0.108000px;}
.ls16_c00362{letter-spacing:-0.102600px;}
.ls10_c00362{letter-spacing:-0.102204px;}
.ls14_c00362{letter-spacing:-0.086400px;}
.ls12_c00362{letter-spacing:-0.081000px;}
.ls1c_c00362{letter-spacing:-0.036000px;}
.ls1b_c00362{letter-spacing:-0.028800px;}
.ls1a_c00362{letter-spacing:-0.021600px;}
.ls19_c00362{letter-spacing:-0.007200px;}
.ls11_c00362{letter-spacing:0.000000px;}
.ls0_c00362{letter-spacing:0.007200px;}
.ls3_c00362{letter-spacing:0.014400px;}
.lsa_c00362{letter-spacing:0.021600px;}
.ls5_c00362{letter-spacing:0.028800px;}
.ls1_c00362{letter-spacing:0.036000px;}
.ls9_c00362{letter-spacing:0.043200px;}
.ls4_c00362{letter-spacing:0.050400px;}
.ls8_c00362{letter-spacing:0.057600px;}
.lsb_c00362{letter-spacing:0.064800px;}
.lsd_c00362{letter-spacing:0.072000px;}
.ls2_c00362{letter-spacing:0.079200px;}
.lse_c00362{letter-spacing:0.086400px;}
.ls7_c00362{letter-spacing:0.093600px;}
.lsf_c00362{letter-spacing:0.115200px;}
.ls6_c00362{letter-spacing:0.136800px;}
.lsc_c00362{letter-spacing:0.144000px;}
.ls18_c00362{letter-spacing:0.496800px;}
.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;}
}
.ws1_c00362{word-spacing:0.000000px;}
.ws0_c00362{word-spacing:0.192384px;}
._f_c00362{margin-left:-3.333600px;}
._7_c00362{margin-left:-2.167200px;}
._5_c00362{margin-left:-1.026000px;}
._0_c00362{width:1.034064px;}
._8_c00362{width:2.194272px;}
._a_c00362{width:3.284640px;}
._e_c00362{width:5.997600px;}
._b_c00362{width:7.066800px;}
._9_c00362{width:8.229600px;}
._c_c00362{width:9.324000px;}
._3_c00362{width:10.659600px;}
._d_c00362{width:12.592800px;}
._2_c00362{width:132.813936px;}
._4_c00362{width:187.083936px;}
._1_c00362{width:337.131000px;}
._6_c00362{width:602.017200px;}
.fc2_c00362{color:rgb(38,74,96);}
.fc3_c00362{color:rgb(1,2,5);}
.fc1_c00362{color:rgb(0,0,0);}
.fc0_c00362{color:rgb(32,31,30);}
.fs2_c00362{font-size:54.000000px;}
.fs0_c00362{font-size:60.120000px;}
.fs1_c00362{font-size:72.000000px;}
.y0_c00362{bottom:0.000000px;}
.y5_c00362{bottom:57.360450px;}
.y4_c00362{bottom:78.060450px;}
.y26_c00362{bottom:162.210450px;}
.y25_c00362{bottom:193.260450px;}
.y24_c00362{bottom:224.310450px;}
.y23_c00362{bottom:255.360450px;}
.y22_c00362{bottom:286.410450px;}
.y21_c00362{bottom:317.460450px;}
.y20_c00362{bottom:348.510450px;}
.y1f_c00362{bottom:379.560450px;}
.y1e_c00362{bottom:410.610450px;}
.y1d_c00362{bottom:441.660450px;}
.y1c_c00362{bottom:472.710450px;}
.y1b_c00362{bottom:503.760450px;}
.y1a_c00362{bottom:534.810450px;}
.y19_c00362{bottom:565.860450px;}
.y18_c00362{bottom:596.910450px;}
.y17_c00362{bottom:627.960450px;}
.y16_c00362{bottom:659.010450px;}
.y15_c00362{bottom:690.060450px;}
.y14_c00362{bottom:721.110450px;}
.y13_c00362{bottom:752.160450px;}
.y12_c00362{bottom:783.210450px;}
.y11_c00362{bottom:814.170450px;}
.y10_c00362{bottom:845.220450px;}
.yf_c00362{bottom:876.270450px;}
.ye_c00362{bottom:907.320450px;}
.yd_c00362{bottom:938.370450px;}
.yc_c00362{bottom:969.420450px;}
.yb_c00362{bottom:997.140450px;}
.ya_c00362{bottom:1020.810450px;}
.y9_c00362{bottom:1044.480000px;}
.y8_c00362{bottom:1067.790450px;}
.y7_c00362{bottom:1091.460450px;}
.y6_c00362{bottom:1115.130450px;}
.y3_c00362{bottom:1132.140450px;}
.y2_c00362{bottom:1165.441023px;}
.y1_c00362{bottom:1196.040600px;}
.h3_c00362{height:48.410156px;}
.h1_c00362{height:52.898555px;}
.h2_c00362{height:63.175781px;}
.h0_c00362{height:1263.000000px;}
.w1_c00362{width:892.500000px;}
.w0_c00362{width:892.830000px;}
.x0_c00362{left:0.000000px;}
.x1_c00362{left:127.620000px;}
.x3_c00362{left:329.940000px;}
.x4_c00362{left:514.440000px;}
.x2_c00362{left:738.450000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls13_c00362{letter-spacing:-0.134400pt;}
.ls15_c00362{letter-spacing:-0.115200pt;}
.ls17_c00362{letter-spacing:-0.096000pt;}
.ls16_c00362{letter-spacing:-0.091200pt;}
.ls10_c00362{letter-spacing:-0.090848pt;}
.ls14_c00362{letter-spacing:-0.076800pt;}
.ls12_c00362{letter-spacing:-0.072000pt;}
.ls1c_c00362{letter-spacing:-0.032000pt;}
.ls1b_c00362{letter-spacing:-0.025600pt;}
.ls1a_c00362{letter-spacing:-0.019200pt;}
.ls19_c00362{letter-spacing:-0.006400pt;}
.ls11_c00362{letter-spacing:0.000000pt;}
.ls0_c00362{letter-spacing:0.006400pt;}
.ls3_c00362{letter-spacing:0.012800pt;}
.lsa_c00362{letter-spacing:0.019200pt;}
.ls5_c00362{letter-spacing:0.025600pt;}
.ls1_c00362{letter-spacing:0.032000pt;}
.ls9_c00362{letter-spacing:0.038400pt;}
.ls4_c00362{letter-spacing:0.044800pt;}
.ls8_c00362{letter-spacing:0.051200pt;}
.lsb_c00362{letter-spacing:0.057600pt;}
.lsd_c00362{letter-spacing:0.064000pt;}
.ls2_c00362{letter-spacing:0.070400pt;}
.lse_c00362{letter-spacing:0.076800pt;}
.ls7_c00362{letter-spacing:0.083200pt;}
.lsf_c00362{letter-spacing:0.102400pt;}
.ls6_c00362{letter-spacing:0.121600pt;}
.lsc_c00362{letter-spacing:0.128000pt;}
.ls18_c00362{letter-spacing:0.441600pt;}
.ws1_c00362{word-spacing:0.000000pt;}
.ws0_c00362{word-spacing:0.171008pt;}
._f_c00362{margin-left:-2.963200pt;}
._7_c00362{margin-left:-1.926400pt;}
._5_c00362{margin-left:-0.912000pt;}
._0_c00362{width:0.919168pt;}
._8_c00362{width:1.950464pt;}
._a_c00362{width:2.919680pt;}
._e_c00362{width:5.331200pt;}
._b_c00362{width:6.281600pt;}
._9_c00362{width:7.315200pt;}
._c_c00362{width:8.288000pt;}
._3_c00362{width:9.475200pt;}
._d_c00362{width:11.193600pt;}
._2_c00362{width:118.056832pt;}
._4_c00362{width:166.296832pt;}
._1_c00362{width:299.672000pt;}
._6_c00362{width:535.126400pt;}
.fs2_c00362{font-size:48.000000pt;}
.fs0_c00362{font-size:53.440000pt;}
.fs1_c00362{font-size:64.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y5_c00362{bottom:50.987067pt;}
.y4_c00362{bottom:69.387067pt;}
.y26_c00362{bottom:144.187067pt;}
.y25_c00362{bottom:171.787067pt;}
.y24_c00362{bottom:199.387067pt;}
.y23_c00362{bottom:226.987067pt;}
.y22_c00362{bottom:254.587067pt;}
.y21_c00362{bottom:282.187067pt;}
.y20_c00362{bottom:309.787067pt;}
.y1f_c00362{bottom:337.387067pt;}
.y1e_c00362{bottom:364.987067pt;}
.y1d_c00362{bottom:392.587067pt;}
.y1c_c00362{bottom:420.187067pt;}
.y1b_c00362{bottom:447.787067pt;}
.y1a_c00362{bottom:475.387067pt;}
.y19_c00362{bottom:502.987067pt;}
.y18_c00362{bottom:530.587067pt;}
.y17_c00362{bottom:558.187067pt;}
.y16_c00362{bottom:585.787067pt;}
.y15_c00362{bottom:613.387067pt;}
.y14_c00362{bottom:640.987067pt;}
.y13_c00362{bottom:668.587067pt;}
.y12_c00362{bottom:696.187067pt;}
.y11_c00362{bottom:723.707067pt;}
.y10_c00362{bottom:751.307067pt;}
.yf_c00362{bottom:778.907067pt;}
.ye_c00362{bottom:806.507067pt;}
.yd_c00362{bottom:834.107067pt;}
.yc_c00362{bottom:861.707067pt;}
.yb_c00362{bottom:886.347067pt;}
.ya_c00362{bottom:907.387067pt;}
.y9_c00362{bottom:928.426667pt;}
.y8_c00362{bottom:949.147067pt;}
.y7_c00362{bottom:970.187067pt;}
.y6_c00362{bottom:991.227067pt;}
.y3_c00362{bottom:1006.347067pt;}
.y2_c00362{bottom:1035.947576pt;}
.y1_c00362{bottom:1063.147200pt;}
.h3_c00362{height:43.031250pt;}
.h1_c00362{height:47.020937pt;}
.h2_c00362{height:56.156250pt;}
.h0_c00362{height:1122.666667pt;}
.w1_c00362{width:793.333333pt;}
.w0_c00362{width:793.626667pt;}
.x0_c00362{left:0.000000pt;}
.x1_c00362{left:113.440000pt;}
.x3_c00362{left:293.280000pt;}
.x4_c00362{left:457.280000pt;}
.x2_c00362{left:656.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_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_064c2cc11555d3697067499d.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.095703;font-style:normal;font-weight:normal;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_3ae2247f53572fbd017b29da.woff2')format("woff");}.ff2_c00363{font-family:ff2_c00363;line-height:1.093262;font-style:normal;font-weight:normal;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_19a50d0bfbd7b597de8c47b7.woff2')format("woff");}.ff3_c00363{font-family:ff3_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:ff4_c00363;src:url('chunks/assets/font_66c4d81f236bd87f315f33c1.woff2')format("woff");}.ff4_c00363{font-family:ff4_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;}
.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:16.920000px;}
.ls11_c00363{letter-spacing:-0.151200px;}
.lsf_c00363{letter-spacing:-0.124200px;}
.ls14_c00363{letter-spacing:-0.097200px;}
.ls12_c00363{letter-spacing:-0.081000px;}
.ls13_c00363{letter-spacing:-0.070200px;}
.lse_c00363{letter-spacing:-0.064800px;}
.ls16_c00363{letter-spacing:-0.054000px;}
.ls15_c00363{letter-spacing:-0.048600px;}
.lsa_c00363{letter-spacing:-0.048096px;}
.ls19_c00363{letter-spacing:-0.036000px;}
.lsc_c00363{letter-spacing:-0.014400px;}
.lsb_c00363{letter-spacing:0.000000px;}
.ls0_c00363{letter-spacing:0.007200px;}
.ls1_c00363{letter-spacing:0.014400px;}
.ls2_c00363{letter-spacing:0.021600px;}
.ls3_c00363{letter-spacing:0.028800px;}
.ls4_c00363{letter-spacing:0.036000px;}
.ls5_c00363{letter-spacing:0.043200px;}
.ls6_c00363{letter-spacing:0.050400px;}
.ls9_c00363{letter-spacing:0.064800px;}
.ls7_c00363{letter-spacing:0.093600px;}
.ls8_c00363{letter-spacing:0.122400px;}
.ls10_c00363{letter-spacing:0.162000px;}
.ls17_c00363{letter-spacing:0.496800px;}
.ls1a_c00363{letter-spacing:1.080000px;}
.ls18_c00363{letter-spacing:13.320000px;}
.lsd_c00363{letter-spacing:837.000000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00363{word-spacing:0.000000px;}
.ws0_c00363{word-spacing:0.138276px;}
.ws3_c00363{word-spacing:0.178200px;}
.ws2_c00363{word-spacing:1.072800px;}
._b_c00363{margin-left:-837.000000px;}
._17_c00363{margin-left:-13.485600px;}
._18_c00363{margin-left:-12.484800px;}
._16_c00363{margin-left:-4.471200px;}
._8_c00363{margin-left:-3.312000px;}
._6_c00363{margin-left:-2.311200px;}
._7_c00363{margin-left:-1.173600px;}
._1_c00363{width:1.058400px;}
._2_c00363{width:2.059200px;}
._9_c00363{width:3.571200px;}
._19_c00363{width:7.588800px;}
._a_c00363{width:9.720000px;}
._1a_c00363{width:11.476800px;}
._4_c00363{width:12.960000px;}
._3_c00363{width:14.011200px;}
._5_c00363{width:15.112800px;}
._1b_c00363{width:17.028000px;}
._0_c00363{width:23.032800px;}
._c_c00363{width:83.800800px;}
._d_c00363{width:246.915000px;}
._14_c00363{width:852.879600px;}
._11_c00363{width:1164.783600px;}
._f_c00363{width:1183.851000px;}
._12_c00363{width:1236.830400px;}
._10_c00363{width:1264.548600px;}
._e_c00363{width:1268.796600px;}
._13_c00363{width:1297.159200px;}
._15_c00363{width:1450.170000px;}
.fc3_c00363{color:rgb(38,74,96);}
.fc2_c00363{color:rgb(1,2,5);}
.fc1_c00363{color:rgb(68,84,106);}
.fc0_c00363{color:rgb(0,0,0);}
.fs2_c00363{font-size:54.000000px;}
.fs0_c00363{font-size:60.120000px;}
.fs1_c00363{font-size:72.000000px;}
.y0_c00363{bottom:0.000000px;}
.y6_c00363{bottom:57.360450px;}
.y5_c00363{bottom:78.060450px;}
.y27_c00363{bottom:111.270450px;}
.y26_c00363{bottom:142.320450px;}
.y25_c00363{bottom:173.370450px;}
.y24_c00363{bottom:204.420450px;}
.y23_c00363{bottom:235.470450px;}
.y22_c00363{bottom:266.520450px;}
.y21_c00363{bottom:297.570450px;}
.y20_c00363{bottom:328.620450px;}
.y1f_c00363{bottom:359.670450px;}
.y1e_c00363{bottom:390.720450px;}
.y1d_c00363{bottom:418.440450px;}
.y1c_c00363{bottom:442.110600px;}
.y1b_c00363{bottom:465.780600px;}
.y1a_c00363{bottom:489.360600px;}
.y19_c00363{bottom:513.030600px;}
.y18_c00363{bottom:536.700450px;}
.y17_c00363{bottom:560.370450px;}
.y16_c00363{bottom:584.040450px;}
.y15_c00363{bottom:611.220450px;}
.y14_c00363{bottom:646.680450px;}
.y13_c00363{bottom:673.320450px;}
.y12_c00363{bottom:700.320450px;}
.y11_c00363{bottom:818.220450px;}
.y10_c00363{bottom:844.950450px;}
.yf_c00363{bottom:876.000450px;}
.ye_c00363{bottom:907.050450px;}
.yd_c00363{bottom:938.100450px;}
.yc_c00363{bottom:969.150450px;}
.yb_c00363{bottom:1000.200450px;}
.ya_c00363{bottom:1031.160450px;}
.y9_c00363{bottom:1062.210450px;}
.y8_c00363{bottom:1093.260450px;}
.y7_c00363{bottom:1124.310450px;}
.y4_c00363{bottom:1144.380657px;}
.y3_c00363{bottom:1161.660648px;}
.y2_c00363{bottom:1178.850459px;}
.y1_c00363{bottom:1196.130450px;}
.h4_c00363{height:47.513672px;}
.h6_c00363{height:48.410156px;}
.h1_c00363{height:52.898555px;}
.h2_c00363{height:63.175781px;}
.h3_c00363{height:63.351562px;}
.h5_c00363{height:65.330156px;}
.h0_c00363{height:1263.000000px;}
.w1_c00363{width:892.500000px;}
.w0_c00363{width:892.830000px;}
.x0_c00363{left:0.000000px;}
.x4_c00363{left:127.620000px;}
.x6_c00363{left:167.490000px;}
.x7_c00363{left:233.010000px;}
.x5_c00363{left:331.200000px;}
.x1_c00363{left:649.620000px;}
.x3_c00363{left:738.450000px;}
.x2_c00363{left:765.450198px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.v1_c00363{vertical-align:15.040000pt;}
.ls11_c00363{letter-spacing:-0.134400pt;}
.lsf_c00363{letter-spacing:-0.110400pt;}
.ls14_c00363{letter-spacing:-0.086400pt;}
.ls12_c00363{letter-spacing:-0.072000pt;}
.ls13_c00363{letter-spacing:-0.062400pt;}
.lse_c00363{letter-spacing:-0.057600pt;}
.ls16_c00363{letter-spacing:-0.048000pt;}
.ls15_c00363{letter-spacing:-0.043200pt;}
.lsa_c00363{letter-spacing:-0.042752pt;}
.ls19_c00363{letter-spacing:-0.032000pt;}
.lsc_c00363{letter-spacing:-0.012800pt;}
.lsb_c00363{letter-spacing:0.000000pt;}
.ls0_c00363{letter-spacing:0.006400pt;}
.ls1_c00363{letter-spacing:0.012800pt;}
.ls2_c00363{letter-spacing:0.019200pt;}
.ls3_c00363{letter-spacing:0.025600pt;}
.ls4_c00363{letter-spacing:0.032000pt;}
.ls5_c00363{letter-spacing:0.038400pt;}
.ls6_c00363{letter-spacing:0.044800pt;}
.ls9_c00363{letter-spacing:0.057600pt;}
.ls7_c00363{letter-spacing:0.083200pt;}
.ls8_c00363{letter-spacing:0.108800pt;}
.ls10_c00363{letter-spacing:0.144000pt;}
.ls17_c00363{letter-spacing:0.441600pt;}
.ls1a_c00363{letter-spacing:0.960000pt;}
.ls18_c00363{letter-spacing:11.840000pt;}
.lsd_c00363{letter-spacing:744.000000pt;}
.ws1_c00363{word-spacing:0.000000pt;}
.ws0_c00363{word-spacing:0.122912pt;}
.ws3_c00363{word-spacing:0.158400pt;}
.ws2_c00363{word-spacing:0.953600pt;}
._b_c00363{margin-left:-744.000000pt;}
._17_c00363{margin-left:-11.987200pt;}
._18_c00363{margin-left:-11.097600pt;}
._16_c00363{margin-left:-3.974400pt;}
._8_c00363{margin-left:-2.944000pt;}
._6_c00363{margin-left:-2.054400pt;}
._7_c00363{margin-left:-1.043200pt;}
._1_c00363{width:0.940800pt;}
._2_c00363{width:1.830400pt;}
._9_c00363{width:3.174400pt;}
._19_c00363{width:6.745600pt;}
._a_c00363{width:8.640000pt;}
._1a_c00363{width:10.201600pt;}
._4_c00363{width:11.520000pt;}
._3_c00363{width:12.454400pt;}
._5_c00363{width:13.433600pt;}
._1b_c00363{width:15.136000pt;}
._0_c00363{width:20.473600pt;}
._c_c00363{width:74.489600pt;}
._d_c00363{width:219.480000pt;}
._14_c00363{width:758.115200pt;}
._11_c00363{width:1035.363200pt;}
._f_c00363{width:1052.312000pt;}
._12_c00363{width:1099.404800pt;}
._10_c00363{width:1124.043200pt;}
._e_c00363{width:1127.819200pt;}
._13_c00363{width:1153.030400pt;}
._15_c00363{width:1289.040000pt;}
.fs2_c00363{font-size:48.000000pt;}
.fs0_c00363{font-size:53.440000pt;}
.fs1_c00363{font-size:64.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y6_c00363{bottom:50.987067pt;}
.y5_c00363{bottom:69.387067pt;}
.y27_c00363{bottom:98.907067pt;}
.y26_c00363{bottom:126.507067pt;}
.y25_c00363{bottom:154.107067pt;}
.y24_c00363{bottom:181.707067pt;}
.y23_c00363{bottom:209.307067pt;}
.y22_c00363{bottom:236.907067pt;}
.y21_c00363{bottom:264.507067pt;}
.y20_c00363{bottom:292.107067pt;}
.y1f_c00363{bottom:319.707067pt;}
.y1e_c00363{bottom:347.307067pt;}
.y1d_c00363{bottom:371.947067pt;}
.y1c_c00363{bottom:392.987200pt;}
.y1b_c00363{bottom:414.027200pt;}
.y1a_c00363{bottom:434.987200pt;}
.y19_c00363{bottom:456.027200pt;}
.y18_c00363{bottom:477.067067pt;}
.y17_c00363{bottom:498.107067pt;}
.y16_c00363{bottom:519.147067pt;}
.y15_c00363{bottom:543.307067pt;}
.y14_c00363{bottom:574.827067pt;}
.y13_c00363{bottom:598.507067pt;}
.y12_c00363{bottom:622.507067pt;}
.y11_c00363{bottom:727.307067pt;}
.y10_c00363{bottom:751.067067pt;}
.yf_c00363{bottom:778.667067pt;}
.ye_c00363{bottom:806.267067pt;}
.yd_c00363{bottom:833.867067pt;}
.yc_c00363{bottom:861.467067pt;}
.yb_c00363{bottom:889.067067pt;}
.ya_c00363{bottom:916.587067pt;}
.y9_c00363{bottom:944.187067pt;}
.y8_c00363{bottom:971.787067pt;}
.y7_c00363{bottom:999.387067pt;}
.y4_c00363{bottom:1017.227251pt;}
.y3_c00363{bottom:1032.587243pt;}
.y2_c00363{bottom:1047.867075pt;}
.y1_c00363{bottom:1063.227067pt;}
.h4_c00363{height:42.234375pt;}
.h6_c00363{height:43.031250pt;}
.h1_c00363{height:47.020937pt;}
.h2_c00363{height:56.156250pt;}
.h3_c00363{height:56.312500pt;}
.h5_c00363{height:58.071250pt;}
.h0_c00363{height:1122.666667pt;}
.w1_c00363{width:793.333333pt;}
.w0_c00363{width:793.626667pt;}
.x0_c00363{left:0.000000pt;}
.x4_c00363{left:113.440000pt;}
.x6_c00363{left:148.880000pt;}
.x7_c00363{left:207.120000pt;}
.x5_c00363{left:294.400000pt;}
.x1_c00363{left:577.440000pt;}
.x3_c00363{left:656.400000pt;}
.x2_c00363{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb1e3f831f3582a39687f2c7.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.095703;font-style:normal;font-weight:normal;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_8f91ad55f18ca84205c2f775.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:1.093262;font-style: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;}
.ls18_c00364{letter-spacing:-1.800000px;}
.ls15_c00364{letter-spacing:-0.136800px;}
.lsd_c00364{letter-spacing:-0.102204px;}
.ls1a_c00364{letter-spacing:-0.064800px;}
.ls16_c00364{letter-spacing:-0.057600px;}
.ls11_c00364{letter-spacing:-0.050400px;}
.ls12_c00364{letter-spacing:-0.036000px;}
.ls19_c00364{letter-spacing:-0.028800px;}
.ls17_c00364{letter-spacing:-0.021600px;}
.ls10_c00364{letter-spacing:-0.014400px;}
.ls1c_c00364{letter-spacing:-0.010800px;}
.lsf_c00364{letter-spacing:-0.007200px;}
.ls1b_c00364{letter-spacing:-0.005400px;}
.lse_c00364{letter-spacing:0.000000px;}
.lsc_c00364{letter-spacing:0.005400px;}
.lsa_c00364{letter-spacing:0.007200px;}
.ls0_c00364{letter-spacing:0.014400px;}
.ls1_c00364{letter-spacing:0.021600px;}
.ls5_c00364{letter-spacing:0.028800px;}
.lsb_c00364{letter-spacing:0.036000px;}
.ls4_c00364{letter-spacing:0.043200px;}
.ls2_c00364{letter-spacing:0.050400px;}
.ls3_c00364{letter-spacing:0.057600px;}
.ls7_c00364{letter-spacing:0.064800px;}
.ls8_c00364{letter-spacing:0.072000px;}
.ls9_c00364{letter-spacing:0.086400px;}
.ls6_c00364{letter-spacing:0.093600px;}
.ls1f_c00364{letter-spacing:0.108000px;}
.ls14_c00364{letter-spacing:5.040000px;}
.ls1e_c00364{letter-spacing:8.820000px;}
.ls13_c00364{letter-spacing:11.880000px;}
.ls1d_c00364{letter-spacing:603.000000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00364{word-spacing:-18.000000px;}
.ws0_c00364{word-spacing:-17.863200px;}
.ws7_c00364{word-spacing:-2.188800px;}
.wsa_c00364{word-spacing:-0.183600px;}
.ws8_c00364{word-spacing:-0.172800px;}
.ws9_c00364{word-spacing:-0.156600px;}
.ws6_c00364{word-spacing:-0.007200px;}
.ws3_c00364{word-spacing:0.000000px;}
.ws2_c00364{word-spacing:0.192384px;}
.ws5_c00364{word-spacing:0.309600px;}
.ws4_c00364{word-spacing:4.989600px;}
.wsb_c00364{word-spacing:8.985600px;}
._d_c00364{margin-left:-603.000000px;}
._4_c00364{margin-left:-12.276000px;}
._5_c00364{margin-left:-11.052000px;}
._10_c00364{margin-left:-8.452800px;}
._8_c00364{margin-left:-5.810400px;}
._9_c00364{margin-left:-4.356000px;}
._1_c00364{margin-left:-3.297600px;}
._2_c00364{margin-left:-1.310400px;}
._0_c00364{width:1.034064px;}
._b_c00364{width:2.050272px;}
._a_c00364{width:3.110400px;}
._6_c00364{width:4.363200px;}
._7_c00364{width:5.544000px;}
._11_c00364{width:6.739200px;}
._f_c00364{width:8.208000px;}
._c_c00364{width:9.691200px;}
._3_c00364{width:11.815200px;}
._e_c00364{width:585.000000px;}
.fc2_c00364{color:rgb(68,84,106);}
.fc1_c00364{color:rgb(0,0,0);}
.fc0_c00364{color:rgb(32,31,30);}
.fs2_c00364{font-size:54.000000px;}
.fs0_c00364{font-size:60.120000px;}
.fs1_c00364{font-size:72.000000px;}
.y0_c00364{bottom:0.000000px;}
.y5_c00364{bottom:57.360450px;}
.y4_c00364{bottom:78.060450px;}
.y22_c00364{bottom:119.100450px;}
.y21_c00364{bottom:150.150450px;}
.y20_c00364{bottom:181.200450px;}
.y1f_c00364{bottom:212.250450px;}
.y1e_c00364{bottom:243.300450px;}
.y1d_c00364{bottom:270.300450px;}
.y1c_c00364{bottom:448.230150px;}
.y1b_c00364{bottom:463.710600px;}
.y1a_c00364{bottom:490.440450px;}
.y19_c00364{bottom:521.490450px;}
.y18_c00364{bottom:552.540450px;}
.y17_c00364{bottom:583.590450px;}
.y16_c00364{bottom:614.640450px;}
.y15_c00364{bottom:645.690450px;}
.y14_c00364{bottom:676.740450px;}
.y13_c00364{bottom:707.790450px;}
.y12_c00364{bottom:738.840450px;}
.y11_c00364{bottom:769.890450px;}
.y10_c00364{bottom:800.940450px;}
.yf_c00364{bottom:831.990450px;}
.ye_c00364{bottom:863.040450px;}
.yd_c00364{bottom:894.090450px;}
.yc_c00364{bottom:925.140450px;}
.yb_c00364{bottom:956.190450px;}
.ya_c00364{bottom:987.240450px;}
.y9_c00364{bottom:1018.290450px;}
.y8_c00364{bottom:1049.340450px;}
.y7_c00364{bottom:1080.390450px;}
.y6_c00364{bottom:1111.440450px;}
.y3_c00364{bottom:1132.140450px;}
.y2_c00364{bottom:1165.441023px;}
.y1_c00364{bottom:1196.040600px;}
.h4_c00364{height:47.513672px;}
.h1_c00364{height:52.898555px;}
.h2_c00364{height:63.175781px;}
.h3_c00364{height:63.351562px;}
.h0_c00364{height:1263.000000px;}
.w1_c00364{width:892.500000px;}
.w0_c00364{width:892.830000px;}
.x0_c00364{left:0.000000px;}
.x1_c00364{left:127.620000px;}
.x3_c00364{left:294.300000px;}
.x2_c00364{left:738.450000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls18_c00364{letter-spacing:-1.600000pt;}
.ls15_c00364{letter-spacing:-0.121600pt;}
.lsd_c00364{letter-spacing:-0.090848pt;}
.ls1a_c00364{letter-spacing:-0.057600pt;}
.ls16_c00364{letter-spacing:-0.051200pt;}
.ls11_c00364{letter-spacing:-0.044800pt;}
.ls12_c00364{letter-spacing:-0.032000pt;}
.ls19_c00364{letter-spacing:-0.025600pt;}
.ls17_c00364{letter-spacing:-0.019200pt;}
.ls10_c00364{letter-spacing:-0.012800pt;}
.ls1c_c00364{letter-spacing:-0.009600pt;}
.lsf_c00364{letter-spacing:-0.006400pt;}
.ls1b_c00364{letter-spacing:-0.004800pt;}
.lse_c00364{letter-spacing:0.000000pt;}
.lsc_c00364{letter-spacing:0.004800pt;}
.lsa_c00364{letter-spacing:0.006400pt;}
.ls0_c00364{letter-spacing:0.012800pt;}
.ls1_c00364{letter-spacing:0.019200pt;}
.ls5_c00364{letter-spacing:0.025600pt;}
.lsb_c00364{letter-spacing:0.032000pt;}
.ls4_c00364{letter-spacing:0.038400pt;}
.ls2_c00364{letter-spacing:0.044800pt;}
.ls3_c00364{letter-spacing:0.051200pt;}
.ls7_c00364{letter-spacing:0.057600pt;}
.ls8_c00364{letter-spacing:0.064000pt;}
.ls9_c00364{letter-spacing:0.076800pt;}
.ls6_c00364{letter-spacing:0.083200pt;}
.ls1f_c00364{letter-spacing:0.096000pt;}
.ls14_c00364{letter-spacing:4.480000pt;}
.ls1e_c00364{letter-spacing:7.840000pt;}
.ls13_c00364{letter-spacing:10.560000pt;}
.ls1d_c00364{letter-spacing:536.000000pt;}
.ws1_c00364{word-spacing:-16.000000pt;}
.ws0_c00364{word-spacing:-15.878400pt;}
.ws7_c00364{word-spacing:-1.945600pt;}
.wsa_c00364{word-spacing:-0.163200pt;}
.ws8_c00364{word-spacing:-0.153600pt;}
.ws9_c00364{word-spacing:-0.139200pt;}
.ws6_c00364{word-spacing:-0.006400pt;}
.ws3_c00364{word-spacing:0.000000pt;}
.ws2_c00364{word-spacing:0.171008pt;}
.ws5_c00364{word-spacing:0.275200pt;}
.ws4_c00364{word-spacing:4.435200pt;}
.wsb_c00364{word-spacing:7.987200pt;}
._d_c00364{margin-left:-536.000000pt;}
._4_c00364{margin-left:-10.912000pt;}
._5_c00364{margin-left:-9.824000pt;}
._10_c00364{margin-left:-7.513600pt;}
._8_c00364{margin-left:-5.164800pt;}
._9_c00364{margin-left:-3.872000pt;}
._1_c00364{margin-left:-2.931200pt;}
._2_c00364{margin-left:-1.164800pt;}
._0_c00364{width:0.919168pt;}
._b_c00364{width:1.822464pt;}
._a_c00364{width:2.764800pt;}
._6_c00364{width:3.878400pt;}
._7_c00364{width:4.928000pt;}
._11_c00364{width:5.990400pt;}
._f_c00364{width:7.296000pt;}
._c_c00364{width:8.614400pt;}
._3_c00364{width:10.502400pt;}
._e_c00364{width:520.000000pt;}
.fs2_c00364{font-size:48.000000pt;}
.fs0_c00364{font-size:53.440000pt;}
.fs1_c00364{font-size:64.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y5_c00364{bottom:50.987067pt;}
.y4_c00364{bottom:69.387067pt;}
.y22_c00364{bottom:105.867067pt;}
.y21_c00364{bottom:133.467067pt;}
.y20_c00364{bottom:161.067067pt;}
.y1f_c00364{bottom:188.667067pt;}
.y1e_c00364{bottom:216.267067pt;}
.y1d_c00364{bottom:240.267067pt;}
.y1c_c00364{bottom:398.426800pt;}
.y1b_c00364{bottom:412.187200pt;}
.y1a_c00364{bottom:435.947067pt;}
.y19_c00364{bottom:463.547067pt;}
.y18_c00364{bottom:491.147067pt;}
.y17_c00364{bottom:518.747067pt;}
.y16_c00364{bottom:546.347067pt;}
.y15_c00364{bottom:573.947067pt;}
.y14_c00364{bottom:601.547067pt;}
.y13_c00364{bottom:629.147067pt;}
.y12_c00364{bottom:656.747067pt;}
.y11_c00364{bottom:684.347067pt;}
.y10_c00364{bottom:711.947067pt;}
.yf_c00364{bottom:739.547067pt;}
.ye_c00364{bottom:767.147067pt;}
.yd_c00364{bottom:794.747067pt;}
.yc_c00364{bottom:822.347067pt;}
.yb_c00364{bottom:849.947067pt;}
.ya_c00364{bottom:877.547067pt;}
.y9_c00364{bottom:905.147067pt;}
.y8_c00364{bottom:932.747067pt;}
.y7_c00364{bottom:960.347067pt;}
.y6_c00364{bottom:987.947067pt;}
.y3_c00364{bottom:1006.347067pt;}
.y2_c00364{bottom:1035.947576pt;}
.y1_c00364{bottom:1063.147200pt;}
.h4_c00364{height:42.234375pt;}
.h1_c00364{height:47.020937pt;}
.h2_c00364{height:56.156250pt;}
.h3_c00364{height:56.312500pt;}
.h0_c00364{height:1122.666667pt;}
.w1_c00364{width:793.333333pt;}
.w0_c00364{width:793.626667pt;}
.x0_c00364{left:0.000000pt;}
.x1_c00364{left:113.440000pt;}
.x3_c00364{left:261.600000pt;}
.x2_c00364{left:656.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_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_aec55eb2f423e73350606397.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.095703;font-style:normal;font-weight:normal;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_10f4531921bc581f3b314038.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.093262;font-style: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;}
.ls19_c00365{letter-spacing:-0.144000px;}
.ls13_c00365{letter-spacing:-0.048096px;}
.ls1a_c00365{letter-spacing:-0.028800px;}
.ls16_c00365{letter-spacing:-0.021600px;}
.ls15_c00365{letter-spacing:-0.014400px;}
.ls17_c00365{letter-spacing:-0.007200px;}
.ls14_c00365{letter-spacing:0.000000px;}
.ls5_c00365{letter-spacing:0.007200px;}
.ls8_c00365{letter-spacing:0.010800px;}
.ls1_c00365{letter-spacing:0.014400px;}
.lsc_c00365{letter-spacing:0.021600px;}
.ls7_c00365{letter-spacing:0.027000px;}
.ls0_c00365{letter-spacing:0.028800px;}
.lsb_c00365{letter-spacing:0.036000px;}
.ls12_c00365{letter-spacing:0.037800px;}
.ls4_c00365{letter-spacing:0.043200px;}
.lsf_c00365{letter-spacing:0.050400px;}
.ls11_c00365{letter-spacing:0.057600px;}
.ls2_c00365{letter-spacing:0.064800px;}
.ls9_c00365{letter-spacing:0.072000px;}
.lsd_c00365{letter-spacing:0.079200px;}
.ls10_c00365{letter-spacing:0.086400px;}
.lse_c00365{letter-spacing:0.093600px;}
.ls3_c00365{letter-spacing:0.100800px;}
.ls6_c00365{letter-spacing:0.115200px;}
.ls18_c00365{letter-spacing:5.040000px;}
.lsa_c00365{letter-spacing:5.400000px;}
.ls1b_c00365{letter-spacing:793.080000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00365{word-spacing:-18.043200px;}
.ws1_c00365{word-spacing:-18.014400px;}
.ws0_c00365{word-spacing:-18.000000px;}
.ws3_c00365{word-spacing:-17.856000px;}
.ws5_c00365{word-spacing:0.000000px;}
.ws4_c00365{word-spacing:0.138276px;}
.wsb_c00365{word-spacing:0.140400px;}
.wsc_c00365{word-spacing:0.145800px;}
.ws6_c00365{word-spacing:0.151200px;}
.ws7_c00365{word-spacing:0.167400px;}
.ws8_c00365{word-spacing:5.407200px;}
.ws9_c00365{word-spacing:6.804000px;}
.wsa_c00365{word-spacing:6.825600px;}
._b_c00365{margin-left:-793.440000px;}
._6_c00365{margin-left:-5.781600px;}
._7_c00365{margin-left:-4.651200px;}
._9_c00365{margin-left:-3.614400px;}
._8_c00365{margin-left:-2.563200px;}
._1_c00365{margin-left:-1.310400px;}
._3_c00365{width:1.404000px;}
._4_c00365{width:3.254400px;}
._5_c00365{width:4.334400px;}
._2_c00365{width:5.760000px;}
._0_c00365{width:6.811200px;}
._a_c00365{width:14.371200px;}
._c_c00365{width:97.200000px;}
.fc2_c00365{color:rgb(255,0,0);}
.fc1_c00365{color:rgb(68,84,106);}
.fc0_c00365{color:rgb(0,0,0);}
.fs2_c00365{font-size:54.000000px;}
.fs0_c00365{font-size:60.120000px;}
.fs1_c00365{font-size:72.000000px;}
.y0_c00365{bottom:0.000000px;}
.y6_c00365{bottom:57.360450px;}
.y5_c00365{bottom:78.060450px;}
.y21_c00365{bottom:141.060450px;}
.y20_c00365{bottom:172.110450px;}
.y1f_c00365{bottom:199.110450px;}
.y1e_c00365{bottom:327.810450px;}
.y1d_c00365{bottom:354.540450px;}
.y1c_c00365{bottom:385.590450px;}
.y1b_c00365{bottom:416.640450px;}
.y1a_c00365{bottom:447.690450px;}
.y19_c00365{bottom:478.740450px;}
.y18_c00365{bottom:509.790450px;}
.y17_c00365{bottom:540.840450px;}
.y16_c00365{bottom:571.890450px;}
.y15_c00365{bottom:602.940450px;}
.y14_c00365{bottom:633.990450px;}
.y13_c00365{bottom:665.040450px;}
.y12_c00365{bottom:696.090450px;}
.y11_c00365{bottom:727.050450px;}
.y10_c00365{bottom:758.100450px;}
.yf_c00365{bottom:785.100450px;}
.ye_c00365{bottom:911.370450px;}
.yd_c00365{bottom:938.010450px;}
.yc_c00365{bottom:969.150450px;}
.yb_c00365{bottom:1000.200450px;}
.ya_c00365{bottom:1031.160450px;}
.y9_c00365{bottom:1062.210450px;}
.y8_c00365{bottom:1093.260450px;}
.y7_c00365{bottom:1124.310450px;}
.y4_c00365{bottom:1144.380657px;}
.y3_c00365{bottom:1161.660648px;}
.y2_c00365{bottom:1178.850459px;}
.y1_c00365{bottom:1196.130450px;}
.h4_c00365{height:47.513672px;}
.h1_c00365{height:52.898555px;}
.h2_c00365{height:63.175781px;}
.h3_c00365{height:63.351562px;}
.h0_c00365{height:1263.000000px;}
.w1_c00365{width:892.500000px;}
.w0_c00365{width:892.830000px;}
.x0_c00365{left:0.000000px;}
.x4_c00365{left:127.620000px;}
.x6_c00365{left:331.200000px;}
.x1_c00365{left:649.620000px;}
.x3_c00365{left:738.450000px;}
.x5_c00365{left:740.880000px;}
.x2_c00365{left:765.450198px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls19_c00365{letter-spacing:-0.128000pt;}
.ls13_c00365{letter-spacing:-0.042752pt;}
.ls1a_c00365{letter-spacing:-0.025600pt;}
.ls16_c00365{letter-spacing:-0.019200pt;}
.ls15_c00365{letter-spacing:-0.012800pt;}
.ls17_c00365{letter-spacing:-0.006400pt;}
.ls14_c00365{letter-spacing:0.000000pt;}
.ls5_c00365{letter-spacing:0.006400pt;}
.ls8_c00365{letter-spacing:0.009600pt;}
.ls1_c00365{letter-spacing:0.012800pt;}
.lsc_c00365{letter-spacing:0.019200pt;}
.ls7_c00365{letter-spacing:0.024000pt;}
.ls0_c00365{letter-spacing:0.025600pt;}
.lsb_c00365{letter-spacing:0.032000pt;}
.ls12_c00365{letter-spacing:0.033600pt;}
.ls4_c00365{letter-spacing:0.038400pt;}
.lsf_c00365{letter-spacing:0.044800pt;}
.ls11_c00365{letter-spacing:0.051200pt;}
.ls2_c00365{letter-spacing:0.057600pt;}
.ls9_c00365{letter-spacing:0.064000pt;}
.lsd_c00365{letter-spacing:0.070400pt;}
.ls10_c00365{letter-spacing:0.076800pt;}
.lse_c00365{letter-spacing:0.083200pt;}
.ls3_c00365{letter-spacing:0.089600pt;}
.ls6_c00365{letter-spacing:0.102400pt;}
.ls18_c00365{letter-spacing:4.480000pt;}
.lsa_c00365{letter-spacing:4.800000pt;}
.ls1b_c00365{letter-spacing:704.960000pt;}
.ws2_c00365{word-spacing:-16.038400pt;}
.ws1_c00365{word-spacing:-16.012800pt;}
.ws0_c00365{word-spacing:-16.000000pt;}
.ws3_c00365{word-spacing:-15.872000pt;}
.ws5_c00365{word-spacing:0.000000pt;}
.ws4_c00365{word-spacing:0.122912pt;}
.wsb_c00365{word-spacing:0.124800pt;}
.wsc_c00365{word-spacing:0.129600pt;}
.ws6_c00365{word-spacing:0.134400pt;}
.ws7_c00365{word-spacing:0.148800pt;}
.ws8_c00365{word-spacing:4.806400pt;}
.ws9_c00365{word-spacing:6.048000pt;}
.wsa_c00365{word-spacing:6.067200pt;}
._b_c00365{margin-left:-705.280000pt;}
._6_c00365{margin-left:-5.139200pt;}
._7_c00365{margin-left:-4.134400pt;}
._9_c00365{margin-left:-3.212800pt;}
._8_c00365{margin-left:-2.278400pt;}
._1_c00365{margin-left:-1.164800pt;}
._3_c00365{width:1.248000pt;}
._4_c00365{width:2.892800pt;}
._5_c00365{width:3.852800pt;}
._2_c00365{width:5.120000pt;}
._0_c00365{width:6.054400pt;}
._a_c00365{width:12.774400pt;}
._c_c00365{width:86.400000pt;}
.fs2_c00365{font-size:48.000000pt;}
.fs0_c00365{font-size:53.440000pt;}
.fs1_c00365{font-size:64.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y6_c00365{bottom:50.987067pt;}
.y5_c00365{bottom:69.387067pt;}
.y21_c00365{bottom:125.387067pt;}
.y20_c00365{bottom:152.987067pt;}
.y1f_c00365{bottom:176.987067pt;}
.y1e_c00365{bottom:291.387067pt;}
.y1d_c00365{bottom:315.147067pt;}
.y1c_c00365{bottom:342.747067pt;}
.y1b_c00365{bottom:370.347067pt;}
.y1a_c00365{bottom:397.947067pt;}
.y19_c00365{bottom:425.547067pt;}
.y18_c00365{bottom:453.147067pt;}
.y17_c00365{bottom:480.747067pt;}
.y16_c00365{bottom:508.347067pt;}
.y15_c00365{bottom:535.947067pt;}
.y14_c00365{bottom:563.547067pt;}
.y13_c00365{bottom:591.147067pt;}
.y12_c00365{bottom:618.747067pt;}
.y11_c00365{bottom:646.267067pt;}
.y10_c00365{bottom:673.867067pt;}
.yf_c00365{bottom:697.867067pt;}
.ye_c00365{bottom:810.107067pt;}
.yd_c00365{bottom:833.787067pt;}
.yc_c00365{bottom:861.467067pt;}
.yb_c00365{bottom:889.067067pt;}
.ya_c00365{bottom:916.587067pt;}
.y9_c00365{bottom:944.187067pt;}
.y8_c00365{bottom:971.787067pt;}
.y7_c00365{bottom:999.387067pt;}
.y4_c00365{bottom:1017.227251pt;}
.y3_c00365{bottom:1032.587243pt;}
.y2_c00365{bottom:1047.867075pt;}
.y1_c00365{bottom:1063.227067pt;}
.h4_c00365{height:42.234375pt;}
.h1_c00365{height:47.020937pt;}
.h2_c00365{height:56.156250pt;}
.h3_c00365{height:56.312500pt;}
.h0_c00365{height:1122.666667pt;}
.w1_c00365{width:793.333333pt;}
.w0_c00365{width:793.626667pt;}
.x0_c00365{left:0.000000pt;}
.x4_c00365{left:113.440000pt;}
.x6_c00365{left:294.400000pt;}
.x1_c00365{left:577.440000pt;}
.x3_c00365{left:656.400000pt;}
.x5_c00365{left:658.560000pt;}
.x2_c00365{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fef527f6727128b16efb3186.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.095703;font-style:normal;font-weight:normal;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_f3a1e9822cf2ced1faddc06e.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_80439269f7a7aff58d856407.woff2')format("woff");}.ff3_c00366{font-family:ff3_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;}
@font-face{font-family:ff4_c00366;src:url('chunks/assets/font_7243f7fa33f92d2edf7e6d21.woff2')format("woff");}.ff4_c00366{font-family:ff4_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;}
.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;}
.v1_c00366{vertical-align:16.920000px;}
.ls13_c00366{letter-spacing:-0.237600px;}
.ls21_c00366{letter-spacing:-0.180000px;}
.ls18_c00366{letter-spacing:-0.151200px;}
.ls20_c00366{letter-spacing:-0.144000px;}
.ls16_c00366{letter-spacing:-0.124200px;}
.ls12_c00366{letter-spacing:-0.122400px;}
.ls1c_c00366{letter-spacing:-0.102600px;}
.lse_c00366{letter-spacing:-0.102204px;}
.ls1f_c00366{letter-spacing:-0.093600px;}
.ls22_c00366{letter-spacing:-0.072000px;}
.ls1b_c00366{letter-spacing:-0.070200px;}
.ls10_c00366{letter-spacing:-0.064800px;}
.ls19_c00366{letter-spacing:-0.054000px;}
.ls17_c00366{letter-spacing:-0.032400px;}
.ls1e_c00366{letter-spacing:-0.028800px;}
.ls1a_c00366{letter-spacing:-0.027000px;}
.ls11_c00366{letter-spacing:-0.014400px;}
.ls14_c00366{letter-spacing:-0.010800px;}
.ls15_c00366{letter-spacing:-0.007200px;}
.lsf_c00366{letter-spacing:0.000000px;}
.lsd_c00366{letter-spacing:0.007200px;}
.ls0_c00366{letter-spacing:0.014400px;}
.ls8_c00366{letter-spacing:0.016200px;}
.ls6_c00366{letter-spacing:0.021600px;}
.ls4_c00366{letter-spacing:0.028800px;}
.ls5_c00366{letter-spacing:0.036000px;}
.ls9_c00366{letter-spacing:0.037800px;}
.ls7_c00366{letter-spacing:0.043200px;}
.ls3_c00366{letter-spacing:0.050400px;}
.ls1_c00366{letter-spacing:0.057600px;}
.ls2_c00366{letter-spacing:0.072000px;}
.lsc_c00366{letter-spacing:0.081000px;}
.ls1d_c00366{letter-spacing:0.496800px;}
.lsb_c00366{letter-spacing:76.788000px;}
.lsa_c00366{letter-spacing:173.880000px;}
.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;}
}
.ws3_c00366{word-spacing:-18.021600px;}
.ws2_c00366{word-spacing:-18.007200px;}
.ws0_c00366{word-spacing:-17.971200px;}
.ws1_c00366{word-spacing:-17.856000px;}
.ws5_c00366{word-spacing:0.000000px;}
.ws7_c00366{word-spacing:0.140400px;}
.ws6_c00366{word-spacing:0.162000px;}
.ws9_c00366{word-spacing:0.178200px;}
.ws8_c00366{word-spacing:0.189000px;}
.ws4_c00366{word-spacing:0.192384px;}
._2_c00366{margin-left:-4.276800px;}
._3_c00366{margin-left:-2.966400px;}
._4_c00366{margin-left:-1.692000px;}
._0_c00366{width:1.034064px;}
._13_c00366{width:2.116800px;}
._1_c00366{width:3.225600px;}
._5_c00366{width:4.284000px;}
._8_c00366{width:76.831200px;}
._b_c00366{width:175.873536px;}
._11_c00366{width:328.842000px;}
._a_c00366{width:358.209936px;}
._f_c00366{width:359.481600px;}
._e_c00366{width:511.856136px;}
._c_c00366{width:514.548000px;}
._d_c00366{width:569.082600px;}
._10_c00366{width:723.663000px;}
._9_c00366{width:727.470000px;}
._7_c00366{width:729.000000px;}
._12_c00366{width:767.977200px;}
._6_c00366{width:792.000000px;}
.fc4_c00366{color:rgb(38,74,96);}
.fc3_c00366{color:rgb(1,2,5);}
.fc2_c00366{color:rgb(68,84,106);}
.fc1_c00366{color:rgb(0,0,0);}
.fc0_c00366{color:rgb(32,31,30);}
.fs2_c00366{font-size:54.000000px;}
.fs0_c00366{font-size:60.120000px;}
.fs1_c00366{font-size:72.000000px;}
.y0_c00366{bottom:0.000000px;}
.y5_c00366{bottom:57.360450px;}
.y4_c00366{bottom:78.060450px;}
.y24_c00366{bottom:121.890450px;}
.y23_c00366{bottom:152.940450px;}
.y22_c00366{bottom:183.990450px;}
.y21_c00366{bottom:215.040450px;}
.y20_c00366{bottom:246.090450px;}
.y1f_c00366{bottom:277.050450px;}
.y1e_c00366{bottom:308.100450px;}
.y1d_c00366{bottom:339.150450px;}
.y1c_c00366{bottom:366.870450px;}
.y1b_c00366{bottom:390.540600px;}
.y1a_c00366{bottom:414.210600px;}
.y19_c00366{bottom:437.880450px;}
.y18_c00366{bottom:461.550450px;}
.y17_c00366{bottom:485.220450px;}
.y16_c00366{bottom:508.890450px;}
.y15_c00366{bottom:532.560450px;}
.y14_c00366{bottom:556.140450px;}
.y13_c00366{bottom:579.810450px;}
.y12_c00366{bottom:607.080450px;}
.y11_c00366{bottom:642.450450px;}
.y10_c00366{bottom:669.180450px;}
.yf_c00366{bottom:696.180450px;}
.ye_c00366{bottom:867.360600px;}
.yd_c00366{bottom:894.090450px;}
.yc_c00366{bottom:925.140450px;}
.yb_c00366{bottom:956.190450px;}
.ya_c00366{bottom:987.240450px;}
.y9_c00366{bottom:1018.290450px;}
.y8_c00366{bottom:1049.340450px;}
.y7_c00366{bottom:1080.390450px;}
.y6_c00366{bottom:1111.440450px;}
.y3_c00366{bottom:1132.140450px;}
.y2_c00366{bottom:1165.441023px;}
.y1_c00366{bottom:1196.040600px;}
.h3_c00366{height:47.513672px;}
.h5_c00366{height:48.410156px;}
.h1_c00366{height:52.898555px;}
.h2_c00366{height:63.175781px;}
.h6_c00366{height:63.351562px;}
.h4_c00366{height:65.330156px;}
.h0_c00366{height:1263.000000px;}
.w1_c00366{width:892.500000px;}
.w0_c00366{width:892.830000px;}
.x0_c00366{left:0.000000px;}
.x1_c00366{left:127.620000px;}
.x4_c00366{left:263.250000px;}
.x5_c00366{left:286.200000px;}
.x3_c00366{left:366.120000px;}
.x2_c00366{left:738.450000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.v1_c00366{vertical-align:15.040000pt;}
.ls13_c00366{letter-spacing:-0.211200pt;}
.ls21_c00366{letter-spacing:-0.160000pt;}
.ls18_c00366{letter-spacing:-0.134400pt;}
.ls20_c00366{letter-spacing:-0.128000pt;}
.ls16_c00366{letter-spacing:-0.110400pt;}
.ls12_c00366{letter-spacing:-0.108800pt;}
.ls1c_c00366{letter-spacing:-0.091200pt;}
.lse_c00366{letter-spacing:-0.090848pt;}
.ls1f_c00366{letter-spacing:-0.083200pt;}
.ls22_c00366{letter-spacing:-0.064000pt;}
.ls1b_c00366{letter-spacing:-0.062400pt;}
.ls10_c00366{letter-spacing:-0.057600pt;}
.ls19_c00366{letter-spacing:-0.048000pt;}
.ls17_c00366{letter-spacing:-0.028800pt;}
.ls1e_c00366{letter-spacing:-0.025600pt;}
.ls1a_c00366{letter-spacing:-0.024000pt;}
.ls11_c00366{letter-spacing:-0.012800pt;}
.ls14_c00366{letter-spacing:-0.009600pt;}
.ls15_c00366{letter-spacing:-0.006400pt;}
.lsf_c00366{letter-spacing:0.000000pt;}
.lsd_c00366{letter-spacing:0.006400pt;}
.ls0_c00366{letter-spacing:0.012800pt;}
.ls8_c00366{letter-spacing:0.014400pt;}
.ls6_c00366{letter-spacing:0.019200pt;}
.ls4_c00366{letter-spacing:0.025600pt;}
.ls5_c00366{letter-spacing:0.032000pt;}
.ls9_c00366{letter-spacing:0.033600pt;}
.ls7_c00366{letter-spacing:0.038400pt;}
.ls3_c00366{letter-spacing:0.044800pt;}
.ls1_c00366{letter-spacing:0.051200pt;}
.ls2_c00366{letter-spacing:0.064000pt;}
.lsc_c00366{letter-spacing:0.072000pt;}
.ls1d_c00366{letter-spacing:0.441600pt;}
.lsb_c00366{letter-spacing:68.256000pt;}
.lsa_c00366{letter-spacing:154.560000pt;}
.ws3_c00366{word-spacing:-16.019200pt;}
.ws2_c00366{word-spacing:-16.006400pt;}
.ws0_c00366{word-spacing:-15.974400pt;}
.ws1_c00366{word-spacing:-15.872000pt;}
.ws5_c00366{word-spacing:0.000000pt;}
.ws7_c00366{word-spacing:0.124800pt;}
.ws6_c00366{word-spacing:0.144000pt;}
.ws9_c00366{word-spacing:0.158400pt;}
.ws8_c00366{word-spacing:0.168000pt;}
.ws4_c00366{word-spacing:0.171008pt;}
._2_c00366{margin-left:-3.801600pt;}
._3_c00366{margin-left:-2.636800pt;}
._4_c00366{margin-left:-1.504000pt;}
._0_c00366{width:0.919168pt;}
._13_c00366{width:1.881600pt;}
._1_c00366{width:2.867200pt;}
._5_c00366{width:3.808000pt;}
._8_c00366{width:68.294400pt;}
._b_c00366{width:156.332032pt;}
._11_c00366{width:292.304000pt;}
._a_c00366{width:318.408832pt;}
._f_c00366{width:319.539200pt;}
._e_c00366{width:454.983232pt;}
._c_c00366{width:457.376000pt;}
._d_c00366{width:505.851200pt;}
._10_c00366{width:643.256000pt;}
._9_c00366{width:646.640000pt;}
._7_c00366{width:648.000000pt;}
._12_c00366{width:682.646400pt;}
._6_c00366{width:704.000000pt;}
.fs2_c00366{font-size:48.000000pt;}
.fs0_c00366{font-size:53.440000pt;}
.fs1_c00366{font-size:64.000000pt;}
.y0_c00366{bottom:0.000000pt;}
.y5_c00366{bottom:50.987067pt;}
.y4_c00366{bottom:69.387067pt;}
.y24_c00366{bottom:108.347067pt;}
.y23_c00366{bottom:135.947067pt;}
.y22_c00366{bottom:163.547067pt;}
.y21_c00366{bottom:191.147067pt;}
.y20_c00366{bottom:218.747067pt;}
.y1f_c00366{bottom:246.267067pt;}
.y1e_c00366{bottom:273.867067pt;}
.y1d_c00366{bottom:301.467067pt;}
.y1c_c00366{bottom:326.107067pt;}
.y1b_c00366{bottom:347.147200pt;}
.y1a_c00366{bottom:368.187200pt;}
.y19_c00366{bottom:389.227067pt;}
.y18_c00366{bottom:410.267067pt;}
.y17_c00366{bottom:431.307067pt;}
.y16_c00366{bottom:452.347067pt;}
.y15_c00366{bottom:473.387067pt;}
.y14_c00366{bottom:494.347067pt;}
.y13_c00366{bottom:515.387067pt;}
.y12_c00366{bottom:539.627067pt;}
.y11_c00366{bottom:571.067067pt;}
.y10_c00366{bottom:594.827067pt;}
.yf_c00366{bottom:618.827067pt;}
.ye_c00366{bottom:770.987200pt;}
.yd_c00366{bottom:794.747067pt;}
.yc_c00366{bottom:822.347067pt;}
.yb_c00366{bottom:849.947067pt;}
.ya_c00366{bottom:877.547067pt;}
.y9_c00366{bottom:905.147067pt;}
.y8_c00366{bottom:932.747067pt;}
.y7_c00366{bottom:960.347067pt;}
.y6_c00366{bottom:987.947067pt;}
.y3_c00366{bottom:1006.347067pt;}
.y2_c00366{bottom:1035.947576pt;}
.y1_c00366{bottom:1063.147200pt;}
.h3_c00366{height:42.234375pt;}
.h5_c00366{height:43.031250pt;}
.h1_c00366{height:47.020937pt;}
.h2_c00366{height:56.156250pt;}
.h6_c00366{height:56.312500pt;}
.h4_c00366{height:58.071250pt;}
.h0_c00366{height:1122.666667pt;}
.w1_c00366{width:793.333333pt;}
.w0_c00366{width:793.626667pt;}
.x0_c00366{left:0.000000pt;}
.x1_c00366{left:113.440000pt;}
.x4_c00366{left:234.000000pt;}
.x5_c00366{left:254.400000pt;}
.x3_c00366{left:325.440000pt;}
.x2_c00366{left:656.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_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_6ac5effab9ab7f306b2cf60f.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.095703;font-style:normal;font-weight:normal;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_0cc2f2bdc55f190faada9a02.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.093262;font-style: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;}
.ls17_c00367{letter-spacing:-0.360000px;}
.ls15_c00367{letter-spacing:-0.252000px;}
.ls12_c00367{letter-spacing:-0.064800px;}
.ls11_c00367{letter-spacing:-0.057600px;}
.lsf_c00367{letter-spacing:-0.048096px;}
.ls13_c00367{letter-spacing:-0.043200px;}
.ls18_c00367{letter-spacing:-0.028800px;}
.ls14_c00367{letter-spacing:-0.021600px;}
.ls19_c00367{letter-spacing:-0.014400px;}
.ls16_c00367{letter-spacing:-0.007200px;}
.ls10_c00367{letter-spacing:0.000000px;}
.ls9_c00367{letter-spacing:0.007200px;}
.lsc_c00367{letter-spacing:0.010800px;}
.ls4_c00367{letter-spacing:0.014400px;}
.ls0_c00367{letter-spacing:0.016200px;}
.ls8_c00367{letter-spacing:0.021600px;}
.lsd_c00367{letter-spacing:0.027000px;}
.lsa_c00367{letter-spacing:0.028800px;}
.ls3_c00367{letter-spacing:0.036000px;}
.ls6_c00367{letter-spacing:0.043200px;}
.lsb_c00367{letter-spacing:0.050400px;}
.ls7_c00367{letter-spacing:0.057600px;}
.ls1_c00367{letter-spacing:0.070200px;}
.ls5_c00367{letter-spacing:0.108000px;}
.ls2_c00367{letter-spacing:830.520000px;}
.lse_c00367{letter-spacing:839.160000px;}
.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:-18.108000px;}
.ws1_c00367{word-spacing:-18.000000px;}
.ws5_c00367{word-spacing:-1.690200px;}
.ws4_c00367{word-spacing:-1.636200px;}
.ws8_c00367{word-spacing:-0.374400px;}
.ws3_c00367{word-spacing:0.000000px;}
.ws2_c00367{word-spacing:0.138276px;}
.wsa_c00367{word-spacing:0.151200px;}
.ws9_c00367{word-spacing:0.167400px;}
.ws7_c00367{word-spacing:1.792800px;}
.ws6_c00367{word-spacing:4.622400px;}
._8_c00367{margin-left:-4.363200px;}
._6_c00367{margin-left:-3.268800px;}
._0_c00367{margin-left:-1.371600px;}
._3_c00367{width:1.044000px;}
._2_c00367{width:2.484000px;}
._4_c00367{width:4.629600px;}
._7_c00367{width:6.458400px;}
._9_c00367{width:11.160000px;}
._5_c00367{width:19.130400px;}
._1_c00367{width:26.280000px;}
.fc1_c00367{color:rgb(68,84,106);}
.fc0_c00367{color:rgb(0,0,0);}
.fs2_c00367{font-size:54.000000px;}
.fs0_c00367{font-size:60.120000px;}
.fs1_c00367{font-size:72.000000px;}
.y0_c00367{bottom:0.000000px;}
.y6_c00367{bottom:57.360450px;}
.y5_c00367{bottom:78.060450px;}
.y20_c00367{bottom:172.200450px;}
.y1f_c00367{bottom:203.250450px;}
.y1e_c00367{bottom:234.300450px;}
.y1d_c00367{bottom:265.350450px;}
.y1c_c00367{bottom:296.400450px;}
.y1b_c00367{bottom:323.400450px;}
.y1a_c00367{bottom:447.330600px;}
.y19_c00367{bottom:477.840600px;}
.y18_c00367{bottom:504.570450px;}
.y17_c00367{bottom:535.620450px;}
.y16_c00367{bottom:566.670450px;}
.y15_c00367{bottom:597.720450px;}
.y14_c00367{bottom:628.770450px;}
.y13_c00367{bottom:659.820450px;}
.y12_c00367{bottom:690.870450px;}
.y11_c00367{bottom:721.920450px;}
.y10_c00367{bottom:752.970450px;}
.yf_c00367{bottom:784.020450px;}
.ye_c00367{bottom:815.070450px;}
.yd_c00367{bottom:846.120450px;}
.yc_c00367{bottom:877.170450px;}
.yb_c00367{bottom:908.220450px;}
.ya_c00367{bottom:939.270450px;}
.y9_c00367{bottom:970.320450px;}
.y8_c00367{bottom:997.230450px;}
.y7_c00367{bottom:1128.630450px;}
.y4_c00367{bottom:1144.380657px;}
.y3_c00367{bottom:1161.660648px;}
.y2_c00367{bottom:1178.850459px;}
.y1_c00367{bottom:1196.130450px;}
.h3_c00367{height:47.513672px;}
.h1_c00367{height:52.898555px;}
.h2_c00367{height:63.175781px;}
.h4_c00367{height:63.351562px;}
.h0_c00367{height:1263.000000px;}
.w1_c00367{width:892.500000px;}
.w0_c00367{width:892.830000px;}
.x0_c00367{left:0.000000px;}
.x4_c00367{left:127.620000px;}
.x6_c00367{left:322.200000px;}
.x5_c00367{left:326.160000px;}
.x1_c00367{left:649.620000px;}
.x3_c00367{left:738.450000px;}
.x2_c00367{left:765.450198px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls17_c00367{letter-spacing:-0.320000pt;}
.ls15_c00367{letter-spacing:-0.224000pt;}
.ls12_c00367{letter-spacing:-0.057600pt;}
.ls11_c00367{letter-spacing:-0.051200pt;}
.lsf_c00367{letter-spacing:-0.042752pt;}
.ls13_c00367{letter-spacing:-0.038400pt;}
.ls18_c00367{letter-spacing:-0.025600pt;}
.ls14_c00367{letter-spacing:-0.019200pt;}
.ls19_c00367{letter-spacing:-0.012800pt;}
.ls16_c00367{letter-spacing:-0.006400pt;}
.ls10_c00367{letter-spacing:0.000000pt;}
.ls9_c00367{letter-spacing:0.006400pt;}
.lsc_c00367{letter-spacing:0.009600pt;}
.ls4_c00367{letter-spacing:0.012800pt;}
.ls0_c00367{letter-spacing:0.014400pt;}
.ls8_c00367{letter-spacing:0.019200pt;}
.lsd_c00367{letter-spacing:0.024000pt;}
.lsa_c00367{letter-spacing:0.025600pt;}
.ls3_c00367{letter-spacing:0.032000pt;}
.ls6_c00367{letter-spacing:0.038400pt;}
.lsb_c00367{letter-spacing:0.044800pt;}
.ls7_c00367{letter-spacing:0.051200pt;}
.ls1_c00367{letter-spacing:0.062400pt;}
.ls5_c00367{letter-spacing:0.096000pt;}
.ls2_c00367{letter-spacing:738.240000pt;}
.lse_c00367{letter-spacing:745.920000pt;}
.ws0_c00367{word-spacing:-16.096000pt;}
.ws1_c00367{word-spacing:-16.000000pt;}
.ws5_c00367{word-spacing:-1.502400pt;}
.ws4_c00367{word-spacing:-1.454400pt;}
.ws8_c00367{word-spacing:-0.332800pt;}
.ws3_c00367{word-spacing:0.000000pt;}
.ws2_c00367{word-spacing:0.122912pt;}
.wsa_c00367{word-spacing:0.134400pt;}
.ws9_c00367{word-spacing:0.148800pt;}
.ws7_c00367{word-spacing:1.593600pt;}
.ws6_c00367{word-spacing:4.108800pt;}
._8_c00367{margin-left:-3.878400pt;}
._6_c00367{margin-left:-2.905600pt;}
._0_c00367{margin-left:-1.219200pt;}
._3_c00367{width:0.928000pt;}
._2_c00367{width:2.208000pt;}
._4_c00367{width:4.115200pt;}
._7_c00367{width:5.740800pt;}
._9_c00367{width:9.920000pt;}
._5_c00367{width:17.004800pt;}
._1_c00367{width:23.360000pt;}
.fs2_c00367{font-size:48.000000pt;}
.fs0_c00367{font-size:53.440000pt;}
.fs1_c00367{font-size:64.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y6_c00367{bottom:50.987067pt;}
.y5_c00367{bottom:69.387067pt;}
.y20_c00367{bottom:153.067067pt;}
.y1f_c00367{bottom:180.667067pt;}
.y1e_c00367{bottom:208.267067pt;}
.y1d_c00367{bottom:235.867067pt;}
.y1c_c00367{bottom:263.467067pt;}
.y1b_c00367{bottom:287.467067pt;}
.y1a_c00367{bottom:397.627200pt;}
.y19_c00367{bottom:424.747200pt;}
.y18_c00367{bottom:448.507067pt;}
.y17_c00367{bottom:476.107067pt;}
.y16_c00367{bottom:503.707067pt;}
.y15_c00367{bottom:531.307067pt;}
.y14_c00367{bottom:558.907067pt;}
.y13_c00367{bottom:586.507067pt;}
.y12_c00367{bottom:614.107067pt;}
.y11_c00367{bottom:641.707067pt;}
.y10_c00367{bottom:669.307067pt;}
.yf_c00367{bottom:696.907067pt;}
.ye_c00367{bottom:724.507067pt;}
.yd_c00367{bottom:752.107067pt;}
.yc_c00367{bottom:779.707067pt;}
.yb_c00367{bottom:807.307067pt;}
.ya_c00367{bottom:834.907067pt;}
.y9_c00367{bottom:862.507067pt;}
.y8_c00367{bottom:886.427067pt;}
.y7_c00367{bottom:1003.227067pt;}
.y4_c00367{bottom:1017.227251pt;}
.y3_c00367{bottom:1032.587243pt;}
.y2_c00367{bottom:1047.867075pt;}
.y1_c00367{bottom:1063.227067pt;}
.h3_c00367{height:42.234375pt;}
.h1_c00367{height:47.020937pt;}
.h2_c00367{height:56.156250pt;}
.h4_c00367{height:56.312500pt;}
.h0_c00367{height:1122.666667pt;}
.w1_c00367{width:793.333333pt;}
.w0_c00367{width:793.626667pt;}
.x0_c00367{left:0.000000pt;}
.x4_c00367{left:113.440000pt;}
.x6_c00367{left:286.400000pt;}
.x5_c00367{left:289.920000pt;}
.x1_c00367{left:577.440000pt;}
.x3_c00367{left:656.400000pt;}
.x2_c00367{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_795a0eed6045c624295071b7.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.095703;font-style:normal;font-weight:normal;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_de7b5d56b9130ab8fdf46690.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:1.093262;font-style:normal;font-weight:normal;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_8e138f641e5cfbfe2874fc1d.woff2')format("woff");}.ff3_c00368{font-family:ff3_c00368;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00368;src:url('chunks/assets/font_afea154c6d9173e9966a22cf.woff2')format("woff");}.ff4_c00368{font-family:ff4_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;}
@font-face{font-family:ff5_c00368;src:url('chunks/assets/font_3ff1583a4bb98daaefcc1f0e.woff2')format("woff");}.ff5_c00368{font-family:ff5_c00368;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00368;src:url('chunks/assets/font_178340de7d952a945b046942.woff2')format("woff");}.ff6_c00368{font-family:ff6_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;}
.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:16.920000px;}
.ls18_c00368{letter-spacing:-0.151200px;}
.ls1b_c00368{letter-spacing:-0.140400px;}
.ls16_c00368{letter-spacing:-0.124200px;}
.lse_c00368{letter-spacing:-0.102204px;}
.ls15_c00368{letter-spacing:-0.100800px;}
.ls19_c00368{letter-spacing:-0.081000px;}
.ls1a_c00368{letter-spacing:-0.075600px;}
.ls10_c00368{letter-spacing:-0.050400px;}
.ls17_c00368{letter-spacing:-0.048600px;}
.ls1e_c00368{letter-spacing:-0.028800px;}
.ls14_c00368{letter-spacing:-0.025164px;}
.ls11_c00368{letter-spacing:-0.021600px;}
.ls13_c00368{letter-spacing:-0.014400px;}
.ls12_c00368{letter-spacing:-0.007200px;}
.lsf_c00368{letter-spacing:0.000000px;}
.lsa_c00368{letter-spacing:0.005400px;}
.lsd_c00368{letter-spacing:0.007200px;}
.ls3_c00368{letter-spacing:0.014400px;}
.ls8_c00368{letter-spacing:0.021600px;}
.ls4_c00368{letter-spacing:0.028800px;}
.ls0_c00368{letter-spacing:0.036000px;}
.ls5_c00368{letter-spacing:0.043200px;}
.ls9_c00368{letter-spacing:0.050328px;}
.ls1_c00368{letter-spacing:0.050400px;}
.ls2_c00368{letter-spacing:0.057600px;}
.ls6_c00368{letter-spacing:0.064800px;}
.ls7_c00368{letter-spacing:0.072000px;}
.lsc_c00368{letter-spacing:0.100800px;}
.ls1c_c00368{letter-spacing:0.172800px;}
.ls1d_c00368{letter-spacing:0.496800px;}
.lsb_c00368{letter-spacing:187.920000px;}
.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:-19.915200px;}
.ws2_c00368{word-spacing:0.000000px;}
.ws3_c00368{word-spacing:0.172800px;}
.ws1_c00368{word-spacing:0.192384px;}
._3_c00368{margin-left:-3.909600px;}
._1_c00368{margin-left:-2.865600px;}
._2_c00368{margin-left:-1.526400px;}
._0_c00368{width:1.034064px;}
._f_c00368{width:2.174400px;}
._10_c00368{width:4.298400px;}
._7_c00368{width:6.890400px;}
._6_c00368{width:7.898400px;}
._5_c00368{width:10.044000px;}
._4_c00368{width:11.131200px;}
._13_c00368{width:14.832000px;}
._14_c00368{width:16.156800px;}
._12_c00368{width:20.779200px;}
._11_c00368{width:21.931200px;}
._d_c00368{width:91.087200px;}
._b_c00368{width:117.198000px;}
._a_c00368{width:155.883600px;}
._9_c00368{width:170.692200px;}
._8_c00368{width:228.765600px;}
._c_c00368{width:240.199200px;}
._e_c00368{width:317.178000px;}
.fc4_c00368{color:rgb(38,74,96);}
.fc3_c00368{color:rgb(1,2,5);}
.fc2_c00368{color:rgb(68,84,106);}
.fc1_c00368{color:rgb(0,0,0);}
.fc0_c00368{color:rgb(32,31,30);}
.fs3_c00368{font-size:54.000000px;}
.fs0_c00368{font-size:60.120000px;}
.fs1_c00368{font-size:72.000000px;}
.fs2_c00368{font-size:83.880000px;}
.y0_c00368{bottom:0.000000px;}
.y5_c00368{bottom:57.360450px;}
.y4_c00368{bottom:78.060450px;}
.y26_c00368{bottom:166.980450px;}
.y25_c00368{bottom:198.030450px;}
.y24_c00368{bottom:229.080450px;}
.y23_c00368{bottom:260.130450px;}
.y22_c00368{bottom:291.180450px;}
.y21_c00368{bottom:322.230450px;}
.y20_c00368{bottom:353.280450px;}
.y1f_c00368{bottom:384.330450px;}
.y1e_c00368{bottom:412.050450px;}
.y1d_c00368{bottom:435.720450px;}
.y1c_c00368{bottom:459.390450px;}
.y1b_c00368{bottom:483.060450px;}
.y1a_c00368{bottom:506.640450px;}
.y19_c00368{bottom:530.310450px;}
.y18_c00368{bottom:553.980450px;}
.y17_c00368{bottom:577.650450px;}
.y16_c00368{bottom:604.830450px;}
.y15_c00368{bottom:640.290450px;}
.y14_c00368{bottom:670.170450px;}
.y13_c00368{bottom:693.300450px;}
.y12_c00368{bottom:730.560450px;}
.y11_c00368{bottom:764.130450px;}
.y10_c00368{bottom:800.940450px;}
.yf_c00368{bottom:831.990450px;}
.ye_c00368{bottom:863.040450px;}
.yd_c00368{bottom:894.090450px;}
.yc_c00368{bottom:925.140450px;}
.yb_c00368{bottom:956.190450px;}
.ya_c00368{bottom:987.240450px;}
.y9_c00368{bottom:1018.290450px;}
.y8_c00368{bottom:1049.340450px;}
.y7_c00368{bottom:1080.390450px;}
.y6_c00368{bottom:1111.440450px;}
.y3_c00368{bottom:1132.140450px;}
.y2_c00368{bottom:1165.441023px;}
.y1_c00368{bottom:1196.040600px;}
.h5_c00368{height:47.513672px;}
.h7_c00368{height:48.410156px;}
.h1_c00368{height:52.898555px;}
.h2_c00368{height:63.175781px;}
.h6_c00368{height:65.330156px;}
.h3_c00368{height:73.599785px;}
.h4_c00368{height:74.500840px;}
.h0_c00368{height:1263.000000px;}
.w1_c00368{width:892.500000px;}
.w0_c00368{width:892.830000px;}
.x0_c00368{left:0.000000px;}
.x1_c00368{left:127.620000px;}
.x3_c00368{left:321.480000px;}
.x4_c00368{left:325.980000px;}
.x5_c00368{left:386.910000px;}
.x2_c00368{left:738.450000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.v1_c00368{vertical-align:15.040000pt;}
.ls18_c00368{letter-spacing:-0.134400pt;}
.ls1b_c00368{letter-spacing:-0.124800pt;}
.ls16_c00368{letter-spacing:-0.110400pt;}
.lse_c00368{letter-spacing:-0.090848pt;}
.ls15_c00368{letter-spacing:-0.089600pt;}
.ls19_c00368{letter-spacing:-0.072000pt;}
.ls1a_c00368{letter-spacing:-0.067200pt;}
.ls10_c00368{letter-spacing:-0.044800pt;}
.ls17_c00368{letter-spacing:-0.043200pt;}
.ls1e_c00368{letter-spacing:-0.025600pt;}
.ls14_c00368{letter-spacing:-0.022368pt;}
.ls11_c00368{letter-spacing:-0.019200pt;}
.ls13_c00368{letter-spacing:-0.012800pt;}
.ls12_c00368{letter-spacing:-0.006400pt;}
.lsf_c00368{letter-spacing:0.000000pt;}
.lsa_c00368{letter-spacing:0.004800pt;}
.lsd_c00368{letter-spacing:0.006400pt;}
.ls3_c00368{letter-spacing:0.012800pt;}
.ls8_c00368{letter-spacing:0.019200pt;}
.ls4_c00368{letter-spacing:0.025600pt;}
.ls0_c00368{letter-spacing:0.032000pt;}
.ls5_c00368{letter-spacing:0.038400pt;}
.ls9_c00368{letter-spacing:0.044736pt;}
.ls1_c00368{letter-spacing:0.044800pt;}
.ls2_c00368{letter-spacing:0.051200pt;}
.ls6_c00368{letter-spacing:0.057600pt;}
.ls7_c00368{letter-spacing:0.064000pt;}
.lsc_c00368{letter-spacing:0.089600pt;}
.ls1c_c00368{letter-spacing:0.153600pt;}
.ls1d_c00368{letter-spacing:0.441600pt;}
.lsb_c00368{letter-spacing:167.040000pt;}
.ws0_c00368{word-spacing:-17.702400pt;}
.ws2_c00368{word-spacing:0.000000pt;}
.ws3_c00368{word-spacing:0.153600pt;}
.ws1_c00368{word-spacing:0.171008pt;}
._3_c00368{margin-left:-3.475200pt;}
._1_c00368{margin-left:-2.547200pt;}
._2_c00368{margin-left:-1.356800pt;}
._0_c00368{width:0.919168pt;}
._f_c00368{width:1.932800pt;}
._10_c00368{width:3.820800pt;}
._7_c00368{width:6.124800pt;}
._6_c00368{width:7.020800pt;}
._5_c00368{width:8.928000pt;}
._4_c00368{width:9.894400pt;}
._13_c00368{width:13.184000pt;}
._14_c00368{width:14.361600pt;}
._12_c00368{width:18.470400pt;}
._11_c00368{width:19.494400pt;}
._d_c00368{width:80.966400pt;}
._b_c00368{width:104.176000pt;}
._a_c00368{width:138.563200pt;}
._9_c00368{width:151.726400pt;}
._8_c00368{width:203.347200pt;}
._c_c00368{width:213.510400pt;}
._e_c00368{width:281.936000pt;}
.fs3_c00368{font-size:48.000000pt;}
.fs0_c00368{font-size:53.440000pt;}
.fs1_c00368{font-size:64.000000pt;}
.fs2_c00368{font-size:74.560000pt;}
.y0_c00368{bottom:0.000000pt;}
.y5_c00368{bottom:50.987067pt;}
.y4_c00368{bottom:69.387067pt;}
.y26_c00368{bottom:148.427067pt;}
.y25_c00368{bottom:176.027067pt;}
.y24_c00368{bottom:203.627067pt;}
.y23_c00368{bottom:231.227067pt;}
.y22_c00368{bottom:258.827067pt;}
.y21_c00368{bottom:286.427067pt;}
.y20_c00368{bottom:314.027067pt;}
.y1f_c00368{bottom:341.627067pt;}
.y1e_c00368{bottom:366.267067pt;}
.y1d_c00368{bottom:387.307067pt;}
.y1c_c00368{bottom:408.347067pt;}
.y1b_c00368{bottom:429.387067pt;}
.y1a_c00368{bottom:450.347067pt;}
.y19_c00368{bottom:471.387067pt;}
.y18_c00368{bottom:492.427067pt;}
.y17_c00368{bottom:513.467067pt;}
.y16_c00368{bottom:537.627067pt;}
.y15_c00368{bottom:569.147067pt;}
.y14_c00368{bottom:595.707067pt;}
.y13_c00368{bottom:616.267067pt;}
.y12_c00368{bottom:649.387067pt;}
.y11_c00368{bottom:679.227067pt;}
.y10_c00368{bottom:711.947067pt;}
.yf_c00368{bottom:739.547067pt;}
.ye_c00368{bottom:767.147067pt;}
.yd_c00368{bottom:794.747067pt;}
.yc_c00368{bottom:822.347067pt;}
.yb_c00368{bottom:849.947067pt;}
.ya_c00368{bottom:877.547067pt;}
.y9_c00368{bottom:905.147067pt;}
.y8_c00368{bottom:932.747067pt;}
.y7_c00368{bottom:960.347067pt;}
.y6_c00368{bottom:987.947067pt;}
.y3_c00368{bottom:1006.347067pt;}
.y2_c00368{bottom:1035.947576pt;}
.y1_c00368{bottom:1063.147200pt;}
.h5_c00368{height:42.234375pt;}
.h7_c00368{height:43.031250pt;}
.h1_c00368{height:47.020937pt;}
.h2_c00368{height:56.156250pt;}
.h6_c00368{height:58.071250pt;}
.h3_c00368{height:65.422031pt;}
.h4_c00368{height:66.222969pt;}
.h0_c00368{height:1122.666667pt;}
.w1_c00368{width:793.333333pt;}
.w0_c00368{width:793.626667pt;}
.x0_c00368{left:0.000000pt;}
.x1_c00368{left:113.440000pt;}
.x3_c00368{left:285.760000pt;}
.x4_c00368{left:289.760000pt;}
.x5_c00368{left:343.920000pt;}
.x2_c00368{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.095703;font-style:normal;font-weight:normal;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_59f2afa7601ac122a2df6936.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.093262;font-style: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;}
.ls17_c00369{letter-spacing:-2.160000px;}
.ls16_c00369{letter-spacing:-0.244800px;}
.ls15_c00369{letter-spacing:-0.057600px;}
.ls14_c00369{letter-spacing:-0.050400px;}
.lsd_c00369{letter-spacing:-0.048096px;}
.ls11_c00369{letter-spacing:-0.036000px;}
.ls10_c00369{letter-spacing:-0.028800px;}
.ls13_c00369{letter-spacing:-0.021600px;}
.ls12_c00369{letter-spacing:-0.014400px;}
.lsf_c00369{letter-spacing:-0.007200px;}
.lse_c00369{letter-spacing:0.000000px;}
.ls0_c00369{letter-spacing:0.007200px;}
.ls3_c00369{letter-spacing:0.014400px;}
.ls6_c00369{letter-spacing:0.021600px;}
.ls2_c00369{letter-spacing:0.028800px;}
.lsa_c00369{letter-spacing:0.036000px;}
.ls5_c00369{letter-spacing:0.043200px;}
.ls1_c00369{letter-spacing:0.050400px;}
.ls7_c00369{letter-spacing:0.057600px;}
.ls8_c00369{letter-spacing:0.064800px;}
.lsb_c00369{letter-spacing:0.079200px;}
.ls4_c00369{letter-spacing:0.086400px;}
.ls9_c00369{letter-spacing:0.100800px;}
.lsc_c00369{letter-spacing:0.151200px;}
.ls18_c00369{letter-spacing:1.800000px;}
.ls19_c00369{letter-spacing:13.680000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00369{word-spacing:0.000000px;}
.ws0_c00369{word-spacing:0.138276px;}
._f_c00369{margin-left:-13.766400px;}
._10_c00369{margin-left:-12.643200px;}
._4_c00369{margin-left:-5.572800px;}
._3_c00369{margin-left:-4.291200px;}
._a_c00369{margin-left:-3.290400px;}
._8_c00369{margin-left:-2.210400px;}
._2_c00369{margin-left:-1.051200px;}
._d_c00369{width:1.008000px;}
._9_c00369{width:2.498400px;}
._b_c00369{width:3.528000px;}
._c_c00369{width:5.407200px;}
._6_c00369{width:6.796800px;}
._7_c00369{width:7.891200px;}
._5_c00369{width:8.992800px;}
._11_c00369{width:10.058400px;}
._e_c00369{width:11.253600px;}
._1_c00369{width:13.176000px;}
._0_c00369{width:14.392800px;}
.fc0_c00369{color:rgb(0,0,0);}
.fs0_c00369{font-size:60.120000px;}
.fs1_c00369{font-size:72.000000px;}
.y0_c00369{bottom:0.000000px;}
.y6_c00369{bottom:57.360450px;}
.y5_c00369{bottom:78.060450px;}
.y27_c00369{bottom:130.800450px;}
.y26_c00369{bottom:161.850450px;}
.y25_c00369{bottom:192.900450px;}
.y24_c00369{bottom:223.950450px;}
.y23_c00369{bottom:255.000450px;}
.y22_c00369{bottom:286.050450px;}
.y21_c00369{bottom:317.100450px;}
.y20_c00369{bottom:348.150450px;}
.y1f_c00369{bottom:379.200450px;}
.y1e_c00369{bottom:410.250450px;}
.y1d_c00369{bottom:441.300450px;}
.y1c_c00369{bottom:472.350450px;}
.y1b_c00369{bottom:503.400450px;}
.y1a_c00369{bottom:534.450450px;}
.y19_c00369{bottom:565.500450px;}
.y18_c00369{bottom:596.550450px;}
.y17_c00369{bottom:627.600450px;}
.y16_c00369{bottom:658.650450px;}
.y15_c00369{bottom:689.700450px;}
.y14_c00369{bottom:720.750450px;}
.y13_c00369{bottom:751.800450px;}
.y12_c00369{bottom:782.850450px;}
.y11_c00369{bottom:813.900450px;}
.y10_c00369{bottom:844.950450px;}
.yf_c00369{bottom:876.000450px;}
.ye_c00369{bottom:907.050450px;}
.yd_c00369{bottom:938.100450px;}
.yc_c00369{bottom:969.150450px;}
.yb_c00369{bottom:1000.200450px;}
.ya_c00369{bottom:1031.160450px;}
.y9_c00369{bottom:1062.210450px;}
.y8_c00369{bottom:1093.260450px;}
.y7_c00369{bottom:1124.310450px;}
.y4_c00369{bottom:1144.380657px;}
.y3_c00369{bottom:1161.660648px;}
.y2_c00369{bottom:1178.850459px;}
.y1_c00369{bottom:1196.130450px;}
.h1_c00369{height:52.898555px;}
.h2_c00369{height:63.175781px;}
.h0_c00369{height:1263.000000px;}
.w1_c00369{width:892.500000px;}
.w0_c00369{width:892.830000px;}
.x0_c00369{left:0.000000px;}
.x4_c00369{left:127.620000px;}
.x1_c00369{left:649.620000px;}
.x3_c00369{left:738.450000px;}
.x2_c00369{left:765.450198px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls17_c00369{letter-spacing:-1.920000pt;}
.ls16_c00369{letter-spacing:-0.217600pt;}
.ls15_c00369{letter-spacing:-0.051200pt;}
.ls14_c00369{letter-spacing:-0.044800pt;}
.lsd_c00369{letter-spacing:-0.042752pt;}
.ls11_c00369{letter-spacing:-0.032000pt;}
.ls10_c00369{letter-spacing:-0.025600pt;}
.ls13_c00369{letter-spacing:-0.019200pt;}
.ls12_c00369{letter-spacing:-0.012800pt;}
.lsf_c00369{letter-spacing:-0.006400pt;}
.lse_c00369{letter-spacing:0.000000pt;}
.ls0_c00369{letter-spacing:0.006400pt;}
.ls3_c00369{letter-spacing:0.012800pt;}
.ls6_c00369{letter-spacing:0.019200pt;}
.ls2_c00369{letter-spacing:0.025600pt;}
.lsa_c00369{letter-spacing:0.032000pt;}
.ls5_c00369{letter-spacing:0.038400pt;}
.ls1_c00369{letter-spacing:0.044800pt;}
.ls7_c00369{letter-spacing:0.051200pt;}
.ls8_c00369{letter-spacing:0.057600pt;}
.lsb_c00369{letter-spacing:0.070400pt;}
.ls4_c00369{letter-spacing:0.076800pt;}
.ls9_c00369{letter-spacing:0.089600pt;}
.lsc_c00369{letter-spacing:0.134400pt;}
.ls18_c00369{letter-spacing:1.600000pt;}
.ls19_c00369{letter-spacing:12.160000pt;}
.ws1_c00369{word-spacing:0.000000pt;}
.ws0_c00369{word-spacing:0.122912pt;}
._f_c00369{margin-left:-12.236800pt;}
._10_c00369{margin-left:-11.238400pt;}
._4_c00369{margin-left:-4.953600pt;}
._3_c00369{margin-left:-3.814400pt;}
._a_c00369{margin-left:-2.924800pt;}
._8_c00369{margin-left:-1.964800pt;}
._2_c00369{margin-left:-0.934400pt;}
._d_c00369{width:0.896000pt;}
._9_c00369{width:2.220800pt;}
._b_c00369{width:3.136000pt;}
._c_c00369{width:4.806400pt;}
._6_c00369{width:6.041600pt;}
._7_c00369{width:7.014400pt;}
._5_c00369{width:7.993600pt;}
._11_c00369{width:8.940800pt;}
._e_c00369{width:10.003200pt;}
._1_c00369{width:11.712000pt;}
._0_c00369{width:12.793600pt;}
.fs0_c00369{font-size:53.440000pt;}
.fs1_c00369{font-size:64.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y6_c00369{bottom:50.987067pt;}
.y5_c00369{bottom:69.387067pt;}
.y27_c00369{bottom:116.267067pt;}
.y26_c00369{bottom:143.867067pt;}
.y25_c00369{bottom:171.467067pt;}
.y24_c00369{bottom:199.067067pt;}
.y23_c00369{bottom:226.667067pt;}
.y22_c00369{bottom:254.267067pt;}
.y21_c00369{bottom:281.867067pt;}
.y20_c00369{bottom:309.467067pt;}
.y1f_c00369{bottom:337.067067pt;}
.y1e_c00369{bottom:364.667067pt;}
.y1d_c00369{bottom:392.267067pt;}
.y1c_c00369{bottom:419.867067pt;}
.y1b_c00369{bottom:447.467067pt;}
.y1a_c00369{bottom:475.067067pt;}
.y19_c00369{bottom:502.667067pt;}
.y18_c00369{bottom:530.267067pt;}
.y17_c00369{bottom:557.867067pt;}
.y16_c00369{bottom:585.467067pt;}
.y15_c00369{bottom:613.067067pt;}
.y14_c00369{bottom:640.667067pt;}
.y13_c00369{bottom:668.267067pt;}
.y12_c00369{bottom:695.867067pt;}
.y11_c00369{bottom:723.467067pt;}
.y10_c00369{bottom:751.067067pt;}
.yf_c00369{bottom:778.667067pt;}
.ye_c00369{bottom:806.267067pt;}
.yd_c00369{bottom:833.867067pt;}
.yc_c00369{bottom:861.467067pt;}
.yb_c00369{bottom:889.067067pt;}
.ya_c00369{bottom:916.587067pt;}
.y9_c00369{bottom:944.187067pt;}
.y8_c00369{bottom:971.787067pt;}
.y7_c00369{bottom:999.387067pt;}
.y4_c00369{bottom:1017.227251pt;}
.y3_c00369{bottom:1032.587243pt;}
.y2_c00369{bottom:1047.867075pt;}
.y1_c00369{bottom:1063.227067pt;}
.h1_c00369{height:47.020937pt;}
.h2_c00369{height:56.156250pt;}
.h0_c00369{height:1122.666667pt;}
.w1_c00369{width:793.333333pt;}
.w0_c00369{width:793.626667pt;}
.x0_c00369{left:0.000000pt;}
.x4_c00369{left:113.440000pt;}
.x1_c00369{left:577.440000pt;}
.x3_c00369{left:656.400000pt;}
.x2_c00369{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4518947d8cee5227eeffbfe7.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.095703;font-style:normal;font-weight:normal;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_b96bf04776547196918c3c50.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_aa17cd60990965fa0d5c40bf.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00370;src:url('chunks/assets/font_3ff1583a4bb98daaefcc1f0e.woff2')format("woff");}.ff4_c00370{font-family:ff4_c00370;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00370;src:url('chunks/assets/font_659c508106011522a73f178e.woff2')format("woff");}.ff5_c00370{font-family:ff5_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;}
.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:16.920000px;}
.ls1d_c00370{letter-spacing:-2.520000px;}
.ls1c_c00370{letter-spacing:-0.900000px;}
.ls15_c00370{letter-spacing:-0.151200px;}
.ls13_c00370{letter-spacing:-0.124200px;}
.ls14_c00370{letter-spacing:-0.102600px;}
.lsf_c00370{letter-spacing:-0.102204px;}
.ls17_c00370{letter-spacing:-0.070200px;}
.ls16_c00370{letter-spacing:-0.054000px;}
.ls18_c00370{letter-spacing:-0.037800px;}
.ls11_c00370{letter-spacing:-0.028800px;}
.ls1b_c00370{letter-spacing:-0.021600px;}
.ls12_c00370{letter-spacing:-0.014400px;}
.ls1a_c00370{letter-spacing:-0.007200px;}
.ls10_c00370{letter-spacing:0.000000px;}
.ls8_c00370{letter-spacing:0.005400px;}
.ls0_c00370{letter-spacing:0.007200px;}
.ls1_c00370{letter-spacing:0.014400px;}
.ls2_c00370{letter-spacing:0.021600px;}
.ls4_c00370{letter-spacing:0.028800px;}
.lsc_c00370{letter-spacing:0.036000px;}
.lsd_c00370{letter-spacing:0.043200px;}
.ls3_c00370{letter-spacing:0.050400px;}
.ls5_c00370{letter-spacing:0.057600px;}
.lse_c00370{letter-spacing:0.064800px;}
.lsb_c00370{letter-spacing:0.072000px;}
.ls7_c00370{letter-spacing:0.093600px;}
.ls6_c00370{letter-spacing:0.129600px;}
.ls19_c00370{letter-spacing:0.496800px;}
.lsa_c00370{letter-spacing:76.788000px;}
.ls9_c00370{letter-spacing:271.800000px;}
.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:-19.987200px;}
.ws3_c00370{word-spacing:-18.064800px;}
.ws1_c00370{word-spacing:-17.985600px;}
.ws2_c00370{word-spacing:-17.978400px;}
.ws8_c00370{word-spacing:-2.736000px;}
.ws7_c00370{word-spacing:-0.705600px;}
.ws5_c00370{word-spacing:0.000000px;}
.ws6_c00370{word-spacing:0.172800px;}
.ws4_c00370{word-spacing:0.192384px;}
._e_c00370{margin-left:-2.647872px;}
._2_c00370{margin-left:-1.123200px;}
._0_c00370{width:1.034064px;}
._6_c00370{width:2.508336px;}
._d_c00370{width:4.370400px;}
._3_c00370{width:5.752800px;}
._1_c00370{width:14.760000px;}
._5_c00370{width:19.864800px;}
._4_c00370{width:21.189600px;}
._b_c00370{width:769.595400px;}
._7_c00370{width:870.948072px;}
._9_c00370{width:1144.555200px;}
._8_c00370{width:1276.164000px;}
._a_c00370{width:1395.428400px;}
._c_c00370{width:1406.811600px;}
.fc4_c00370{color:rgb(38,74,96);}
.fc3_c00370{color:rgb(1,2,5);}
.fc2_c00370{color:rgb(68,84,106);}
.fc1_c00370{color:rgb(0,0,0);}
.fc0_c00370{color:rgb(32,31,30);}
.fs2_c00370{font-size:54.000000px;}
.fs0_c00370{font-size:60.120000px;}
.fs1_c00370{font-size:72.000000px;}
.y0_c00370{bottom:0.000000px;}
.y5_c00370{bottom:57.360450px;}
.y4_c00370{bottom:78.060450px;}
.y25_c00370{bottom:193.080450px;}
.y24_c00370{bottom:224.130450px;}
.y23_c00370{bottom:255.090450px;}
.y22_c00370{bottom:286.140450px;}
.y21_c00370{bottom:317.190450px;}
.y20_c00370{bottom:348.240450px;}
.y1f_c00370{bottom:379.290450px;}
.y1e_c00370{bottom:410.340450px;}
.y1d_c00370{bottom:441.390450px;}
.y1c_c00370{bottom:472.440450px;}
.y1b_c00370{bottom:503.490450px;}
.y1a_c00370{bottom:534.540450px;}
.y19_c00370{bottom:565.590450px;}
.y18_c00370{bottom:596.640450px;}
.y17_c00370{bottom:627.690450px;}
.y16_c00370{bottom:658.740450px;}
.y15_c00370{bottom:686.460450px;}
.y14_c00370{bottom:710.130450px;}
.y13_c00370{bottom:733.800450px;}
.y12_c00370{bottom:757.470450px;}
.y11_c00370{bottom:781.140450px;}
.y10_c00370{bottom:804.720450px;}
.yf_c00370{bottom:831.990450px;}
.ye_c00370{bottom:867.360600px;}
.yd_c00370{bottom:894.090450px;}
.yc_c00370{bottom:925.140450px;}
.yb_c00370{bottom:956.190450px;}
.ya_c00370{bottom:987.240450px;}
.y9_c00370{bottom:1018.290450px;}
.y8_c00370{bottom:1049.340450px;}
.y7_c00370{bottom:1080.390450px;}
.y6_c00370{bottom:1111.440450px;}
.y3_c00370{bottom:1132.140450px;}
.y2_c00370{bottom:1165.441023px;}
.y1_c00370{bottom:1196.040600px;}
.h3_c00370{height:47.513672px;}
.h5_c00370{height:48.410156px;}
.h1_c00370{height:52.898555px;}
.h2_c00370{height:63.175781px;}
.h6_c00370{height:63.351562px;}
.h4_c00370{height:65.330156px;}
.h0_c00370{height:1263.000000px;}
.w1_c00370{width:892.500000px;}
.w0_c00370{width:892.830000px;}
.x0_c00370{left:0.000000px;}
.x1_c00370{left:127.620000px;}
.x3_c00370{left:172.800000px;}
.x4_c00370{left:195.750000px;}
.x2_c00370{left:738.450000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.v1_c00370{vertical-align:15.040000pt;}
.ls1d_c00370{letter-spacing:-2.240000pt;}
.ls1c_c00370{letter-spacing:-0.800000pt;}
.ls15_c00370{letter-spacing:-0.134400pt;}
.ls13_c00370{letter-spacing:-0.110400pt;}
.ls14_c00370{letter-spacing:-0.091200pt;}
.lsf_c00370{letter-spacing:-0.090848pt;}
.ls17_c00370{letter-spacing:-0.062400pt;}
.ls16_c00370{letter-spacing:-0.048000pt;}
.ls18_c00370{letter-spacing:-0.033600pt;}
.ls11_c00370{letter-spacing:-0.025600pt;}
.ls1b_c00370{letter-spacing:-0.019200pt;}
.ls12_c00370{letter-spacing:-0.012800pt;}
.ls1a_c00370{letter-spacing:-0.006400pt;}
.ls10_c00370{letter-spacing:0.000000pt;}
.ls8_c00370{letter-spacing:0.004800pt;}
.ls0_c00370{letter-spacing:0.006400pt;}
.ls1_c00370{letter-spacing:0.012800pt;}
.ls2_c00370{letter-spacing:0.019200pt;}
.ls4_c00370{letter-spacing:0.025600pt;}
.lsc_c00370{letter-spacing:0.032000pt;}
.lsd_c00370{letter-spacing:0.038400pt;}
.ls3_c00370{letter-spacing:0.044800pt;}
.ls5_c00370{letter-spacing:0.051200pt;}
.lse_c00370{letter-spacing:0.057600pt;}
.lsb_c00370{letter-spacing:0.064000pt;}
.ls7_c00370{letter-spacing:0.083200pt;}
.ls6_c00370{letter-spacing:0.115200pt;}
.ls19_c00370{letter-spacing:0.441600pt;}
.lsa_c00370{letter-spacing:68.256000pt;}
.ls9_c00370{letter-spacing:241.600000pt;}
.ws0_c00370{word-spacing:-17.766400pt;}
.ws3_c00370{word-spacing:-16.057600pt;}
.ws1_c00370{word-spacing:-15.987200pt;}
.ws2_c00370{word-spacing:-15.980800pt;}
.ws8_c00370{word-spacing:-2.432000pt;}
.ws7_c00370{word-spacing:-0.627200pt;}
.ws5_c00370{word-spacing:0.000000pt;}
.ws6_c00370{word-spacing:0.153600pt;}
.ws4_c00370{word-spacing:0.171008pt;}
._e_c00370{margin-left:-2.353664pt;}
._2_c00370{margin-left:-0.998400pt;}
._0_c00370{width:0.919168pt;}
._6_c00370{width:2.229632pt;}
._d_c00370{width:3.884800pt;}
._3_c00370{width:5.113600pt;}
._1_c00370{width:13.120000pt;}
._5_c00370{width:17.657600pt;}
._4_c00370{width:18.835200pt;}
._b_c00370{width:684.084800pt;}
._7_c00370{width:774.176064pt;}
._9_c00370{width:1017.382400pt;}
._8_c00370{width:1134.368000pt;}
._a_c00370{width:1240.380800pt;}
._c_c00370{width:1250.499200pt;}
.fs2_c00370{font-size:48.000000pt;}
.fs0_c00370{font-size:53.440000pt;}
.fs1_c00370{font-size:64.000000pt;}
.y0_c00370{bottom:0.000000pt;}
.y5_c00370{bottom:50.987067pt;}
.y4_c00370{bottom:69.387067pt;}
.y25_c00370{bottom:171.627067pt;}
.y24_c00370{bottom:199.227067pt;}
.y23_c00370{bottom:226.747067pt;}
.y22_c00370{bottom:254.347067pt;}
.y21_c00370{bottom:281.947067pt;}
.y20_c00370{bottom:309.547067pt;}
.y1f_c00370{bottom:337.147067pt;}
.y1e_c00370{bottom:364.747067pt;}
.y1d_c00370{bottom:392.347067pt;}
.y1c_c00370{bottom:419.947067pt;}
.y1b_c00370{bottom:447.547067pt;}
.y1a_c00370{bottom:475.147067pt;}
.y19_c00370{bottom:502.747067pt;}
.y18_c00370{bottom:530.347067pt;}
.y17_c00370{bottom:557.947067pt;}
.y16_c00370{bottom:585.547067pt;}
.y15_c00370{bottom:610.187067pt;}
.y14_c00370{bottom:631.227067pt;}
.y13_c00370{bottom:652.267067pt;}
.y12_c00370{bottom:673.307067pt;}
.y11_c00370{bottom:694.347067pt;}
.y10_c00370{bottom:715.307067pt;}
.yf_c00370{bottom:739.547067pt;}
.ye_c00370{bottom:770.987200pt;}
.yd_c00370{bottom:794.747067pt;}
.yc_c00370{bottom:822.347067pt;}
.yb_c00370{bottom:849.947067pt;}
.ya_c00370{bottom:877.547067pt;}
.y9_c00370{bottom:905.147067pt;}
.y8_c00370{bottom:932.747067pt;}
.y7_c00370{bottom:960.347067pt;}
.y6_c00370{bottom:987.947067pt;}
.y3_c00370{bottom:1006.347067pt;}
.y2_c00370{bottom:1035.947576pt;}
.y1_c00370{bottom:1063.147200pt;}
.h3_c00370{height:42.234375pt;}
.h5_c00370{height:43.031250pt;}
.h1_c00370{height:47.020937pt;}
.h2_c00370{height:56.156250pt;}
.h6_c00370{height:56.312500pt;}
.h4_c00370{height:58.071250pt;}
.h0_c00370{height:1122.666667pt;}
.w1_c00370{width:793.333333pt;}
.w0_c00370{width:793.626667pt;}
.x0_c00370{left:0.000000pt;}
.x1_c00370{left:113.440000pt;}
.x3_c00370{left:153.600000pt;}
.x4_c00370{left:174.000000pt;}
.x2_c00370{left:656.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_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_09c64ee07c6f32e2a348da68.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.095703;font-style:normal;font-weight:normal;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_3f1a43a71cecca8ca82cab8d.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.093262;font-style:normal;font-weight:normal;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_35cf2326efacfdb44cda4578.woff2')format("woff");}.ff3_c00371{font-family:ff3_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:ff4_c00371;src:url('chunks/assets/font_3ff1583a4bb98daaefcc1f0e.woff2')format("woff");}.ff4_c00371{font-family:ff4_c00371;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00371;src:url('chunks/assets/font_b8abe4cb270a94ac2a182a3c.woff2')format("woff");}.ff5_c00371{font-family:ff5_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;}
.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:16.920000px;}
.lsf_c00371{letter-spacing:-0.151200px;}
.lsa_c00371{letter-spacing:-0.124200px;}
.ls14_c00371{letter-spacing:-0.108000px;}
.ls10_c00371{letter-spacing:-0.097200px;}
.lsd_c00371{letter-spacing:-0.091800px;}
.lsb_c00371{letter-spacing:-0.086400px;}
.lsc_c00371{letter-spacing:-0.081000px;}
.ls17_c00371{letter-spacing:-0.075600px;}
.ls16_c00371{letter-spacing:-0.070200px;}
.ls18_c00371{letter-spacing:-0.064800px;}
.ls13_c00371{letter-spacing:-0.059400px;}
.ls1a_c00371{letter-spacing:-0.054000px;}
.ls19_c00371{letter-spacing:-0.048600px;}
.ls7_c00371{letter-spacing:-0.048096px;}
.ls15_c00371{letter-spacing:-0.043200px;}
.lse_c00371{letter-spacing:-0.037800px;}
.ls9_c00371{letter-spacing:-0.021600px;}
.ls11_c00371{letter-spacing:-0.005400px;}
.ls8_c00371{letter-spacing:0.000000px;}
.ls0_c00371{letter-spacing:0.005400px;}
.ls5_c00371{letter-spacing:0.010800px;}
.ls4_c00371{letter-spacing:0.016200px;}
.ls6_c00371{letter-spacing:0.032400px;}
.ls1_c00371{letter-spacing:0.036000px;}
.ls3_c00371{letter-spacing:0.205200px;}
.ls12_c00371{letter-spacing:0.216000px;}
.ls1b_c00371{letter-spacing:0.496800px;}
.ls2_c00371{letter-spacing:390.600000px;}
.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.994400px;}
.ws2_c00371{word-spacing:0.000000px;}
.ws1_c00371{word-spacing:0.138276px;}
.ws3_c00371{word-spacing:0.172800px;}
._c_c00371{margin-left:-1.335600px;}
._2_c00371{width:1.128600px;}
._11_c00371{width:13.510800px;}
._19_c00371{width:24.969600px;}
._18_c00371{width:26.055000px;}
._d_c00371{width:33.690600px;}
._a_c00371{width:86.729400px;}
._1_c00371{width:87.912000px;}
._3_c00371{width:101.660400px;}
._8_c00371{width:188.735400px;}
._1c_c00371{width:190.139400px;}
._9_c00371{width:210.772800px;}
._e_c00371{width:229.753800px;}
._0_c00371{width:230.959800px;}
._6_c00371{width:306.261000px;}
._13_c00371{width:340.556400px;}
._12_c00371{width:363.209400px;}
._1f_c00371{width:430.196400px;}
._1a_c00371{width:436.692600px;}
._16_c00371{width:457.126200px;}
._5_c00371{width:467.478000px;}
._7_c00371{width:469.481400px;}
._21_c00371{width:498.760200px;}
._15_c00371{width:506.973600px;}
._1b_c00371{width:538.812000px;}
._f_c00371{width:562.528800px;}
._17_c00371{width:580.802400px;}
._14_c00371{width:586.807200px;}
._1e_c00371{width:604.346400px;}
._1d_c00371{width:619.358400px;}
._b_c00371{width:654.382800px;}
._10_c00371{width:739.492200px;}
._4_c00371{width:765.946800px;}
._20_c00371{width:888.476400px;}
.fc3_c00371{color:rgb(38,74,96);}
.fc2_c00371{color:rgb(1,2,5);}
.fc1_c00371{color:rgb(68,84,106);}
.fc0_c00371{color:rgb(0,0,0);}
.fs2_c00371{font-size:54.000000px;}
.fs0_c00371{font-size:60.120000px;}
.fs1_c00371{font-size:72.000000px;}
.y0_c00371{bottom:0.000000px;}
.y6_c00371{bottom:57.360450px;}
.y5_c00371{bottom:78.060450px;}
.y25_c00371{bottom:140.700450px;}
.y24_c00371{bottom:168.420450px;}
.y23_c00371{bottom:192.090450px;}
.y22_c00371{bottom:233.400450px;}
.y21_c00371{bottom:274.710450px;}
.y20_c00371{bottom:316.020450px;}
.y1f_c00371{bottom:357.330450px;}
.y1e_c00371{bottom:381.000600px;}
.y1d_c00371{bottom:404.670450px;}
.y1c_c00371{bottom:427.980450px;}
.y1b_c00371{bottom:469.290600px;}
.y1a_c00371{bottom:492.960600px;}
.y19_c00371{bottom:534.270450px;}
.y18_c00371{bottom:575.580450px;}
.y17_c00371{bottom:615.990450px;}
.y16_c00371{bottom:657.300450px;}
.y15_c00371{bottom:694.830000px;}
.y14_c00371{bottom:718.140450px;}
.y13_c00371{bottom:759.450450px;}
.y12_c00371{bottom:800.760450px;}
.y11_c00371{bottom:842.070450px;}
.y10_c00371{bottom:865.740000px;}
.yf_c00371{bottom:889.050450px;}
.ye_c00371{bottom:930.360450px;}
.yd_c00371{bottom:971.670450px;}
.yc_c00371{bottom:1012.980450px;}
.yb_c00371{bottom:1036.650450px;}
.y9_c00371{bottom:1074.180450px;}
.y8_c00371{bottom:1093.260450px;}
.ya_c00371{bottom:1097.490450px;}
.y7_c00371{bottom:1128.630450px;}
.y4_c00371{bottom:1144.380657px;}
.y3_c00371{bottom:1161.660648px;}
.y2_c00371{bottom:1178.850459px;}
.y1_c00371{bottom:1196.130450px;}
.h3_c00371{height:47.513672px;}
.h5_c00371{height:48.410156px;}
.h1_c00371{height:52.898555px;}
.h2_c00371{height:63.175781px;}
.h4_c00371{height:65.330156px;}
.h0_c00371{height:1263.000000px;}
.w1_c00371{width:892.500000px;}
.w0_c00371{width:892.830000px;}
.x0_c00371{left:0.000000px;}
.x5_c00371{left:122.130000px;}
.x4_c00371{left:127.620000px;}
.x8_c00371{left:151.290000px;}
.x9_c00371{left:407.250000px;}
.x6_c00371{left:535.320000px;}
.x1_c00371{left:649.620000px;}
.x7_c00371{left:663.480000px;}
.x3_c00371{left:738.450000px;}
.x2_c00371{left:765.450198px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.v1_c00371{vertical-align:15.040000pt;}
.lsf_c00371{letter-spacing:-0.134400pt;}
.lsa_c00371{letter-spacing:-0.110400pt;}
.ls14_c00371{letter-spacing:-0.096000pt;}
.ls10_c00371{letter-spacing:-0.086400pt;}
.lsd_c00371{letter-spacing:-0.081600pt;}
.lsb_c00371{letter-spacing:-0.076800pt;}
.lsc_c00371{letter-spacing:-0.072000pt;}
.ls17_c00371{letter-spacing:-0.067200pt;}
.ls16_c00371{letter-spacing:-0.062400pt;}
.ls18_c00371{letter-spacing:-0.057600pt;}
.ls13_c00371{letter-spacing:-0.052800pt;}
.ls1a_c00371{letter-spacing:-0.048000pt;}
.ls19_c00371{letter-spacing:-0.043200pt;}
.ls7_c00371{letter-spacing:-0.042752pt;}
.ls15_c00371{letter-spacing:-0.038400pt;}
.lse_c00371{letter-spacing:-0.033600pt;}
.ls9_c00371{letter-spacing:-0.019200pt;}
.ls11_c00371{letter-spacing:-0.004800pt;}
.ls8_c00371{letter-spacing:0.000000pt;}
.ls0_c00371{letter-spacing:0.004800pt;}
.ls5_c00371{letter-spacing:0.009600pt;}
.ls4_c00371{letter-spacing:0.014400pt;}
.ls6_c00371{letter-spacing:0.028800pt;}
.ls1_c00371{letter-spacing:0.032000pt;}
.ls3_c00371{letter-spacing:0.182400pt;}
.ls12_c00371{letter-spacing:0.192000pt;}
.ls1b_c00371{letter-spacing:0.441600pt;}
.ls2_c00371{letter-spacing:347.200000pt;}
.ws0_c00371{word-spacing:-17.772800pt;}
.ws2_c00371{word-spacing:0.000000pt;}
.ws1_c00371{word-spacing:0.122912pt;}
.ws3_c00371{word-spacing:0.153600pt;}
._c_c00371{margin-left:-1.187200pt;}
._2_c00371{width:1.003200pt;}
._11_c00371{width:12.009600pt;}
._19_c00371{width:22.195200pt;}
._18_c00371{width:23.160000pt;}
._d_c00371{width:29.947200pt;}
._a_c00371{width:77.092800pt;}
._1_c00371{width:78.144000pt;}
._3_c00371{width:90.364800pt;}
._8_c00371{width:167.764800pt;}
._1c_c00371{width:169.012800pt;}
._9_c00371{width:187.353600pt;}
._e_c00371{width:204.225600pt;}
._0_c00371{width:205.297600pt;}
._6_c00371{width:272.232000pt;}
._13_c00371{width:302.716800pt;}
._12_c00371{width:322.852800pt;}
._1f_c00371{width:382.396800pt;}
._1a_c00371{width:388.171200pt;}
._16_c00371{width:406.334400pt;}
._5_c00371{width:415.536000pt;}
._7_c00371{width:417.316800pt;}
._21_c00371{width:443.342400pt;}
._15_c00371{width:450.643200pt;}
._1b_c00371{width:478.944000pt;}
._f_c00371{width:500.025600pt;}
._17_c00371{width:516.268800pt;}
._14_c00371{width:521.606400pt;}
._1e_c00371{width:537.196800pt;}
._1d_c00371{width:550.540800pt;}
._b_c00371{width:581.673600pt;}
._10_c00371{width:657.326400pt;}
._4_c00371{width:680.841600pt;}
._20_c00371{width:789.756800pt;}
.fs2_c00371{font-size:48.000000pt;}
.fs0_c00371{font-size:53.440000pt;}
.fs1_c00371{font-size:64.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y6_c00371{bottom:50.987067pt;}
.y5_c00371{bottom:69.387067pt;}
.y25_c00371{bottom:125.067067pt;}
.y24_c00371{bottom:149.707067pt;}
.y23_c00371{bottom:170.747067pt;}
.y22_c00371{bottom:207.467067pt;}
.y21_c00371{bottom:244.187067pt;}
.y20_c00371{bottom:280.907067pt;}
.y1f_c00371{bottom:317.627067pt;}
.y1e_c00371{bottom:338.667200pt;}
.y1d_c00371{bottom:359.707067pt;}
.y1c_c00371{bottom:380.427067pt;}
.y1b_c00371{bottom:417.147200pt;}
.y1a_c00371{bottom:438.187200pt;}
.y19_c00371{bottom:474.907067pt;}
.y18_c00371{bottom:511.627067pt;}
.y17_c00371{bottom:547.547067pt;}
.y16_c00371{bottom:584.267067pt;}
.y15_c00371{bottom:617.626667pt;}
.y14_c00371{bottom:638.347067pt;}
.y13_c00371{bottom:675.067067pt;}
.y12_c00371{bottom:711.787067pt;}
.y11_c00371{bottom:748.507067pt;}
.y10_c00371{bottom:769.546667pt;}
.yf_c00371{bottom:790.267067pt;}
.ye_c00371{bottom:826.987067pt;}
.yd_c00371{bottom:863.707067pt;}
.yc_c00371{bottom:900.427067pt;}
.yb_c00371{bottom:921.467067pt;}
.y9_c00371{bottom:954.827067pt;}
.y8_c00371{bottom:971.787067pt;}
.ya_c00371{bottom:975.547067pt;}
.y7_c00371{bottom:1003.227067pt;}
.y4_c00371{bottom:1017.227251pt;}
.y3_c00371{bottom:1032.587243pt;}
.y2_c00371{bottom:1047.867075pt;}
.y1_c00371{bottom:1063.227067pt;}
.h3_c00371{height:42.234375pt;}
.h5_c00371{height:43.031250pt;}
.h1_c00371{height:47.020937pt;}
.h2_c00371{height:56.156250pt;}
.h4_c00371{height:58.071250pt;}
.h0_c00371{height:1122.666667pt;}
.w1_c00371{width:793.333333pt;}
.w0_c00371{width:793.626667pt;}
.x0_c00371{left:0.000000pt;}
.x5_c00371{left:108.560000pt;}
.x4_c00371{left:113.440000pt;}
.x8_c00371{left:134.480000pt;}
.x9_c00371{left:362.000000pt;}
.x6_c00371{left:475.840000pt;}
.x1_c00371{left:577.440000pt;}
.x7_c00371{left:589.760000pt;}
.x3_c00371{left:656.400000pt;}
.x2_c00371{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00af075b2f526f34ae8cfd23.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.095703;font-style:normal;font-weight:normal;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_ee17fb40a103a7efc98eca88.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:1.093262;font-style: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;}
.ls18_c00372{letter-spacing:-0.180000px;}
.lsf_c00372{letter-spacing:-0.102204px;}
.ls16_c00372{letter-spacing:-0.050400px;}
.ls15_c00372{letter-spacing:-0.036000px;}
.ls14_c00372{letter-spacing:-0.028800px;}
.ls13_c00372{letter-spacing:-0.021600px;}
.ls17_c00372{letter-spacing:-0.014400px;}
.ls12_c00372{letter-spacing:-0.007200px;}
.ls10_c00372{letter-spacing:0.000000px;}
.ls1_c00372{letter-spacing:0.007200px;}
.ls5_c00372{letter-spacing:0.014400px;}
.ls8_c00372{letter-spacing:0.021600px;}
.ls0_c00372{letter-spacing:0.028800px;}
.lsb_c00372{letter-spacing:0.036000px;}
.ls3_c00372{letter-spacing:0.043200px;}
.ls7_c00372{letter-spacing:0.050400px;}
.lsc_c00372{letter-spacing:0.057600px;}
.ls2_c00372{letter-spacing:0.064800px;}
.ls4_c00372{letter-spacing:0.072000px;}
.lsd_c00372{letter-spacing:0.079200px;}
.ls6_c00372{letter-spacing:0.086400px;}
.lsa_c00372{letter-spacing:0.093600px;}
.ls9_c00372{letter-spacing:0.100800px;}
.ls11_c00372{letter-spacing:0.129600px;}
.lse_c00372{letter-spacing:0.136800px;}
.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;}
}
.ws3_c00372{word-spacing:-0.072000px;}
.ws1_c00372{word-spacing:0.000000px;}
.ws0_c00372{word-spacing:0.192384px;}
.ws6_c00372{word-spacing:1.706400px;}
.ws4_c00372{word-spacing:5.349600px;}
.ws2_c00372{word-spacing:5.407200px;}
.ws5_c00372{word-spacing:9.295200px;}
._a_c00372{margin-left:-5.457600px;}
._9_c00372{margin-left:-4.327200px;}
._4_c00372{margin-left:-2.894400px;}
._5_c00372{margin-left:-1.281600px;}
._0_c00372{width:1.034064px;}
._8_c00372{width:2.750400px;}
._7_c00372{width:3.945600px;}
._b_c00372{width:5.407200px;}
._3_c00372{width:6.451200px;}
._6_c00372{width:8.229600px;}
._2_c00372{width:11.102400px;}
._1_c00372{width:12.232800px;}
.fc1_c00372{color:rgb(0,0,0);}
.fc0_c00372{color:rgb(32,31,30);}
.fs0_c00372{font-size:60.120000px;}
.fs1_c00372{font-size:72.000000px;}
.y0_c00372{bottom:0.000000px;}
.y5_c00372{bottom:57.360450px;}
.y4_c00372{bottom:78.060450px;}
.y25_c00372{bottom:148.980450px;}
.y24_c00372{bottom:180.030450px;}
.y23_c00372{bottom:211.080450px;}
.y22_c00372{bottom:242.130450px;}
.y21_c00372{bottom:273.090450px;}
.y20_c00372{bottom:304.140450px;}
.y1f_c00372{bottom:335.190450px;}
.y1e_c00372{bottom:366.240450px;}
.y1d_c00372{bottom:397.290450px;}
.y1c_c00372{bottom:428.340450px;}
.y1b_c00372{bottom:459.390450px;}
.y1a_c00372{bottom:490.440450px;}
.y19_c00372{bottom:521.490450px;}
.y18_c00372{bottom:552.540450px;}
.y17_c00372{bottom:583.590450px;}
.y16_c00372{bottom:614.640450px;}
.y15_c00372{bottom:645.690450px;}
.y14_c00372{bottom:676.740450px;}
.y13_c00372{bottom:707.790450px;}
.y12_c00372{bottom:738.840450px;}
.y11_c00372{bottom:769.890450px;}
.y10_c00372{bottom:800.940450px;}
.yf_c00372{bottom:831.990450px;}
.ye_c00372{bottom:863.040450px;}
.yd_c00372{bottom:894.090450px;}
.yc_c00372{bottom:925.140450px;}
.yb_c00372{bottom:956.190450px;}
.ya_c00372{bottom:987.240450px;}
.y9_c00372{bottom:1018.290450px;}
.y8_c00372{bottom:1049.340450px;}
.y7_c00372{bottom:1080.390450px;}
.y6_c00372{bottom:1111.440450px;}
.y3_c00372{bottom:1132.140450px;}
.y2_c00372{bottom:1165.441023px;}
.y1_c00372{bottom:1196.040600px;}
.h1_c00372{height:52.898555px;}
.h2_c00372{height:63.175781px;}
.h3_c00372{height:63.351562px;}
.h0_c00372{height:1263.000000px;}
.w1_c00372{width:892.500000px;}
.w0_c00372{width:892.830000px;}
.x0_c00372{left:0.000000px;}
.x1_c00372{left:127.620000px;}
.x2_c00372{left:738.450000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls18_c00372{letter-spacing:-0.160000pt;}
.lsf_c00372{letter-spacing:-0.090848pt;}
.ls16_c00372{letter-spacing:-0.044800pt;}
.ls15_c00372{letter-spacing:-0.032000pt;}
.ls14_c00372{letter-spacing:-0.025600pt;}
.ls13_c00372{letter-spacing:-0.019200pt;}
.ls17_c00372{letter-spacing:-0.012800pt;}
.ls12_c00372{letter-spacing:-0.006400pt;}
.ls10_c00372{letter-spacing:0.000000pt;}
.ls1_c00372{letter-spacing:0.006400pt;}
.ls5_c00372{letter-spacing:0.012800pt;}
.ls8_c00372{letter-spacing:0.019200pt;}
.ls0_c00372{letter-spacing:0.025600pt;}
.lsb_c00372{letter-spacing:0.032000pt;}
.ls3_c00372{letter-spacing:0.038400pt;}
.ls7_c00372{letter-spacing:0.044800pt;}
.lsc_c00372{letter-spacing:0.051200pt;}
.ls2_c00372{letter-spacing:0.057600pt;}
.ls4_c00372{letter-spacing:0.064000pt;}
.lsd_c00372{letter-spacing:0.070400pt;}
.ls6_c00372{letter-spacing:0.076800pt;}
.lsa_c00372{letter-spacing:0.083200pt;}
.ls9_c00372{letter-spacing:0.089600pt;}
.ls11_c00372{letter-spacing:0.115200pt;}
.lse_c00372{letter-spacing:0.121600pt;}
.ws3_c00372{word-spacing:-0.064000pt;}
.ws1_c00372{word-spacing:0.000000pt;}
.ws0_c00372{word-spacing:0.171008pt;}
.ws6_c00372{word-spacing:1.516800pt;}
.ws4_c00372{word-spacing:4.755200pt;}
.ws2_c00372{word-spacing:4.806400pt;}
.ws5_c00372{word-spacing:8.262400pt;}
._a_c00372{margin-left:-4.851200pt;}
._9_c00372{margin-left:-3.846400pt;}
._4_c00372{margin-left:-2.572800pt;}
._5_c00372{margin-left:-1.139200pt;}
._0_c00372{width:0.919168pt;}
._8_c00372{width:2.444800pt;}
._7_c00372{width:3.507200pt;}
._b_c00372{width:4.806400pt;}
._3_c00372{width:5.734400pt;}
._6_c00372{width:7.315200pt;}
._2_c00372{width:9.868800pt;}
._1_c00372{width:10.873600pt;}
.fs0_c00372{font-size:53.440000pt;}
.fs1_c00372{font-size:64.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.y5_c00372{bottom:50.987067pt;}
.y4_c00372{bottom:69.387067pt;}
.y25_c00372{bottom:132.427067pt;}
.y24_c00372{bottom:160.027067pt;}
.y23_c00372{bottom:187.627067pt;}
.y22_c00372{bottom:215.227067pt;}
.y21_c00372{bottom:242.747067pt;}
.y20_c00372{bottom:270.347067pt;}
.y1f_c00372{bottom:297.947067pt;}
.y1e_c00372{bottom:325.547067pt;}
.y1d_c00372{bottom:353.147067pt;}
.y1c_c00372{bottom:380.747067pt;}
.y1b_c00372{bottom:408.347067pt;}
.y1a_c00372{bottom:435.947067pt;}
.y19_c00372{bottom:463.547067pt;}
.y18_c00372{bottom:491.147067pt;}
.y17_c00372{bottom:518.747067pt;}
.y16_c00372{bottom:546.347067pt;}
.y15_c00372{bottom:573.947067pt;}
.y14_c00372{bottom:601.547067pt;}
.y13_c00372{bottom:629.147067pt;}
.y12_c00372{bottom:656.747067pt;}
.y11_c00372{bottom:684.347067pt;}
.y10_c00372{bottom:711.947067pt;}
.yf_c00372{bottom:739.547067pt;}
.ye_c00372{bottom:767.147067pt;}
.yd_c00372{bottom:794.747067pt;}
.yc_c00372{bottom:822.347067pt;}
.yb_c00372{bottom:849.947067pt;}
.ya_c00372{bottom:877.547067pt;}
.y9_c00372{bottom:905.147067pt;}
.y8_c00372{bottom:932.747067pt;}
.y7_c00372{bottom:960.347067pt;}
.y6_c00372{bottom:987.947067pt;}
.y3_c00372{bottom:1006.347067pt;}
.y2_c00372{bottom:1035.947576pt;}
.y1_c00372{bottom:1063.147200pt;}
.h1_c00372{height:47.020937pt;}
.h2_c00372{height:56.156250pt;}
.h3_c00372{height:56.312500pt;}
.h0_c00372{height:1122.666667pt;}
.w1_c00372{width:793.333333pt;}
.w0_c00372{width:793.626667pt;}
.x0_c00372{left:0.000000pt;}
.x1_c00372{left:113.440000pt;}
.x2_c00372{left:656.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_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_dca9ca95fd05b2a5233ea0f2.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.095703;font-style:normal;font-weight:normal;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_d5569ac07ab981e752008509.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.093262;font-style: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;}
.ls13_c00373{letter-spacing:-2.160000px;}
.ls15_c00373{letter-spacing:-0.057600px;}
.lsc_c00373{letter-spacing:-0.048096px;}
.lse_c00373{letter-spacing:-0.036000px;}
.ls11_c00373{letter-spacing:-0.028800px;}
.ls16_c00373{letter-spacing:-0.021600px;}
.ls10_c00373{letter-spacing:-0.014400px;}
.lsf_c00373{letter-spacing:-0.007200px;}
.lsd_c00373{letter-spacing:0.000000px;}
.ls5_c00373{letter-spacing:0.007200px;}
.ls2_c00373{letter-spacing:0.014400px;}
.ls8_c00373{letter-spacing:0.021600px;}
.ls6_c00373{letter-spacing:0.028800px;}
.ls4_c00373{letter-spacing:0.036000px;}
.ls7_c00373{letter-spacing:0.043200px;}
.ls0_c00373{letter-spacing:0.050400px;}
.lsa_c00373{letter-spacing:0.057600px;}
.ls1_c00373{letter-spacing:0.064800px;}
.ls9_c00373{letter-spacing:0.072000px;}
.ls3_c00373{letter-spacing:0.079200px;}
.lsb_c00373{letter-spacing:0.086400px;}
.ls14_c00373{letter-spacing:0.108000px;}
.ls12_c00373{letter-spacing:14.400000px;}
.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;}
}
.ws3_c00373{word-spacing:-18.072000px;}
.ws0_c00373{word-spacing:-18.043200px;}
.ws1_c00373{word-spacing:-18.007200px;}
.ws2_c00373{word-spacing:-18.000000px;}
.ws9_c00373{word-spacing:-2.167200px;}
.wsc_c00373{word-spacing:-1.440000px;}
.ws5_c00373{word-spacing:0.000000px;}
.ws4_c00373{word-spacing:0.138276px;}
.ws6_c00373{word-spacing:2.145600px;}
.wsb_c00373{word-spacing:3.996000px;}
.ws8_c00373{word-spacing:14.392800px;}
.ws7_c00373{word-spacing:14.400000px;}
.wsa_c00373{word-spacing:16.113600px;}
._8_c00373{margin-left:-14.486400px;}
._a_c00373{margin-left:-2.930400px;}
._1_c00373{margin-left:-1.036800px;}
._b_c00373{width:1.036800px;}
._2_c00373{width:2.196000px;}
._f_c00373{width:3.247200px;}
._9_c00373{width:4.262400px;}
._0_c00373{width:5.349600px;}
._e_c00373{width:6.696000px;}
._4_c00373{width:7.819200px;}
._5_c00373{width:8.870400px;}
._7_c00373{width:12.945600px;}
._6_c00373{width:14.428800px;}
._c_c00373{width:15.436800px;}
._d_c00373{width:16.876800px;}
._3_c00373{width:19.332000px;}
.fc0_c00373{color:rgb(0,0,0);}
.fs0_c00373{font-size:60.120000px;}
.fs1_c00373{font-size:72.000000px;}
.y0_c00373{bottom:0.000000px;}
.y6_c00373{bottom:57.360450px;}
.y5_c00373{bottom:78.060450px;}
.y26_c00373{bottom:161.850450px;}
.y25_c00373{bottom:192.900450px;}
.y24_c00373{bottom:223.950450px;}
.y23_c00373{bottom:255.000450px;}
.y22_c00373{bottom:286.050450px;}
.y21_c00373{bottom:317.100450px;}
.y20_c00373{bottom:348.150450px;}
.y1f_c00373{bottom:379.200450px;}
.y1e_c00373{bottom:410.250450px;}
.y1d_c00373{bottom:441.300450px;}
.y1c_c00373{bottom:472.350450px;}
.y1b_c00373{bottom:503.400450px;}
.y1a_c00373{bottom:534.450450px;}
.y19_c00373{bottom:565.500450px;}
.y18_c00373{bottom:596.550450px;}
.y17_c00373{bottom:627.600450px;}
.y16_c00373{bottom:658.650450px;}
.y15_c00373{bottom:689.700450px;}
.y14_c00373{bottom:720.750450px;}
.y13_c00373{bottom:751.800450px;}
.y12_c00373{bottom:782.850450px;}
.y11_c00373{bottom:813.900450px;}
.y10_c00373{bottom:844.950450px;}
.yf_c00373{bottom:876.000450px;}
.ye_c00373{bottom:907.050450px;}
.yd_c00373{bottom:938.100450px;}
.yc_c00373{bottom:969.150450px;}
.yb_c00373{bottom:1000.200450px;}
.ya_c00373{bottom:1031.160450px;}
.y9_c00373{bottom:1062.210450px;}
.y8_c00373{bottom:1093.260450px;}
.y7_c00373{bottom:1124.310450px;}
.y4_c00373{bottom:1144.380657px;}
.y3_c00373{bottom:1161.660648px;}
.y2_c00373{bottom:1178.850459px;}
.y1_c00373{bottom:1196.130450px;}
.h1_c00373{height:52.898555px;}
.h2_c00373{height:63.175781px;}
.h3_c00373{height:63.351562px;}
.h0_c00373{height:1263.000000px;}
.w1_c00373{width:892.500000px;}
.w0_c00373{width:892.830000px;}
.x0_c00373{left:0.000000px;}
.x4_c00373{left:127.620000px;}
.x1_c00373{left:649.620000px;}
.x3_c00373{left:738.450000px;}
.x2_c00373{left:765.450198px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls13_c00373{letter-spacing:-1.920000pt;}
.ls15_c00373{letter-spacing:-0.051200pt;}
.lsc_c00373{letter-spacing:-0.042752pt;}
.lse_c00373{letter-spacing:-0.032000pt;}
.ls11_c00373{letter-spacing:-0.025600pt;}
.ls16_c00373{letter-spacing:-0.019200pt;}
.ls10_c00373{letter-spacing:-0.012800pt;}
.lsf_c00373{letter-spacing:-0.006400pt;}
.lsd_c00373{letter-spacing:0.000000pt;}
.ls5_c00373{letter-spacing:0.006400pt;}
.ls2_c00373{letter-spacing:0.012800pt;}
.ls8_c00373{letter-spacing:0.019200pt;}
.ls6_c00373{letter-spacing:0.025600pt;}
.ls4_c00373{letter-spacing:0.032000pt;}
.ls7_c00373{letter-spacing:0.038400pt;}
.ls0_c00373{letter-spacing:0.044800pt;}
.lsa_c00373{letter-spacing:0.051200pt;}
.ls1_c00373{letter-spacing:0.057600pt;}
.ls9_c00373{letter-spacing:0.064000pt;}
.ls3_c00373{letter-spacing:0.070400pt;}
.lsb_c00373{letter-spacing:0.076800pt;}
.ls14_c00373{letter-spacing:0.096000pt;}
.ls12_c00373{letter-spacing:12.800000pt;}
.ws3_c00373{word-spacing:-16.064000pt;}
.ws0_c00373{word-spacing:-16.038400pt;}
.ws1_c00373{word-spacing:-16.006400pt;}
.ws2_c00373{word-spacing:-16.000000pt;}
.ws9_c00373{word-spacing:-1.926400pt;}
.wsc_c00373{word-spacing:-1.280000pt;}
.ws5_c00373{word-spacing:0.000000pt;}
.ws4_c00373{word-spacing:0.122912pt;}
.ws6_c00373{word-spacing:1.907200pt;}
.wsb_c00373{word-spacing:3.552000pt;}
.ws8_c00373{word-spacing:12.793600pt;}
.ws7_c00373{word-spacing:12.800000pt;}
.wsa_c00373{word-spacing:14.323200pt;}
._8_c00373{margin-left:-12.876800pt;}
._a_c00373{margin-left:-2.604800pt;}
._1_c00373{margin-left:-0.921600pt;}
._b_c00373{width:0.921600pt;}
._2_c00373{width:1.952000pt;}
._f_c00373{width:2.886400pt;}
._9_c00373{width:3.788800pt;}
._0_c00373{width:4.755200pt;}
._e_c00373{width:5.952000pt;}
._4_c00373{width:6.950400pt;}
._5_c00373{width:7.884800pt;}
._7_c00373{width:11.507200pt;}
._6_c00373{width:12.825600pt;}
._c_c00373{width:13.721600pt;}
._d_c00373{width:15.001600pt;}
._3_c00373{width:17.184000pt;}
.fs0_c00373{font-size:53.440000pt;}
.fs1_c00373{font-size:64.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.y6_c00373{bottom:50.987067pt;}
.y5_c00373{bottom:69.387067pt;}
.y26_c00373{bottom:143.867067pt;}
.y25_c00373{bottom:171.467067pt;}
.y24_c00373{bottom:199.067067pt;}
.y23_c00373{bottom:226.667067pt;}
.y22_c00373{bottom:254.267067pt;}
.y21_c00373{bottom:281.867067pt;}
.y20_c00373{bottom:309.467067pt;}
.y1f_c00373{bottom:337.067067pt;}
.y1e_c00373{bottom:364.667067pt;}
.y1d_c00373{bottom:392.267067pt;}
.y1c_c00373{bottom:419.867067pt;}
.y1b_c00373{bottom:447.467067pt;}
.y1a_c00373{bottom:475.067067pt;}
.y19_c00373{bottom:502.667067pt;}
.y18_c00373{bottom:530.267067pt;}
.y17_c00373{bottom:557.867067pt;}
.y16_c00373{bottom:585.467067pt;}
.y15_c00373{bottom:613.067067pt;}
.y14_c00373{bottom:640.667067pt;}
.y13_c00373{bottom:668.267067pt;}
.y12_c00373{bottom:695.867067pt;}
.y11_c00373{bottom:723.467067pt;}
.y10_c00373{bottom:751.067067pt;}
.yf_c00373{bottom:778.667067pt;}
.ye_c00373{bottom:806.267067pt;}
.yd_c00373{bottom:833.867067pt;}
.yc_c00373{bottom:861.467067pt;}
.yb_c00373{bottom:889.067067pt;}
.ya_c00373{bottom:916.587067pt;}
.y9_c00373{bottom:944.187067pt;}
.y8_c00373{bottom:971.787067pt;}
.y7_c00373{bottom:999.387067pt;}
.y4_c00373{bottom:1017.227251pt;}
.y3_c00373{bottom:1032.587243pt;}
.y2_c00373{bottom:1047.867075pt;}
.y1_c00373{bottom:1063.227067pt;}
.h1_c00373{height:47.020937pt;}
.h2_c00373{height:56.156250pt;}
.h3_c00373{height:56.312500pt;}
.h0_c00373{height:1122.666667pt;}
.w1_c00373{width:793.333333pt;}
.w0_c00373{width:793.626667pt;}
.x0_c00373{left:0.000000pt;}
.x4_c00373{left:113.440000pt;}
.x1_c00373{left:577.440000pt;}
.x3_c00373{left:656.400000pt;}
.x2_c00373{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18bce3a045e3587278d12f7e.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.095703;font-style:normal;font-weight:normal;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_f1b4429d1e3698bd1bfcbaa1.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:1.093262;font-style: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;}
.ls17_c00374{letter-spacing:-1.080000px;}
.ls10_c00374{letter-spacing:-0.136800px;}
.lse_c00374{letter-spacing:-0.102204px;}
.ls19_c00374{letter-spacing:-0.064800px;}
.ls11_c00374{letter-spacing:-0.057600px;}
.ls12_c00374{letter-spacing:-0.050400px;}
.ls15_c00374{letter-spacing:-0.028800px;}
.ls16_c00374{letter-spacing:-0.014400px;}
.ls14_c00374{letter-spacing:-0.007200px;}
.lsf_c00374{letter-spacing:0.000000px;}
.ls1_c00374{letter-spacing:0.007200px;}
.ls9_c00374{letter-spacing:0.014400px;}
.ls7_c00374{letter-spacing:0.021600px;}
.ls3_c00374{letter-spacing:0.028800px;}
.lsc_c00374{letter-spacing:0.036000px;}
.ls2_c00374{letter-spacing:0.043200px;}
.ls6_c00374{letter-spacing:0.050400px;}
.lsa_c00374{letter-spacing:0.057600px;}
.ls8_c00374{letter-spacing:0.064800px;}
.ls0_c00374{letter-spacing:0.072000px;}
.ls4_c00374{letter-spacing:0.079200px;}
.ls5_c00374{letter-spacing:0.122400px;}
.lsd_c00374{letter-spacing:0.165600px;}
.lsb_c00374{letter-spacing:0.324000px;}
.ls18_c00374{letter-spacing:2.520000px;}
.ls13_c00374{letter-spacing:4.680000px;}
.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:-18.122400px;}
.ws3_c00374{word-spacing:-18.043200px;}
.ws2_c00374{word-spacing:-18.036000px;}
.ws1_c00374{word-spacing:-17.942400px;}
.wse_c00374{word-spacing:-4.305600px;}
.ws8_c00374{word-spacing:-2.908800px;}
.ws9_c00374{word-spacing:-2.181600px;}
.wsa_c00374{word-spacing:-1.432800px;}
.ws10_c00374{word-spacing:-1.123200px;}
.ws7_c00374{word-spacing:-0.403200px;}
.ws6_c00374{word-spacing:-0.367200px;}
.wsd_c00374{word-spacing:-0.036000px;}
.ws5_c00374{word-spacing:0.000000px;}
.ws4_c00374{word-spacing:0.192384px;}
.wsb_c00374{word-spacing:0.302400px;}
.wsc_c00374{word-spacing:1.094400px;}
.wsf_c00374{word-spacing:5.860800px;}
._3_c00374{margin-left:-4.773600px;}
._4_c00374{margin-left:-2.851200px;}
._1_c00374{margin-left:-1.101600px;}
._0_c00374{width:1.034064px;}
._a_c00374{width:2.116800px;}
._b_c00374{width:3.564000px;}
._2_c00374{width:4.672800px;}
._9_c00374{width:6.372000px;}
._5_c00374{width:7.538400px;}
._c_c00374{width:9.000000px;}
._7_c00374{width:10.159200px;}
._6_c00374{width:11.476800px;}
._8_c00374{width:12.492000px;}
.fc1_c00374{color:rgb(0,0,0);}
.fc0_c00374{color:rgb(32,31,30);}
.fs0_c00374{font-size:60.120000px;}
.fs1_c00374{font-size:72.000000px;}
.y0_c00374{bottom:0.000000px;}
.y5_c00374{bottom:57.360450px;}
.y4_c00374{bottom:78.060450px;}
.y25_c00374{bottom:148.980450px;}
.y24_c00374{bottom:180.030450px;}
.y23_c00374{bottom:211.080450px;}
.y22_c00374{bottom:242.130450px;}
.y21_c00374{bottom:273.090450px;}
.y20_c00374{bottom:304.140450px;}
.y1f_c00374{bottom:335.190450px;}
.y1e_c00374{bottom:366.240450px;}
.y1d_c00374{bottom:397.290450px;}
.y1c_c00374{bottom:428.340450px;}
.y1b_c00374{bottom:459.390450px;}
.y1a_c00374{bottom:490.440450px;}
.y19_c00374{bottom:521.490450px;}
.y18_c00374{bottom:552.540450px;}
.y17_c00374{bottom:583.590450px;}
.y16_c00374{bottom:614.640450px;}
.y15_c00374{bottom:645.690450px;}
.y14_c00374{bottom:676.740450px;}
.y13_c00374{bottom:707.790450px;}
.y12_c00374{bottom:738.840450px;}
.y11_c00374{bottom:769.890450px;}
.y10_c00374{bottom:800.940450px;}
.yf_c00374{bottom:831.990450px;}
.ye_c00374{bottom:863.040450px;}
.yd_c00374{bottom:894.090450px;}
.yc_c00374{bottom:925.140450px;}
.yb_c00374{bottom:956.190450px;}
.ya_c00374{bottom:987.240450px;}
.y9_c00374{bottom:1018.290450px;}
.y8_c00374{bottom:1049.340450px;}
.y7_c00374{bottom:1080.390450px;}
.y6_c00374{bottom:1111.440450px;}
.y3_c00374{bottom:1132.140450px;}
.y2_c00374{bottom:1165.441023px;}
.y1_c00374{bottom:1196.040600px;}
.h1_c00374{height:52.898555px;}
.h2_c00374{height:63.175781px;}
.h3_c00374{height:63.351562px;}
.h0_c00374{height:1263.000000px;}
.w1_c00374{width:892.500000px;}
.w0_c00374{width:892.830000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:127.620000px;}
.x2_c00374{left:738.450000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls17_c00374{letter-spacing:-0.960000pt;}
.ls10_c00374{letter-spacing:-0.121600pt;}
.lse_c00374{letter-spacing:-0.090848pt;}
.ls19_c00374{letter-spacing:-0.057600pt;}
.ls11_c00374{letter-spacing:-0.051200pt;}
.ls12_c00374{letter-spacing:-0.044800pt;}
.ls15_c00374{letter-spacing:-0.025600pt;}
.ls16_c00374{letter-spacing:-0.012800pt;}
.ls14_c00374{letter-spacing:-0.006400pt;}
.lsf_c00374{letter-spacing:0.000000pt;}
.ls1_c00374{letter-spacing:0.006400pt;}
.ls9_c00374{letter-spacing:0.012800pt;}
.ls7_c00374{letter-spacing:0.019200pt;}
.ls3_c00374{letter-spacing:0.025600pt;}
.lsc_c00374{letter-spacing:0.032000pt;}
.ls2_c00374{letter-spacing:0.038400pt;}
.ls6_c00374{letter-spacing:0.044800pt;}
.lsa_c00374{letter-spacing:0.051200pt;}
.ls8_c00374{letter-spacing:0.057600pt;}
.ls0_c00374{letter-spacing:0.064000pt;}
.ls4_c00374{letter-spacing:0.070400pt;}
.ls5_c00374{letter-spacing:0.108800pt;}
.lsd_c00374{letter-spacing:0.147200pt;}
.lsb_c00374{letter-spacing:0.288000pt;}
.ls18_c00374{letter-spacing:2.240000pt;}
.ls13_c00374{letter-spacing:4.160000pt;}
.ws0_c00374{word-spacing:-16.108800pt;}
.ws3_c00374{word-spacing:-16.038400pt;}
.ws2_c00374{word-spacing:-16.032000pt;}
.ws1_c00374{word-spacing:-15.948800pt;}
.wse_c00374{word-spacing:-3.827200pt;}
.ws8_c00374{word-spacing:-2.585600pt;}
.ws9_c00374{word-spacing:-1.939200pt;}
.wsa_c00374{word-spacing:-1.273600pt;}
.ws10_c00374{word-spacing:-0.998400pt;}
.ws7_c00374{word-spacing:-0.358400pt;}
.ws6_c00374{word-spacing:-0.326400pt;}
.wsd_c00374{word-spacing:-0.032000pt;}
.ws5_c00374{word-spacing:0.000000pt;}
.ws4_c00374{word-spacing:0.171008pt;}
.wsb_c00374{word-spacing:0.268800pt;}
.wsc_c00374{word-spacing:0.972800pt;}
.wsf_c00374{word-spacing:5.209600pt;}
._3_c00374{margin-left:-4.243200pt;}
._4_c00374{margin-left:-2.534400pt;}
._1_c00374{margin-left:-0.979200pt;}
._0_c00374{width:0.919168pt;}
._a_c00374{width:1.881600pt;}
._b_c00374{width:3.168000pt;}
._2_c00374{width:4.153600pt;}
._9_c00374{width:5.664000pt;}
._5_c00374{width:6.700800pt;}
._c_c00374{width:8.000000pt;}
._7_c00374{width:9.030400pt;}
._6_c00374{width:10.201600pt;}
._8_c00374{width:11.104000pt;}
.fs0_c00374{font-size:53.440000pt;}
.fs1_c00374{font-size:64.000000pt;}
.y0_c00374{bottom:0.000000pt;}
.y5_c00374{bottom:50.987067pt;}
.y4_c00374{bottom:69.387067pt;}
.y25_c00374{bottom:132.427067pt;}
.y24_c00374{bottom:160.027067pt;}
.y23_c00374{bottom:187.627067pt;}
.y22_c00374{bottom:215.227067pt;}
.y21_c00374{bottom:242.747067pt;}
.y20_c00374{bottom:270.347067pt;}
.y1f_c00374{bottom:297.947067pt;}
.y1e_c00374{bottom:325.547067pt;}
.y1d_c00374{bottom:353.147067pt;}
.y1c_c00374{bottom:380.747067pt;}
.y1b_c00374{bottom:408.347067pt;}
.y1a_c00374{bottom:435.947067pt;}
.y19_c00374{bottom:463.547067pt;}
.y18_c00374{bottom:491.147067pt;}
.y17_c00374{bottom:518.747067pt;}
.y16_c00374{bottom:546.347067pt;}
.y15_c00374{bottom:573.947067pt;}
.y14_c00374{bottom:601.547067pt;}
.y13_c00374{bottom:629.147067pt;}
.y12_c00374{bottom:656.747067pt;}
.y11_c00374{bottom:684.347067pt;}
.y10_c00374{bottom:711.947067pt;}
.yf_c00374{bottom:739.547067pt;}
.ye_c00374{bottom:767.147067pt;}
.yd_c00374{bottom:794.747067pt;}
.yc_c00374{bottom:822.347067pt;}
.yb_c00374{bottom:849.947067pt;}
.ya_c00374{bottom:877.547067pt;}
.y9_c00374{bottom:905.147067pt;}
.y8_c00374{bottom:932.747067pt;}
.y7_c00374{bottom:960.347067pt;}
.y6_c00374{bottom:987.947067pt;}
.y3_c00374{bottom:1006.347067pt;}
.y2_c00374{bottom:1035.947576pt;}
.y1_c00374{bottom:1063.147200pt;}
.h1_c00374{height:47.020937pt;}
.h2_c00374{height:56.156250pt;}
.h3_c00374{height:56.312500pt;}
.h0_c00374{height:1122.666667pt;}
.w1_c00374{width:793.333333pt;}
.w0_c00374{width:793.626667pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:113.440000pt;}
.x2_c00374{left:656.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_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_897d8d7d6cb1c042efd19581.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.095703;font-style:normal;font-weight:normal;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_77ce484c8280ea9d57553989.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.093262;font-style:normal;font-weight:normal;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_01b5230d4f626a02786255f7.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_e1bf8313c6aec6054725fb22.woff2')format("woff");}.ff4_c00375{font-family:ff4_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:ff5_c00375;src:url('chunks/assets/font_a4e4930c84db3c19181d4f30.woff2')format("woff");}.ff5_c00375{font-family:ff5_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;}
.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:16.920000px;}
.ls1e_c00375{letter-spacing:-2.041200px;}
.ls15_c00375{letter-spacing:-1.123200px;}
.ls19_c00375{letter-spacing:-0.360000px;}
.ls1b_c00375{letter-spacing:-0.151200px;}
.ls1a_c00375{letter-spacing:-0.124200px;}
.ls1c_c00375{letter-spacing:-0.118800px;}
.ls16_c00375{letter-spacing:-0.079200px;}
.ls12_c00375{letter-spacing:-0.048096px;}
.ls1d_c00375{letter-spacing:-0.043200px;}
.ls17_c00375{letter-spacing:-0.028800px;}
.ls14_c00375{letter-spacing:-0.021600px;}
.ls18_c00375{letter-spacing:-0.014400px;}
.ls13_c00375{letter-spacing:0.000000px;}
.ls3_c00375{letter-spacing:0.007200px;}
.ls2_c00375{letter-spacing:0.014400px;}
.lse_c00375{letter-spacing:0.016200px;}
.ls0_c00375{letter-spacing:0.021600px;}
.lsd_c00375{letter-spacing:0.025164px;}
.ls5_c00375{letter-spacing:0.028800px;}
.ls10_c00375{letter-spacing:0.032400px;}
.ls1_c00375{letter-spacing:0.036000px;}
.ls4_c00375{letter-spacing:0.043200px;}
.ls9_c00375{letter-spacing:0.050400px;}
.ls8_c00375{letter-spacing:0.057600px;}
.ls6_c00375{letter-spacing:0.064800px;}
.lsa_c00375{letter-spacing:0.079200px;}
.lsb_c00375{letter-spacing:0.093600px;}
.lsc_c00375{letter-spacing:0.100800px;}
.ls7_c00375{letter-spacing:0.108000px;}
.ls11_c00375{letter-spacing:0.129600px;}
.ls1f_c00375{letter-spacing:0.496800px;}
.lsf_c00375{letter-spacing:164.160000px;}
.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;}
}
.ws3_c00375{word-spacing:-18.057600px;}
.ws2_c00375{word-spacing:-18.050400px;}
.ws1_c00375{word-spacing:-18.043200px;}
.ws0_c00375{word-spacing:-18.007200px;}
.ws4_c00375{word-spacing:-14.887800px;}
.ws8_c00375{word-spacing:-1.000800px;}
.ws6_c00375{word-spacing:0.000000px;}
.ws5_c00375{word-spacing:0.138276px;}
.wsb_c00375{word-spacing:0.162000px;}
.ws7_c00375{word-spacing:2.844000px;}
.ws9_c00375{word-spacing:12.931200px;}
.wsa_c00375{word-spacing:12.974400px;}
._8_c00375{margin-left:-4.327200px;}
._4_c00375{margin-left:-2.138400px;}
._1_c00375{margin-left:-1.051200px;}
._3_c00375{width:1.123200px;}
._0_c00375{width:2.858400px;}
._2_c00375{width:3.931200px;}
._7_c00375{width:5.587200px;}
._6_c00375{width:6.717600px;}
._5_c00375{width:12.607200px;}
._9_c00375{width:19.418400px;}
._a_c00375{width:73.704600px;}
._f_c00375{width:87.534000px;}
._e_c00375{width:191.138400px;}
._d_c00375{width:392.450400px;}
._c_c00375{width:412.160400px;}
._b_c00375{width:443.529000px;}
._10_c00375{width:466.714800px;}
.fc3_c00375{color:rgb(38,74,96);}
.fc2_c00375{color:rgb(1,2,5);}
.fc1_c00375{color:rgb(68,84,106);}
.fc0_c00375{color:rgb(0,0,0);}
.fs3_c00375{font-size:54.000000px;}
.fs0_c00375{font-size:60.120000px;}
.fs1_c00375{font-size:72.000000px;}
.fs2_c00375{font-size:83.880000px;}
.y0_c00375{bottom:0.000000px;}
.y6_c00375{bottom:57.360450px;}
.y5_c00375{bottom:78.060450px;}
.y28_c00375{bottom:158.070450px;}
.y27_c00375{bottom:189.120450px;}
.y26_c00375{bottom:220.170450px;}
.y25_c00375{bottom:247.890450px;}
.y24_c00375{bottom:271.560450px;}
.y23_c00375{bottom:295.230450px;}
.y22_c00375{bottom:318.900450px;}
.y21_c00375{bottom:342.570450px;}
.y20_c00375{bottom:366.240450px;}
.y1f_c00375{bottom:389.910450px;}
.y1e_c00375{bottom:408.900450px;}
.y1d_c00375{bottom:444.360600px;}
.y1c_c00375{bottom:474.240450px;}
.y1b_c00375{bottom:497.370600px;}
.y1a_c00375{bottom:534.450450px;}
.y19_c00375{bottom:565.500450px;}
.y18_c00375{bottom:596.550450px;}
.y17_c00375{bottom:627.600450px;}
.y16_c00375{bottom:658.650450px;}
.y15_c00375{bottom:689.700450px;}
.y14_c00375{bottom:720.750450px;}
.y13_c00375{bottom:751.800450px;}
.y12_c00375{bottom:782.850450px;}
.y11_c00375{bottom:813.900450px;}
.y10_c00375{bottom:844.950450px;}
.yf_c00375{bottom:876.000450px;}
.ye_c00375{bottom:907.050450px;}
.yd_c00375{bottom:938.100450px;}
.yc_c00375{bottom:969.150450px;}
.yb_c00375{bottom:1000.200450px;}
.ya_c00375{bottom:1031.160450px;}
.y9_c00375{bottom:1062.210450px;}
.y8_c00375{bottom:1093.260450px;}
.y7_c00375{bottom:1124.310450px;}
.y4_c00375{bottom:1144.380657px;}
.y3_c00375{bottom:1161.660648px;}
.y2_c00375{bottom:1178.850459px;}
.y1_c00375{bottom:1196.130450px;}
.h5_c00375{height:47.513672px;}
.h7_c00375{height:48.410156px;}
.h1_c00375{height:52.898555px;}
.h2_c00375{height:63.175781px;}
.h3_c00375{height:63.351562px;}
.h6_c00375{height:65.330156px;}
.h4_c00375{height:74.500840px;}
.h0_c00375{height:1263.000000px;}
.w1_c00375{width:892.500000px;}
.w0_c00375{width:892.830000px;}
.x0_c00375{left:0.000000px;}
.x4_c00375{left:127.620000px;}
.x5_c00375{left:326.160000px;}
.x7_c00375{left:348.300000px;}
.x6_c00375{left:498.690000px;}
.x1_c00375{left:649.620000px;}
.x3_c00375{left:738.450000px;}
.x2_c00375{left:765.450198px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.v1_c00375{vertical-align:15.040000pt;}
.ls1e_c00375{letter-spacing:-1.814400pt;}
.ls15_c00375{letter-spacing:-0.998400pt;}
.ls19_c00375{letter-spacing:-0.320000pt;}
.ls1b_c00375{letter-spacing:-0.134400pt;}
.ls1a_c00375{letter-spacing:-0.110400pt;}
.ls1c_c00375{letter-spacing:-0.105600pt;}
.ls16_c00375{letter-spacing:-0.070400pt;}
.ls12_c00375{letter-spacing:-0.042752pt;}
.ls1d_c00375{letter-spacing:-0.038400pt;}
.ls17_c00375{letter-spacing:-0.025600pt;}
.ls14_c00375{letter-spacing:-0.019200pt;}
.ls18_c00375{letter-spacing:-0.012800pt;}
.ls13_c00375{letter-spacing:0.000000pt;}
.ls3_c00375{letter-spacing:0.006400pt;}
.ls2_c00375{letter-spacing:0.012800pt;}
.lse_c00375{letter-spacing:0.014400pt;}
.ls0_c00375{letter-spacing:0.019200pt;}
.lsd_c00375{letter-spacing:0.022368pt;}
.ls5_c00375{letter-spacing:0.025600pt;}
.ls10_c00375{letter-spacing:0.028800pt;}
.ls1_c00375{letter-spacing:0.032000pt;}
.ls4_c00375{letter-spacing:0.038400pt;}
.ls9_c00375{letter-spacing:0.044800pt;}
.ls8_c00375{letter-spacing:0.051200pt;}
.ls6_c00375{letter-spacing:0.057600pt;}
.lsa_c00375{letter-spacing:0.070400pt;}
.lsb_c00375{letter-spacing:0.083200pt;}
.lsc_c00375{letter-spacing:0.089600pt;}
.ls7_c00375{letter-spacing:0.096000pt;}
.ls11_c00375{letter-spacing:0.115200pt;}
.ls1f_c00375{letter-spacing:0.441600pt;}
.lsf_c00375{letter-spacing:145.920000pt;}
.ws3_c00375{word-spacing:-16.051200pt;}
.ws2_c00375{word-spacing:-16.044800pt;}
.ws1_c00375{word-spacing:-16.038400pt;}
.ws0_c00375{word-spacing:-16.006400pt;}
.ws4_c00375{word-spacing:-13.233600pt;}
.ws8_c00375{word-spacing:-0.889600pt;}
.ws6_c00375{word-spacing:0.000000pt;}
.ws5_c00375{word-spacing:0.122912pt;}
.wsb_c00375{word-spacing:0.144000pt;}
.ws7_c00375{word-spacing:2.528000pt;}
.ws9_c00375{word-spacing:11.494400pt;}
.wsa_c00375{word-spacing:11.532800pt;}
._8_c00375{margin-left:-3.846400pt;}
._4_c00375{margin-left:-1.900800pt;}
._1_c00375{margin-left:-0.934400pt;}
._3_c00375{width:0.998400pt;}
._0_c00375{width:2.540800pt;}
._2_c00375{width:3.494400pt;}
._7_c00375{width:4.966400pt;}
._6_c00375{width:5.971200pt;}
._5_c00375{width:11.206400pt;}
._9_c00375{width:17.260800pt;}
._a_c00375{width:65.515200pt;}
._f_c00375{width:77.808000pt;}
._e_c00375{width:169.900800pt;}
._d_c00375{width:348.844800pt;}
._c_c00375{width:366.364800pt;}
._b_c00375{width:394.248000pt;}
._10_c00375{width:414.857600pt;}
.fs3_c00375{font-size:48.000000pt;}
.fs0_c00375{font-size:53.440000pt;}
.fs1_c00375{font-size:64.000000pt;}
.fs2_c00375{font-size:74.560000pt;}
.y0_c00375{bottom:0.000000pt;}
.y6_c00375{bottom:50.987067pt;}
.y5_c00375{bottom:69.387067pt;}
.y28_c00375{bottom:140.507067pt;}
.y27_c00375{bottom:168.107067pt;}
.y26_c00375{bottom:195.707067pt;}
.y25_c00375{bottom:220.347067pt;}
.y24_c00375{bottom:241.387067pt;}
.y23_c00375{bottom:262.427067pt;}
.y22_c00375{bottom:283.467067pt;}
.y21_c00375{bottom:304.507067pt;}
.y20_c00375{bottom:325.547067pt;}
.y1f_c00375{bottom:346.587067pt;}
.y1e_c00375{bottom:363.467067pt;}
.y1d_c00375{bottom:394.987200pt;}
.y1c_c00375{bottom:421.547067pt;}
.y1b_c00375{bottom:442.107200pt;}
.y1a_c00375{bottom:475.067067pt;}
.y19_c00375{bottom:502.667067pt;}
.y18_c00375{bottom:530.267067pt;}
.y17_c00375{bottom:557.867067pt;}
.y16_c00375{bottom:585.467067pt;}
.y15_c00375{bottom:613.067067pt;}
.y14_c00375{bottom:640.667067pt;}
.y13_c00375{bottom:668.267067pt;}
.y12_c00375{bottom:695.867067pt;}
.y11_c00375{bottom:723.467067pt;}
.y10_c00375{bottom:751.067067pt;}
.yf_c00375{bottom:778.667067pt;}
.ye_c00375{bottom:806.267067pt;}
.yd_c00375{bottom:833.867067pt;}
.yc_c00375{bottom:861.467067pt;}
.yb_c00375{bottom:889.067067pt;}
.ya_c00375{bottom:916.587067pt;}
.y9_c00375{bottom:944.187067pt;}
.y8_c00375{bottom:971.787067pt;}
.y7_c00375{bottom:999.387067pt;}
.y4_c00375{bottom:1017.227251pt;}
.y3_c00375{bottom:1032.587243pt;}
.y2_c00375{bottom:1047.867075pt;}
.y1_c00375{bottom:1063.227067pt;}
.h5_c00375{height:42.234375pt;}
.h7_c00375{height:43.031250pt;}
.h1_c00375{height:47.020937pt;}
.h2_c00375{height:56.156250pt;}
.h3_c00375{height:56.312500pt;}
.h6_c00375{height:58.071250pt;}
.h4_c00375{height:66.222969pt;}
.h0_c00375{height:1122.666667pt;}
.w1_c00375{width:793.333333pt;}
.w0_c00375{width:793.626667pt;}
.x0_c00375{left:0.000000pt;}
.x4_c00375{left:113.440000pt;}
.x5_c00375{left:289.920000pt;}
.x7_c00375{left:309.600000pt;}
.x6_c00375{left:443.280000pt;}
.x1_c00375{left:577.440000pt;}
.x3_c00375{left:656.400000pt;}
.x2_c00375{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f1106e0d9073ed219b4d4d3.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.095703;font-style:normal;font-weight:normal;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_b2424f37591dd9f4a6df5354.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_a8b2eed8fdc747f34ba66d6c.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00376;src:url('chunks/assets/font_538dff99faf29b408f22cf66.woff2')format("woff");}.ff4_c00376{font-family:ff4_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:ff5_c00376;src:url('chunks/assets/font_ae3d2a7d5e433bc37fb71e52.woff2')format("woff");}.ff5_c00376{font-family:ff5_c00376;line-height:1.113281;font-style: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;}
.ls11_c00376{letter-spacing:-0.252000px;}
.lse_c00376{letter-spacing:-0.102204px;}
.ls18_c00376{letter-spacing:-0.086400px;}
.ls12_c00376{letter-spacing:-0.050400px;}
.ls17_c00376{letter-spacing:-0.043200px;}
.ls15_c00376{letter-spacing:-0.036000px;}
.ls16_c00376{letter-spacing:-0.028800px;}
.ls13_c00376{letter-spacing:-0.021600px;}
.ls14_c00376{letter-spacing:-0.014400px;}
.ls10_c00376{letter-spacing:-0.007200px;}
.lsf_c00376{letter-spacing:0.000000px;}
.ls7_c00376{letter-spacing:0.007200px;}
.ls8_c00376{letter-spacing:0.014400px;}
.lsd_c00376{letter-spacing:0.016200px;}
.ls3_c00376{letter-spacing:0.021600px;}
.ls0_c00376{letter-spacing:0.028800px;}
.lsb_c00376{letter-spacing:0.036000px;}
.ls4_c00376{letter-spacing:0.043200px;}
.ls6_c00376{letter-spacing:0.050400px;}
.ls5_c00376{letter-spacing:0.057600px;}
.lsc_c00376{letter-spacing:0.058716px;}
.lsa_c00376{letter-spacing:0.064800px;}
.ls2_c00376{letter-spacing:0.072000px;}
.ls9_c00376{letter-spacing:0.079200px;}
.ls1_c00376{letter-spacing:0.093600px;}
.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:-18.079200px;}
.ws1_c00376{word-spacing:-18.050400px;}
.ws3_c00376{word-spacing:0.000000px;}
.ws4_c00376{word-spacing:0.162000px;}
.ws2_c00376{word-spacing:0.192384px;}
._4_c00376{margin-left:-3.643200px;}
._5_c00376{margin-left:-2.505600px;}
._2_c00376{margin-left:-1.180800px;}
._0_c00376{width:1.034064px;}
._9_c00376{width:6.753600px;}
._8_c00376{width:7.905600px;}
._7_c00376{width:12.283200px;}
._6_c00376{width:13.320000px;}
._1_c00376{width:19.411200px;}
._3_c00376{width:21.528000px;}
._f_c00376{width:54.309600px;}
._b_c00376{width:60.883200px;}
._12_c00376{width:117.885600px;}
._a_c00376{width:121.161600px;}
._e_c00376{width:145.965600px;}
._13_c00376{width:160.725600px;}
._c_c00376{width:173.887200px;}
._10_c00376{width:194.241600px;}
._d_c00376{width:200.764800px;}
._11_c00376{width:210.124800px;}
._14_c00376{width:245.822400px;}
.fc3_c00376{color:rgb(1,2,5);}
.fc2_c00376{color:rgb(68,84,106);}
.fc1_c00376{color:rgb(0,0,0);}
.fc0_c00376{color:rgb(32,31,30);}
.fs3_c00376{font-size:54.000000px;}
.fs0_c00376{font-size:60.120000px;}
.fs1_c00376{font-size:72.000000px;}
.fs2_c00376{font-size:83.880000px;}
.y0_c00376{bottom:0.000000px;}
.y5_c00376{bottom:57.360450px;}
.y4_c00376{bottom:78.060450px;}
.y25_c00376{bottom:126.480450px;}
.y24_c00376{bottom:157.980450px;}
.y23_c00376{bottom:189.390450px;}
.y22_c00376{bottom:220.800450px;}
.y21_c00376{bottom:252.210450px;}
.y20_c00376{bottom:283.710450px;}
.y1f_c00376{bottom:315.120450px;}
.y1e_c00376{bottom:346.530450px;}
.y1d_c00376{bottom:379.830600px;}
.y1c_c00376{bottom:410.880450px;}
.y1b_c00376{bottom:445.800450px;}
.y1a_c00376{bottom:475.770600px;}
.y19_c00376{bottom:498.810450px;}
.y18_c00376{bottom:536.160450px;}
.y17_c00376{bottom:569.641386px;}
.y16_c00376{bottom:608.880450px;}
.y15_c00376{bottom:645.690450px;}
.y14_c00376{bottom:676.740450px;}
.y13_c00376{bottom:707.790450px;}
.y12_c00376{bottom:738.840450px;}
.y11_c00376{bottom:769.890450px;}
.y10_c00376{bottom:800.940450px;}
.yf_c00376{bottom:831.990450px;}
.ye_c00376{bottom:863.040450px;}
.yd_c00376{bottom:894.090450px;}
.yc_c00376{bottom:925.140450px;}
.yb_c00376{bottom:956.190450px;}
.ya_c00376{bottom:987.240450px;}
.y9_c00376{bottom:1018.290450px;}
.y8_c00376{bottom:1049.340450px;}
.y7_c00376{bottom:1080.390450px;}
.y6_c00376{bottom:1111.440450px;}
.y3_c00376{bottom:1132.140450px;}
.y2_c00376{bottom:1165.441023px;}
.y1_c00376{bottom:1196.040600px;}
.h6_c00376{height:47.513672px;}
.h1_c00376{height:52.898555px;}
.h2_c00376{height:63.175781px;}
.h3_c00376{height:63.351562px;}
.h7_c00376{height:64.546875px;}
.h8_c00376{height:65.003906px;}
.h4_c00376{height:73.599785px;}
.h5_c00376{height:74.500840px;}
.h0_c00376{height:1263.000000px;}
.w1_c00376{width:892.500000px;}
.w0_c00376{width:892.830000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:127.620000px;}
.x3_c00376{left:327.150000px;}
.x4_c00376{left:433.710000px;}
.x2_c00376{left:738.450000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls11_c00376{letter-spacing:-0.224000pt;}
.lse_c00376{letter-spacing:-0.090848pt;}
.ls18_c00376{letter-spacing:-0.076800pt;}
.ls12_c00376{letter-spacing:-0.044800pt;}
.ls17_c00376{letter-spacing:-0.038400pt;}
.ls15_c00376{letter-spacing:-0.032000pt;}
.ls16_c00376{letter-spacing:-0.025600pt;}
.ls13_c00376{letter-spacing:-0.019200pt;}
.ls14_c00376{letter-spacing:-0.012800pt;}
.ls10_c00376{letter-spacing:-0.006400pt;}
.lsf_c00376{letter-spacing:0.000000pt;}
.ls7_c00376{letter-spacing:0.006400pt;}
.ls8_c00376{letter-spacing:0.012800pt;}
.lsd_c00376{letter-spacing:0.014400pt;}
.ls3_c00376{letter-spacing:0.019200pt;}
.ls0_c00376{letter-spacing:0.025600pt;}
.lsb_c00376{letter-spacing:0.032000pt;}
.ls4_c00376{letter-spacing:0.038400pt;}
.ls6_c00376{letter-spacing:0.044800pt;}
.ls5_c00376{letter-spacing:0.051200pt;}
.lsc_c00376{letter-spacing:0.052192pt;}
.lsa_c00376{letter-spacing:0.057600pt;}
.ls2_c00376{letter-spacing:0.064000pt;}
.ls9_c00376{letter-spacing:0.070400pt;}
.ls1_c00376{letter-spacing:0.083200pt;}
.ws0_c00376{word-spacing:-16.070400pt;}
.ws1_c00376{word-spacing:-16.044800pt;}
.ws3_c00376{word-spacing:0.000000pt;}
.ws4_c00376{word-spacing:0.144000pt;}
.ws2_c00376{word-spacing:0.171008pt;}
._4_c00376{margin-left:-3.238400pt;}
._5_c00376{margin-left:-2.227200pt;}
._2_c00376{margin-left:-1.049600pt;}
._0_c00376{width:0.919168pt;}
._9_c00376{width:6.003200pt;}
._8_c00376{width:7.027200pt;}
._7_c00376{width:10.918400pt;}
._6_c00376{width:11.840000pt;}
._1_c00376{width:17.254400pt;}
._3_c00376{width:19.136000pt;}
._f_c00376{width:48.275200pt;}
._b_c00376{width:54.118400pt;}
._12_c00376{width:104.787200pt;}
._a_c00376{width:107.699200pt;}
._e_c00376{width:129.747200pt;}
._13_c00376{width:142.867200pt;}
._c_c00376{width:154.566400pt;}
._10_c00376{width:172.659200pt;}
._d_c00376{width:178.457600pt;}
._11_c00376{width:186.777600pt;}
._14_c00376{width:218.508800pt;}
.fs3_c00376{font-size:48.000000pt;}
.fs0_c00376{font-size:53.440000pt;}
.fs1_c00376{font-size:64.000000pt;}
.fs2_c00376{font-size:74.560000pt;}
.y0_c00376{bottom:0.000000pt;}
.y5_c00376{bottom:50.987067pt;}
.y4_c00376{bottom:69.387067pt;}
.y25_c00376{bottom:112.427067pt;}
.y24_c00376{bottom:140.427067pt;}
.y23_c00376{bottom:168.347067pt;}
.y22_c00376{bottom:196.267067pt;}
.y21_c00376{bottom:224.187067pt;}
.y20_c00376{bottom:252.187067pt;}
.y1f_c00376{bottom:280.107067pt;}
.y1e_c00376{bottom:308.027067pt;}
.y1d_c00376{bottom:337.627200pt;}
.y1c_c00376{bottom:365.227067pt;}
.y1b_c00376{bottom:396.267067pt;}
.y1a_c00376{bottom:422.907200pt;}
.y19_c00376{bottom:443.387067pt;}
.y18_c00376{bottom:476.587067pt;}
.y17_c00376{bottom:506.347899pt;}
.y16_c00376{bottom:541.227067pt;}
.y15_c00376{bottom:573.947067pt;}
.y14_c00376{bottom:601.547067pt;}
.y13_c00376{bottom:629.147067pt;}
.y12_c00376{bottom:656.747067pt;}
.y11_c00376{bottom:684.347067pt;}
.y10_c00376{bottom:711.947067pt;}
.yf_c00376{bottom:739.547067pt;}
.ye_c00376{bottom:767.147067pt;}
.yd_c00376{bottom:794.747067pt;}
.yc_c00376{bottom:822.347067pt;}
.yb_c00376{bottom:849.947067pt;}
.ya_c00376{bottom:877.547067pt;}
.y9_c00376{bottom:905.147067pt;}
.y8_c00376{bottom:932.747067pt;}
.y7_c00376{bottom:960.347067pt;}
.y6_c00376{bottom:987.947067pt;}
.y3_c00376{bottom:1006.347067pt;}
.y2_c00376{bottom:1035.947576pt;}
.y1_c00376{bottom:1063.147200pt;}
.h6_c00376{height:42.234375pt;}
.h1_c00376{height:47.020937pt;}
.h2_c00376{height:56.156250pt;}
.h3_c00376{height:56.312500pt;}
.h7_c00376{height:57.375000pt;}
.h8_c00376{height:57.781250pt;}
.h4_c00376{height:65.422031pt;}
.h5_c00376{height:66.222969pt;}
.h0_c00376{height:1122.666667pt;}
.w1_c00376{width:793.333333pt;}
.w0_c00376{width:793.626667pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:113.440000pt;}
.x3_c00376{left:290.800000pt;}
.x4_c00376{left:385.520000pt;}
.x2_c00376{left:656.400000pt;}
}





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

.ir_c00377:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00377;src:url('chunks/assets/font_99d19072480c5717fb3762f4.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.095703;font-style:normal;font-weight:normal;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_7a877f6fb6d54cedd2df4d3d.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.093262;font-style: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;}
.ls15_c00377{letter-spacing:-0.057600px;}
.lse_c00377{letter-spacing:-0.048096px;}
.ls13_c00377{letter-spacing:-0.043200px;}
.ls12_c00377{letter-spacing:-0.021600px;}
.ls10_c00377{letter-spacing:-0.014400px;}
.ls16_c00377{letter-spacing:-0.007200px;}
.lsf_c00377{letter-spacing:0.000000px;}
.ls3_c00377{letter-spacing:0.007200px;}
.ls6_c00377{letter-spacing:0.014400px;}
.ls2_c00377{letter-spacing:0.021600px;}
.ls8_c00377{letter-spacing:0.028800px;}
.ls4_c00377{letter-spacing:0.036000px;}
.ls1_c00377{letter-spacing:0.043200px;}
.ls9_c00377{letter-spacing:0.050400px;}
.ls7_c00377{letter-spacing:0.057600px;}
.ls0_c00377{letter-spacing:0.064800px;}
.lsc_c00377{letter-spacing:0.072000px;}
.ls5_c00377{letter-spacing:0.079200px;}
.lsa_c00377{letter-spacing:0.086400px;}
.lsd_c00377{letter-spacing:0.093600px;}
.lsb_c00377{letter-spacing:0.187200px;}
.ls14_c00377{letter-spacing:11.160000px;}
.ls11_c00377{letter-spacing:17.640000px;}
.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:-18.079200px;}
.ws1_c00377{word-spacing:-18.007200px;}
.ws3_c00377{word-spacing:0.000000px;}
.ws2_c00377{word-spacing:0.138276px;}
.ws4_c00377{word-spacing:6.458400px;}
._7_c00377{margin-left:-17.884800px;}
._8_c00377{margin-left:-16.560000px;}
._c_c00377{margin-left:-11.721600px;}
._d_c00377{margin-left:-10.512000px;}
._10_c00377{margin-left:-3.340800px;}
._9_c00377{margin-left:-2.332800px;}
._1_c00377{margin-left:-1.281600px;}
._a_c00377{width:1.051200px;}
._2_c00377{width:2.484000px;}
._0_c00377{width:3.535200px;}
._3_c00377{width:5.364000px;}
._e_c00377{width:6.429600px;}
._5_c00377{width:7.516800px;}
._11_c00377{width:8.719200px;}
._f_c00377{width:9.993600px;}
._b_c00377{width:11.102400px;}
._4_c00377{width:13.665600px;}
._6_c00377{width:16.948800px;}
.fc0_c00377{color:rgb(0,0,0);}
.fs0_c00377{font-size:60.120000px;}
.fs1_c00377{font-size:72.000000px;}
.y0_c00377{bottom:0.000000px;}
.y6_c00377{bottom:57.360450px;}
.y5_c00377{bottom:78.060450px;}
.y27_c00377{bottom:130.800450px;}
.y26_c00377{bottom:161.850450px;}
.y25_c00377{bottom:192.900450px;}
.y24_c00377{bottom:223.950450px;}
.y23_c00377{bottom:255.000450px;}
.y22_c00377{bottom:286.050450px;}
.y21_c00377{bottom:317.100450px;}
.y20_c00377{bottom:348.150450px;}
.y1f_c00377{bottom:379.200450px;}
.y1e_c00377{bottom:410.250450px;}
.y1d_c00377{bottom:441.300450px;}
.y1c_c00377{bottom:472.350450px;}
.y1b_c00377{bottom:503.400450px;}
.y1a_c00377{bottom:534.450450px;}
.y19_c00377{bottom:565.500450px;}
.y18_c00377{bottom:596.550450px;}
.y17_c00377{bottom:627.600450px;}
.y16_c00377{bottom:658.650450px;}
.y15_c00377{bottom:689.700450px;}
.y14_c00377{bottom:720.750450px;}
.y13_c00377{bottom:751.800450px;}
.y12_c00377{bottom:782.850450px;}
.y11_c00377{bottom:813.900450px;}
.y10_c00377{bottom:844.950450px;}
.yf_c00377{bottom:876.000450px;}
.ye_c00377{bottom:907.050450px;}
.yd_c00377{bottom:938.100450px;}
.yc_c00377{bottom:969.150450px;}
.yb_c00377{bottom:1000.200450px;}
.ya_c00377{bottom:1031.160450px;}
.y9_c00377{bottom:1062.210450px;}
.y8_c00377{bottom:1093.260450px;}
.y7_c00377{bottom:1124.310450px;}
.y4_c00377{bottom:1144.380657px;}
.y3_c00377{bottom:1161.660648px;}
.y2_c00377{bottom:1178.850459px;}
.y1_c00377{bottom:1196.130450px;}
.h1_c00377{height:52.898555px;}
.h2_c00377{height:63.175781px;}
.h3_c00377{height:63.351562px;}
.h0_c00377{height:1263.000000px;}
.w1_c00377{width:892.500000px;}
.w0_c00377{width:892.830000px;}
.x0_c00377{left:0.000000px;}
.x4_c00377{left:127.620000px;}
.x1_c00377{left:649.620000px;}
.x3_c00377{left:738.450000px;}
.x2_c00377{left:765.450198px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls15_c00377{letter-spacing:-0.051200pt;}
.lse_c00377{letter-spacing:-0.042752pt;}
.ls13_c00377{letter-spacing:-0.038400pt;}
.ls12_c00377{letter-spacing:-0.019200pt;}
.ls10_c00377{letter-spacing:-0.012800pt;}
.ls16_c00377{letter-spacing:-0.006400pt;}
.lsf_c00377{letter-spacing:0.000000pt;}
.ls3_c00377{letter-spacing:0.006400pt;}
.ls6_c00377{letter-spacing:0.012800pt;}
.ls2_c00377{letter-spacing:0.019200pt;}
.ls8_c00377{letter-spacing:0.025600pt;}
.ls4_c00377{letter-spacing:0.032000pt;}
.ls1_c00377{letter-spacing:0.038400pt;}
.ls9_c00377{letter-spacing:0.044800pt;}
.ls7_c00377{letter-spacing:0.051200pt;}
.ls0_c00377{letter-spacing:0.057600pt;}
.lsc_c00377{letter-spacing:0.064000pt;}
.ls5_c00377{letter-spacing:0.070400pt;}
.lsa_c00377{letter-spacing:0.076800pt;}
.lsd_c00377{letter-spacing:0.083200pt;}
.lsb_c00377{letter-spacing:0.166400pt;}
.ls14_c00377{letter-spacing:9.920000pt;}
.ls11_c00377{letter-spacing:15.680000pt;}
.ws0_c00377{word-spacing:-16.070400pt;}
.ws1_c00377{word-spacing:-16.006400pt;}
.ws3_c00377{word-spacing:0.000000pt;}
.ws2_c00377{word-spacing:0.122912pt;}
.ws4_c00377{word-spacing:5.740800pt;}
._7_c00377{margin-left:-15.897600pt;}
._8_c00377{margin-left:-14.720000pt;}
._c_c00377{margin-left:-10.419200pt;}
._d_c00377{margin-left:-9.344000pt;}
._10_c00377{margin-left:-2.969600pt;}
._9_c00377{margin-left:-2.073600pt;}
._1_c00377{margin-left:-1.139200pt;}
._a_c00377{width:0.934400pt;}
._2_c00377{width:2.208000pt;}
._0_c00377{width:3.142400pt;}
._3_c00377{width:4.768000pt;}
._e_c00377{width:5.715200pt;}
._5_c00377{width:6.681600pt;}
._11_c00377{width:7.750400pt;}
._f_c00377{width:8.883200pt;}
._b_c00377{width:9.868800pt;}
._4_c00377{width:12.147200pt;}
._6_c00377{width:15.065600pt;}
.fs0_c00377{font-size:53.440000pt;}
.fs1_c00377{font-size:64.000000pt;}
.y0_c00377{bottom:0.000000pt;}
.y6_c00377{bottom:50.987067pt;}
.y5_c00377{bottom:69.387067pt;}
.y27_c00377{bottom:116.267067pt;}
.y26_c00377{bottom:143.867067pt;}
.y25_c00377{bottom:171.467067pt;}
.y24_c00377{bottom:199.067067pt;}
.y23_c00377{bottom:226.667067pt;}
.y22_c00377{bottom:254.267067pt;}
.y21_c00377{bottom:281.867067pt;}
.y20_c00377{bottom:309.467067pt;}
.y1f_c00377{bottom:337.067067pt;}
.y1e_c00377{bottom:364.667067pt;}
.y1d_c00377{bottom:392.267067pt;}
.y1c_c00377{bottom:419.867067pt;}
.y1b_c00377{bottom:447.467067pt;}
.y1a_c00377{bottom:475.067067pt;}
.y19_c00377{bottom:502.667067pt;}
.y18_c00377{bottom:530.267067pt;}
.y17_c00377{bottom:557.867067pt;}
.y16_c00377{bottom:585.467067pt;}
.y15_c00377{bottom:613.067067pt;}
.y14_c00377{bottom:640.667067pt;}
.y13_c00377{bottom:668.267067pt;}
.y12_c00377{bottom:695.867067pt;}
.y11_c00377{bottom:723.467067pt;}
.y10_c00377{bottom:751.067067pt;}
.yf_c00377{bottom:778.667067pt;}
.ye_c00377{bottom:806.267067pt;}
.yd_c00377{bottom:833.867067pt;}
.yc_c00377{bottom:861.467067pt;}
.yb_c00377{bottom:889.067067pt;}
.ya_c00377{bottom:916.587067pt;}
.y9_c00377{bottom:944.187067pt;}
.y8_c00377{bottom:971.787067pt;}
.y7_c00377{bottom:999.387067pt;}
.y4_c00377{bottom:1017.227251pt;}
.y3_c00377{bottom:1032.587243pt;}
.y2_c00377{bottom:1047.867075pt;}
.y1_c00377{bottom:1063.227067pt;}
.h1_c00377{height:47.020937pt;}
.h2_c00377{height:56.156250pt;}
.h3_c00377{height:56.312500pt;}
.h0_c00377{height:1122.666667pt;}
.w1_c00377{width:793.333333pt;}
.w0_c00377{width:793.626667pt;}
.x0_c00377{left:0.000000pt;}
.x4_c00377{left:113.440000pt;}
.x1_c00377{left:577.440000pt;}
.x3_c00377{left:656.400000pt;}
.x2_c00377{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3da76a85964c644b178fae5.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.095703;font-style:normal;font-weight:normal;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_49c6c84e3c3061b30432df72.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:1.093262;font-style:normal;font-weight:normal;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_6aecc70427ee92fe96f5034c.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;}
@font-face{font-family:ff4_c00378;src:url('chunks/assets/font_ac6a626eb5f922df3b52787c.woff2')format("woff");}.ff4_c00378{font-family:ff4_c00378;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00378;src:url('chunks/assets/font_cf9d733389429fdd93f93fcd.woff2')format("woff");}.ff5_c00378{font-family:ff5_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;}
.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;}
.ls19_c00378{letter-spacing:-0.151200px;}
.ls18_c00378{letter-spacing:-0.124200px;}
.lsd_c00378{letter-spacing:-0.102204px;}
.ls16_c00378{letter-spacing:-0.086400px;}
.ls10_c00378{letter-spacing:-0.064800px;}
.ls13_c00378{letter-spacing:-0.057600px;}
.lsf_c00378{letter-spacing:-0.028800px;}
.ls15_c00378{letter-spacing:-0.021600px;}
.ls11_c00378{letter-spacing:-0.016200px;}
.ls12_c00378{letter-spacing:-0.014400px;}
.lse_c00378{letter-spacing:0.000000px;}
.ls6_c00378{letter-spacing:0.007200px;}
.ls7_c00378{letter-spacing:0.014400px;}
.ls0_c00378{letter-spacing:0.021600px;}
.ls9_c00378{letter-spacing:0.028800px;}
.lsc_c00378{letter-spacing:0.032400px;}
.ls2_c00378{letter-spacing:0.036000px;}
.ls5_c00378{letter-spacing:0.043200px;}
.ls8_c00378{letter-spacing:0.050400px;}
.ls4_c00378{letter-spacing:0.057600px;}
.ls3_c00378{letter-spacing:0.064800px;}
.ls1_c00378{letter-spacing:0.072000px;}
.lsb_c00378{letter-spacing:0.079200px;}
.lsa_c00378{letter-spacing:0.115200px;}
.ls1a_c00378{letter-spacing:0.496800px;}
.ls14_c00378{letter-spacing:1.800000px;}
.ls17_c00378{letter-spacing:3.960000px;}
.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:-20.044800px;}
.ws0_c00378{word-spacing:-18.115200px;}
.ws3_c00378{word-spacing:0.000000px;}
.ws2_c00378{word-spacing:0.192384px;}
.ws4_c00378{word-spacing:0.194400px;}
.ws5_c00378{word-spacing:3.880800px;}
.ws6_c00378{word-spacing:3.902400px;}
._9_c00378{margin-left:-3.996000px;}
._4_c00378{margin-left:-2.296800px;}
._2_c00378{margin-left:-1.015200px;}
._0_c00378{width:1.034064px;}
._5_c00378{width:2.462400px;}
._6_c00378{width:3.650400px;}
._1_c00378{width:4.658400px;}
._7_c00378{width:10.778400px;}
._8_c00378{width:11.822400px;}
._a_c00378{width:14.032800px;}
._3_c00378{width:21.240000px;}
._b_c00378{width:51.660000px;}
._f_c00378{width:100.428336px;}
._10_c00378{width:140.925600px;}
._c_c00378{width:143.775000px;}
._d_c00378{width:378.925200px;}
._e_c00378{width:382.861800px;}
._11_c00378{width:502.117200px;}
.fc4_c00378{color:rgb(38,74,96);}
.fc3_c00378{color:rgb(1,2,5);}
.fc2_c00378{color:rgb(68,84,106);}
.fc1_c00378{color:rgb(0,0,0);}
.fc0_c00378{color:rgb(32,31,30);}
.fs2_c00378{font-size:54.000000px;}
.fs0_c00378{font-size:60.120000px;}
.fs1_c00378{font-size:72.000000px;}
.y0_c00378{bottom:0.000000px;}
.y5_c00378{bottom:57.360450px;}
.y4_c00378{bottom:78.060450px;}
.y25_c00378{bottom:149.430450px;}
.y24_c00378{bottom:180.480450px;}
.y23_c00378{bottom:211.530450px;}
.y22_c00378{bottom:242.580450px;}
.y21_c00378{bottom:273.630450px;}
.y20_c00378{bottom:304.680450px;}
.y1f_c00378{bottom:335.730450px;}
.y1e_c00378{bottom:366.780450px;}
.y1d_c00378{bottom:397.830450px;}
.y1c_c00378{bottom:428.880450px;}
.y1b_c00378{bottom:459.930450px;}
.y1a_c00378{bottom:490.980450px;}
.y19_c00378{bottom:522.030450px;}
.y18_c00378{bottom:553.080450px;}
.y17_c00378{bottom:584.130450px;}
.y16_c00378{bottom:615.180450px;}
.y15_c00378{bottom:646.230450px;}
.y14_c00378{bottom:677.280450px;}
.y2d_c00378{bottom:692.220450px;}
.y13_c00378{bottom:708.330450px;}
.y2c_c00378{bottom:715.890450px;}
.y12_c00378{bottom:739.380450px;}
.y2b_c00378{bottom:739.560450px;}
.y2a_c00378{bottom:763.140450px;}
.y11_c00378{bottom:770.430450px;}
.y29_c00378{bottom:786.810450px;}
.y10_c00378{bottom:801.480450px;}
.y27_c00378{bottom:813.990450px;}
.yf_c00378{bottom:832.530450px;}
.y26_c00378{bottom:845.040600px;}
.y28_c00378{bottom:849.270450px;}
.ye_c00378{bottom:867.360600px;}
.yd_c00378{bottom:894.090450px;}
.yc_c00378{bottom:925.140450px;}
.yb_c00378{bottom:956.190450px;}
.ya_c00378{bottom:987.240450px;}
.y9_c00378{bottom:1018.290450px;}
.y8_c00378{bottom:1049.340450px;}
.y7_c00378{bottom:1080.390450px;}
.y6_c00378{bottom:1111.440450px;}
.y3_c00378{bottom:1132.140450px;}
.y2_c00378{bottom:1165.441023px;}
.y1_c00378{bottom:1196.040600px;}
.h3_c00378{height:47.513672px;}
.h6_c00378{height:48.410156px;}
.h1_c00378{height:52.898555px;}
.h2_c00378{height:63.175781px;}
.h4_c00378{height:63.351562px;}
.h5_c00378{height:65.003906px;}
.h0_c00378{height:1263.000000px;}
.w1_c00378{width:892.500000px;}
.w0_c00378{width:892.830000px;}
.x0_c00378{left:0.000000px;}
.x1_c00378{left:127.620000px;}
.x3_c00378{left:308.430000px;}
.x5_c00378{left:312.930000px;}
.x6_c00378{left:352.620000px;}
.x4_c00378{left:511.830000px;}
.x2_c00378{left:738.450000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls19_c00378{letter-spacing:-0.134400pt;}
.ls18_c00378{letter-spacing:-0.110400pt;}
.lsd_c00378{letter-spacing:-0.090848pt;}
.ls16_c00378{letter-spacing:-0.076800pt;}
.ls10_c00378{letter-spacing:-0.057600pt;}
.ls13_c00378{letter-spacing:-0.051200pt;}
.lsf_c00378{letter-spacing:-0.025600pt;}
.ls15_c00378{letter-spacing:-0.019200pt;}
.ls11_c00378{letter-spacing:-0.014400pt;}
.ls12_c00378{letter-spacing:-0.012800pt;}
.lse_c00378{letter-spacing:0.000000pt;}
.ls6_c00378{letter-spacing:0.006400pt;}
.ls7_c00378{letter-spacing:0.012800pt;}
.ls0_c00378{letter-spacing:0.019200pt;}
.ls9_c00378{letter-spacing:0.025600pt;}
.lsc_c00378{letter-spacing:0.028800pt;}
.ls2_c00378{letter-spacing:0.032000pt;}
.ls5_c00378{letter-spacing:0.038400pt;}
.ls8_c00378{letter-spacing:0.044800pt;}
.ls4_c00378{letter-spacing:0.051200pt;}
.ls3_c00378{letter-spacing:0.057600pt;}
.ls1_c00378{letter-spacing:0.064000pt;}
.lsb_c00378{letter-spacing:0.070400pt;}
.lsa_c00378{letter-spacing:0.102400pt;}
.ls1a_c00378{letter-spacing:0.441600pt;}
.ls14_c00378{letter-spacing:1.600000pt;}
.ls17_c00378{letter-spacing:3.520000pt;}
.ws1_c00378{word-spacing:-17.817600pt;}
.ws0_c00378{word-spacing:-16.102400pt;}
.ws3_c00378{word-spacing:0.000000pt;}
.ws2_c00378{word-spacing:0.171008pt;}
.ws4_c00378{word-spacing:0.172800pt;}
.ws5_c00378{word-spacing:3.449600pt;}
.ws6_c00378{word-spacing:3.468800pt;}
._9_c00378{margin-left:-3.552000pt;}
._4_c00378{margin-left:-2.041600pt;}
._2_c00378{margin-left:-0.902400pt;}
._0_c00378{width:0.919168pt;}
._5_c00378{width:2.188800pt;}
._6_c00378{width:3.244800pt;}
._1_c00378{width:4.140800pt;}
._7_c00378{width:9.580800pt;}
._8_c00378{width:10.508800pt;}
._a_c00378{width:12.473600pt;}
._3_c00378{width:18.880000pt;}
._b_c00378{width:45.920000pt;}
._f_c00378{width:89.269632pt;}
._10_c00378{width:125.267200pt;}
._c_c00378{width:127.800000pt;}
._d_c00378{width:336.822400pt;}
._e_c00378{width:340.321600pt;}
._11_c00378{width:446.326400pt;}
.fs2_c00378{font-size:48.000000pt;}
.fs0_c00378{font-size:53.440000pt;}
.fs1_c00378{font-size:64.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y5_c00378{bottom:50.987067pt;}
.y4_c00378{bottom:69.387067pt;}
.y25_c00378{bottom:132.827067pt;}
.y24_c00378{bottom:160.427067pt;}
.y23_c00378{bottom:188.027067pt;}
.y22_c00378{bottom:215.627067pt;}
.y21_c00378{bottom:243.227067pt;}
.y20_c00378{bottom:270.827067pt;}
.y1f_c00378{bottom:298.427067pt;}
.y1e_c00378{bottom:326.027067pt;}
.y1d_c00378{bottom:353.627067pt;}
.y1c_c00378{bottom:381.227067pt;}
.y1b_c00378{bottom:408.827067pt;}
.y1a_c00378{bottom:436.427067pt;}
.y19_c00378{bottom:464.027067pt;}
.y18_c00378{bottom:491.627067pt;}
.y17_c00378{bottom:519.227067pt;}
.y16_c00378{bottom:546.827067pt;}
.y15_c00378{bottom:574.427067pt;}
.y14_c00378{bottom:602.027067pt;}
.y2d_c00378{bottom:615.307067pt;}
.y13_c00378{bottom:629.627067pt;}
.y2c_c00378{bottom:636.347067pt;}
.y12_c00378{bottom:657.227067pt;}
.y2b_c00378{bottom:657.387067pt;}
.y2a_c00378{bottom:678.347067pt;}
.y11_c00378{bottom:684.827067pt;}
.y29_c00378{bottom:699.387067pt;}
.y10_c00378{bottom:712.427067pt;}
.y27_c00378{bottom:723.547067pt;}
.yf_c00378{bottom:740.027067pt;}
.y26_c00378{bottom:751.147200pt;}
.y28_c00378{bottom:754.907067pt;}
.ye_c00378{bottom:770.987200pt;}
.yd_c00378{bottom:794.747067pt;}
.yc_c00378{bottom:822.347067pt;}
.yb_c00378{bottom:849.947067pt;}
.ya_c00378{bottom:877.547067pt;}
.y9_c00378{bottom:905.147067pt;}
.y8_c00378{bottom:932.747067pt;}
.y7_c00378{bottom:960.347067pt;}
.y6_c00378{bottom:987.947067pt;}
.y3_c00378{bottom:1006.347067pt;}
.y2_c00378{bottom:1035.947576pt;}
.y1_c00378{bottom:1063.147200pt;}
.h3_c00378{height:42.234375pt;}
.h6_c00378{height:43.031250pt;}
.h1_c00378{height:47.020937pt;}
.h2_c00378{height:56.156250pt;}
.h4_c00378{height:56.312500pt;}
.h5_c00378{height:57.781250pt;}
.h0_c00378{height:1122.666667pt;}
.w1_c00378{width:793.333333pt;}
.w0_c00378{width:793.626667pt;}
.x0_c00378{left:0.000000pt;}
.x1_c00378{left:113.440000pt;}
.x3_c00378{left:274.160000pt;}
.x5_c00378{left:278.160000pt;}
.x6_c00378{left:313.440000pt;}
.x4_c00378{left:454.960000pt;}
.x2_c00378{left:656.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_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_6dfe798afea3fefb7305ba0f.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.095703;font-style:normal;font-weight:normal;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_6fa92e92703548e003734381.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.093262;font-style:normal;font-weight:normal;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_994174a418ad3b30cfc9aacb.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;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_ac6a626eb5f922df3b52787c.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00379;src:url('chunks/assets/font_1851cfc2b647f9632338d9e5.woff2')format("woff");}.ff5_c00379{font-family:ff5_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;}
.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:16.920000px;}
.ls14_c00379{letter-spacing:-0.151200px;}
.ls13_c00379{letter-spacing:-0.124200px;}
.ls16_c00379{letter-spacing:-0.113400px;}
.ls17_c00379{letter-spacing:-0.081000px;}
.ls21_c00379{letter-spacing:-0.064800px;}
.ls15_c00379{letter-spacing:-0.054000px;}
.ls10_c00379{letter-spacing:-0.048096px;}
.ls1c_c00379{letter-spacing:-0.043200px;}
.ls20_c00379{letter-spacing:-0.036000px;}
.ls19_c00379{letter-spacing:-0.028800px;}
.ls1e_c00379{letter-spacing:-0.021600px;}
.ls1b_c00379{letter-spacing:-0.014400px;}
.ls12_c00379{letter-spacing:-0.010800px;}
.ls1a_c00379{letter-spacing:-0.007200px;}
.ls11_c00379{letter-spacing:0.000000px;}
.ls0_c00379{letter-spacing:0.007200px;}
.ls9_c00379{letter-spacing:0.014400px;}
.lsc_c00379{letter-spacing:0.021600px;}
.ls5_c00379{letter-spacing:0.027000px;}
.ls1_c00379{letter-spacing:0.028800px;}
.ls7_c00379{letter-spacing:0.032400px;}
.ls8_c00379{letter-spacing:0.036000px;}
.ls3_c00379{letter-spacing:0.037800px;}
.lse_c00379{letter-spacing:0.043200px;}
.lsa_c00379{letter-spacing:0.050400px;}
.ls6_c00379{letter-spacing:0.054000px;}
.lsd_c00379{letter-spacing:0.057600px;}
.lsb_c00379{letter-spacing:0.079200px;}
.lsf_c00379{letter-spacing:0.108000px;}
.ls18_c00379{letter-spacing:0.496800px;}
.ls1f_c00379{letter-spacing:6.480000px;}
.ls1d_c00379{letter-spacing:10.713600px;}
.ls4_c00379{letter-spacing:73.548000px;}
.ls2_c00379{letter-spacing:113.400000px;}
.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:-20.044800px;}
.ws4_c00379{word-spacing:-1.440000px;}
.ws2_c00379{word-spacing:0.000000px;}
.ws1_c00379{word-spacing:0.138276px;}
.ws3_c00379{word-spacing:0.189000px;}
._12_c00379{margin-left:-11.764800px;}
._11_c00379{margin-left:-10.591200px;}
._14_c00379{margin-left:-6.537600px;}
._17_c00379{margin-left:-3.153600px;}
._b_c00379{margin-left:-2.088000px;}
._0_c00379{margin-left:-1.063800px;}
._4_c00379{width:1.058400px;}
._c_c00379{width:2.548800px;}
._16_c00379{width:4.795200px;}
._15_c00379{width:6.537600px;}
._e_c00379{width:7.653600px;}
._f_c00379{width:8.805600px;}
._d_c00379{width:10.404000px;}
._13_c00379{width:11.592000px;}
._10_c00379{width:20.923200px;}
._1_c00379{width:73.521000px;}
._9_c00379{width:554.130000px;}
._6_c00379{width:755.577000px;}
._5_c00379{width:771.048000px;}
._8_c00379{width:825.534000px;}
._2_c00379{width:845.724600px;}
._3_c00379{width:873.270000px;}
._a_c00379{width:899.092800px;}
._7_c00379{width:914.634000px;}
.fc3_c00379{color:rgb(38,74,96);}
.fc2_c00379{color:rgb(1,2,5);}
.fc1_c00379{color:rgb(68,84,106);}
.fc0_c00379{color:rgb(0,0,0);}
.fs2_c00379{font-size:54.000000px;}
.fs0_c00379{font-size:60.120000px;}
.fs1_c00379{font-size:72.000000px;}
.y0_c00379{bottom:0.000000px;}
.y6_c00379{bottom:57.360450px;}
.y5_c00379{bottom:78.060450px;}
.y28_c00379{bottom:116.490450px;}
.y27_c00379{bottom:147.540450px;}
.y26_c00379{bottom:178.590450px;}
.y25_c00379{bottom:209.640450px;}
.y24_c00379{bottom:240.690450px;}
.y23_c00379{bottom:271.740450px;}
.y22_c00379{bottom:302.790450px;}
.y21_c00379{bottom:333.840450px;}
.y20_c00379{bottom:364.890450px;}
.y1f_c00379{bottom:395.940450px;}
.y1e_c00379{bottom:426.990450px;}
.y1d_c00379{bottom:458.040450px;}
.y1c_c00379{bottom:489.090450px;}
.y1b_c00379{bottom:520.140450px;}
.y1a_c00379{bottom:551.190450px;}
.y19_c00379{bottom:582.150450px;}
.y18_c00379{bottom:613.200450px;}
.y17_c00379{bottom:644.250450px;}
.y16_c00379{bottom:675.300450px;}
.y15_c00379{bottom:706.350450px;}
.y14_c00379{bottom:737.400450px;}
.y13_c00379{bottom:768.450450px;}
.y12_c00379{bottom:799.500450px;}
.y11_c00379{bottom:830.550450px;}
.y10_c00379{bottom:860.520450px;}
.yf_c00379{bottom:886.350450px;}
.ye_c00379{bottom:912.270450px;}
.yd_c00379{bottom:938.100450px;}
.yc_c00379{bottom:964.020450px;}
.yb_c00379{bottom:988.680450px;}
.ya_c00379{bottom:1013.340450px;}
.y9_c00379{bottom:1038.000450px;}
.y8_c00379{bottom:1093.260450px;}
.y7_c00379{bottom:1128.630450px;}
.y4_c00379{bottom:1144.380657px;}
.y3_c00379{bottom:1161.660648px;}
.y2_c00379{bottom:1178.850459px;}
.y1_c00379{bottom:1196.130450px;}
.h3_c00379{height:47.513672px;}
.h5_c00379{height:48.410156px;}
.h1_c00379{height:52.898555px;}
.h2_c00379{height:63.175781px;}
.h6_c00379{height:63.351562px;}
.h4_c00379{height:65.330156px;}
.h0_c00379{height:1263.000000px;}
.w1_c00379{width:892.500000px;}
.w0_c00379{width:892.830000px;}
.x0_c00379{left:0.000000px;}
.x4_c00379{left:127.620000px;}
.x5_c00379{left:263.250000px;}
.x6_c00379{left:285.390000px;}
.x1_c00379{left:649.620000px;}
.x3_c00379{left:738.450000px;}
.x2_c00379{left:765.450198px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.v1_c00379{vertical-align:15.040000pt;}
.ls14_c00379{letter-spacing:-0.134400pt;}
.ls13_c00379{letter-spacing:-0.110400pt;}
.ls16_c00379{letter-spacing:-0.100800pt;}
.ls17_c00379{letter-spacing:-0.072000pt;}
.ls21_c00379{letter-spacing:-0.057600pt;}
.ls15_c00379{letter-spacing:-0.048000pt;}
.ls10_c00379{letter-spacing:-0.042752pt;}
.ls1c_c00379{letter-spacing:-0.038400pt;}
.ls20_c00379{letter-spacing:-0.032000pt;}
.ls19_c00379{letter-spacing:-0.025600pt;}
.ls1e_c00379{letter-spacing:-0.019200pt;}
.ls1b_c00379{letter-spacing:-0.012800pt;}
.ls12_c00379{letter-spacing:-0.009600pt;}
.ls1a_c00379{letter-spacing:-0.006400pt;}
.ls11_c00379{letter-spacing:0.000000pt;}
.ls0_c00379{letter-spacing:0.006400pt;}
.ls9_c00379{letter-spacing:0.012800pt;}
.lsc_c00379{letter-spacing:0.019200pt;}
.ls5_c00379{letter-spacing:0.024000pt;}
.ls1_c00379{letter-spacing:0.025600pt;}
.ls7_c00379{letter-spacing:0.028800pt;}
.ls8_c00379{letter-spacing:0.032000pt;}
.ls3_c00379{letter-spacing:0.033600pt;}
.lse_c00379{letter-spacing:0.038400pt;}
.lsa_c00379{letter-spacing:0.044800pt;}
.ls6_c00379{letter-spacing:0.048000pt;}
.lsd_c00379{letter-spacing:0.051200pt;}
.lsb_c00379{letter-spacing:0.070400pt;}
.lsf_c00379{letter-spacing:0.096000pt;}
.ls18_c00379{letter-spacing:0.441600pt;}
.ls1f_c00379{letter-spacing:5.760000pt;}
.ls1d_c00379{letter-spacing:9.523200pt;}
.ls4_c00379{letter-spacing:65.376000pt;}
.ls2_c00379{letter-spacing:100.800000pt;}
.ws0_c00379{word-spacing:-17.817600pt;}
.ws4_c00379{word-spacing:-1.280000pt;}
.ws2_c00379{word-spacing:0.000000pt;}
.ws1_c00379{word-spacing:0.122912pt;}
.ws3_c00379{word-spacing:0.168000pt;}
._12_c00379{margin-left:-10.457600pt;}
._11_c00379{margin-left:-9.414400pt;}
._14_c00379{margin-left:-5.811200pt;}
._17_c00379{margin-left:-2.803200pt;}
._b_c00379{margin-left:-1.856000pt;}
._0_c00379{margin-left:-0.945600pt;}
._4_c00379{width:0.940800pt;}
._c_c00379{width:2.265600pt;}
._16_c00379{width:4.262400pt;}
._15_c00379{width:5.811200pt;}
._e_c00379{width:6.803200pt;}
._f_c00379{width:7.827200pt;}
._d_c00379{width:9.248000pt;}
._13_c00379{width:10.304000pt;}
._10_c00379{width:18.598400pt;}
._1_c00379{width:65.352000pt;}
._9_c00379{width:492.560000pt;}
._6_c00379{width:671.624000pt;}
._5_c00379{width:685.376000pt;}
._8_c00379{width:733.808000pt;}
._2_c00379{width:751.755200pt;}
._3_c00379{width:776.240000pt;}
._a_c00379{width:799.193600pt;}
._7_c00379{width:813.008000pt;}
.fs2_c00379{font-size:48.000000pt;}
.fs0_c00379{font-size:53.440000pt;}
.fs1_c00379{font-size:64.000000pt;}
.y0_c00379{bottom:0.000000pt;}
.y6_c00379{bottom:50.987067pt;}
.y5_c00379{bottom:69.387067pt;}
.y28_c00379{bottom:103.547067pt;}
.y27_c00379{bottom:131.147067pt;}
.y26_c00379{bottom:158.747067pt;}
.y25_c00379{bottom:186.347067pt;}
.y24_c00379{bottom:213.947067pt;}
.y23_c00379{bottom:241.547067pt;}
.y22_c00379{bottom:269.147067pt;}
.y21_c00379{bottom:296.747067pt;}
.y20_c00379{bottom:324.347067pt;}
.y1f_c00379{bottom:351.947067pt;}
.y1e_c00379{bottom:379.547067pt;}
.y1d_c00379{bottom:407.147067pt;}
.y1c_c00379{bottom:434.747067pt;}
.y1b_c00379{bottom:462.347067pt;}
.y1a_c00379{bottom:489.947067pt;}
.y19_c00379{bottom:517.467067pt;}
.y18_c00379{bottom:545.067067pt;}
.y17_c00379{bottom:572.667067pt;}
.y16_c00379{bottom:600.267067pt;}
.y15_c00379{bottom:627.867067pt;}
.y14_c00379{bottom:655.467067pt;}
.y13_c00379{bottom:683.067067pt;}
.y12_c00379{bottom:710.667067pt;}
.y11_c00379{bottom:738.267067pt;}
.y10_c00379{bottom:764.907067pt;}
.yf_c00379{bottom:787.867067pt;}
.ye_c00379{bottom:810.907067pt;}
.yd_c00379{bottom:833.867067pt;}
.yc_c00379{bottom:856.907067pt;}
.yb_c00379{bottom:878.827067pt;}
.ya_c00379{bottom:900.747067pt;}
.y9_c00379{bottom:922.667067pt;}
.y8_c00379{bottom:971.787067pt;}
.y7_c00379{bottom:1003.227067pt;}
.y4_c00379{bottom:1017.227251pt;}
.y3_c00379{bottom:1032.587243pt;}
.y2_c00379{bottom:1047.867075pt;}
.y1_c00379{bottom:1063.227067pt;}
.h3_c00379{height:42.234375pt;}
.h5_c00379{height:43.031250pt;}
.h1_c00379{height:47.020937pt;}
.h2_c00379{height:56.156250pt;}
.h6_c00379{height:56.312500pt;}
.h4_c00379{height:58.071250pt;}
.h0_c00379{height:1122.666667pt;}
.w1_c00379{width:793.333333pt;}
.w0_c00379{width:793.626667pt;}
.x0_c00379{left:0.000000pt;}
.x4_c00379{left:113.440000pt;}
.x5_c00379{left:234.000000pt;}
.x6_c00379{left:253.680000pt;}
.x1_c00379{left:577.440000pt;}
.x3_c00379{left:656.400000pt;}
.x2_c00379{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_afa4eaed417b8154c5f4cbd0.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.095703;font-style:normal;font-weight:normal;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_f6d48cea842200a8445f5ca9.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_7abb4c58c92f15df14b291a9.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00380;src:url('chunks/assets/font_d5c79106b7b6b9f4bed52e2b.woff2')format("woff");}.ff4_c00380{font-family:ff4_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;}
.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;}
.v1_c00380{vertical-align:16.920000px;}
.ls1b_c00380{letter-spacing:-0.360000px;}
.ls19_c00380{letter-spacing:-0.201600px;}
.ls13_c00380{letter-spacing:-0.151200px;}
.ls11_c00380{letter-spacing:-0.124200px;}
.ls14_c00380{letter-spacing:-0.118800px;}
.lsf_c00380{letter-spacing:-0.102204px;}
.ls18_c00380{letter-spacing:-0.064800px;}
.ls16_c00380{letter-spacing:-0.014400px;}
.ls17_c00380{letter-spacing:-0.007200px;}
.ls10_c00380{letter-spacing:0.000000px;}
.ls6_c00380{letter-spacing:0.005400px;}
.ls9_c00380{letter-spacing:0.007200px;}
.ls7_c00380{letter-spacing:0.014400px;}
.ls5_c00380{letter-spacing:0.016776px;}
.lsb_c00380{letter-spacing:0.021600px;}
.ls0_c00380{letter-spacing:0.028800px;}
.lsd_c00380{letter-spacing:0.036000px;}
.ls4_c00380{letter-spacing:0.041940px;}
.lsa_c00380{letter-spacing:0.043200px;}
.lsc_c00380{letter-spacing:0.050400px;}
.ls8_c00380{letter-spacing:0.054000px;}
.ls3_c00380{letter-spacing:0.057600px;}
.ls2_c00380{letter-spacing:0.064800px;}
.lse_c00380{letter-spacing:0.072000px;}
.ls1_c00380{letter-spacing:0.079200px;}
.ls15_c00380{letter-spacing:0.496800px;}
.ls1a_c00380{letter-spacing:1.080000px;}
.ls12_c00380{letter-spacing:161.757000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00380{word-spacing:-17.992800px;}
.ws2_c00380{word-spacing:0.000000px;}
.ws3_c00380{word-spacing:0.172800px;}
.ws1_c00380{word-spacing:0.192384px;}
._5_c00380{margin-left:-161.773200px;}
._2_c00380{margin-left:-2.541600px;}
._1_c00380{margin-left:-1.468800px;}
._0_c00380{width:1.034064px;}
._3_c00380{width:2.131200px;}
._b_c00380{width:6.494400px;}
._c_c00380{width:7.565472px;}
._a_c00380{width:9.712800px;}
._d_c00380{width:10.915200px;}
._4_c00380{width:166.636800px;}
._8_c00380{width:659.250000px;}
._6_c00380{width:807.368400px;}
._9_c00380{width:897.022800px;}
._7_c00380{width:948.452400px;}
.fc3_c00380{color:rgb(38,74,96);}
.fc4_c00380{color:rgb(1,2,5);}
.fc2_c00380{color:rgb(68,84,106);}
.fc1_c00380{color:rgb(0,0,0);}
.fc0_c00380{color:rgb(32,31,30);}
.fs3_c00380{font-size:54.000000px;}
.fs0_c00380{font-size:60.120000px;}
.fs1_c00380{font-size:72.000000px;}
.fs2_c00380{font-size:83.880000px;}
.y0_c00380{bottom:0.000000px;}
.y5_c00380{bottom:57.360450px;}
.y4_c00380{bottom:78.060450px;}
.y24_c00380{bottom:211.260450px;}
.y23_c00380{bottom:242.310450px;}
.y22_c00380{bottom:273.360450px;}
.y21_c00380{bottom:304.410450px;}
.y20_c00380{bottom:335.460450px;}
.y1f_c00380{bottom:366.510450px;}
.y1e_c00380{bottom:397.560450px;}
.y1d_c00380{bottom:428.610450px;}
.y1c_c00380{bottom:459.660450px;}
.y1b_c00380{bottom:490.710450px;}
.y1a_c00380{bottom:521.760450px;}
.y19_c00380{bottom:552.810450px;}
.y18_c00380{bottom:583.860450px;}
.y17_c00380{bottom:614.910450px;}
.y16_c00380{bottom:645.960450px;}
.y15_c00380{bottom:677.010450px;}
.y14_c00380{bottom:708.060450px;}
.y13_c00380{bottom:739.110450px;}
.y12_c00380{bottom:770.160450px;}
.y11_c00380{bottom:797.880450px;}
.y10_c00380{bottom:821.550450px;}
.yf_c00380{bottom:845.220450px;}
.ye_c00380{bottom:868.890450px;}
.yd_c00380{bottom:896.070450px;}
.yc_c00380{bottom:931.440450px;}
.yb_c00380{bottom:950.160450px;}
.ya_c00380{bottom:987.240450px;}
.y9_c00380{bottom:1018.290450px;}
.y8_c00380{bottom:1049.340450px;}
.y7_c00380{bottom:1080.390450px;}
.y6_c00380{bottom:1111.440450px;}
.y3_c00380{bottom:1132.140450px;}
.y2_c00380{bottom:1165.441023px;}
.y1_c00380{bottom:1196.040600px;}
.h4_c00380{height:47.513672px;}
.h6_c00380{height:48.410156px;}
.h1_c00380{height:52.898555px;}
.h2_c00380{height:63.175781px;}
.h7_c00380{height:63.351562px;}
.h5_c00380{height:65.330156px;}
.h3_c00380{height:74.500840px;}
.h0_c00380{height:1263.000000px;}
.w1_c00380{width:892.500000px;}
.w0_c00380{width:892.830000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:127.620000px;}
.x3_c00380{left:252.540000px;}
.x4_c00380{left:296.730000px;}
.x2_c00380{left:738.450000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.v1_c00380{vertical-align:15.040000pt;}
.ls1b_c00380{letter-spacing:-0.320000pt;}
.ls19_c00380{letter-spacing:-0.179200pt;}
.ls13_c00380{letter-spacing:-0.134400pt;}
.ls11_c00380{letter-spacing:-0.110400pt;}
.ls14_c00380{letter-spacing:-0.105600pt;}
.lsf_c00380{letter-spacing:-0.090848pt;}
.ls18_c00380{letter-spacing:-0.057600pt;}
.ls16_c00380{letter-spacing:-0.012800pt;}
.ls17_c00380{letter-spacing:-0.006400pt;}
.ls10_c00380{letter-spacing:0.000000pt;}
.ls6_c00380{letter-spacing:0.004800pt;}
.ls9_c00380{letter-spacing:0.006400pt;}
.ls7_c00380{letter-spacing:0.012800pt;}
.ls5_c00380{letter-spacing:0.014912pt;}
.lsb_c00380{letter-spacing:0.019200pt;}
.ls0_c00380{letter-spacing:0.025600pt;}
.lsd_c00380{letter-spacing:0.032000pt;}
.ls4_c00380{letter-spacing:0.037280pt;}
.lsa_c00380{letter-spacing:0.038400pt;}
.lsc_c00380{letter-spacing:0.044800pt;}
.ls8_c00380{letter-spacing:0.048000pt;}
.ls3_c00380{letter-spacing:0.051200pt;}
.ls2_c00380{letter-spacing:0.057600pt;}
.lse_c00380{letter-spacing:0.064000pt;}
.ls1_c00380{letter-spacing:0.070400pt;}
.ls15_c00380{letter-spacing:0.441600pt;}
.ls1a_c00380{letter-spacing:0.960000pt;}
.ls12_c00380{letter-spacing:143.784000pt;}
.ws0_c00380{word-spacing:-15.993600pt;}
.ws2_c00380{word-spacing:0.000000pt;}
.ws3_c00380{word-spacing:0.153600pt;}
.ws1_c00380{word-spacing:0.171008pt;}
._5_c00380{margin-left:-143.798400pt;}
._2_c00380{margin-left:-2.259200pt;}
._1_c00380{margin-left:-1.305600pt;}
._0_c00380{width:0.919168pt;}
._3_c00380{width:1.894400pt;}
._b_c00380{width:5.772800pt;}
._c_c00380{width:6.724864pt;}
._a_c00380{width:8.633600pt;}
._d_c00380{width:9.702400pt;}
._4_c00380{width:148.121600pt;}
._8_c00380{width:586.000000pt;}
._6_c00380{width:717.660800pt;}
._9_c00380{width:797.353600pt;}
._7_c00380{width:843.068800pt;}
.fs3_c00380{font-size:48.000000pt;}
.fs0_c00380{font-size:53.440000pt;}
.fs1_c00380{font-size:64.000000pt;}
.fs2_c00380{font-size:74.560000pt;}
.y0_c00380{bottom:0.000000pt;}
.y5_c00380{bottom:50.987067pt;}
.y4_c00380{bottom:69.387067pt;}
.y24_c00380{bottom:187.787067pt;}
.y23_c00380{bottom:215.387067pt;}
.y22_c00380{bottom:242.987067pt;}
.y21_c00380{bottom:270.587067pt;}
.y20_c00380{bottom:298.187067pt;}
.y1f_c00380{bottom:325.787067pt;}
.y1e_c00380{bottom:353.387067pt;}
.y1d_c00380{bottom:380.987067pt;}
.y1c_c00380{bottom:408.587067pt;}
.y1b_c00380{bottom:436.187067pt;}
.y1a_c00380{bottom:463.787067pt;}
.y19_c00380{bottom:491.387067pt;}
.y18_c00380{bottom:518.987067pt;}
.y17_c00380{bottom:546.587067pt;}
.y16_c00380{bottom:574.187067pt;}
.y15_c00380{bottom:601.787067pt;}
.y14_c00380{bottom:629.387067pt;}
.y13_c00380{bottom:656.987067pt;}
.y12_c00380{bottom:684.587067pt;}
.y11_c00380{bottom:709.227067pt;}
.y10_c00380{bottom:730.267067pt;}
.yf_c00380{bottom:751.307067pt;}
.ye_c00380{bottom:772.347067pt;}
.yd_c00380{bottom:796.507067pt;}
.yc_c00380{bottom:827.947067pt;}
.yb_c00380{bottom:844.587067pt;}
.ya_c00380{bottom:877.547067pt;}
.y9_c00380{bottom:905.147067pt;}
.y8_c00380{bottom:932.747067pt;}
.y7_c00380{bottom:960.347067pt;}
.y6_c00380{bottom:987.947067pt;}
.y3_c00380{bottom:1006.347067pt;}
.y2_c00380{bottom:1035.947576pt;}
.y1_c00380{bottom:1063.147200pt;}
.h4_c00380{height:42.234375pt;}
.h6_c00380{height:43.031250pt;}
.h1_c00380{height:47.020937pt;}
.h2_c00380{height:56.156250pt;}
.h7_c00380{height:56.312500pt;}
.h5_c00380{height:58.071250pt;}
.h3_c00380{height:66.222969pt;}
.h0_c00380{height:1122.666667pt;}
.w1_c00380{width:793.333333pt;}
.w0_c00380{width:793.626667pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:113.440000pt;}
.x3_c00380{left:224.480000pt;}
.x4_c00380{left:263.760000pt;}
.x2_c00380{left:656.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_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_da91177043a125e6f8db699e.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.095703;font-style:normal;font-weight:normal;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_ba09c4fde705e0fd6fe5ac8c.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.093262;font-style:normal;font-weight:normal;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_4db87749321c06f67f100763.woff2')format("woff");}.ff3_c00381{font-family:ff3_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:ff4_c00381;src:url('chunks/assets/font_c0d655eec94a0bb4adda78cc.woff2')format("woff");}.ff4_c00381{font-family:ff4_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;}
.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;}
.ls16_c00381{letter-spacing:-0.237600px;}
.ls10_c00381{letter-spacing:-0.151200px;}
.lse_c00381{letter-spacing:-0.124200px;}
.ls11_c00381{letter-spacing:-0.086400px;}
.ls12_c00381{letter-spacing:-0.054000px;}
.lsf_c00381{letter-spacing:-0.048600px;}
.lsb_c00381{letter-spacing:-0.048096px;}
.ls15_c00381{letter-spacing:-0.021600px;}
.lsd_c00381{letter-spacing:-0.014400px;}
.ls14_c00381{letter-spacing:-0.007200px;}
.lsc_c00381{letter-spacing:0.000000px;}
.ls3_c00381{letter-spacing:0.005400px;}
.ls1_c00381{letter-spacing:0.014400px;}
.ls6_c00381{letter-spacing:0.021600px;}
.ls0_c00381{letter-spacing:0.027000px;}
.ls8_c00381{letter-spacing:0.028800px;}
.ls4_c00381{letter-spacing:0.036000px;}
.ls7_c00381{letter-spacing:0.043200px;}
.ls2_c00381{letter-spacing:0.054000px;}
.lsa_c00381{letter-spacing:0.072000px;}
.ls5_c00381{letter-spacing:0.079200px;}
.ls9_c00381{letter-spacing:0.093600px;}
.ls13_c00381{letter-spacing:0.496800px;}
.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:-20.001600px;}
.ws2_c00381{word-spacing:0.000000px;}
.ws1_c00381{word-spacing:0.138276px;}
.ws3_c00381{word-spacing:0.151200px;}
.ws4_c00381{word-spacing:0.172800px;}
._9_c00381{margin-left:-2.271600px;}
._0_c00381{margin-left:-1.009800px;}
._2_c00381{width:1.215000px;}
._d_c00381{width:3.607200px;}
._8_c00381{width:4.644000px;}
._b_c00381{width:8.346600px;}
._a_c00381{width:9.676800px;}
._e_c00381{width:10.756800px;}
._c_c00381{width:14.378400px;}
._1_c00381{width:98.784000px;}
._3_c00381{width:135.523800px;}
._4_c00381{width:210.668400px;}
._6_c00381{width:221.130000px;}
._5_c00381{width:258.714000px;}
._7_c00381{width:457.984800px;}
.fc3_c00381{color:rgb(38,74,96);}
.fc2_c00381{color:rgb(1,2,5);}
.fc1_c00381{color:rgb(68,84,106);}
.fc0_c00381{color:rgb(0,0,0);}
.fs2_c00381{font-size:54.000000px;}
.fs0_c00381{font-size:60.120000px;}
.fs1_c00381{font-size:72.000000px;}
.y0_c00381{bottom:0.000000px;}
.y6_c00381{bottom:57.360450px;}
.y5_c00381{bottom:78.060450px;}
.y21_c00381{bottom:111.360450px;}
.y20_c00381{bottom:142.410450px;}
.y1f_c00381{bottom:173.460450px;}
.y1e_c00381{bottom:204.510450px;}
.y1d_c00381{bottom:235.560450px;}
.y1c_c00381{bottom:266.610450px;}
.y1b_c00381{bottom:297.660450px;}
.y1a_c00381{bottom:328.710450px;}
.y19_c00381{bottom:359.760450px;}
.y18_c00381{bottom:390.810450px;}
.y17_c00381{bottom:421.860450px;}
.y16_c00381{bottom:452.910450px;}
.y15_c00381{bottom:473.610450px;}
.y14_c00381{bottom:490.170450px;}
.y13_c00381{bottom:817.230450px;}
.y12_c00381{bottom:852.150450px;}
.y11_c00381{bottom:882.030450px;}
.y10_c00381{bottom:916.950450px;}
.yf_c00381{bottom:940.350450px;}
.ye_c00381{bottom:964.020450px;}
.yd_c00381{bottom:987.690450px;}
.yc_c00381{bottom:1011.360450px;}
.yb_c00381{bottom:1035.030450px;}
.y9_c00381{bottom:1062.210450px;}
.y8_c00381{bottom:1093.260450px;}
.ya_c00381{bottom:1097.490450px;}
.y7_c00381{bottom:1128.630450px;}
.y4_c00381{bottom:1144.380657px;}
.y3_c00381{bottom:1161.660648px;}
.y2_c00381{bottom:1178.850459px;}
.y1_c00381{bottom:1196.130450px;}
.h3_c00381{height:47.513672px;}
.h5_c00381{height:48.410156px;}
.h1_c00381{height:52.898555px;}
.h2_c00381{height:63.175781px;}
.h4_c00381{height:65.003906px;}
.h0_c00381{height:1263.000000px;}
.w1_c00381{width:892.500000px;}
.w0_c00381{width:892.830000px;}
.x0_c00381{left:0.000000px;}
.x4_c00381{left:127.620000px;}
.x5_c00381{left:314.730000px;}
.x7_c00381{left:352.350000px;}
.x6_c00381{left:500.850000px;}
.x1_c00381{left:649.620000px;}
.x8_c00381{left:654.120000px;}
.x3_c00381{left:738.450000px;}
.x2_c00381{left:765.450198px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls16_c00381{letter-spacing:-0.211200pt;}
.ls10_c00381{letter-spacing:-0.134400pt;}
.lse_c00381{letter-spacing:-0.110400pt;}
.ls11_c00381{letter-spacing:-0.076800pt;}
.ls12_c00381{letter-spacing:-0.048000pt;}
.lsf_c00381{letter-spacing:-0.043200pt;}
.lsb_c00381{letter-spacing:-0.042752pt;}
.ls15_c00381{letter-spacing:-0.019200pt;}
.lsd_c00381{letter-spacing:-0.012800pt;}
.ls14_c00381{letter-spacing:-0.006400pt;}
.lsc_c00381{letter-spacing:0.000000pt;}
.ls3_c00381{letter-spacing:0.004800pt;}
.ls1_c00381{letter-spacing:0.012800pt;}
.ls6_c00381{letter-spacing:0.019200pt;}
.ls0_c00381{letter-spacing:0.024000pt;}
.ls8_c00381{letter-spacing:0.025600pt;}
.ls4_c00381{letter-spacing:0.032000pt;}
.ls7_c00381{letter-spacing:0.038400pt;}
.ls2_c00381{letter-spacing:0.048000pt;}
.lsa_c00381{letter-spacing:0.064000pt;}
.ls5_c00381{letter-spacing:0.070400pt;}
.ls9_c00381{letter-spacing:0.083200pt;}
.ls13_c00381{letter-spacing:0.441600pt;}
.ws0_c00381{word-spacing:-17.779200pt;}
.ws2_c00381{word-spacing:0.000000pt;}
.ws1_c00381{word-spacing:0.122912pt;}
.ws3_c00381{word-spacing:0.134400pt;}
.ws4_c00381{word-spacing:0.153600pt;}
._9_c00381{margin-left:-2.019200pt;}
._0_c00381{margin-left:-0.897600pt;}
._2_c00381{width:1.080000pt;}
._d_c00381{width:3.206400pt;}
._8_c00381{width:4.128000pt;}
._b_c00381{width:7.419200pt;}
._a_c00381{width:8.601600pt;}
._e_c00381{width:9.561600pt;}
._c_c00381{width:12.780800pt;}
._1_c00381{width:87.808000pt;}
._3_c00381{width:120.465600pt;}
._4_c00381{width:187.260800pt;}
._6_c00381{width:196.560000pt;}
._5_c00381{width:229.968000pt;}
._7_c00381{width:407.097600pt;}
.fs2_c00381{font-size:48.000000pt;}
.fs0_c00381{font-size:53.440000pt;}
.fs1_c00381{font-size:64.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y6_c00381{bottom:50.987067pt;}
.y5_c00381{bottom:69.387067pt;}
.y21_c00381{bottom:98.987067pt;}
.y20_c00381{bottom:126.587067pt;}
.y1f_c00381{bottom:154.187067pt;}
.y1e_c00381{bottom:181.787067pt;}
.y1d_c00381{bottom:209.387067pt;}
.y1c_c00381{bottom:236.987067pt;}
.y1b_c00381{bottom:264.587067pt;}
.y1a_c00381{bottom:292.187067pt;}
.y19_c00381{bottom:319.787067pt;}
.y18_c00381{bottom:347.387067pt;}
.y17_c00381{bottom:374.987067pt;}
.y16_c00381{bottom:402.587067pt;}
.y15_c00381{bottom:420.987067pt;}
.y14_c00381{bottom:435.707067pt;}
.y13_c00381{bottom:726.427067pt;}
.y12_c00381{bottom:757.467067pt;}
.y11_c00381{bottom:784.027067pt;}
.y10_c00381{bottom:815.067067pt;}
.yf_c00381{bottom:835.867067pt;}
.ye_c00381{bottom:856.907067pt;}
.yd_c00381{bottom:877.947067pt;}
.yc_c00381{bottom:898.987067pt;}
.yb_c00381{bottom:920.027067pt;}
.y9_c00381{bottom:944.187067pt;}
.y8_c00381{bottom:971.787067pt;}
.ya_c00381{bottom:975.547067pt;}
.y7_c00381{bottom:1003.227067pt;}
.y4_c00381{bottom:1017.227251pt;}
.y3_c00381{bottom:1032.587243pt;}
.y2_c00381{bottom:1047.867075pt;}
.y1_c00381{bottom:1063.227067pt;}
.h3_c00381{height:42.234375pt;}
.h5_c00381{height:43.031250pt;}
.h1_c00381{height:47.020937pt;}
.h2_c00381{height:56.156250pt;}
.h4_c00381{height:57.781250pt;}
.h0_c00381{height:1122.666667pt;}
.w1_c00381{width:793.333333pt;}
.w0_c00381{width:793.626667pt;}
.x0_c00381{left:0.000000pt;}
.x4_c00381{left:113.440000pt;}
.x5_c00381{left:279.760000pt;}
.x7_c00381{left:313.200000pt;}
.x6_c00381{left:445.200000pt;}
.x1_c00381{left:577.440000pt;}
.x8_c00381{left:581.440000pt;}
.x3_c00381{left:656.400000pt;}
.x2_c00381{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac5ff67d5dc03eeccca9d0fd.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.095703;font-style:normal;font-weight:normal;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_3752b9926c504babb2585535.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:1.093262;font-style: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;}
.ls10_c00382{letter-spacing:-2.520000px;}
.lsb_c00382{letter-spacing:-0.102204px;}
.ls11_c00382{letter-spacing:-0.043200px;}
.ls12_c00382{letter-spacing:-0.036000px;}
.lsf_c00382{letter-spacing:-0.021600px;}
.lsd_c00382{letter-spacing:-0.014400px;}
.lse_c00382{letter-spacing:-0.007200px;}
.lsc_c00382{letter-spacing:0.000000px;}
.lsa_c00382{letter-spacing:0.007200px;}
.ls1_c00382{letter-spacing:0.014400px;}
.ls0_c00382{letter-spacing:0.028800px;}
.ls3_c00382{letter-spacing:0.036000px;}
.ls2_c00382{letter-spacing:0.043200px;}
.ls5_c00382{letter-spacing:0.057600px;}
.ls4_c00382{letter-spacing:0.072000px;}
.ls9_c00382{letter-spacing:0.079200px;}
.ls6_c00382{letter-spacing:0.086400px;}
.ls7_c00382{letter-spacing:0.100800px;}
.ls8_c00382{letter-spacing:0.136800px;}
.ls13_c00382{letter-spacing:1.080000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:-18.057600px;}
.ws4_c00382{word-spacing:-2.512800px;}
.ws2_c00382{word-spacing:0.000000px;}
.ws3_c00382{word-spacing:0.178200px;}
.ws1_c00382{word-spacing:0.192384px;}
.ws6_c00382{word-spacing:0.316800px;}
.ws5_c00382{word-spacing:0.403200px;}
._8_c00382{margin-left:-3.988800px;}
._5_c00382{margin-left:-2.462400px;}
._2_c00382{margin-left:-1.224000px;}
._0_c00382{width:1.034064px;}
._6_c00382{width:2.880000px;}
._b_c00382{width:4.284000px;}
._3_c00382{width:5.832000px;}
._4_c00382{width:7.041600px;}
._7_c00382{width:8.740800px;}
._1_c00382{width:16.171200px;}
._a_c00382{width:19.180800px;}
._9_c00382{width:20.484000px;}
.fc2_c00382{color:rgb(68,84,106);}
.fc1_c00382{color:rgb(0,0,0);}
.fc0_c00382{color:rgb(32,31,30);}
.fs2_c00382{font-size:54.000000px;}
.fs0_c00382{font-size:60.120000px;}
.fs1_c00382{font-size:72.000000px;}
.y0_c00382{bottom:0.000000px;}
.y5_c00382{bottom:57.360450px;}
.y4_c00382{bottom:78.060450px;}
.y1c_c00382{bottom:125.580450px;}
.y1b_c00382{bottom:156.630450px;}
.y1a_c00382{bottom:187.680450px;}
.y19_c00382{bottom:218.730450px;}
.y18_c00382{bottom:249.780450px;}
.y17_c00382{bottom:280.830450px;}
.y16_c00382{bottom:311.880450px;}
.y15_c00382{bottom:342.930450px;}
.y14_c00382{bottom:373.980450px;}
.y13_c00382{bottom:405.030450px;}
.y12_c00382{bottom:436.080450px;}
.y11_c00382{bottom:467.130450px;}
.y10_c00382{bottom:498.180450px;}
.yf_c00382{bottom:529.230450px;}
.ye_c00382{bottom:560.280450px;}
.yd_c00382{bottom:591.330450px;}
.yc_c00382{bottom:622.380450px;}
.yb_c00382{bottom:649.380450px;}
.ya_c00382{bottom:991.560450px;}
.y9_c00382{bottom:1018.290450px;}
.y8_c00382{bottom:1049.340450px;}
.y7_c00382{bottom:1080.390450px;}
.y6_c00382{bottom:1111.440450px;}
.y3_c00382{bottom:1132.140450px;}
.y2_c00382{bottom:1165.441023px;}
.y1_c00382{bottom:1196.040600px;}
.h3_c00382{height:47.513672px;}
.h1_c00382{height:52.898555px;}
.h2_c00382{height:63.175781px;}
.h4_c00382{height:63.351562px;}
.h0_c00382{height:1263.000000px;}
.w1_c00382{width:892.500000px;}
.w0_c00382{width:892.830000px;}
.x0_c00382{left:0.000000px;}
.x1_c00382{left:127.620000px;}
.x3_c00382{left:678.870000px;}
.x2_c00382{left:738.450000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls10_c00382{letter-spacing:-2.240000pt;}
.lsb_c00382{letter-spacing:-0.090848pt;}
.ls11_c00382{letter-spacing:-0.038400pt;}
.ls12_c00382{letter-spacing:-0.032000pt;}
.lsf_c00382{letter-spacing:-0.019200pt;}
.lsd_c00382{letter-spacing:-0.012800pt;}
.lse_c00382{letter-spacing:-0.006400pt;}
.lsc_c00382{letter-spacing:0.000000pt;}
.lsa_c00382{letter-spacing:0.006400pt;}
.ls1_c00382{letter-spacing:0.012800pt;}
.ls0_c00382{letter-spacing:0.025600pt;}
.ls3_c00382{letter-spacing:0.032000pt;}
.ls2_c00382{letter-spacing:0.038400pt;}
.ls5_c00382{letter-spacing:0.051200pt;}
.ls4_c00382{letter-spacing:0.064000pt;}
.ls9_c00382{letter-spacing:0.070400pt;}
.ls6_c00382{letter-spacing:0.076800pt;}
.ls7_c00382{letter-spacing:0.089600pt;}
.ls8_c00382{letter-spacing:0.121600pt;}
.ls13_c00382{letter-spacing:0.960000pt;}
.ws0_c00382{word-spacing:-16.051200pt;}
.ws4_c00382{word-spacing:-2.233600pt;}
.ws2_c00382{word-spacing:0.000000pt;}
.ws3_c00382{word-spacing:0.158400pt;}
.ws1_c00382{word-spacing:0.171008pt;}
.ws6_c00382{word-spacing:0.281600pt;}
.ws5_c00382{word-spacing:0.358400pt;}
._8_c00382{margin-left:-3.545600pt;}
._5_c00382{margin-left:-2.188800pt;}
._2_c00382{margin-left:-1.088000pt;}
._0_c00382{width:0.919168pt;}
._6_c00382{width:2.560000pt;}
._b_c00382{width:3.808000pt;}
._3_c00382{width:5.184000pt;}
._4_c00382{width:6.259200pt;}
._7_c00382{width:7.769600pt;}
._1_c00382{width:14.374400pt;}
._a_c00382{width:17.049600pt;}
._9_c00382{width:18.208000pt;}
.fs2_c00382{font-size:48.000000pt;}
.fs0_c00382{font-size:53.440000pt;}
.fs1_c00382{font-size:64.000000pt;}
.y0_c00382{bottom:0.000000pt;}
.y5_c00382{bottom:50.987067pt;}
.y4_c00382{bottom:69.387067pt;}
.y1c_c00382{bottom:111.627067pt;}
.y1b_c00382{bottom:139.227067pt;}
.y1a_c00382{bottom:166.827067pt;}
.y19_c00382{bottom:194.427067pt;}
.y18_c00382{bottom:222.027067pt;}
.y17_c00382{bottom:249.627067pt;}
.y16_c00382{bottom:277.227067pt;}
.y15_c00382{bottom:304.827067pt;}
.y14_c00382{bottom:332.427067pt;}
.y13_c00382{bottom:360.027067pt;}
.y12_c00382{bottom:387.627067pt;}
.y11_c00382{bottom:415.227067pt;}
.y10_c00382{bottom:442.827067pt;}
.yf_c00382{bottom:470.427067pt;}
.ye_c00382{bottom:498.027067pt;}
.yd_c00382{bottom:525.627067pt;}
.yc_c00382{bottom:553.227067pt;}
.yb_c00382{bottom:577.227067pt;}
.ya_c00382{bottom:881.387067pt;}
.y9_c00382{bottom:905.147067pt;}
.y8_c00382{bottom:932.747067pt;}
.y7_c00382{bottom:960.347067pt;}
.y6_c00382{bottom:987.947067pt;}
.y3_c00382{bottom:1006.347067pt;}
.y2_c00382{bottom:1035.947576pt;}
.y1_c00382{bottom:1063.147200pt;}
.h3_c00382{height:42.234375pt;}
.h1_c00382{height:47.020937pt;}
.h2_c00382{height:56.156250pt;}
.h4_c00382{height:56.312500pt;}
.h0_c00382{height:1122.666667pt;}
.w1_c00382{width:793.333333pt;}
.w0_c00382{width:793.626667pt;}
.x0_c00382{left:0.000000pt;}
.x1_c00382{left:113.440000pt;}
.x3_c00382{left:603.440000pt;}
.x2_c00382{left:656.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_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_0457e414e7da993f2ceee850.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.095703;font-style:normal;font-weight:normal;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_d7b93367277d31ea22f61ebc.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.093262;font-style: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;}
.ls17_c00383{letter-spacing:-0.057600px;}
.ls11_c00383{letter-spacing:-0.048096px;}
.ls15_c00383{letter-spacing:-0.036000px;}
.ls16_c00383{letter-spacing:-0.021600px;}
.ls14_c00383{letter-spacing:-0.007200px;}
.ls13_c00383{letter-spacing:-0.005400px;}
.ls12_c00383{letter-spacing:0.000000px;}
.ls9_c00383{letter-spacing:0.007200px;}
.ls4_c00383{letter-spacing:0.014400px;}
.lsb_c00383{letter-spacing:0.021600px;}
.ls7_c00383{letter-spacing:0.028800px;}
.ls8_c00383{letter-spacing:0.036000px;}
.lsc_c00383{letter-spacing:0.043200px;}
.ls10_c00383{letter-spacing:0.050400px;}
.ls0_c00383{letter-spacing:0.057600px;}
.ls3_c00383{letter-spacing:0.064800px;}
.ls1_c00383{letter-spacing:0.072000px;}
.lse_c00383{letter-spacing:0.079200px;}
.ls2_c00383{letter-spacing:0.086400px;}
.lsf_c00383{letter-spacing:0.093600px;}
.lsa_c00383{letter-spacing:0.100800px;}
.lsd_c00383{letter-spacing:0.158400px;}
.ls6_c00383{letter-spacing:0.360000px;}
.ls5_c00383{letter-spacing:6.840000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:-18.086400px;}
.ws1_c00383{word-spacing:-18.007200px;}
.ws3_c00383{word-spacing:0.000000px;}
.ws2_c00383{word-spacing:0.138276px;}
.ws4_c00383{word-spacing:0.183600px;}
._6_c00383{margin-left:-2.707200px;}
._1_c00383{margin-left:-1.324800px;}
._3_c00383{width:1.008000px;}
._8_c00383{width:2.390400px;}
._a_c00383{width:3.945600px;}
._9_c00383{width:4.996800px;}
._2_c00383{width:6.105600px;}
._4_c00383{width:7.740000px;}
._7_c00383{width:13.672800px;}
._0_c00383{width:15.422400px;}
._5_c00383{width:21.967200px;}
.fc1_c00383{color:rgb(68,84,106);}
.fc0_c00383{color:rgb(0,0,0);}
.fs2_c00383{font-size:54.000000px;}
.fs0_c00383{font-size:60.120000px;}
.fs1_c00383{font-size:72.000000px;}
.y0_c00383{bottom:0.000000px;}
.y6_c00383{bottom:57.360450px;}
.y5_c00383{bottom:78.060450px;}
.y1c_c00383{bottom:152.670450px;}
.y1b_c00383{bottom:183.720450px;}
.y1a_c00383{bottom:214.770450px;}
.y19_c00383{bottom:245.820450px;}
.y18_c00383{bottom:276.870450px;}
.y17_c00383{bottom:307.920450px;}
.y16_c00383{bottom:338.970450px;}
.y15_c00383{bottom:370.020450px;}
.y14_c00383{bottom:401.070450px;}
.y13_c00383{bottom:432.120450px;}
.y12_c00383{bottom:463.170450px;}
.y11_c00383{bottom:494.220450px;}
.y10_c00383{bottom:525.270450px;}
.yf_c00383{bottom:556.320450px;}
.ye_c00383{bottom:587.370450px;}
.yd_c00383{bottom:618.420450px;}
.yc_c00383{bottom:649.470450px;}
.yb_c00383{bottom:680.520450px;}
.ya_c00383{bottom:711.570450px;}
.y9_c00383{bottom:742.620450px;}
.y8_c00383{bottom:769.530450px;}
.y7_c00383{bottom:1128.630450px;}
.y4_c00383{bottom:1144.380657px;}
.y3_c00383{bottom:1161.660648px;}
.y2_c00383{bottom:1178.850459px;}
.y1_c00383{bottom:1196.130450px;}
.h3_c00383{height:47.513672px;}
.h1_c00383{height:52.898555px;}
.h2_c00383{height:63.175781px;}
.h4_c00383{height:63.351562px;}
.h0_c00383{height:1263.000000px;}
.w1_c00383{width:892.500000px;}
.w0_c00383{width:892.830000px;}
.x0_c00383{left:0.000000px;}
.x4_c00383{left:127.620000px;}
.x1_c00383{left:649.620000px;}
.x5_c00383{left:706.770000px;}
.x3_c00383{left:738.450000px;}
.x2_c00383{left:765.450198px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls17_c00383{letter-spacing:-0.051200pt;}
.ls11_c00383{letter-spacing:-0.042752pt;}
.ls15_c00383{letter-spacing:-0.032000pt;}
.ls16_c00383{letter-spacing:-0.019200pt;}
.ls14_c00383{letter-spacing:-0.006400pt;}
.ls13_c00383{letter-spacing:-0.004800pt;}
.ls12_c00383{letter-spacing:0.000000pt;}
.ls9_c00383{letter-spacing:0.006400pt;}
.ls4_c00383{letter-spacing:0.012800pt;}
.lsb_c00383{letter-spacing:0.019200pt;}
.ls7_c00383{letter-spacing:0.025600pt;}
.ls8_c00383{letter-spacing:0.032000pt;}
.lsc_c00383{letter-spacing:0.038400pt;}
.ls10_c00383{letter-spacing:0.044800pt;}
.ls0_c00383{letter-spacing:0.051200pt;}
.ls3_c00383{letter-spacing:0.057600pt;}
.ls1_c00383{letter-spacing:0.064000pt;}
.lse_c00383{letter-spacing:0.070400pt;}
.ls2_c00383{letter-spacing:0.076800pt;}
.lsf_c00383{letter-spacing:0.083200pt;}
.lsa_c00383{letter-spacing:0.089600pt;}
.lsd_c00383{letter-spacing:0.140800pt;}
.ls6_c00383{letter-spacing:0.320000pt;}
.ls5_c00383{letter-spacing:6.080000pt;}
.ws0_c00383{word-spacing:-16.076800pt;}
.ws1_c00383{word-spacing:-16.006400pt;}
.ws3_c00383{word-spacing:0.000000pt;}
.ws2_c00383{word-spacing:0.122912pt;}
.ws4_c00383{word-spacing:0.163200pt;}
._6_c00383{margin-left:-2.406400pt;}
._1_c00383{margin-left:-1.177600pt;}
._3_c00383{width:0.896000pt;}
._8_c00383{width:2.124800pt;}
._a_c00383{width:3.507200pt;}
._9_c00383{width:4.441600pt;}
._2_c00383{width:5.427200pt;}
._4_c00383{width:6.880000pt;}
._7_c00383{width:12.153600pt;}
._0_c00383{width:13.708800pt;}
._5_c00383{width:19.526400pt;}
.fs2_c00383{font-size:48.000000pt;}
.fs0_c00383{font-size:53.440000pt;}
.fs1_c00383{font-size:64.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y6_c00383{bottom:50.987067pt;}
.y5_c00383{bottom:69.387067pt;}
.y1c_c00383{bottom:135.707067pt;}
.y1b_c00383{bottom:163.307067pt;}
.y1a_c00383{bottom:190.907067pt;}
.y19_c00383{bottom:218.507067pt;}
.y18_c00383{bottom:246.107067pt;}
.y17_c00383{bottom:273.707067pt;}
.y16_c00383{bottom:301.307067pt;}
.y15_c00383{bottom:328.907067pt;}
.y14_c00383{bottom:356.507067pt;}
.y13_c00383{bottom:384.107067pt;}
.y12_c00383{bottom:411.707067pt;}
.y11_c00383{bottom:439.307067pt;}
.y10_c00383{bottom:466.907067pt;}
.yf_c00383{bottom:494.507067pt;}
.ye_c00383{bottom:522.107067pt;}
.yd_c00383{bottom:549.707067pt;}
.yc_c00383{bottom:577.307067pt;}
.yb_c00383{bottom:604.907067pt;}
.ya_c00383{bottom:632.507067pt;}
.y9_c00383{bottom:660.107067pt;}
.y8_c00383{bottom:684.027067pt;}
.y7_c00383{bottom:1003.227067pt;}
.y4_c00383{bottom:1017.227251pt;}
.y3_c00383{bottom:1032.587243pt;}
.y2_c00383{bottom:1047.867075pt;}
.y1_c00383{bottom:1063.227067pt;}
.h3_c00383{height:42.234375pt;}
.h1_c00383{height:47.020937pt;}
.h2_c00383{height:56.156250pt;}
.h4_c00383{height:56.312500pt;}
.h0_c00383{height:1122.666667pt;}
.w1_c00383{width:793.333333pt;}
.w0_c00383{width:793.626667pt;}
.x0_c00383{left:0.000000pt;}
.x4_c00383{left:113.440000pt;}
.x1_c00383{left:577.440000pt;}
.x5_c00383{left:628.240000pt;}
.x3_c00383{left:656.400000pt;}
.x2_c00383{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_484cfd834abcadcbb7b2af50.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.095703;font-style:normal;font-weight:normal;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_fc473e012eda1f8473cefed9.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:1.093262;font-style:normal;font-weight:normal;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_df62d3ebdbee070c9c40c9ad.woff2')format("woff");}.ff3_c00384{font-family:ff3_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:ff4_c00384;src:url('chunks/assets/font_832925636ce634d094057c2e.woff2')format("woff");}.ff4_c00384{font-family:ff4_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;}
.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:16.920000px;}
.ls10_c00384{letter-spacing:-0.496800px;}
.ls14_c00384{letter-spacing:-0.151200px;}
.ls12_c00384{letter-spacing:-0.124200px;}
.ls15_c00384{letter-spacing:-0.118800px;}
.ls18_c00384{letter-spacing:-0.102600px;}
.lsd_c00384{letter-spacing:-0.102204px;}
.ls17_c00384{letter-spacing:-0.091800px;}
.ls1e_c00384{letter-spacing:-0.079200px;}
.ls19_c00384{letter-spacing:-0.064800px;}
.ls1a_c00384{letter-spacing:-0.050400px;}
.ls1f_c00384{letter-spacing:-0.036000px;}
.lsf_c00384{letter-spacing:-0.028800px;}
.ls1d_c00384{letter-spacing:-0.021600px;}
.ls1b_c00384{letter-spacing:-0.014400px;}
.ls11_c00384{letter-spacing:-0.007200px;}
.lse_c00384{letter-spacing:0.000000px;}
.ls2_c00384{letter-spacing:0.007200px;}
.ls8_c00384{letter-spacing:0.014400px;}
.ls5_c00384{letter-spacing:0.021600px;}
.ls3_c00384{letter-spacing:0.027000px;}
.ls1_c00384{letter-spacing:0.028800px;}
.lsb_c00384{letter-spacing:0.036000px;}
.lsc_c00384{letter-spacing:0.050400px;}
.lsa_c00384{letter-spacing:0.057600px;}
.ls0_c00384{letter-spacing:0.079200px;}
.ls9_c00384{letter-spacing:0.108000px;}
.ls7_c00384{letter-spacing:0.122400px;}
.ls16_c00384{letter-spacing:0.496800px;}
.ls1c_c00384{letter-spacing:9.360000px;}
.ls4_c00384{letter-spacing:80.640000px;}
.ls6_c00384{letter-spacing:115.200000px;}
.ls13_c00384{letter-spacing:323.038800px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00384{word-spacing:-3.600000px;}
.ws1_c00384{word-spacing:0.000000px;}
.ws0_c00384{word-spacing:0.192384px;}
._4_c00384{margin-left:-323.055000px;}
._10_c00384{margin-left:-10.200672px;}
._f_c00384{margin-left:-9.047664px;}
._11_c00384{margin-left:-4.327200px;}
._14_c00384{margin-left:-2.901600px;}
._3_c00384{margin-left:-1.026000px;}
._0_c00384{width:1.034064px;}
._13_c00384{width:4.428000px;}
._12_c00384{width:5.781600px;}
._1_c00384{width:7.200000px;}
._2_c00384{width:8.769600px;}
._e_c00384{width:9.928800px;}
._d_c00384{width:11.880000px;}
._8_c00384{width:186.688800px;}
._b_c00384{width:280.014336px;}
._9_c00384{width:442.183536px;}
._a_c00384{width:679.330800px;}
._c_c00384{width:725.857200px;}
._5_c00384{width:1104.724800px;}
._7_c00384{width:1354.777200px;}
._6_c00384{width:1407.092400px;}
.fc3_c00384{color:rgb(38,74,96);}
.fc2_c00384{color:rgb(1,2,5);}
.fc1_c00384{color:rgb(0,0,0);}
.fc0_c00384{color:rgb(32,31,30);}
.fs3_c00384{font-size:2.880000px;}
.fs2_c00384{font-size:54.000000px;}
.fs0_c00384{font-size:60.120000px;}
.fs1_c00384{font-size:72.000000px;}
.y0_c00384{bottom:0.000000px;}
.y5_c00384{bottom:57.360450px;}
.y4_c00384{bottom:78.060450px;}
.y25_c00384{bottom:185.250450px;}
.y24_c00384{bottom:216.300450px;}
.y23_c00384{bottom:247.350450px;}
.y22_c00384{bottom:278.400450px;}
.y21_c00384{bottom:309.450450px;}
.y20_c00384{bottom:340.500450px;}
.y1f_c00384{bottom:371.550450px;}
.y1e_c00384{bottom:402.600450px;}
.y1d_c00384{bottom:433.560450px;}
.y1c_c00384{bottom:464.610450px;}
.y1b_c00384{bottom:495.660450px;}
.y1a_c00384{bottom:526.710450px;}
.y19_c00384{bottom:557.760450px;}
.y18_c00384{bottom:588.810450px;}
.y17_c00384{bottom:619.860450px;}
.y16_c00384{bottom:650.910450px;}
.y15_c00384{bottom:681.960450px;}
.y13_c00384{bottom:709.680450px;}
.y12_c00384{bottom:733.350450px;}
.y11_c00384{bottom:757.020450px;}
.y10_c00384{bottom:780.690450px;}
.yf_c00384{bottom:804.360600px;}
.ye_c00384{bottom:831.540600px;}
.yd_c00384{bottom:912.810450px;}
.yc_c00384{bottom:936.480450px;}
.yb_c00384{bottom:960.150450px;}
.ya_c00384{bottom:1006.860450px;}
.y14_c00384{bottom:1026.030450px;}
.y9_c00384{bottom:1042.590450px;}
.y8_c00384{bottom:1053.660450px;}
.y7_c00384{bottom:1080.390450px;}
.y6_c00384{bottom:1111.440450px;}
.y3_c00384{bottom:1132.140450px;}
.y2_c00384{bottom:1165.441023px;}
.y1_c00384{bottom:1196.040600px;}
.h4_c00384{height:2.527031px;}
.h3_c00384{height:47.381836px;}
.h6_c00384{height:48.410156px;}
.h1_c00384{height:52.898555px;}
.h2_c00384{height:63.175781px;}
.h8_c00384{height:63.351562px;}
.h7_c00384{height:65.329556px;}
.h5_c00384{height:65.330156px;}
.h0_c00384{height:1263.000000px;}
.w1_c00384{width:892.500000px;}
.w0_c00384{width:892.830000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:127.620000px;}
.x3_c00384{left:135.630000px;}
.x4_c00384{left:143.190000px;}
.x5_c00384{left:147.690000px;}
.x6_c00384{left:232.200000px;}
.x7_c00384{left:244.170000px;}
.x8_c00384{left:248.670000px;}
.x9_c00384{left:299.070000px;}
.xa_c00384{left:726.030000px;}
.x2_c00384{left:738.450000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.v1_c00384{vertical-align:15.040000pt;}
.ls10_c00384{letter-spacing:-0.441600pt;}
.ls14_c00384{letter-spacing:-0.134400pt;}
.ls12_c00384{letter-spacing:-0.110400pt;}
.ls15_c00384{letter-spacing:-0.105600pt;}
.ls18_c00384{letter-spacing:-0.091200pt;}
.lsd_c00384{letter-spacing:-0.090848pt;}
.ls17_c00384{letter-spacing:-0.081600pt;}
.ls1e_c00384{letter-spacing:-0.070400pt;}
.ls19_c00384{letter-spacing:-0.057600pt;}
.ls1a_c00384{letter-spacing:-0.044800pt;}
.ls1f_c00384{letter-spacing:-0.032000pt;}
.lsf_c00384{letter-spacing:-0.025600pt;}
.ls1d_c00384{letter-spacing:-0.019200pt;}
.ls1b_c00384{letter-spacing:-0.012800pt;}
.ls11_c00384{letter-spacing:-0.006400pt;}
.lse_c00384{letter-spacing:0.000000pt;}
.ls2_c00384{letter-spacing:0.006400pt;}
.ls8_c00384{letter-spacing:0.012800pt;}
.ls5_c00384{letter-spacing:0.019200pt;}
.ls3_c00384{letter-spacing:0.024000pt;}
.ls1_c00384{letter-spacing:0.025600pt;}
.lsb_c00384{letter-spacing:0.032000pt;}
.lsc_c00384{letter-spacing:0.044800pt;}
.lsa_c00384{letter-spacing:0.051200pt;}
.ls0_c00384{letter-spacing:0.070400pt;}
.ls9_c00384{letter-spacing:0.096000pt;}
.ls7_c00384{letter-spacing:0.108800pt;}
.ls16_c00384{letter-spacing:0.441600pt;}
.ls1c_c00384{letter-spacing:8.320000pt;}
.ls4_c00384{letter-spacing:71.680000pt;}
.ls6_c00384{letter-spacing:102.400000pt;}
.ls13_c00384{letter-spacing:287.145600pt;}
.ws2_c00384{word-spacing:-3.200000pt;}
.ws1_c00384{word-spacing:0.000000pt;}
.ws0_c00384{word-spacing:0.171008pt;}
._4_c00384{margin-left:-287.160000pt;}
._10_c00384{margin-left:-9.067264pt;}
._f_c00384{margin-left:-8.042368pt;}
._11_c00384{margin-left:-3.846400pt;}
._14_c00384{margin-left:-2.579200pt;}
._3_c00384{margin-left:-0.912000pt;}
._0_c00384{width:0.919168pt;}
._13_c00384{width:3.936000pt;}
._12_c00384{width:5.139200pt;}
._1_c00384{width:6.400000pt;}
._2_c00384{width:7.795200pt;}
._e_c00384{width:8.825600pt;}
._d_c00384{width:10.560000pt;}
._8_c00384{width:165.945600pt;}
._b_c00384{width:248.901632pt;}
._9_c00384{width:393.052032pt;}
._a_c00384{width:603.849600pt;}
._c_c00384{width:645.206400pt;}
._5_c00384{width:981.977600pt;}
._7_c00384{width:1204.246400pt;}
._6_c00384{width:1250.748800pt;}
.fs3_c00384{font-size:2.560000pt;}
.fs2_c00384{font-size:48.000000pt;}
.fs0_c00384{font-size:53.440000pt;}
.fs1_c00384{font-size:64.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y5_c00384{bottom:50.987067pt;}
.y4_c00384{bottom:69.387067pt;}
.y25_c00384{bottom:164.667067pt;}
.y24_c00384{bottom:192.267067pt;}
.y23_c00384{bottom:219.867067pt;}
.y22_c00384{bottom:247.467067pt;}
.y21_c00384{bottom:275.067067pt;}
.y20_c00384{bottom:302.667067pt;}
.y1f_c00384{bottom:330.267067pt;}
.y1e_c00384{bottom:357.867067pt;}
.y1d_c00384{bottom:385.387067pt;}
.y1c_c00384{bottom:412.987067pt;}
.y1b_c00384{bottom:440.587067pt;}
.y1a_c00384{bottom:468.187067pt;}
.y19_c00384{bottom:495.787067pt;}
.y18_c00384{bottom:523.387067pt;}
.y17_c00384{bottom:550.987067pt;}
.y16_c00384{bottom:578.587067pt;}
.y15_c00384{bottom:606.187067pt;}
.y13_c00384{bottom:630.827067pt;}
.y12_c00384{bottom:651.867067pt;}
.y11_c00384{bottom:672.907067pt;}
.y10_c00384{bottom:693.947067pt;}
.yf_c00384{bottom:714.987200pt;}
.ye_c00384{bottom:739.147200pt;}
.yd_c00384{bottom:811.387067pt;}
.yc_c00384{bottom:832.427067pt;}
.yb_c00384{bottom:853.467067pt;}
.ya_c00384{bottom:894.987067pt;}
.y14_c00384{bottom:912.027067pt;}
.y9_c00384{bottom:926.747067pt;}
.y8_c00384{bottom:936.587067pt;}
.y7_c00384{bottom:960.347067pt;}
.y6_c00384{bottom:987.947067pt;}
.y3_c00384{bottom:1006.347067pt;}
.y2_c00384{bottom:1035.947576pt;}
.y1_c00384{bottom:1063.147200pt;}
.h4_c00384{height:2.246250pt;}
.h3_c00384{height:42.117188pt;}
.h6_c00384{height:43.031250pt;}
.h1_c00384{height:47.020937pt;}
.h2_c00384{height:56.156250pt;}
.h8_c00384{height:56.312500pt;}
.h7_c00384{height:58.070717pt;}
.h5_c00384{height:58.071250pt;}
.h0_c00384{height:1122.666667pt;}
.w1_c00384{width:793.333333pt;}
.w0_c00384{width:793.626667pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:113.440000pt;}
.x3_c00384{left:120.560000pt;}
.x4_c00384{left:127.280000pt;}
.x5_c00384{left:131.280000pt;}
.x6_c00384{left:206.400000pt;}
.x7_c00384{left:217.040000pt;}
.x8_c00384{left:221.040000pt;}
.x9_c00384{left:265.840000pt;}
.xa_c00384{left:645.360000pt;}
.x2_c00384{left:656.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_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_7b205dff72ac9d5cd7deaf7a.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.095703;font-style:normal;font-weight:normal;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_0e0f8260b6139c50c3ae990c.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_8dca527df9bcddac8eb59223.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00385;src:url('chunks/assets/font_928d39189dd321429136b0b7.woff2')format("woff");}.ff4_c00385{font-family:ff4_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;}
.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;}
.ls21_c00385{letter-spacing:-1.800000px;}
.ls1b_c00385{letter-spacing:-0.720000px;}
.ls1c_c00385{letter-spacing:-0.180000px;}
.ls19_c00385{letter-spacing:-0.178200px;}
.ls10_c00385{letter-spacing:-0.151200px;}
.lse_c00385{letter-spacing:-0.124200px;}
.ls1f_c00385{letter-spacing:-0.115200px;}
.ls14_c00385{letter-spacing:-0.113400px;}
.ls17_c00385{letter-spacing:-0.086400px;}
.ls18_c00385{letter-spacing:-0.081000px;}
.ls11_c00385{letter-spacing:-0.075600px;}
.ls1e_c00385{letter-spacing:-0.072000px;}
.lsf_c00385{letter-spacing:-0.070200px;}
.ls15_c00385{letter-spacing:-0.064800px;}
.ls12_c00385{letter-spacing:-0.054000px;}
.lsa_c00385{letter-spacing:-0.048096px;}
.ls16_c00385{letter-spacing:-0.037800px;}
.ls20_c00385{letter-spacing:-0.036000px;}
.lsc_c00385{letter-spacing:-0.028800px;}
.ls1d_c00385{letter-spacing:-0.021600px;}
.ls1a_c00385{letter-spacing:-0.014400px;}
.lsd_c00385{letter-spacing:-0.007200px;}
.lsb_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:0.005400px;}
.ls5_c00385{letter-spacing:0.007200px;}
.ls2_c00385{letter-spacing:0.014400px;}
.ls1_c00385{letter-spacing:0.021600px;}
.ls3_c00385{letter-spacing:0.028800px;}
.ls7_c00385{letter-spacing:0.036000px;}
.ls6_c00385{letter-spacing:0.043200px;}
.ls8_c00385{letter-spacing:0.057600px;}
.ls4_c00385{letter-spacing:0.072000px;}
.ls9_c00385{letter-spacing:0.093600px;}
.ls13_c00385{letter-spacing:0.496800px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:-17.964000px;}
.ws1_c00385{word-spacing:-17.820000px;}
.ws7_c00385{word-spacing:-1.821600px;}
.ws5_c00385{word-spacing:-0.763200px;}
.ws3_c00385{word-spacing:0.000000px;}
.ws2_c00385{word-spacing:0.138276px;}
.ws4_c00385{word-spacing:0.172800px;}
.ws6_c00385{word-spacing:4.320000px;}
._16_c00385{margin-left:-3.592800px;}
._6_c00385{margin-left:-1.506600px;}
._1_c00385{width:1.215000px;}
._13_c00385{width:2.354400px;}
._0_c00385{width:4.147200px;}
._14_c00385{width:6.660000px;}
._15_c00385{width:7.826400px;}
._17_c00385{width:8.942400px;}
._12_c00385{width:15.818400px;}
._2_c00385{width:229.149000px;}
._a_c00385{width:555.021000px;}
._d_c00385{width:1056.465000px;}
._9_c00385{width:1089.653400px;}
._e_c00385{width:1212.795000px;}
._c_c00385{width:1245.821400px;}
._10_c00385{width:1270.386000px;}
._b_c00385{width:1272.421800px;}
._8_c00385{width:1288.119600px;}
._3_c00385{width:1330.498800px;}
._4_c00385{width:1347.633000px;}
._5_c00385{width:1357.218000px;}
._f_c00385{width:1614.452400px;}
._11_c00385{width:1662.458400px;}
._7_c00385{width:1691.969400px;}
.fc4_c00385{color:rgb(255,0,0);}
.fc3_c00385{color:rgb(38,74,96);}
.fc2_c00385{color:rgb(1,2,5);}
.fc1_c00385{color:rgb(68,84,106);}
.fc0_c00385{color:rgb(0,0,0);}
.fs2_c00385{font-size:54.000000px;}
.fs0_c00385{font-size:60.120000px;}
.fs1_c00385{font-size:72.000000px;}
.y0_c00385{bottom:0.000000px;}
.y6_c00385{bottom:57.360450px;}
.y5_c00385{bottom:78.060450px;}
.y2a_c00385{bottom:171.930450px;}
.y29_c00385{bottom:202.980450px;}
.y28_c00385{bottom:234.030450px;}
.y27_c00385{bottom:265.080450px;}
.y26_c00385{bottom:296.130450px;}
.y25_c00385{bottom:327.180450px;}
.y24_c00385{bottom:358.230450px;}
.y23_c00385{bottom:389.280450px;}
.y22_c00385{bottom:420.330450px;}
.y21_c00385{bottom:451.380450px;}
.y20_c00385{bottom:482.430450px;}
.y1f_c00385{bottom:513.480450px;}
.y1e_c00385{bottom:544.530450px;}
.y1d_c00385{bottom:575.580450px;}
.y1c_c00385{bottom:606.630450px;}
.y1b_c00385{bottom:637.680450px;}
.y1a_c00385{bottom:668.640450px;}
.y19_c00385{bottom:699.690450px;}
.y18_c00385{bottom:727.410450px;}
.y17_c00385{bottom:751.080450px;}
.y16_c00385{bottom:774.750450px;}
.y15_c00385{bottom:798.420450px;}
.y14_c00385{bottom:822.090450px;}
.y13_c00385{bottom:845.760450px;}
.y12_c00385{bottom:869.430600px;}
.y11_c00385{bottom:893.100450px;}
.y10_c00385{bottom:916.680450px;}
.yf_c00385{bottom:940.350450px;}
.ye_c00385{bottom:964.020450px;}
.yd_c00385{bottom:987.690450px;}
.yc_c00385{bottom:1011.360450px;}
.yb_c00385{bottom:1035.030450px;}
.y9_c00385{bottom:1062.210450px;}
.y8_c00385{bottom:1093.260450px;}
.ya_c00385{bottom:1097.490450px;}
.y7_c00385{bottom:1128.630450px;}
.y4_c00385{bottom:1144.380657px;}
.y3_c00385{bottom:1161.660648px;}
.y2_c00385{bottom:1178.850459px;}
.y1_c00385{bottom:1196.130450px;}
.h3_c00385{height:47.513672px;}
.h5_c00385{height:48.410156px;}
.h1_c00385{height:52.898555px;}
.h2_c00385{height:63.175781px;}
.h6_c00385{height:63.351562px;}
.h4_c00385{height:65.003906px;}
.h0_c00385{height:1263.000000px;}
.w1_c00385{width:892.500000px;}
.w0_c00385{width:892.830000px;}
.x0_c00385{left:0.000000px;}
.x4_c00385{left:127.620000px;}
.x5_c00385{left:135.630000px;}
.x6_c00385{left:140.130000px;}
.x7_c00385{left:201.150000px;}
.x1_c00385{left:649.620000px;}
.x3_c00385{left:738.450000px;}
.x2_c00385{left:765.450198px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls21_c00385{letter-spacing:-1.600000pt;}
.ls1b_c00385{letter-spacing:-0.640000pt;}
.ls1c_c00385{letter-spacing:-0.160000pt;}
.ls19_c00385{letter-spacing:-0.158400pt;}
.ls10_c00385{letter-spacing:-0.134400pt;}
.lse_c00385{letter-spacing:-0.110400pt;}
.ls1f_c00385{letter-spacing:-0.102400pt;}
.ls14_c00385{letter-spacing:-0.100800pt;}
.ls17_c00385{letter-spacing:-0.076800pt;}
.ls18_c00385{letter-spacing:-0.072000pt;}
.ls11_c00385{letter-spacing:-0.067200pt;}
.ls1e_c00385{letter-spacing:-0.064000pt;}
.lsf_c00385{letter-spacing:-0.062400pt;}
.ls15_c00385{letter-spacing:-0.057600pt;}
.ls12_c00385{letter-spacing:-0.048000pt;}
.lsa_c00385{letter-spacing:-0.042752pt;}
.ls16_c00385{letter-spacing:-0.033600pt;}
.ls20_c00385{letter-spacing:-0.032000pt;}
.lsc_c00385{letter-spacing:-0.025600pt;}
.ls1d_c00385{letter-spacing:-0.019200pt;}
.ls1a_c00385{letter-spacing:-0.012800pt;}
.lsd_c00385{letter-spacing:-0.006400pt;}
.lsb_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:0.004800pt;}
.ls5_c00385{letter-spacing:0.006400pt;}
.ls2_c00385{letter-spacing:0.012800pt;}
.ls1_c00385{letter-spacing:0.019200pt;}
.ls3_c00385{letter-spacing:0.025600pt;}
.ls7_c00385{letter-spacing:0.032000pt;}
.ls6_c00385{letter-spacing:0.038400pt;}
.ls8_c00385{letter-spacing:0.051200pt;}
.ls4_c00385{letter-spacing:0.064000pt;}
.ls9_c00385{letter-spacing:0.083200pt;}
.ls13_c00385{letter-spacing:0.441600pt;}
.ws0_c00385{word-spacing:-15.968000pt;}
.ws1_c00385{word-spacing:-15.840000pt;}
.ws7_c00385{word-spacing:-1.619200pt;}
.ws5_c00385{word-spacing:-0.678400pt;}
.ws3_c00385{word-spacing:0.000000pt;}
.ws2_c00385{word-spacing:0.122912pt;}
.ws4_c00385{word-spacing:0.153600pt;}
.ws6_c00385{word-spacing:3.840000pt;}
._16_c00385{margin-left:-3.193600pt;}
._6_c00385{margin-left:-1.339200pt;}
._1_c00385{width:1.080000pt;}
._13_c00385{width:2.092800pt;}
._0_c00385{width:3.686400pt;}
._14_c00385{width:5.920000pt;}
._15_c00385{width:6.956800pt;}
._17_c00385{width:7.948800pt;}
._12_c00385{width:14.060800pt;}
._2_c00385{width:203.688000pt;}
._a_c00385{width:493.352000pt;}
._d_c00385{width:939.080000pt;}
._9_c00385{width:968.580800pt;}
._e_c00385{width:1078.040000pt;}
._c_c00385{width:1107.396800pt;}
._10_c00385{width:1129.232000pt;}
._b_c00385{width:1131.041600pt;}
._8_c00385{width:1144.995200pt;}
._3_c00385{width:1182.665600pt;}
._4_c00385{width:1197.896000pt;}
._5_c00385{width:1206.416000pt;}
._f_c00385{width:1435.068800pt;}
._11_c00385{width:1477.740800pt;}
._7_c00385{width:1503.972800pt;}
.fs2_c00385{font-size:48.000000pt;}
.fs0_c00385{font-size:53.440000pt;}
.fs1_c00385{font-size:64.000000pt;}
.y0_c00385{bottom:0.000000pt;}
.y6_c00385{bottom:50.987067pt;}
.y5_c00385{bottom:69.387067pt;}
.y2a_c00385{bottom:152.827067pt;}
.y29_c00385{bottom:180.427067pt;}
.y28_c00385{bottom:208.027067pt;}
.y27_c00385{bottom:235.627067pt;}
.y26_c00385{bottom:263.227067pt;}
.y25_c00385{bottom:290.827067pt;}
.y24_c00385{bottom:318.427067pt;}
.y23_c00385{bottom:346.027067pt;}
.y22_c00385{bottom:373.627067pt;}
.y21_c00385{bottom:401.227067pt;}
.y20_c00385{bottom:428.827067pt;}
.y1f_c00385{bottom:456.427067pt;}
.y1e_c00385{bottom:484.027067pt;}
.y1d_c00385{bottom:511.627067pt;}
.y1c_c00385{bottom:539.227067pt;}
.y1b_c00385{bottom:566.827067pt;}
.y1a_c00385{bottom:594.347067pt;}
.y19_c00385{bottom:621.947067pt;}
.y18_c00385{bottom:646.587067pt;}
.y17_c00385{bottom:667.627067pt;}
.y16_c00385{bottom:688.667067pt;}
.y15_c00385{bottom:709.707067pt;}
.y14_c00385{bottom:730.747067pt;}
.y13_c00385{bottom:751.787067pt;}
.y12_c00385{bottom:772.827200pt;}
.y11_c00385{bottom:793.867067pt;}
.y10_c00385{bottom:814.827067pt;}
.yf_c00385{bottom:835.867067pt;}
.ye_c00385{bottom:856.907067pt;}
.yd_c00385{bottom:877.947067pt;}
.yc_c00385{bottom:898.987067pt;}
.yb_c00385{bottom:920.027067pt;}
.y9_c00385{bottom:944.187067pt;}
.y8_c00385{bottom:971.787067pt;}
.ya_c00385{bottom:975.547067pt;}
.y7_c00385{bottom:1003.227067pt;}
.y4_c00385{bottom:1017.227251pt;}
.y3_c00385{bottom:1032.587243pt;}
.y2_c00385{bottom:1047.867075pt;}
.y1_c00385{bottom:1063.227067pt;}
.h3_c00385{height:42.234375pt;}
.h5_c00385{height:43.031250pt;}
.h1_c00385{height:47.020937pt;}
.h2_c00385{height:56.156250pt;}
.h6_c00385{height:56.312500pt;}
.h4_c00385{height:57.781250pt;}
.h0_c00385{height:1122.666667pt;}
.w1_c00385{width:793.333333pt;}
.w0_c00385{width:793.626667pt;}
.x0_c00385{left:0.000000pt;}
.x4_c00385{left:113.440000pt;}
.x5_c00385{left:120.560000pt;}
.x6_c00385{left:124.560000pt;}
.x7_c00385{left:178.800000pt;}
.x1_c00385{left:577.440000pt;}
.x3_c00385{left:656.400000pt;}
.x2_c00385{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8ddf5f77123083c4fd9f785e.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.095703;font-style:normal;font-weight:normal;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_31f5cfdc783cd511f14123cd.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:1.093262;font-style: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;}
.ls14_c00386{letter-spacing:-0.720000px;}
.lse_c00386{letter-spacing:-0.102204px;}
.ls13_c00386{letter-spacing:-0.093600px;}
.ls17_c00386{letter-spacing:-0.036000px;}
.ls12_c00386{letter-spacing:-0.028800px;}
.ls15_c00386{letter-spacing:-0.021600px;}
.ls11_c00386{letter-spacing:-0.014400px;}
.ls10_c00386{letter-spacing:-0.007200px;}
.lsf_c00386{letter-spacing:0.000000px;}
.ls5_c00386{letter-spacing:0.007200px;}
.ls6_c00386{letter-spacing:0.014400px;}
.lsd_c00386{letter-spacing:0.021600px;}
.lsa_c00386{letter-spacing:0.028800px;}
.ls3_c00386{letter-spacing:0.036000px;}
.ls1_c00386{letter-spacing:0.043200px;}
.ls7_c00386{letter-spacing:0.050400px;}
.lsb_c00386{letter-spacing:0.064800px;}
.ls4_c00386{letter-spacing:0.072000px;}
.lsc_c00386{letter-spacing:0.079200px;}
.ls9_c00386{letter-spacing:0.086400px;}
.ls0_c00386{letter-spacing:0.093600px;}
.ls2_c00386{letter-spacing:0.100800px;}
.ls8_c00386{letter-spacing:0.108000px;}
.ls16_c00386{letter-spacing:8.280000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00386{word-spacing:-18.014400px;}
.ws2_c00386{word-spacing:-18.000000px;}
.ws0_c00386{word-spacing:-17.906400px;}
.ws5_c00386{word-spacing:-3.967200px;}
.ws4_c00386{word-spacing:0.000000px;}
.ws3_c00386{word-spacing:0.192384px;}
._11_c00386{margin-left:-9.345600px;}
._10_c00386{margin-left:-8.229600px;}
._8_c00386{margin-left:-5.140800px;}
._7_c00386{margin-left:-4.024800px;}
._4_c00386{margin-left:-2.332800px;}
._2_c00386{margin-left:-1.245600px;}
._0_c00386{width:1.034064px;}
._3_c00386{width:2.088000px;}
._b_c00386{width:3.139200px;}
._c_c00386{width:4.392000px;}
._1_c00386{width:6.084000px;}
._e_c00386{width:7.617600px;}
._f_c00386{width:8.827200px;}
._d_c00386{width:10.778400px;}
._6_c00386{width:13.982400px;}
._5_c00386{width:15.076800px;}
._12_c00386{width:16.776000px;}
._9_c00386{width:19.072800px;}
._a_c00386{width:20.304000px;}
.fc1_c00386{color:rgb(0,0,0);}
.fc0_c00386{color:rgb(32,31,30);}
.fs0_c00386{font-size:60.120000px;}
.fs1_c00386{font-size:72.000000px;}
.y0_c00386{bottom:0.000000px;}
.y5_c00386{bottom:57.360450px;}
.y4_c00386{bottom:78.060450px;}
.y26_c00386{bottom:117.930450px;}
.y25_c00386{bottom:148.980450px;}
.y24_c00386{bottom:180.030450px;}
.y23_c00386{bottom:211.080450px;}
.y22_c00386{bottom:242.130450px;}
.y21_c00386{bottom:273.090450px;}
.y20_c00386{bottom:304.140450px;}
.y1f_c00386{bottom:335.190450px;}
.y1e_c00386{bottom:366.240450px;}
.y1d_c00386{bottom:397.290450px;}
.y1c_c00386{bottom:428.340450px;}
.y1b_c00386{bottom:459.390450px;}
.y1a_c00386{bottom:490.440450px;}
.y19_c00386{bottom:521.490450px;}
.y18_c00386{bottom:552.540450px;}
.y17_c00386{bottom:583.590450px;}
.y16_c00386{bottom:614.640450px;}
.y15_c00386{bottom:645.690450px;}
.y14_c00386{bottom:676.740450px;}
.y13_c00386{bottom:707.790450px;}
.y12_c00386{bottom:738.840450px;}
.y11_c00386{bottom:769.890450px;}
.y10_c00386{bottom:800.940450px;}
.yf_c00386{bottom:831.990450px;}
.ye_c00386{bottom:863.040450px;}
.yd_c00386{bottom:894.090450px;}
.yc_c00386{bottom:925.140450px;}
.yb_c00386{bottom:956.190450px;}
.ya_c00386{bottom:987.240450px;}
.y9_c00386{bottom:1018.290450px;}
.y8_c00386{bottom:1049.340450px;}
.y7_c00386{bottom:1080.390450px;}
.y6_c00386{bottom:1111.440450px;}
.y3_c00386{bottom:1132.140450px;}
.y2_c00386{bottom:1165.441023px;}
.y1_c00386{bottom:1196.040600px;}
.h1_c00386{height:52.898555px;}
.h2_c00386{height:63.175781px;}
.h3_c00386{height:63.351562px;}
.h0_c00386{height:1263.000000px;}
.w1_c00386{width:892.500000px;}
.w0_c00386{width:892.830000px;}
.x0_c00386{left:0.000000px;}
.x1_c00386{left:127.620000px;}
.x2_c00386{left:738.450000px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls14_c00386{letter-spacing:-0.640000pt;}
.lse_c00386{letter-spacing:-0.090848pt;}
.ls13_c00386{letter-spacing:-0.083200pt;}
.ls17_c00386{letter-spacing:-0.032000pt;}
.ls12_c00386{letter-spacing:-0.025600pt;}
.ls15_c00386{letter-spacing:-0.019200pt;}
.ls11_c00386{letter-spacing:-0.012800pt;}
.ls10_c00386{letter-spacing:-0.006400pt;}
.lsf_c00386{letter-spacing:0.000000pt;}
.ls5_c00386{letter-spacing:0.006400pt;}
.ls6_c00386{letter-spacing:0.012800pt;}
.lsd_c00386{letter-spacing:0.019200pt;}
.lsa_c00386{letter-spacing:0.025600pt;}
.ls3_c00386{letter-spacing:0.032000pt;}
.ls1_c00386{letter-spacing:0.038400pt;}
.ls7_c00386{letter-spacing:0.044800pt;}
.lsb_c00386{letter-spacing:0.057600pt;}
.ls4_c00386{letter-spacing:0.064000pt;}
.lsc_c00386{letter-spacing:0.070400pt;}
.ls9_c00386{letter-spacing:0.076800pt;}
.ls0_c00386{letter-spacing:0.083200pt;}
.ls2_c00386{letter-spacing:0.089600pt;}
.ls8_c00386{letter-spacing:0.096000pt;}
.ls16_c00386{letter-spacing:7.360000pt;}
.ws1_c00386{word-spacing:-16.012800pt;}
.ws2_c00386{word-spacing:-16.000000pt;}
.ws0_c00386{word-spacing:-15.916800pt;}
.ws5_c00386{word-spacing:-3.526400pt;}
.ws4_c00386{word-spacing:0.000000pt;}
.ws3_c00386{word-spacing:0.171008pt;}
._11_c00386{margin-left:-8.307200pt;}
._10_c00386{margin-left:-7.315200pt;}
._8_c00386{margin-left:-4.569600pt;}
._7_c00386{margin-left:-3.577600pt;}
._4_c00386{margin-left:-2.073600pt;}
._2_c00386{margin-left:-1.107200pt;}
._0_c00386{width:0.919168pt;}
._3_c00386{width:1.856000pt;}
._b_c00386{width:2.790400pt;}
._c_c00386{width:3.904000pt;}
._1_c00386{width:5.408000pt;}
._e_c00386{width:6.771200pt;}
._f_c00386{width:7.846400pt;}
._d_c00386{width:9.580800pt;}
._6_c00386{width:12.428800pt;}
._5_c00386{width:13.401600pt;}
._12_c00386{width:14.912000pt;}
._9_c00386{width:16.953600pt;}
._a_c00386{width:18.048000pt;}
.fs0_c00386{font-size:53.440000pt;}
.fs1_c00386{font-size:64.000000pt;}
.y0_c00386{bottom:0.000000pt;}
.y5_c00386{bottom:50.987067pt;}
.y4_c00386{bottom:69.387067pt;}
.y26_c00386{bottom:104.827067pt;}
.y25_c00386{bottom:132.427067pt;}
.y24_c00386{bottom:160.027067pt;}
.y23_c00386{bottom:187.627067pt;}
.y22_c00386{bottom:215.227067pt;}
.y21_c00386{bottom:242.747067pt;}
.y20_c00386{bottom:270.347067pt;}
.y1f_c00386{bottom:297.947067pt;}
.y1e_c00386{bottom:325.547067pt;}
.y1d_c00386{bottom:353.147067pt;}
.y1c_c00386{bottom:380.747067pt;}
.y1b_c00386{bottom:408.347067pt;}
.y1a_c00386{bottom:435.947067pt;}
.y19_c00386{bottom:463.547067pt;}
.y18_c00386{bottom:491.147067pt;}
.y17_c00386{bottom:518.747067pt;}
.y16_c00386{bottom:546.347067pt;}
.y15_c00386{bottom:573.947067pt;}
.y14_c00386{bottom:601.547067pt;}
.y13_c00386{bottom:629.147067pt;}
.y12_c00386{bottom:656.747067pt;}
.y11_c00386{bottom:684.347067pt;}
.y10_c00386{bottom:711.947067pt;}
.yf_c00386{bottom:739.547067pt;}
.ye_c00386{bottom:767.147067pt;}
.yd_c00386{bottom:794.747067pt;}
.yc_c00386{bottom:822.347067pt;}
.yb_c00386{bottom:849.947067pt;}
.ya_c00386{bottom:877.547067pt;}
.y9_c00386{bottom:905.147067pt;}
.y8_c00386{bottom:932.747067pt;}
.y7_c00386{bottom:960.347067pt;}
.y6_c00386{bottom:987.947067pt;}
.y3_c00386{bottom:1006.347067pt;}
.y2_c00386{bottom:1035.947576pt;}
.y1_c00386{bottom:1063.147200pt;}
.h1_c00386{height:47.020937pt;}
.h2_c00386{height:56.156250pt;}
.h3_c00386{height:56.312500pt;}
.h0_c00386{height:1122.666667pt;}
.w1_c00386{width:793.333333pt;}
.w0_c00386{width:793.626667pt;}
.x0_c00386{left:0.000000pt;}
.x1_c00386{left:113.440000pt;}
.x2_c00386{left:656.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_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_6af2d08247e8a493088f1119.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.095703;font-style:normal;font-weight:normal;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_83f1c98ee14e019a4201a3e8.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:1.104004;font-style: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;}
.ls17_c00387{letter-spacing:-0.324000px;}
.ls16_c00387{letter-spacing:-0.079200px;}
.ls12_c00387{letter-spacing:-0.064800px;}
.ls15_c00387{letter-spacing:-0.050400px;}
.lsd_c00387{letter-spacing:-0.048096px;}
.ls14_c00387{letter-spacing:-0.036000px;}
.ls10_c00387{letter-spacing:-0.028800px;}
.ls11_c00387{letter-spacing:-0.014400px;}
.lsf_c00387{letter-spacing:-0.007200px;}
.lse_c00387{letter-spacing:0.000000px;}
.ls6_c00387{letter-spacing:0.007200px;}
.ls0_c00387{letter-spacing:0.014400px;}
.ls2_c00387{letter-spacing:0.021600px;}
.ls7_c00387{letter-spacing:0.028800px;}
.ls4_c00387{letter-spacing:0.036000px;}
.ls9_c00387{letter-spacing:0.043200px;}
.lsc_c00387{letter-spacing:0.050400px;}
.ls5_c00387{letter-spacing:0.057600px;}
.ls8_c00387{letter-spacing:0.064800px;}
.ls1_c00387{letter-spacing:0.079200px;}
.lsb_c00387{letter-spacing:0.086400px;}
.ls3_c00387{letter-spacing:0.108000px;}
.lsa_c00387{letter-spacing:0.151200px;}
.ls13_c00387{letter-spacing:6.840000px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00387{word-spacing:-18.064800px;}
.ws1_c00387{word-spacing:-18.043200px;}
.ws2_c00387{word-spacing:-18.000000px;}
.ws4_c00387{word-spacing:0.000000px;}
.ws3_c00387{word-spacing:0.138276px;}
.ws6_c00387{word-spacing:3.549600px;}
.ws5_c00387{word-spacing:4.982400px;}
._a_c00387{margin-left:-6.955200px;}
._e_c00387{margin-left:-3.844800px;}
._8_c00387{margin-left:-2.188800px;}
._6_c00387{margin-left:-1.015200px;}
._7_c00387{width:1.072800px;}
._f_c00387{width:2.498400px;}
._5_c00387{width:3.960000px;}
._4_c00387{width:5.004000px;}
._9_c00387{width:6.782400px;}
._10_c00387{width:8.229600px;}
._0_c00387{width:11.995200px;}
._1_c00387{width:13.219200px;}
._3_c00387{width:14.256000px;}
._2_c00387{width:15.256800px;}
._b_c00387{width:17.035200px;}
._c_c00387{width:22.953600px;}
._d_c00387{width:24.120000px;}
.fc1_c00387{color:rgb(255,0,0);}
.fc0_c00387{color:rgb(0,0,0);}
.fs0_c00387{font-size:60.120000px;}
.fs1_c00387{font-size:72.000000px;}
.fs2_c00387{font-size:96.120000px;}
.y0_c00387{bottom:0.000000px;}
.y6_c00387{bottom:57.360450px;}
.y5_c00387{bottom:78.060450px;}
.y25_c00387{bottom:176.791566px;}
.y24_c00387{bottom:218.190450px;}
.y23_c00387{bottom:255.000450px;}
.y22_c00387{bottom:286.050450px;}
.y21_c00387{bottom:317.100450px;}
.y20_c00387{bottom:348.150450px;}
.y1f_c00387{bottom:379.200450px;}
.y1e_c00387{bottom:410.250450px;}
.y1d_c00387{bottom:441.300450px;}
.y1c_c00387{bottom:472.350450px;}
.y1b_c00387{bottom:503.400450px;}
.y1a_c00387{bottom:534.450450px;}
.y19_c00387{bottom:565.500450px;}
.y18_c00387{bottom:596.550450px;}
.y17_c00387{bottom:627.600450px;}
.y16_c00387{bottom:658.650450px;}
.y15_c00387{bottom:689.700450px;}
.y14_c00387{bottom:720.750450px;}
.y13_c00387{bottom:751.800450px;}
.y12_c00387{bottom:782.850450px;}
.y11_c00387{bottom:813.900450px;}
.y10_c00387{bottom:844.950450px;}
.yf_c00387{bottom:876.000450px;}
.ye_c00387{bottom:907.050450px;}
.yd_c00387{bottom:938.100450px;}
.yc_c00387{bottom:969.150450px;}
.yb_c00387{bottom:1000.200450px;}
.ya_c00387{bottom:1031.160450px;}
.y9_c00387{bottom:1062.210450px;}
.y8_c00387{bottom:1093.260450px;}
.y7_c00387{bottom:1124.310450px;}
.y4_c00387{bottom:1144.380657px;}
.y3_c00387{bottom:1161.660648px;}
.y2_c00387{bottom:1178.850459px;}
.y1_c00387{bottom:1196.130450px;}
.h1_c00387{height:52.898555px;}
.h2_c00387{height:63.175781px;}
.h3_c00387{height:63.351562px;}
.h4_c00387{height:85.372207px;}
.h0_c00387{height:1263.000000px;}
.w1_c00387{width:892.500000px;}
.w0_c00387{width:892.830000px;}
.x0_c00387{left:0.000000px;}
.x4_c00387{left:127.620000px;}
.x1_c00387{left:649.620000px;}
.x3_c00387{left:738.450000px;}
.x2_c00387{left:765.450198px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls17_c00387{letter-spacing:-0.288000pt;}
.ls16_c00387{letter-spacing:-0.070400pt;}
.ls12_c00387{letter-spacing:-0.057600pt;}
.ls15_c00387{letter-spacing:-0.044800pt;}
.lsd_c00387{letter-spacing:-0.042752pt;}
.ls14_c00387{letter-spacing:-0.032000pt;}
.ls10_c00387{letter-spacing:-0.025600pt;}
.ls11_c00387{letter-spacing:-0.012800pt;}
.lsf_c00387{letter-spacing:-0.006400pt;}
.lse_c00387{letter-spacing:0.000000pt;}
.ls6_c00387{letter-spacing:0.006400pt;}
.ls0_c00387{letter-spacing:0.012800pt;}
.ls2_c00387{letter-spacing:0.019200pt;}
.ls7_c00387{letter-spacing:0.025600pt;}
.ls4_c00387{letter-spacing:0.032000pt;}
.ls9_c00387{letter-spacing:0.038400pt;}
.lsc_c00387{letter-spacing:0.044800pt;}
.ls5_c00387{letter-spacing:0.051200pt;}
.ls8_c00387{letter-spacing:0.057600pt;}
.ls1_c00387{letter-spacing:0.070400pt;}
.lsb_c00387{letter-spacing:0.076800pt;}
.ls3_c00387{letter-spacing:0.096000pt;}
.lsa_c00387{letter-spacing:0.134400pt;}
.ls13_c00387{letter-spacing:6.080000pt;}
.ws0_c00387{word-spacing:-16.057600pt;}
.ws1_c00387{word-spacing:-16.038400pt;}
.ws2_c00387{word-spacing:-16.000000pt;}
.ws4_c00387{word-spacing:0.000000pt;}
.ws3_c00387{word-spacing:0.122912pt;}
.ws6_c00387{word-spacing:3.155200pt;}
.ws5_c00387{word-spacing:4.428800pt;}
._a_c00387{margin-left:-6.182400pt;}
._e_c00387{margin-left:-3.417600pt;}
._8_c00387{margin-left:-1.945600pt;}
._6_c00387{margin-left:-0.902400pt;}
._7_c00387{width:0.953600pt;}
._f_c00387{width:2.220800pt;}
._5_c00387{width:3.520000pt;}
._4_c00387{width:4.448000pt;}
._9_c00387{width:6.028800pt;}
._10_c00387{width:7.315200pt;}
._0_c00387{width:10.662400pt;}
._1_c00387{width:11.750400pt;}
._3_c00387{width:12.672000pt;}
._2_c00387{width:13.561600pt;}
._b_c00387{width:15.142400pt;}
._c_c00387{width:20.403200pt;}
._d_c00387{width:21.440000pt;}
.fs0_c00387{font-size:53.440000pt;}
.fs1_c00387{font-size:64.000000pt;}
.fs2_c00387{font-size:85.440000pt;}
.y0_c00387{bottom:0.000000pt;}
.y6_c00387{bottom:50.987067pt;}
.y5_c00387{bottom:69.387067pt;}
.y25_c00387{bottom:157.148059pt;}
.y24_c00387{bottom:193.947067pt;}
.y23_c00387{bottom:226.667067pt;}
.y22_c00387{bottom:254.267067pt;}
.y21_c00387{bottom:281.867067pt;}
.y20_c00387{bottom:309.467067pt;}
.y1f_c00387{bottom:337.067067pt;}
.y1e_c00387{bottom:364.667067pt;}
.y1d_c00387{bottom:392.267067pt;}
.y1c_c00387{bottom:419.867067pt;}
.y1b_c00387{bottom:447.467067pt;}
.y1a_c00387{bottom:475.067067pt;}
.y19_c00387{bottom:502.667067pt;}
.y18_c00387{bottom:530.267067pt;}
.y17_c00387{bottom:557.867067pt;}
.y16_c00387{bottom:585.467067pt;}
.y15_c00387{bottom:613.067067pt;}
.y14_c00387{bottom:640.667067pt;}
.y13_c00387{bottom:668.267067pt;}
.y12_c00387{bottom:695.867067pt;}
.y11_c00387{bottom:723.467067pt;}
.y10_c00387{bottom:751.067067pt;}
.yf_c00387{bottom:778.667067pt;}
.ye_c00387{bottom:806.267067pt;}
.yd_c00387{bottom:833.867067pt;}
.yc_c00387{bottom:861.467067pt;}
.yb_c00387{bottom:889.067067pt;}
.ya_c00387{bottom:916.587067pt;}
.y9_c00387{bottom:944.187067pt;}
.y8_c00387{bottom:971.787067pt;}
.y7_c00387{bottom:999.387067pt;}
.y4_c00387{bottom:1017.227251pt;}
.y3_c00387{bottom:1032.587243pt;}
.y2_c00387{bottom:1047.867075pt;}
.y1_c00387{bottom:1063.227067pt;}
.h1_c00387{height:47.020937pt;}
.h2_c00387{height:56.156250pt;}
.h3_c00387{height:56.312500pt;}
.h4_c00387{height:75.886406pt;}
.h0_c00387{height:1122.666667pt;}
.w1_c00387{width:793.333333pt;}
.w0_c00387{width:793.626667pt;}
.x0_c00387{left:0.000000pt;}
.x4_c00387{left:113.440000pt;}
.x1_c00387{left:577.440000pt;}
.x3_c00387{left:656.400000pt;}
.x2_c00387{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c7c05d68998b7d9097a0358.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.095703;font-style:normal;font-weight:normal;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_02dec06d62173045737672b9.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:1.093262;font-style:normal;font-weight:normal;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_d43a62d911491e6cf4cc778c.woff2')format("woff");}.ff3_c00388{font-family:ff3_c00388;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00388;src:url('chunks/assets/font_87b3b1ba0d98ecc4d58fdfa9.woff2')format("woff");}.ff4_c00388{font-family:ff4_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:ff5_c00388;src:url('chunks/assets/font_17fb6094cdc23e42bdfcad0f.woff2')format("woff");}.ff5_c00388{font-family:ff5_c00388;line-height:1.113281;font-style: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;}
.ls13_c00388{letter-spacing:-0.151200px;}
.lse_c00388{letter-spacing:-0.102204px;}
.ls14_c00388{letter-spacing:-0.097200px;}
.ls10_c00388{letter-spacing:-0.091800px;}
.ls15_c00388{letter-spacing:-0.075600px;}
.ls12_c00388{letter-spacing:-0.070200px;}
.ls17_c00388{letter-spacing:-0.050400px;}
.ls1a_c00388{letter-spacing:-0.028800px;}
.ls19_c00388{letter-spacing:-0.014400px;}
.ls11_c00388{letter-spacing:-0.010800px;}
.ls18_c00388{letter-spacing:-0.007200px;}
.lsf_c00388{letter-spacing:0.000000px;}
.ls8_c00388{letter-spacing:0.014400px;}
.ls3_c00388{letter-spacing:0.021600px;}
.ls1_c00388{letter-spacing:0.027000px;}
.lsc_c00388{letter-spacing:0.028800px;}
.ls9_c00388{letter-spacing:0.036000px;}
.ls2_c00388{letter-spacing:0.037800px;}
.ls4_c00388{letter-spacing:0.043200px;}
.ls0_c00388{letter-spacing:0.050328px;}
.ls6_c00388{letter-spacing:0.057600px;}
.ls5_c00388{letter-spacing:0.064800px;}
.lsd_c00388{letter-spacing:0.072000px;}
.ls7_c00388{letter-spacing:0.079200px;}
.lsa_c00388{letter-spacing:0.086400px;}
.ls16_c00388{letter-spacing:0.097200px;}
.lsb_c00388{letter-spacing:0.100800px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00388{word-spacing:-1.130400px;}
.ws1_c00388{word-spacing:0.000000px;}
.ws2_c00388{word-spacing:0.151200px;}
.ws0_c00388{word-spacing:0.192384px;}
.ws3_c00388{word-spacing:6.055200px;}
._12_c00388{margin-left:-3.470400px;}
._c_c00388{margin-left:-2.401200px;}
._1_c00388{margin-left:-1.177200px;}
._0_c00388{width:1.034064px;}
._13_c00388{width:4.298400px;}
._f_c00388{width:6.091200px;}
._11_c00388{width:7.790400px;}
._2_c00388{width:12.025800px;}
._e_c00388{width:14.331600px;}
._d_c00388{width:15.465600px;}
._10_c00388{width:20.124000px;}
._7_c00388{width:59.621400px;}
._3_c00388{width:116.618400px;}
._6_c00388{width:180.905400px;}
._5_c00388{width:248.313600px;}
._8_c00388{width:278.186400px;}
._9_c00388{width:318.308400px;}
._4_c00388{width:379.452600px;}
._a_c00388{width:388.540800px;}
._b_c00388{width:594.118800px;}
.fc3_c00388{color:rgb(38,74,96);}
.fc2_c00388{color:rgb(68,84,106);}
.fc1_c00388{color:rgb(0,0,0);}
.fc0_c00388{color:rgb(32,31,30);}
.fs3_c00388{font-size:54.000000px;}
.fs0_c00388{font-size:60.120000px;}
.fs1_c00388{font-size:72.000000px;}
.fs2_c00388{font-size:83.880000px;}
.y0_c00388{bottom:0.000000px;}
.y5_c00388{bottom:57.360450px;}
.y4_c00388{bottom:78.060450px;}
.y27_c00388{bottom:116.580450px;}
.y26_c00388{bottom:147.630450px;}
.y25_c00388{bottom:178.680450px;}
.y24_c00388{bottom:221.700450px;}
.y23_c00388{bottom:252.840450px;}
.y22_c00388{bottom:283.890450px;}
.y21_c00388{bottom:326.820450px;}
.y20_c00388{bottom:357.960450px;}
.y1f_c00388{bottom:389.010450px;}
.y1e_c00388{bottom:420.060450px;}
.y1d_c00388{bottom:451.110450px;}
.y1c_c00388{bottom:494.040450px;}
.y1b_c00388{bottom:525.180450px;}
.y1a_c00388{bottom:556.230450px;}
.y19_c00388{bottom:587.280450px;}
.y18_c00388{bottom:618.330450px;}
.y17_c00388{bottom:649.380450px;}
.y16_c00388{bottom:692.310450px;}
.y15_c00388{bottom:722.820450px;}
.y14_c00388{bottom:749.100450px;}
.y13_c00388{bottom:775.290600px;}
.y11_c00388{bottom:798.960450px;}
.y10_c00388{bottom:822.270450px;}
.y12_c00388{bottom:845.490450px;}
.yf_c00388{bottom:845.580450px;}
.ye_c00388{bottom:872.850450px;}
.yd_c00388{bottom:899.130450px;}
.yc_c00388{bottom:930.720450px;}
.yb_c00388{bottom:953.940450px;}
.ya_c00388{bottom:984.810450px;}
.y9_c00388{bottom:1014.690450px;}
.y8_c00388{bottom:1037.820450px;}
.y7_c00388{bottom:1075.080450px;}
.y6_c00388{bottom:1108.380450px;}
.y3_c00388{bottom:1132.140450px;}
.y2_c00388{bottom:1165.441023px;}
.y1_c00388{bottom:1196.040600px;}
.h4_c00388{height:47.513672px;}
.h5_c00388{height:48.410156px;}
.h6_c00388{height:48.752930px;}
.h1_c00388{height:52.898555px;}
.h2_c00388{height:63.175781px;}
.h7_c00388{height:63.351562px;}
.h3_c00388{height:74.500840px;}
.h0_c00388{height:1263.000000px;}
.w1_c00388{width:892.500000px;}
.w0_c00388{width:892.830000px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:127.620000px;}
.x3_c00388{left:283.860000px;}
.x4_c00388{left:468.540000px;}
.x2_c00388{left:738.450000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls13_c00388{letter-spacing:-0.134400pt;}
.lse_c00388{letter-spacing:-0.090848pt;}
.ls14_c00388{letter-spacing:-0.086400pt;}
.ls10_c00388{letter-spacing:-0.081600pt;}
.ls15_c00388{letter-spacing:-0.067200pt;}
.ls12_c00388{letter-spacing:-0.062400pt;}
.ls17_c00388{letter-spacing:-0.044800pt;}
.ls1a_c00388{letter-spacing:-0.025600pt;}
.ls19_c00388{letter-spacing:-0.012800pt;}
.ls11_c00388{letter-spacing:-0.009600pt;}
.ls18_c00388{letter-spacing:-0.006400pt;}
.lsf_c00388{letter-spacing:0.000000pt;}
.ls8_c00388{letter-spacing:0.012800pt;}
.ls3_c00388{letter-spacing:0.019200pt;}
.ls1_c00388{letter-spacing:0.024000pt;}
.lsc_c00388{letter-spacing:0.025600pt;}
.ls9_c00388{letter-spacing:0.032000pt;}
.ls2_c00388{letter-spacing:0.033600pt;}
.ls4_c00388{letter-spacing:0.038400pt;}
.ls0_c00388{letter-spacing:0.044736pt;}
.ls6_c00388{letter-spacing:0.051200pt;}
.ls5_c00388{letter-spacing:0.057600pt;}
.lsd_c00388{letter-spacing:0.064000pt;}
.ls7_c00388{letter-spacing:0.070400pt;}
.lsa_c00388{letter-spacing:0.076800pt;}
.ls16_c00388{letter-spacing:0.086400pt;}
.lsb_c00388{letter-spacing:0.089600pt;}
.ws4_c00388{word-spacing:-1.004800pt;}
.ws1_c00388{word-spacing:0.000000pt;}
.ws2_c00388{word-spacing:0.134400pt;}
.ws0_c00388{word-spacing:0.171008pt;}
.ws3_c00388{word-spacing:5.382400pt;}
._12_c00388{margin-left:-3.084800pt;}
._c_c00388{margin-left:-2.134400pt;}
._1_c00388{margin-left:-1.046400pt;}
._0_c00388{width:0.919168pt;}
._13_c00388{width:3.820800pt;}
._f_c00388{width:5.414400pt;}
._11_c00388{width:6.924800pt;}
._2_c00388{width:10.689600pt;}
._e_c00388{width:12.739200pt;}
._d_c00388{width:13.747200pt;}
._10_c00388{width:17.888000pt;}
._7_c00388{width:52.996800pt;}
._3_c00388{width:103.660800pt;}
._6_c00388{width:160.804800pt;}
._5_c00388{width:220.723200pt;}
._8_c00388{width:247.276800pt;}
._9_c00388{width:282.940800pt;}
._4_c00388{width:337.291200pt;}
._a_c00388{width:345.369600pt;}
._b_c00388{width:528.105600pt;}
.fs3_c00388{font-size:48.000000pt;}
.fs0_c00388{font-size:53.440000pt;}
.fs1_c00388{font-size:64.000000pt;}
.fs2_c00388{font-size:74.560000pt;}
.y0_c00388{bottom:0.000000pt;}
.y5_c00388{bottom:50.987067pt;}
.y4_c00388{bottom:69.387067pt;}
.y27_c00388{bottom:103.627067pt;}
.y26_c00388{bottom:131.227067pt;}
.y25_c00388{bottom:158.827067pt;}
.y24_c00388{bottom:197.067067pt;}
.y23_c00388{bottom:224.747067pt;}
.y22_c00388{bottom:252.347067pt;}
.y21_c00388{bottom:290.507067pt;}
.y20_c00388{bottom:318.187067pt;}
.y1f_c00388{bottom:345.787067pt;}
.y1e_c00388{bottom:373.387067pt;}
.y1d_c00388{bottom:400.987067pt;}
.y1c_c00388{bottom:439.147067pt;}
.y1b_c00388{bottom:466.827067pt;}
.y1a_c00388{bottom:494.427067pt;}
.y19_c00388{bottom:522.027067pt;}
.y18_c00388{bottom:549.627067pt;}
.y17_c00388{bottom:577.227067pt;}
.y16_c00388{bottom:615.387067pt;}
.y15_c00388{bottom:642.507067pt;}
.y14_c00388{bottom:665.867067pt;}
.y13_c00388{bottom:689.147200pt;}
.y11_c00388{bottom:710.187067pt;}
.y10_c00388{bottom:730.907067pt;}
.y12_c00388{bottom:751.547067pt;}
.yf_c00388{bottom:751.627067pt;}
.ye_c00388{bottom:775.867067pt;}
.yd_c00388{bottom:799.227067pt;}
.yc_c00388{bottom:827.307067pt;}
.yb_c00388{bottom:847.947067pt;}
.ya_c00388{bottom:875.387067pt;}
.y9_c00388{bottom:901.947067pt;}
.y8_c00388{bottom:922.507067pt;}
.y7_c00388{bottom:955.627067pt;}
.y6_c00388{bottom:985.227067pt;}
.y3_c00388{bottom:1006.347067pt;}
.y2_c00388{bottom:1035.947576pt;}
.y1_c00388{bottom:1063.147200pt;}
.h4_c00388{height:42.234375pt;}
.h5_c00388{height:43.031250pt;}
.h6_c00388{height:43.335938pt;}
.h1_c00388{height:47.020937pt;}
.h2_c00388{height:56.156250pt;}
.h7_c00388{height:56.312500pt;}
.h3_c00388{height:66.222969pt;}
.h0_c00388{height:1122.666667pt;}
.w1_c00388{width:793.333333pt;}
.w0_c00388{width:793.626667pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:113.440000pt;}
.x3_c00388{left:252.320000pt;}
.x4_c00388{left:416.480000pt;}
.x2_c00388{left:656.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_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_b885fd13278223cd6242b729.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.095703;font-style:normal;font-weight:normal;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_834fdc189ed001515a3e439b.woff2')format("woff");}.ff2_c00389{font-family:ff2_c00389;line-height:1.093262;font-style: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;}
.ls19_c00389{letter-spacing:-1.440000px;}
.ls11_c00389{letter-spacing:-0.100800px;}
.ls1a_c00389{letter-spacing:-0.086400px;}
.lsf_c00389{letter-spacing:-0.048096px;}
.ls12_c00389{letter-spacing:-0.028800px;}
.ls14_c00389{letter-spacing:-0.021600px;}
.ls15_c00389{letter-spacing:-0.016200px;}
.ls13_c00389{letter-spacing:-0.014400px;}
.ls16_c00389{letter-spacing:-0.007200px;}
.ls10_c00389{letter-spacing:0.000000px;}
.lsa_c00389{letter-spacing:0.007200px;}
.ls7_c00389{letter-spacing:0.014400px;}
.lse_c00389{letter-spacing:0.016200px;}
.ls1_c00389{letter-spacing:0.021600px;}
.ls3_c00389{letter-spacing:0.028800px;}
.ls8_c00389{letter-spacing:0.032400px;}
.lsb_c00389{letter-spacing:0.036000px;}
.ls0_c00389{letter-spacing:0.043200px;}
.ls4_c00389{letter-spacing:0.050400px;}
.ls6_c00389{letter-spacing:0.057600px;}
.lsc_c00389{letter-spacing:0.064800px;}
.ls9_c00389{letter-spacing:0.072000px;}
.ls5_c00389{letter-spacing:0.086400px;}
.ls2_c00389{letter-spacing:0.115200px;}
.lsd_c00389{letter-spacing:0.129600px;}
.ls17_c00389{letter-spacing:4.680000px;}
.ls18_c00389{letter-spacing:845.818200px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00389{word-spacing:0.000000px;}
.ws0_c00389{word-spacing:0.138276px;}
.ws2_c00389{word-spacing:0.145800px;}
.ws4_c00389{word-spacing:0.162000px;}
.ws5_c00389{word-spacing:0.178200px;}
.ws3_c00389{word-spacing:0.194400px;}
._12_c00389{margin-left:-845.640000px;}
._13_c00389{margin-left:-44.998200px;}
._a_c00389{margin-left:-5.702400px;}
._9_c00389{margin-left:-4.622400px;}
._1_c00389{margin-left:-2.764800px;}
._0_c00389{margin-left:-1.483200px;}
._5_c00389{width:1.123200px;}
._c_c00389{width:2.534400px;}
._7_c00389{width:3.542400px;}
._8_c00389{width:4.579200px;}
._e_c00389{width:5.716800px;}
._3_c00389{width:7.171200px;}
._4_c00389{width:8.193600px;}
._f_c00389{width:9.388800px;}
._11_c00389{width:13.204800px;}
._10_c00389{width:14.385600px;}
._6_c00389{width:16.531200px;}
._2_c00389{width:20.116800px;}
._b_c00389{width:25.632000px;}
._d_c00389{width:80.272800px;}
.fc1_c00389{color:rgb(68,84,106);}
.fc0_c00389{color:rgb(0,0,0);}
.fs2_c00389{font-size:54.000000px;}
.fs0_c00389{font-size:60.120000px;}
.fs1_c00389{font-size:72.000000px;}
.y0_c00389{bottom:0.000000px;}
.y6_c00389{bottom:57.360450px;}
.y5_c00389{bottom:78.060450px;}
.y22_c00389{bottom:137.910450px;}
.y21_c00389{bottom:169.050450px;}
.y20_c00389{bottom:200.100450px;}
.y1f_c00389{bottom:239.430900px;}
.y1e_c00389{bottom:371.370450px;}
.y1d_c00389{bottom:409.980450px;}
.y1c_c00389{bottom:441.120450px;}
.y1b_c00389{bottom:472.170450px;}
.y1a_c00389{bottom:503.220450px;}
.y19_c00389{bottom:534.270450px;}
.y18_c00389{bottom:565.320450px;}
.y17_c00389{bottom:596.370450px;}
.y16_c00389{bottom:627.420450px;}
.y15_c00389{bottom:670.350450px;}
.y14_c00389{bottom:701.490450px;}
.y13_c00389{bottom:732.540450px;}
.y12_c00389{bottom:763.590450px;}
.y11_c00389{bottom:794.640450px;}
.y10_c00389{bottom:825.690450px;}
.yf_c00389{bottom:856.740450px;}
.ye_c00389{bottom:899.310450px;}
.yd_c00389{bottom:938.010450px;}
.yc_c00389{bottom:969.150450px;}
.yb_c00389{bottom:1000.200450px;}
.ya_c00389{bottom:1031.160450px;}
.y9_c00389{bottom:1062.210450px;}
.y8_c00389{bottom:1093.260450px;}
.y7_c00389{bottom:1124.310450px;}
.y4_c00389{bottom:1144.380657px;}
.y3_c00389{bottom:1161.660648px;}
.y2_c00389{bottom:1178.850459px;}
.y1_c00389{bottom:1196.130450px;}
.h3_c00389{height:47.513672px;}
.h1_c00389{height:52.898555px;}
.h2_c00389{height:63.175781px;}
.h0_c00389{height:1263.000000px;}
.w1_c00389{width:892.500000px;}
.w0_c00389{width:892.830000px;}
.x0_c00389{left:0.000000px;}
.x4_c00389{left:127.620000px;}
.x6_c00389{left:334.619550px;}
.x5_c00389{left:503.370000px;}
.x1_c00389{left:649.620000px;}
.x3_c00389{left:738.450000px;}
.x2_c00389{left:765.450198px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls19_c00389{letter-spacing:-1.280000pt;}
.ls11_c00389{letter-spacing:-0.089600pt;}
.ls1a_c00389{letter-spacing:-0.076800pt;}
.lsf_c00389{letter-spacing:-0.042752pt;}
.ls12_c00389{letter-spacing:-0.025600pt;}
.ls14_c00389{letter-spacing:-0.019200pt;}
.ls15_c00389{letter-spacing:-0.014400pt;}
.ls13_c00389{letter-spacing:-0.012800pt;}
.ls16_c00389{letter-spacing:-0.006400pt;}
.ls10_c00389{letter-spacing:0.000000pt;}
.lsa_c00389{letter-spacing:0.006400pt;}
.ls7_c00389{letter-spacing:0.012800pt;}
.lse_c00389{letter-spacing:0.014400pt;}
.ls1_c00389{letter-spacing:0.019200pt;}
.ls3_c00389{letter-spacing:0.025600pt;}
.ls8_c00389{letter-spacing:0.028800pt;}
.lsb_c00389{letter-spacing:0.032000pt;}
.ls0_c00389{letter-spacing:0.038400pt;}
.ls4_c00389{letter-spacing:0.044800pt;}
.ls6_c00389{letter-spacing:0.051200pt;}
.lsc_c00389{letter-spacing:0.057600pt;}
.ls9_c00389{letter-spacing:0.064000pt;}
.ls5_c00389{letter-spacing:0.076800pt;}
.ls2_c00389{letter-spacing:0.102400pt;}
.lsd_c00389{letter-spacing:0.115200pt;}
.ls17_c00389{letter-spacing:4.160000pt;}
.ls18_c00389{letter-spacing:751.838400pt;}
.ws1_c00389{word-spacing:0.000000pt;}
.ws0_c00389{word-spacing:0.122912pt;}
.ws2_c00389{word-spacing:0.129600pt;}
.ws4_c00389{word-spacing:0.144000pt;}
.ws5_c00389{word-spacing:0.158400pt;}
.ws3_c00389{word-spacing:0.172800pt;}
._12_c00389{margin-left:-751.680000pt;}
._13_c00389{margin-left:-39.998400pt;}
._a_c00389{margin-left:-5.068800pt;}
._9_c00389{margin-left:-4.108800pt;}
._1_c00389{margin-left:-2.457600pt;}
._0_c00389{margin-left:-1.318400pt;}
._5_c00389{width:0.998400pt;}
._c_c00389{width:2.252800pt;}
._7_c00389{width:3.148800pt;}
._8_c00389{width:4.070400pt;}
._e_c00389{width:5.081600pt;}
._3_c00389{width:6.374400pt;}
._4_c00389{width:7.283200pt;}
._f_c00389{width:8.345600pt;}
._11_c00389{width:11.737600pt;}
._10_c00389{width:12.787200pt;}
._6_c00389{width:14.694400pt;}
._2_c00389{width:17.881600pt;}
._b_c00389{width:22.784000pt;}
._d_c00389{width:71.353600pt;}
.fs2_c00389{font-size:48.000000pt;}
.fs0_c00389{font-size:53.440000pt;}
.fs1_c00389{font-size:64.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y6_c00389{bottom:50.987067pt;}
.y5_c00389{bottom:69.387067pt;}
.y22_c00389{bottom:122.587067pt;}
.y21_c00389{bottom:150.267067pt;}
.y20_c00389{bottom:177.867067pt;}
.y1f_c00389{bottom:212.827467pt;}
.y1e_c00389{bottom:330.107067pt;}
.y1d_c00389{bottom:364.427067pt;}
.y1c_c00389{bottom:392.107067pt;}
.y1b_c00389{bottom:419.707067pt;}
.y1a_c00389{bottom:447.307067pt;}
.y19_c00389{bottom:474.907067pt;}
.y18_c00389{bottom:502.507067pt;}
.y17_c00389{bottom:530.107067pt;}
.y16_c00389{bottom:557.707067pt;}
.y15_c00389{bottom:595.867067pt;}
.y14_c00389{bottom:623.547067pt;}
.y13_c00389{bottom:651.147067pt;}
.y12_c00389{bottom:678.747067pt;}
.y11_c00389{bottom:706.347067pt;}
.y10_c00389{bottom:733.947067pt;}
.yf_c00389{bottom:761.547067pt;}
.ye_c00389{bottom:799.387067pt;}
.yd_c00389{bottom:833.787067pt;}
.yc_c00389{bottom:861.467067pt;}
.yb_c00389{bottom:889.067067pt;}
.ya_c00389{bottom:916.587067pt;}
.y9_c00389{bottom:944.187067pt;}
.y8_c00389{bottom:971.787067pt;}
.y7_c00389{bottom:999.387067pt;}
.y4_c00389{bottom:1017.227251pt;}
.y3_c00389{bottom:1032.587243pt;}
.y2_c00389{bottom:1047.867075pt;}
.y1_c00389{bottom:1063.227067pt;}
.h3_c00389{height:42.234375pt;}
.h1_c00389{height:47.020937pt;}
.h2_c00389{height:56.156250pt;}
.h0_c00389{height:1122.666667pt;}
.w1_c00389{width:793.333333pt;}
.w0_c00389{width:793.626667pt;}
.x0_c00389{left:0.000000pt;}
.x4_c00389{left:113.440000pt;}
.x6_c00389{left:297.439600pt;}
.x5_c00389{left:447.440000pt;}
.x1_c00389{left:577.440000pt;}
.x3_c00389{left:656.400000pt;}
.x2_c00389{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c5fc3dcc61dc1c36ccdfe1d3.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.095703;font-style:normal;font-weight:normal;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_017e541a324654e86731e30f.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_b1a8bac824f2d13317a88fb1.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_b9d57d830d8944519acd4b16.woff2')format("woff");}.ff4_c00390{font-family:ff4_c00390;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00390;src:url('chunks/assets/font_26d494b7dac7d709f0949f60.woff2')format("woff");}.ff5_c00390{font-family:ff5_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;}
.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;}
.ls15_c00390{letter-spacing:-1.864800px;}
.ls1b_c00390{letter-spacing:-0.151200px;}
.ls13_c00390{letter-spacing:-0.102204px;}
.ls1d_c00390{letter-spacing:-0.075600px;}
.ls1c_c00390{letter-spacing:-0.048600px;}
.ls19_c00390{letter-spacing:-0.043200px;}
.ls1e_c00390{letter-spacing:-0.037800px;}
.ls1a_c00390{letter-spacing:-0.027000px;}
.ls17_c00390{letter-spacing:-0.014400px;}
.ls16_c00390{letter-spacing:-0.007200px;}
.ls14_c00390{letter-spacing:0.000000px;}
.lsb_c00390{letter-spacing:0.005400px;}
.ls5_c00390{letter-spacing:0.007200px;}
.lsf_c00390{letter-spacing:0.010800px;}
.ls0_c00390{letter-spacing:0.014400px;}
.ls8_c00390{letter-spacing:0.021600px;}
.lsd_c00390{letter-spacing:0.025164px;}
.ls2_c00390{letter-spacing:0.028800px;}
.lsa_c00390{letter-spacing:0.036000px;}
.ls4_c00390{letter-spacing:0.043200px;}
.lse_c00390{letter-spacing:0.048600px;}
.ls1_c00390{letter-spacing:0.050400px;}
.ls9_c00390{letter-spacing:0.057600px;}
.lsc_c00390{letter-spacing:0.059400px;}
.ls11_c00390{letter-spacing:0.064800px;}
.ls6_c00390{letter-spacing:0.079200px;}
.ls3_c00390{letter-spacing:0.093600px;}
.ls12_c00390{letter-spacing:0.097200px;}
.ls7_c00390{letter-spacing:0.100800px;}
.ls18_c00390{letter-spacing:6.480000px;}
.ls10_c00390{letter-spacing:318.816000px;}
.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;}
}
.ws7_c00390{word-spacing:-0.763200px;}
.ws4_c00390{word-spacing:0.000000px;}
.ws9_c00390{word-spacing:0.118800px;}
.ws8_c00390{word-spacing:0.172800px;}
.wsa_c00390{word-spacing:0.178200px;}
.ws3_c00390{word-spacing:0.192384px;}
.ws6_c00390{word-spacing:0.691200px;}
.ws5_c00390{word-spacing:4.327200px;}
.ws0_c00390{word-spacing:100.137600px;}
.ws1_c00390{word-spacing:274.233600px;}
.ws2_c00390{word-spacing:303.804000px;}
._a_c00390{margin-left:-7.401600px;}
._9_c00390{margin-left:-5.558400px;}
._b_c00390{margin-left:-3.247200px;}
._1_c00390{margin-left:-1.800000px;}
._0_c00390{width:1.034064px;}
._2_c00390{width:2.743200px;}
._4_c00390{width:3.772800px;}
._5_c00390{width:4.924800px;}
._8_c00390{width:6.494400px;}
._6_c00390{width:9.878400px;}
._7_c00390{width:11.116800px;}
._3_c00390{width:15.789600px;}
._13_c00390{width:129.865536px;}
._16_c00390{width:227.696400px;}
._10_c00390{width:304.106400px;}
._15_c00390{width:333.774000px;}
._12_c00390{width:339.973200px;}
._11_c00390{width:348.940800px;}
._14_c00390{width:434.336400px;}
._d_c00390{width:451.197000px;}
._f_c00390{width:561.033000px;}
._e_c00390{width:567.079200px;}
._c_c00390{width:1779.138000px;}
.fc3_c00390{color:rgb(38,74,96);}
.fc2_c00390{color:rgb(68,84,106);}
.fc1_c00390{color:rgb(0,0,0);}
.fc0_c00390{color:rgb(32,31,30);}
.fs2_c00390{font-size:54.000000px;}
.fs0_c00390{font-size:60.120000px;}
.fs1_c00390{font-size:72.000000px;}
.fs3_c00390{font-size:83.880000px;}
.y0_c00390{bottom:0.000000px;}
.y5_c00390{bottom:57.360450px;}
.y4_c00390{bottom:78.060450px;}
.y23_c00390{bottom:140.160450px;}
.y22_c00390{bottom:163.830450px;}
.y21_c00390{bottom:187.500450px;}
.y20_c00390{bottom:211.170450px;}
.y1f_c00390{bottom:234.750450px;}
.y1e_c00390{bottom:258.420450px;}
.y1d_c00390{bottom:282.090450px;}
.y1c_c00390{bottom:305.760450px;}
.y1b_c00390{bottom:329.430450px;}
.y1a_c00390{bottom:354.990450px;}
.y19_c00390{bottom:385.680600px;}
.y18_c00390{bottom:415.560450px;}
.y17_c00390{bottom:438.689739px;}
.y16_c00390{bottom:467.760450px;}
.y15_c00390{bottom:505.650000px;}
.y14_c00390{bottom:645.060450px;}
.y13_c00390{bottom:683.670450px;}
.y12_c00390{bottom:714.810450px;}
.y11_c00390{bottom:745.860450px;}
.y10_c00390{bottom:776.910450px;}
.yf_c00390{bottom:807.960450px;}
.ye_c00390{bottom:839.010450px;}
.yd_c00390{bottom:882.030450px;}
.yc_c00390{bottom:913.170450px;}
.yb_c00390{bottom:944.220450px;}
.ya_c00390{bottom:975.180450px;}
.y9_c00390{bottom:1018.200450px;}
.y8_c00390{bottom:1049.340450px;}
.y7_c00390{bottom:1080.390450px;}
.y6_c00390{bottom:1111.440450px;}
.y3_c00390{bottom:1132.140450px;}
.y2_c00390{bottom:1165.441023px;}
.y1_c00390{bottom:1196.040600px;}
.h4_c00390{height:47.513672px;}
.h6_c00390{height:48.752930px;}
.h1_c00390{height:52.898555px;}
.h2_c00390{height:63.175781px;}
.h3_c00390{height:63.351562px;}
.h5_c00390{height:74.500840px;}
.h0_c00390{height:1263.000000px;}
.w1_c00390{width:892.500000px;}
.w0_c00390{width:892.830000px;}
.x0_c00390{left:0.000000px;}
.x1_c00390{left:127.620000px;}
.x4_c00390{left:271.170000px;}
.x3_c00390{left:313.019550px;}
.x2_c00390{left:738.450000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls15_c00390{letter-spacing:-1.657600pt;}
.ls1b_c00390{letter-spacing:-0.134400pt;}
.ls13_c00390{letter-spacing:-0.090848pt;}
.ls1d_c00390{letter-spacing:-0.067200pt;}
.ls1c_c00390{letter-spacing:-0.043200pt;}
.ls19_c00390{letter-spacing:-0.038400pt;}
.ls1e_c00390{letter-spacing:-0.033600pt;}
.ls1a_c00390{letter-spacing:-0.024000pt;}
.ls17_c00390{letter-spacing:-0.012800pt;}
.ls16_c00390{letter-spacing:-0.006400pt;}
.ls14_c00390{letter-spacing:0.000000pt;}
.lsb_c00390{letter-spacing:0.004800pt;}
.ls5_c00390{letter-spacing:0.006400pt;}
.lsf_c00390{letter-spacing:0.009600pt;}
.ls0_c00390{letter-spacing:0.012800pt;}
.ls8_c00390{letter-spacing:0.019200pt;}
.lsd_c00390{letter-spacing:0.022368pt;}
.ls2_c00390{letter-spacing:0.025600pt;}
.lsa_c00390{letter-spacing:0.032000pt;}
.ls4_c00390{letter-spacing:0.038400pt;}
.lse_c00390{letter-spacing:0.043200pt;}
.ls1_c00390{letter-spacing:0.044800pt;}
.ls9_c00390{letter-spacing:0.051200pt;}
.lsc_c00390{letter-spacing:0.052800pt;}
.ls11_c00390{letter-spacing:0.057600pt;}
.ls6_c00390{letter-spacing:0.070400pt;}
.ls3_c00390{letter-spacing:0.083200pt;}
.ls12_c00390{letter-spacing:0.086400pt;}
.ls7_c00390{letter-spacing:0.089600pt;}
.ls18_c00390{letter-spacing:5.760000pt;}
.ls10_c00390{letter-spacing:283.392000pt;}
.ws7_c00390{word-spacing:-0.678400pt;}
.ws4_c00390{word-spacing:0.000000pt;}
.ws9_c00390{word-spacing:0.105600pt;}
.ws8_c00390{word-spacing:0.153600pt;}
.wsa_c00390{word-spacing:0.158400pt;}
.ws3_c00390{word-spacing:0.171008pt;}
.ws6_c00390{word-spacing:0.614400pt;}
.ws5_c00390{word-spacing:3.846400pt;}
.ws0_c00390{word-spacing:89.011200pt;}
.ws1_c00390{word-spacing:243.763200pt;}
.ws2_c00390{word-spacing:270.048000pt;}
._a_c00390{margin-left:-6.579200pt;}
._9_c00390{margin-left:-4.940800pt;}
._b_c00390{margin-left:-2.886400pt;}
._1_c00390{margin-left:-1.600000pt;}
._0_c00390{width:0.919168pt;}
._2_c00390{width:2.438400pt;}
._4_c00390{width:3.353600pt;}
._5_c00390{width:4.377600pt;}
._8_c00390{width:5.772800pt;}
._6_c00390{width:8.780800pt;}
._7_c00390{width:9.881600pt;}
._3_c00390{width:14.035200pt;}
._13_c00390{width:115.436032pt;}
._16_c00390{width:202.396800pt;}
._10_c00390{width:270.316800pt;}
._15_c00390{width:296.688000pt;}
._12_c00390{width:302.198400pt;}
._11_c00390{width:310.169600pt;}
._14_c00390{width:386.076800pt;}
._d_c00390{width:401.064000pt;}
._f_c00390{width:498.696000pt;}
._e_c00390{width:504.070400pt;}
._c_c00390{width:1581.456000pt;}
.fs2_c00390{font-size:48.000000pt;}
.fs0_c00390{font-size:53.440000pt;}
.fs1_c00390{font-size:64.000000pt;}
.fs3_c00390{font-size:74.560000pt;}
.y0_c00390{bottom:0.000000pt;}
.y5_c00390{bottom:50.987067pt;}
.y4_c00390{bottom:69.387067pt;}
.y23_c00390{bottom:124.587067pt;}
.y22_c00390{bottom:145.627067pt;}
.y21_c00390{bottom:166.667067pt;}
.y20_c00390{bottom:187.707067pt;}
.y1f_c00390{bottom:208.667067pt;}
.y1e_c00390{bottom:229.707067pt;}
.y1d_c00390{bottom:250.747067pt;}
.y1c_c00390{bottom:271.787067pt;}
.y1b_c00390{bottom:292.827067pt;}
.y1a_c00390{bottom:315.547067pt;}
.y19_c00390{bottom:342.827200pt;}
.y18_c00390{bottom:369.387067pt;}
.y17_c00390{bottom:389.946435pt;}
.y16_c00390{bottom:415.787067pt;}
.y15_c00390{bottom:449.466667pt;}
.y14_c00390{bottom:573.387067pt;}
.y13_c00390{bottom:607.707067pt;}
.y12_c00390{bottom:635.387067pt;}
.y11_c00390{bottom:662.987067pt;}
.y10_c00390{bottom:690.587067pt;}
.yf_c00390{bottom:718.187067pt;}
.ye_c00390{bottom:745.787067pt;}
.yd_c00390{bottom:784.027067pt;}
.yc_c00390{bottom:811.707067pt;}
.yb_c00390{bottom:839.307067pt;}
.ya_c00390{bottom:866.827067pt;}
.y9_c00390{bottom:905.067067pt;}
.y8_c00390{bottom:932.747067pt;}
.y7_c00390{bottom:960.347067pt;}
.y6_c00390{bottom:987.947067pt;}
.y3_c00390{bottom:1006.347067pt;}
.y2_c00390{bottom:1035.947576pt;}
.y1_c00390{bottom:1063.147200pt;}
.h4_c00390{height:42.234375pt;}
.h6_c00390{height:43.335938pt;}
.h1_c00390{height:47.020937pt;}
.h2_c00390{height:56.156250pt;}
.h3_c00390{height:56.312500pt;}
.h5_c00390{height:66.222969pt;}
.h0_c00390{height:1122.666667pt;}
.w1_c00390{width:793.333333pt;}
.w0_c00390{width:793.626667pt;}
.x0_c00390{left:0.000000pt;}
.x1_c00390{left:113.440000pt;}
.x4_c00390{left:241.040000pt;}
.x3_c00390{left:278.239600pt;}
.x2_c00390{left:656.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_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_9d1e84bcd12ea27287e0aa51.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.095703;font-style:normal;font-weight:normal;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_d13e7b8d189d514f4d13f580.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_3364f263c716b738dc0d7547.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00391;src:url('chunks/assets/font_12f3a3b3cc69137d7b8a0c59.woff2')format("woff");}.ff4_c00391{font-family:ff4_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;}
.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;}
.ls18_c00391{letter-spacing:-0.684000px;}
.ls11_c00391{letter-spacing:-0.151200px;}
.ls1a_c00391{letter-spacing:-0.136800px;}
.ls10_c00391{letter-spacing:-0.075600px;}
.ls1b_c00391{letter-spacing:-0.057600px;}
.lse_c00391{letter-spacing:-0.048096px;}
.ls14_c00391{letter-spacing:-0.028800px;}
.ls1c_c00391{letter-spacing:-0.021600px;}
.ls15_c00391{letter-spacing:-0.014400px;}
.ls13_c00391{letter-spacing:-0.007200px;}
.lsf_c00391{letter-spacing:0.000000px;}
.lsb_c00391{letter-spacing:0.007200px;}
.ls9_c00391{letter-spacing:0.014400px;}
.lsa_c00391{letter-spacing:0.021600px;}
.ls8_c00391{letter-spacing:0.028800px;}
.ls2_c00391{letter-spacing:0.036000px;}
.ls0_c00391{letter-spacing:0.043200px;}
.ls3_c00391{letter-spacing:0.050400px;}
.ls7_c00391{letter-spacing:0.057600px;}
.ls4_c00391{letter-spacing:0.064800px;}
.ls5_c00391{letter-spacing:0.072000px;}
.lsd_c00391{letter-spacing:0.079200px;}
.lsc_c00391{letter-spacing:0.086400px;}
.ls12_c00391{letter-spacing:0.097200px;}
.ls6_c00391{letter-spacing:0.108000px;}
.ls1_c00391{letter-spacing:0.115200px;}
.ls19_c00391{letter-spacing:1.800000px;}
.ls16_c00391{letter-spacing:2.160000px;}
.ls17_c00391{letter-spacing:6.480000px;}
.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;}
}
.ws2_c00391{word-spacing:0.000000px;}
.ws1_c00391{word-spacing:0.138276px;}
.ws4_c00391{word-spacing:1.598400px;}
.ws3_c00391{word-spacing:1.735200px;}
.ws5_c00391{word-spacing:5.716800px;}
.ws0_c00391{word-spacing:274.233600px;}
._f_c00391{margin-left:-6.710400px;}
._10_c00391{margin-left:-5.587200px;}
._12_c00391{margin-left:-4.168800px;}
._d_c00391{margin-left:-3.060000px;}
._4_c00391{margin-left:-1.468800px;}
._8_c00391{width:1.058400px;}
._6_c00391{width:3.002400px;}
._7_c00391{width:4.521600px;}
._e_c00391{width:6.458400px;}
._11_c00391{width:8.352000px;}
._a_c00391{width:10.159200px;}
._9_c00391{width:11.167200px;}
._c_c00391{width:12.247200px;}
._b_c00391{width:13.298400px;}
._3_c00391{width:16.070400px;}
._5_c00391{width:19.044000px;}
._1_c00391{width:304.106400px;}
._0_c00391{width:484.126200px;}
._2_c00391{width:704.638800px;}
.fc1_c00391{color:rgb(38,74,96);}
.fc0_c00391{color:rgb(0,0,0);}
.fs2_c00391{font-size:54.000000px;}
.fs0_c00391{font-size:60.120000px;}
.fs1_c00391{font-size:72.000000px;}
.y0_c00391{bottom:0.000000px;}
.y6_c00391{bottom:57.360450px;}
.y5_c00391{bottom:78.060450px;}
.y26_c00391{bottom:128.190450px;}
.y25_c00391{bottom:159.330450px;}
.y24_c00391{bottom:190.380450px;}
.y23_c00391{bottom:221.430450px;}
.y22_c00391{bottom:252.480450px;}
.y21_c00391{bottom:283.530450px;}
.y20_c00391{bottom:314.580450px;}
.y1f_c00391{bottom:357.510450px;}
.y1e_c00391{bottom:388.650450px;}
.y1d_c00391{bottom:419.700450px;}
.y1c_c00391{bottom:450.750450px;}
.y1b_c00391{bottom:481.800450px;}
.y1a_c00391{bottom:512.850450px;}
.y19_c00391{bottom:555.780450px;}
.y18_c00391{bottom:586.920450px;}
.y17_c00391{bottom:617.970450px;}
.y16_c00391{bottom:649.020450px;}
.y15_c00391{bottom:680.070450px;}
.y14_c00391{bottom:711.120450px;}
.y13_c00391{bottom:742.170450px;}
.y12_c00391{bottom:785.100450px;}
.y11_c00391{bottom:816.240450px;}
.y10_c00391{bottom:847.290450px;}
.yf_c00391{bottom:878.340450px;}
.ye_c00391{bottom:909.390450px;}
.yd_c00391{bottom:940.440450px;}
.yc_c00391{bottom:971.490450px;}
.yb_c00391{bottom:1002.540450px;}
.ya_c00391{bottom:1033.590450px;}
.y9_c00391{bottom:1076.520450px;}
.y8_c00391{bottom:1104.420450px;}
.y7_c00391{bottom:1128.090450px;}
.y4_c00391{bottom:1144.380657px;}
.y3_c00391{bottom:1161.660648px;}
.y2_c00391{bottom:1178.850459px;}
.y1_c00391{bottom:1196.130450px;}
.h3_c00391{height:48.752930px;}
.h1_c00391{height:52.898555px;}
.h2_c00391{height:63.175781px;}
.h4_c00391{height:63.351562px;}
.h0_c00391{height:1263.000000px;}
.w1_c00391{width:892.500000px;}
.w0_c00391{width:892.830000px;}
.x0_c00391{left:0.000000px;}
.x4_c00391{left:127.620000px;}
.x5_c00391{left:271.170000px;}
.x1_c00391{left:649.620000px;}
.x3_c00391{left:738.450000px;}
.x2_c00391{left:765.450198px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls18_c00391{letter-spacing:-0.608000pt;}
.ls11_c00391{letter-spacing:-0.134400pt;}
.ls1a_c00391{letter-spacing:-0.121600pt;}
.ls10_c00391{letter-spacing:-0.067200pt;}
.ls1b_c00391{letter-spacing:-0.051200pt;}
.lse_c00391{letter-spacing:-0.042752pt;}
.ls14_c00391{letter-spacing:-0.025600pt;}
.ls1c_c00391{letter-spacing:-0.019200pt;}
.ls15_c00391{letter-spacing:-0.012800pt;}
.ls13_c00391{letter-spacing:-0.006400pt;}
.lsf_c00391{letter-spacing:0.000000pt;}
.lsb_c00391{letter-spacing:0.006400pt;}
.ls9_c00391{letter-spacing:0.012800pt;}
.lsa_c00391{letter-spacing:0.019200pt;}
.ls8_c00391{letter-spacing:0.025600pt;}
.ls2_c00391{letter-spacing:0.032000pt;}
.ls0_c00391{letter-spacing:0.038400pt;}
.ls3_c00391{letter-spacing:0.044800pt;}
.ls7_c00391{letter-spacing:0.051200pt;}
.ls4_c00391{letter-spacing:0.057600pt;}
.ls5_c00391{letter-spacing:0.064000pt;}
.lsd_c00391{letter-spacing:0.070400pt;}
.lsc_c00391{letter-spacing:0.076800pt;}
.ls12_c00391{letter-spacing:0.086400pt;}
.ls6_c00391{letter-spacing:0.096000pt;}
.ls1_c00391{letter-spacing:0.102400pt;}
.ls19_c00391{letter-spacing:1.600000pt;}
.ls16_c00391{letter-spacing:1.920000pt;}
.ls17_c00391{letter-spacing:5.760000pt;}
.ws2_c00391{word-spacing:0.000000pt;}
.ws1_c00391{word-spacing:0.122912pt;}
.ws4_c00391{word-spacing:1.420800pt;}
.ws3_c00391{word-spacing:1.542400pt;}
.ws5_c00391{word-spacing:5.081600pt;}
.ws0_c00391{word-spacing:243.763200pt;}
._f_c00391{margin-left:-5.964800pt;}
._10_c00391{margin-left:-4.966400pt;}
._12_c00391{margin-left:-3.705600pt;}
._d_c00391{margin-left:-2.720000pt;}
._4_c00391{margin-left:-1.305600pt;}
._8_c00391{width:0.940800pt;}
._6_c00391{width:2.668800pt;}
._7_c00391{width:4.019200pt;}
._e_c00391{width:5.740800pt;}
._11_c00391{width:7.424000pt;}
._a_c00391{width:9.030400pt;}
._9_c00391{width:9.926400pt;}
._c_c00391{width:10.886400pt;}
._b_c00391{width:11.820800pt;}
._3_c00391{width:14.284800pt;}
._5_c00391{width:16.928000pt;}
._1_c00391{width:270.316800pt;}
._0_c00391{width:430.334400pt;}
._2_c00391{width:626.345600pt;}
.fs2_c00391{font-size:48.000000pt;}
.fs0_c00391{font-size:53.440000pt;}
.fs1_c00391{font-size:64.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.y6_c00391{bottom:50.987067pt;}
.y5_c00391{bottom:69.387067pt;}
.y26_c00391{bottom:113.947067pt;}
.y25_c00391{bottom:141.627067pt;}
.y24_c00391{bottom:169.227067pt;}
.y23_c00391{bottom:196.827067pt;}
.y22_c00391{bottom:224.427067pt;}
.y21_c00391{bottom:252.027067pt;}
.y20_c00391{bottom:279.627067pt;}
.y1f_c00391{bottom:317.787067pt;}
.y1e_c00391{bottom:345.467067pt;}
.y1d_c00391{bottom:373.067067pt;}
.y1c_c00391{bottom:400.667067pt;}
.y1b_c00391{bottom:428.267067pt;}
.y1a_c00391{bottom:455.867067pt;}
.y19_c00391{bottom:494.027067pt;}
.y18_c00391{bottom:521.707067pt;}
.y17_c00391{bottom:549.307067pt;}
.y16_c00391{bottom:576.907067pt;}
.y15_c00391{bottom:604.507067pt;}
.y14_c00391{bottom:632.107067pt;}
.y13_c00391{bottom:659.707067pt;}
.y12_c00391{bottom:697.867067pt;}
.y11_c00391{bottom:725.547067pt;}
.y10_c00391{bottom:753.147067pt;}
.yf_c00391{bottom:780.747067pt;}
.ye_c00391{bottom:808.347067pt;}
.yd_c00391{bottom:835.947067pt;}
.yc_c00391{bottom:863.547067pt;}
.yb_c00391{bottom:891.147067pt;}
.ya_c00391{bottom:918.747067pt;}
.y9_c00391{bottom:956.907067pt;}
.y8_c00391{bottom:981.707067pt;}
.y7_c00391{bottom:1002.747067pt;}
.y4_c00391{bottom:1017.227251pt;}
.y3_c00391{bottom:1032.587243pt;}
.y2_c00391{bottom:1047.867075pt;}
.y1_c00391{bottom:1063.227067pt;}
.h3_c00391{height:43.335938pt;}
.h1_c00391{height:47.020937pt;}
.h2_c00391{height:56.156250pt;}
.h4_c00391{height:56.312500pt;}
.h0_c00391{height:1122.666667pt;}
.w1_c00391{width:793.333333pt;}
.w0_c00391{width:793.626667pt;}
.x0_c00391{left:0.000000pt;}
.x4_c00391{left:113.440000pt;}
.x5_c00391{left:241.040000pt;}
.x1_c00391{left:577.440000pt;}
.x3_c00391{left:656.400000pt;}
.x2_c00391{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab74e1e5aca17809949fcea5.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.095703;font-style:normal;font-weight:normal;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_57e36c4ca69c6c068ebc7841.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:1.093262;font-style: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;}
.lsc_c00392{letter-spacing:-0.102204px;}
.ls12_c00392{letter-spacing:-0.021600px;}
.lse_c00392{letter-spacing:-0.014400px;}
.lsf_c00392{letter-spacing:-0.007200px;}
.lsd_c00392{letter-spacing:0.000000px;}
.ls4_c00392{letter-spacing:0.007200px;}
.ls1_c00392{letter-spacing:0.010800px;}
.lsa_c00392{letter-spacing:0.014400px;}
.ls0_c00392{letter-spacing:0.021600px;}
.ls5_c00392{letter-spacing:0.028800px;}
.ls6_c00392{letter-spacing:0.036000px;}
.ls7_c00392{letter-spacing:0.043200px;}
.ls3_c00392{letter-spacing:0.057600px;}
.ls9_c00392{letter-spacing:0.064800px;}
.ls2_c00392{letter-spacing:0.072000px;}
.ls8_c00392{letter-spacing:0.079200px;}
.ls11_c00392{letter-spacing:0.093600px;}
.lsb_c00392{letter-spacing:0.172800px;}
.ls13_c00392{letter-spacing:3.960000px;}
.ls10_c00392{letter-spacing:6.069600px;}
.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:-18.000000px;}
.ws4_c00392{word-spacing:-0.189000px;}
.ws2_c00392{word-spacing:0.000000px;}
.ws3_c00392{word-spacing:0.156600px;}
.ws1_c00392{word-spacing:0.192384px;}
.ws5_c00392{word-spacing:2.116800px;}
.ws6_c00392{word-spacing:3.895200px;}
.ws7_c00392{word-spacing:4.298400px;}
._c_c00392{margin-left:-6.543000px;}
._d_c00392{margin-left:-5.452200px;}
._f_c00392{margin-left:-4.374864px;}
._10_c00392{margin-left:-3.242736px;}
._8_c00392{margin-left:-2.188800px;}
._1_c00392{margin-left:-1.096200px;}
._0_c00392{width:1.034064px;}
._a_c00392{width:2.836800px;}
._4_c00392{width:4.593600px;}
._5_c00392{width:5.702400px;}
._3_c00392{width:7.086600px;}
._2_c00392{width:8.294400px;}
._9_c00392{width:9.590400px;}
._e_c00392{width:10.598400px;}
._7_c00392{width:14.223600px;}
._6_c00392{width:15.408000px;}
._b_c00392{width:16.567200px;}
.fc2_c00392{color:rgb(68,84,106);}
.fc1_c00392{color:rgb(0,0,0);}
.fc0_c00392{color:rgb(32,31,30);}
.fs2_c00392{font-size:54.000000px;}
.fs0_c00392{font-size:60.120000px;}
.fs1_c00392{font-size:72.000000px;}
.y0_c00392{bottom:0.000000px;}
.y5_c00392{bottom:57.360450px;}
.y4_c00392{bottom:78.060450px;}
.y20_c00392{bottom:117.750450px;}
.y1f_c00392{bottom:148.800450px;}
.y1e_c00392{bottom:179.850450px;}
.y1d_c00392{bottom:210.900450px;}
.y1c_c00392{bottom:241.950450px;}
.y1b_c00392{bottom:273.000450px;}
.y1a_c00392{bottom:304.050450px;}
.y19_c00392{bottom:335.100450px;}
.y18_c00392{bottom:366.150450px;}
.y17_c00392{bottom:397.200450px;}
.y16_c00392{bottom:428.250450px;}
.y15_c00392{bottom:471.180450px;}
.y14_c00392{bottom:502.320450px;}
.y13_c00392{bottom:533.370450px;}
.y12_c00392{bottom:564.420450px;}
.y11_c00392{bottom:607.350450px;}
.y10_c00392{bottom:638.490450px;}
.yf_c00392{bottom:669.540450px;}
.ye_c00392{bottom:700.590450px;}
.yd_c00392{bottom:743.610450px;}
.yc_c00392{bottom:774.750450px;}
.yb_c00392{bottom:805.800450px;}
.ya_c00392{bottom:836.850450px;}
.y9_c00392{bottom:867.900450px;}
.y8_c00392{bottom:898.860450px;}
.y7_c00392{bottom:937.830450px;}
.y6_c00392{bottom:1115.760450px;}
.y3_c00392{bottom:1132.140450px;}
.y2_c00392{bottom:1165.441023px;}
.y1_c00392{bottom:1196.040600px;}
.h3_c00392{height:47.513672px;}
.h1_c00392{height:52.898555px;}
.h2_c00392{height:63.175781px;}
.h4_c00392{height:63.351562px;}
.h0_c00392{height:1263.000000px;}
.w1_c00392{width:892.500000px;}
.w0_c00392{width:892.830000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:127.620000px;}
.x2_c00392{left:738.450000px;}
.x3_c00392{left:741.240000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.lsc_c00392{letter-spacing:-0.090848pt;}
.ls12_c00392{letter-spacing:-0.019200pt;}
.lse_c00392{letter-spacing:-0.012800pt;}
.lsf_c00392{letter-spacing:-0.006400pt;}
.lsd_c00392{letter-spacing:0.000000pt;}
.ls4_c00392{letter-spacing:0.006400pt;}
.ls1_c00392{letter-spacing:0.009600pt;}
.lsa_c00392{letter-spacing:0.012800pt;}
.ls0_c00392{letter-spacing:0.019200pt;}
.ls5_c00392{letter-spacing:0.025600pt;}
.ls6_c00392{letter-spacing:0.032000pt;}
.ls7_c00392{letter-spacing:0.038400pt;}
.ls3_c00392{letter-spacing:0.051200pt;}
.ls9_c00392{letter-spacing:0.057600pt;}
.ls2_c00392{letter-spacing:0.064000pt;}
.ls8_c00392{letter-spacing:0.070400pt;}
.ls11_c00392{letter-spacing:0.083200pt;}
.lsb_c00392{letter-spacing:0.153600pt;}
.ls13_c00392{letter-spacing:3.520000pt;}
.ls10_c00392{letter-spacing:5.395200pt;}
.ws0_c00392{word-spacing:-16.000000pt;}
.ws4_c00392{word-spacing:-0.168000pt;}
.ws2_c00392{word-spacing:0.000000pt;}
.ws3_c00392{word-spacing:0.139200pt;}
.ws1_c00392{word-spacing:0.171008pt;}
.ws5_c00392{word-spacing:1.881600pt;}
.ws6_c00392{word-spacing:3.462400pt;}
.ws7_c00392{word-spacing:3.820800pt;}
._c_c00392{margin-left:-5.816000pt;}
._d_c00392{margin-left:-4.846400pt;}
._f_c00392{margin-left:-3.888768pt;}
._10_c00392{margin-left:-2.882432pt;}
._8_c00392{margin-left:-1.945600pt;}
._1_c00392{margin-left:-0.974400pt;}
._0_c00392{width:0.919168pt;}
._a_c00392{width:2.521600pt;}
._4_c00392{width:4.083200pt;}
._5_c00392{width:5.068800pt;}
._3_c00392{width:6.299200pt;}
._2_c00392{width:7.372800pt;}
._9_c00392{width:8.524800pt;}
._e_c00392{width:9.420800pt;}
._7_c00392{width:12.643200pt;}
._6_c00392{width:13.696000pt;}
._b_c00392{width:14.726400pt;}
.fs2_c00392{font-size:48.000000pt;}
.fs0_c00392{font-size:53.440000pt;}
.fs1_c00392{font-size:64.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.y5_c00392{bottom:50.987067pt;}
.y4_c00392{bottom:69.387067pt;}
.y20_c00392{bottom:104.667067pt;}
.y1f_c00392{bottom:132.267067pt;}
.y1e_c00392{bottom:159.867067pt;}
.y1d_c00392{bottom:187.467067pt;}
.y1c_c00392{bottom:215.067067pt;}
.y1b_c00392{bottom:242.667067pt;}
.y1a_c00392{bottom:270.267067pt;}
.y19_c00392{bottom:297.867067pt;}
.y18_c00392{bottom:325.467067pt;}
.y17_c00392{bottom:353.067067pt;}
.y16_c00392{bottom:380.667067pt;}
.y15_c00392{bottom:418.827067pt;}
.y14_c00392{bottom:446.507067pt;}
.y13_c00392{bottom:474.107067pt;}
.y12_c00392{bottom:501.707067pt;}
.y11_c00392{bottom:539.867067pt;}
.y10_c00392{bottom:567.547067pt;}
.yf_c00392{bottom:595.147067pt;}
.ye_c00392{bottom:622.747067pt;}
.yd_c00392{bottom:660.987067pt;}
.yc_c00392{bottom:688.667067pt;}
.yb_c00392{bottom:716.267067pt;}
.ya_c00392{bottom:743.867067pt;}
.y9_c00392{bottom:771.467067pt;}
.y8_c00392{bottom:798.987067pt;}
.y7_c00392{bottom:833.627067pt;}
.y6_c00392{bottom:991.787067pt;}
.y3_c00392{bottom:1006.347067pt;}
.y2_c00392{bottom:1035.947576pt;}
.y1_c00392{bottom:1063.147200pt;}
.h3_c00392{height:42.234375pt;}
.h1_c00392{height:47.020937pt;}
.h2_c00392{height:56.156250pt;}
.h4_c00392{height:56.312500pt;}
.h0_c00392{height:1122.666667pt;}
.w1_c00392{width:793.333333pt;}
.w0_c00392{width:793.626667pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:113.440000pt;}
.x2_c00392{left:656.400000pt;}
.x3_c00392{left:658.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_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_9e6356fbb549987acf9e68c6.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.095703;font-style:normal;font-weight:normal;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_7365659bb01a51daa94f452c.woff2')format("woff");}.ff2_c00393{font-family:ff2_c00393;line-height:1.093262;font-style: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;}
.lse_c00393{letter-spacing:-0.048096px;}
.ls12_c00393{letter-spacing:-0.043200px;}
.ls11_c00393{letter-spacing:-0.036000px;}
.ls15_c00393{letter-spacing:-0.028800px;}
.ls14_c00393{letter-spacing:-0.021600px;}
.ls10_c00393{letter-spacing:-0.014400px;}
.ls13_c00393{letter-spacing:-0.007200px;}
.lsf_c00393{letter-spacing:0.000000px;}
.ls0_c00393{letter-spacing:0.007200px;}
.ls8_c00393{letter-spacing:0.010800px;}
.ls4_c00393{letter-spacing:0.014400px;}
.ls3_c00393{letter-spacing:0.021600px;}
.ls2_c00393{letter-spacing:0.028800px;}
.ls1_c00393{letter-spacing:0.036000px;}
.ls7_c00393{letter-spacing:0.043200px;}
.lsd_c00393{letter-spacing:0.048600px;}
.ls9_c00393{letter-spacing:0.050400px;}
.ls6_c00393{letter-spacing:0.057600px;}
.lsb_c00393{letter-spacing:0.064800px;}
.ls5_c00393{letter-spacing:0.072000px;}
.lsc_c00393{letter-spacing:0.079200px;}
.lsa_c00393{letter-spacing:0.108000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00393{word-spacing:0.000000px;}
.ws4_c00393{word-spacing:0.129600px;}
.ws0_c00393{word-spacing:0.138276px;}
.ws3_c00393{word-spacing:0.167400px;}
.ws2_c00393{word-spacing:11.865600px;}
._7_c00393{margin-left:-4.334400px;}
._6_c00393{margin-left:-2.440800px;}
._0_c00393{margin-left:-1.072800px;}
._4_c00393{width:1.058400px;}
._e_c00393{width:2.851200px;}
._d_c00393{width:5.025600px;}
._10_c00393{width:6.624000px;}
._1_c00393{width:8.006400px;}
._2_c00393{width:9.403200px;}
._9_c00393{width:10.814400px;}
._8_c00393{width:11.851200px;}
._3_c00393{width:14.371200px;}
._5_c00393{width:21.528000px;}
._c_c00393{width:30.607200px;}
._b_c00393{width:31.932000px;}
._f_c00393{width:33.768000px;}
._a_c00393{width:34.912800px;}
.fc2_c00393{color:rgb(255,0,0);}
.fc1_c00393{color:rgb(68,84,106);}
.fc0_c00393{color:rgb(0,0,0);}
.fs2_c00393{font-size:54.000000px;}
.fs0_c00393{font-size:60.120000px;}
.fs1_c00393{font-size:72.000000px;}
.y0_c00393{bottom:0.000000px;}
.y23_c00393{bottom:3.240600px;}
.y6_c00393{bottom:57.360450px;}
.y5_c00393{bottom:78.060450px;}
.y21_c00393{bottom:116.040450px;}
.y20_c00393{bottom:147.090450px;}
.y1f_c00393{bottom:190.020450px;}
.y1e_c00393{bottom:221.160450px;}
.y1d_c00393{bottom:252.210450px;}
.y1c_c00393{bottom:283.260450px;}
.y1b_c00393{bottom:314.310450px;}
.y1a_c00393{bottom:345.360450px;}
.y19_c00393{bottom:376.410450px;}
.y18_c00393{bottom:407.460450px;}
.y17_c00393{bottom:438.510450px;}
.y16_c00393{bottom:469.560450px;}
.y22_c00393{bottom:496.380000px;}
.y24_c00393{bottom:499.620600px;}
.y15_c00393{bottom:533.640450px;}
.y14_c00393{bottom:701.040450px;}
.y13_c00393{bottom:739.650450px;}
.y12_c00393{bottom:770.790450px;}
.y11_c00393{bottom:801.840450px;}
.y10_c00393{bottom:832.890450px;}
.yf_c00393{bottom:863.940450px;}
.ye_c00393{bottom:906.960450px;}
.yd_c00393{bottom:938.100450px;}
.yc_c00393{bottom:969.150450px;}
.yb_c00393{bottom:1000.200450px;}
.ya_c00393{bottom:1031.160450px;}
.y9_c00393{bottom:1062.210450px;}
.y8_c00393{bottom:1093.260450px;}
.y7_c00393{bottom:1124.310450px;}
.y4_c00393{bottom:1144.380657px;}
.y3_c00393{bottom:1161.660648px;}
.y2_c00393{bottom:1178.850459px;}
.y1_c00393{bottom:1196.130450px;}
.h5_c00393{height:15.300000px;}
.h4_c00393{height:47.513672px;}
.h1_c00393{height:52.898555px;}
.h2_c00393{height:63.175781px;}
.h3_c00393{height:63.351562px;}
.h0_c00393{height:1263.000000px;}
.w2_c00393{width:347.580000px;}
.w1_c00393{width:892.500000px;}
.w0_c00393{width:892.830000px;}
.x0_c00393{left:0.000000px;}
.x7_c00393{left:126.360000px;}
.x4_c00393{left:127.620000px;}
.x8_c00393{left:130.860000px;}
.x6_c00393{left:528.120000px;}
.x1_c00393{left:649.620000px;}
.x3_c00393{left:738.450000px;}
.x5_c00393{left:754.560000px;}
.x2_c00393{left:765.450198px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.lse_c00393{letter-spacing:-0.042752pt;}
.ls12_c00393{letter-spacing:-0.038400pt;}
.ls11_c00393{letter-spacing:-0.032000pt;}
.ls15_c00393{letter-spacing:-0.025600pt;}
.ls14_c00393{letter-spacing:-0.019200pt;}
.ls10_c00393{letter-spacing:-0.012800pt;}
.ls13_c00393{letter-spacing:-0.006400pt;}
.lsf_c00393{letter-spacing:0.000000pt;}
.ls0_c00393{letter-spacing:0.006400pt;}
.ls8_c00393{letter-spacing:0.009600pt;}
.ls4_c00393{letter-spacing:0.012800pt;}
.ls3_c00393{letter-spacing:0.019200pt;}
.ls2_c00393{letter-spacing:0.025600pt;}
.ls1_c00393{letter-spacing:0.032000pt;}
.ls7_c00393{letter-spacing:0.038400pt;}
.lsd_c00393{letter-spacing:0.043200pt;}
.ls9_c00393{letter-spacing:0.044800pt;}
.ls6_c00393{letter-spacing:0.051200pt;}
.lsb_c00393{letter-spacing:0.057600pt;}
.ls5_c00393{letter-spacing:0.064000pt;}
.lsc_c00393{letter-spacing:0.070400pt;}
.lsa_c00393{letter-spacing:0.096000pt;}
.ws1_c00393{word-spacing:0.000000pt;}
.ws4_c00393{word-spacing:0.115200pt;}
.ws0_c00393{word-spacing:0.122912pt;}
.ws3_c00393{word-spacing:0.148800pt;}
.ws2_c00393{word-spacing:10.547200pt;}
._7_c00393{margin-left:-3.852800pt;}
._6_c00393{margin-left:-2.169600pt;}
._0_c00393{margin-left:-0.953600pt;}
._4_c00393{width:0.940800pt;}
._e_c00393{width:2.534400pt;}
._d_c00393{width:4.467200pt;}
._10_c00393{width:5.888000pt;}
._1_c00393{width:7.116800pt;}
._2_c00393{width:8.358400pt;}
._9_c00393{width:9.612800pt;}
._8_c00393{width:10.534400pt;}
._3_c00393{width:12.774400pt;}
._5_c00393{width:19.136000pt;}
._c_c00393{width:27.206400pt;}
._b_c00393{width:28.384000pt;}
._f_c00393{width:30.016000pt;}
._a_c00393{width:31.033600pt;}
.fs2_c00393{font-size:48.000000pt;}
.fs0_c00393{font-size:53.440000pt;}
.fs1_c00393{font-size:64.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y23_c00393{bottom:2.880533pt;}
.y6_c00393{bottom:50.987067pt;}
.y5_c00393{bottom:69.387067pt;}
.y21_c00393{bottom:103.147067pt;}
.y20_c00393{bottom:130.747067pt;}
.y1f_c00393{bottom:168.907067pt;}
.y1e_c00393{bottom:196.587067pt;}
.y1d_c00393{bottom:224.187067pt;}
.y1c_c00393{bottom:251.787067pt;}
.y1b_c00393{bottom:279.387067pt;}
.y1a_c00393{bottom:306.987067pt;}
.y19_c00393{bottom:334.587067pt;}
.y18_c00393{bottom:362.187067pt;}
.y17_c00393{bottom:389.787067pt;}
.y16_c00393{bottom:417.387067pt;}
.y22_c00393{bottom:441.226667pt;}
.y24_c00393{bottom:444.107200pt;}
.y15_c00393{bottom:474.347067pt;}
.y14_c00393{bottom:623.147067pt;}
.y13_c00393{bottom:657.467067pt;}
.y12_c00393{bottom:685.147067pt;}
.y11_c00393{bottom:712.747067pt;}
.y10_c00393{bottom:740.347067pt;}
.yf_c00393{bottom:767.947067pt;}
.ye_c00393{bottom:806.187067pt;}
.yd_c00393{bottom:833.867067pt;}
.yc_c00393{bottom:861.467067pt;}
.yb_c00393{bottom:889.067067pt;}
.ya_c00393{bottom:916.587067pt;}
.y9_c00393{bottom:944.187067pt;}
.y8_c00393{bottom:971.787067pt;}
.y7_c00393{bottom:999.387067pt;}
.y4_c00393{bottom:1017.227251pt;}
.y3_c00393{bottom:1032.587243pt;}
.y2_c00393{bottom:1047.867075pt;}
.y1_c00393{bottom:1063.227067pt;}
.h5_c00393{height:13.600000pt;}
.h4_c00393{height:42.234375pt;}
.h1_c00393{height:47.020937pt;}
.h2_c00393{height:56.156250pt;}
.h3_c00393{height:56.312500pt;}
.h0_c00393{height:1122.666667pt;}
.w2_c00393{width:308.960000pt;}
.w1_c00393{width:793.333333pt;}
.w0_c00393{width:793.626667pt;}
.x0_c00393{left:0.000000pt;}
.x7_c00393{left:112.320000pt;}
.x4_c00393{left:113.440000pt;}
.x8_c00393{left:116.320000pt;}
.x6_c00393{left:469.440000pt;}
.x1_c00393{left:577.440000pt;}
.x3_c00393{left:656.400000pt;}
.x5_c00393{left:670.720000pt;}
.x2_c00393{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_956ed98d038d5e9f963028b0.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.095703;font-style:normal;font-weight:normal;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_31e2b6a39c68e75a12439868.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:1.093262;font-style: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);}
.v2_c00394{vertical-align:-20.880000px;}
.v0_c00394{vertical-align:0.000000px;}
.v1_c00394{vertical-align:27.000000px;}
.ls17_c00394{letter-spacing:-0.174348px;}
.lse_c00394{letter-spacing:-0.102204px;}
.ls11_c00394{letter-spacing:-0.093600px;}
.ls16_c00394{letter-spacing:-0.054108px;}
.ls10_c00394{letter-spacing:-0.028800px;}
.ls13_c00394{letter-spacing:-0.014400px;}
.ls15_c00394{letter-spacing:-0.006012px;}
.lsf_c00394{letter-spacing:0.000000px;}
.ls5_c00394{letter-spacing:0.007200px;}
.ls3_c00394{letter-spacing:0.014400px;}
.lsd_c00394{letter-spacing:0.018036px;}
.ls1_c00394{letter-spacing:0.021600px;}
.ls6_c00394{letter-spacing:0.028800px;}
.ls0_c00394{letter-spacing:0.036000px;}
.lsc_c00394{letter-spacing:0.043200px;}
.lsa_c00394{letter-spacing:0.050400px;}
.ls8_c00394{letter-spacing:0.057600px;}
.ls4_c00394{letter-spacing:0.064800px;}
.ls2_c00394{letter-spacing:0.072000px;}
.ls9_c00394{letter-spacing:0.079200px;}
.lsb_c00394{letter-spacing:0.086400px;}
.ls7_c00394{letter-spacing:0.129600px;}
.ls12_c00394{letter-spacing:0.181944px;}
.ls14_c00394{letter-spacing:12.691332px;}
.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:-18.057600px;}
.ws1_c00394{word-spacing:-18.043200px;}
.ws4_c00394{word-spacing:-15.048036px;}
.ws5_c00394{word-spacing:-14.975892px;}
.ws2_c00394{word-spacing:-12.151944px;}
.ws3_c00394{word-spacing:-9.720000px;}
.ws7_c00394{word-spacing:0.000000px;}
.ws6_c00394{word-spacing:0.192384px;}
._b_c00394{margin-left:-12.829608px;}
._c_c00394{margin-left:-11.789532px;}
._6_c00394{margin-left:-2.836800px;}
._1_c00394{margin-left:-1.800000px;}
._0_c00394{width:1.034064px;}
._8_c00394{width:2.952000px;}
._7_c00394{width:3.952800px;}
._9_c00394{width:5.364000px;}
._5_c00394{width:6.516000px;}
._4_c00394{width:7.545600px;}
._d_c00394{width:11.500956px;}
._e_c00394{width:12.697344px;}
._a_c00394{width:14.342400px;}
._3_c00394{width:15.350400px;}
._2_c00394{width:16.538400px;}
.fc1_c00394{color:rgb(0,0,0);}
.fc0_c00394{color:rgb(32,31,30);}
.fs3_c00394{font-size:38.880000px;}
.fs2_c00394{font-size:47.880000px;}
.fs0_c00394{font-size:60.120000px;}
.fs1_c00394{font-size:72.000000px;}
.y0_c00394{bottom:0.000000px;}
.y5_c00394{bottom:57.360450px;}
.y4_c00394{bottom:78.060450px;}
.y26_c00394{bottom:109.920639px;}
.y25_c00394{bottom:132.330450px;}
.y24_c00394{bottom:145.020450px;}
.y23_c00394{bottom:211.080450px;}
.y22_c00394{bottom:242.130450px;}
.y21_c00394{bottom:273.090450px;}
.y20_c00394{bottom:304.140450px;}
.y1f_c00394{bottom:335.190450px;}
.y1e_c00394{bottom:366.240450px;}
.y1d_c00394{bottom:397.290450px;}
.y1c_c00394{bottom:428.340450px;}
.y1b_c00394{bottom:459.390450px;}
.y1a_c00394{bottom:490.440450px;}
.y19_c00394{bottom:521.490450px;}
.y18_c00394{bottom:552.540450px;}
.y17_c00394{bottom:583.590450px;}
.y16_c00394{bottom:614.640450px;}
.y15_c00394{bottom:645.690450px;}
.y14_c00394{bottom:676.740450px;}
.y13_c00394{bottom:707.790450px;}
.y12_c00394{bottom:738.840450px;}
.y11_c00394{bottom:769.890450px;}
.y10_c00394{bottom:800.940450px;}
.yf_c00394{bottom:831.990450px;}
.ye_c00394{bottom:863.040450px;}
.yd_c00394{bottom:894.090450px;}
.yc_c00394{bottom:925.140450px;}
.yb_c00394{bottom:956.190450px;}
.ya_c00394{bottom:987.240450px;}
.y9_c00394{bottom:1018.290450px;}
.y8_c00394{bottom:1049.340450px;}
.y7_c00394{bottom:1080.390450px;}
.y6_c00394{bottom:1111.440450px;}
.y3_c00394{bottom:1132.140450px;}
.y2_c00394{bottom:1165.441023px;}
.y1_c00394{bottom:1196.040600px;}
.h5_c00394{height:34.114922px;}
.h6_c00394{height:52.751777px;}
.h1_c00394{height:52.898555px;}
.h2_c00394{height:63.175781px;}
.h3_c00394{height:63.351562px;}
.h4_c00394{height:69.011895px;}
.h0_c00394{height:1263.000000px;}
.w1_c00394{width:892.500000px;}
.w0_c00394{width:892.830000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:127.620000px;}
.x2_c00394{left:738.450000px;}
@media print{
.v2_c00394{vertical-align:-18.560000pt;}
.v0_c00394{vertical-align:0.000000pt;}
.v1_c00394{vertical-align:24.000000pt;}
.ls17_c00394{letter-spacing:-0.154976pt;}
.lse_c00394{letter-spacing:-0.090848pt;}
.ls11_c00394{letter-spacing:-0.083200pt;}
.ls16_c00394{letter-spacing:-0.048096pt;}
.ls10_c00394{letter-spacing:-0.025600pt;}
.ls13_c00394{letter-spacing:-0.012800pt;}
.ls15_c00394{letter-spacing:-0.005344pt;}
.lsf_c00394{letter-spacing:0.000000pt;}
.ls5_c00394{letter-spacing:0.006400pt;}
.ls3_c00394{letter-spacing:0.012800pt;}
.lsd_c00394{letter-spacing:0.016032pt;}
.ls1_c00394{letter-spacing:0.019200pt;}
.ls6_c00394{letter-spacing:0.025600pt;}
.ls0_c00394{letter-spacing:0.032000pt;}
.lsc_c00394{letter-spacing:0.038400pt;}
.lsa_c00394{letter-spacing:0.044800pt;}
.ls8_c00394{letter-spacing:0.051200pt;}
.ls4_c00394{letter-spacing:0.057600pt;}
.ls2_c00394{letter-spacing:0.064000pt;}
.ls9_c00394{letter-spacing:0.070400pt;}
.lsb_c00394{letter-spacing:0.076800pt;}
.ls7_c00394{letter-spacing:0.115200pt;}
.ls12_c00394{letter-spacing:0.161728pt;}
.ls14_c00394{letter-spacing:11.281184pt;}
.ws0_c00394{word-spacing:-16.051200pt;}
.ws1_c00394{word-spacing:-16.038400pt;}
.ws4_c00394{word-spacing:-13.376032pt;}
.ws5_c00394{word-spacing:-13.311904pt;}
.ws2_c00394{word-spacing:-10.801728pt;}
.ws3_c00394{word-spacing:-8.640000pt;}
.ws7_c00394{word-spacing:0.000000pt;}
.ws6_c00394{word-spacing:0.171008pt;}
._b_c00394{margin-left:-11.404096pt;}
._c_c00394{margin-left:-10.479584pt;}
._6_c00394{margin-left:-2.521600pt;}
._1_c00394{margin-left:-1.600000pt;}
._0_c00394{width:0.919168pt;}
._8_c00394{width:2.624000pt;}
._7_c00394{width:3.513600pt;}
._9_c00394{width:4.768000pt;}
._5_c00394{width:5.792000pt;}
._4_c00394{width:6.707200pt;}
._d_c00394{width:10.223072pt;}
._e_c00394{width:11.286528pt;}
._a_c00394{width:12.748800pt;}
._3_c00394{width:13.644800pt;}
._2_c00394{width:14.700800pt;}
.fs3_c00394{font-size:34.560000pt;}
.fs2_c00394{font-size:42.560000pt;}
.fs0_c00394{font-size:53.440000pt;}
.fs1_c00394{font-size:64.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.y5_c00394{bottom:50.987067pt;}
.y4_c00394{bottom:69.387067pt;}
.y26_c00394{bottom:97.707235pt;}
.y25_c00394{bottom:117.627067pt;}
.y24_c00394{bottom:128.907067pt;}
.y23_c00394{bottom:187.627067pt;}
.y22_c00394{bottom:215.227067pt;}
.y21_c00394{bottom:242.747067pt;}
.y20_c00394{bottom:270.347067pt;}
.y1f_c00394{bottom:297.947067pt;}
.y1e_c00394{bottom:325.547067pt;}
.y1d_c00394{bottom:353.147067pt;}
.y1c_c00394{bottom:380.747067pt;}
.y1b_c00394{bottom:408.347067pt;}
.y1a_c00394{bottom:435.947067pt;}
.y19_c00394{bottom:463.547067pt;}
.y18_c00394{bottom:491.147067pt;}
.y17_c00394{bottom:518.747067pt;}
.y16_c00394{bottom:546.347067pt;}
.y15_c00394{bottom:573.947067pt;}
.y14_c00394{bottom:601.547067pt;}
.y13_c00394{bottom:629.147067pt;}
.y12_c00394{bottom:656.747067pt;}
.y11_c00394{bottom:684.347067pt;}
.y10_c00394{bottom:711.947067pt;}
.yf_c00394{bottom:739.547067pt;}
.ye_c00394{bottom:767.147067pt;}
.yd_c00394{bottom:794.747067pt;}
.yc_c00394{bottom:822.347067pt;}
.yb_c00394{bottom:849.947067pt;}
.ya_c00394{bottom:877.547067pt;}
.y9_c00394{bottom:905.147067pt;}
.y8_c00394{bottom:932.747067pt;}
.y7_c00394{bottom:960.347067pt;}
.y6_c00394{bottom:987.947067pt;}
.y3_c00394{bottom:1006.347067pt;}
.y2_c00394{bottom:1035.947576pt;}
.y1_c00394{bottom:1063.147200pt;}
.h5_c00394{height:30.324375pt;}
.h6_c00394{height:46.890469pt;}
.h1_c00394{height:47.020937pt;}
.h2_c00394{height:56.156250pt;}
.h3_c00394{height:56.312500pt;}
.h4_c00394{height:61.343906pt;}
.h0_c00394{height:1122.666667pt;}
.w1_c00394{width:793.333333pt;}
.w0_c00394{width:793.626667pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:113.440000pt;}
.x2_c00394{left:656.400000pt;}
}





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

.ir_c00395:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00395{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00395;src:url('chunks/assets/font_f2eeac3bd72f0a02221919f4.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.095703;font-style:normal;font-weight:normal;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_b431e2b6cac043f9039ce0d5.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.093262;font-style: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;}
.ls11_c00395{letter-spacing:-0.124200px;}
.ls15_c00395{letter-spacing:-0.048600px;}
.lsd_c00395{letter-spacing:-0.048096px;}
.ls10_c00395{letter-spacing:-0.037800px;}
.lsf_c00395{letter-spacing:-0.021600px;}
.ls13_c00395{letter-spacing:-0.014400px;}
.ls14_c00395{letter-spacing:-0.007200px;}
.lse_c00395{letter-spacing:0.000000px;}
.ls6_c00395{letter-spacing:0.007200px;}
.ls3_c00395{letter-spacing:0.014400px;}
.ls8_c00395{letter-spacing:0.021600px;}
.ls1_c00395{letter-spacing:0.028800px;}
.ls2_c00395{letter-spacing:0.036000px;}
.ls7_c00395{letter-spacing:0.043200px;}
.ls9_c00395{letter-spacing:0.050400px;}
.ls4_c00395{letter-spacing:0.057600px;}
.lsc_c00395{letter-spacing:0.064800px;}
.lsa_c00395{letter-spacing:0.086400px;}
.lsb_c00395{letter-spacing:0.093600px;}
.ls5_c00395{letter-spacing:0.122400px;}
.ls12_c00395{letter-spacing:4.680000px;}
.ls0_c00395{letter-spacing:855.000000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00395{word-spacing:-3.283200px;}
.ws9_c00395{word-spacing:-2.359800px;}
.ws7_c00395{word-spacing:-2.316600px;}
.wsa_c00395{word-spacing:-2.300400px;}
.ws8_c00395{word-spacing:-2.289600px;}
.ws1_c00395{word-spacing:0.000000px;}
.wsc_c00395{word-spacing:0.007200px;}
.ws0_c00395{word-spacing:0.138276px;}
.wsb_c00395{word-spacing:0.156600px;}
.ws2_c00395{word-spacing:3.083400px;}
.ws3_c00395{word-spacing:3.099600px;}
.ws5_c00395{word-spacing:4.485600px;}
.ws4_c00395{word-spacing:4.644000px;}
._1_c00395{margin-left:-387.000000px;}
._3_c00395{margin-left:-5.466600px;}
._6_c00395{margin-left:-3.592800px;}
._5_c00395{margin-left:-2.520000px;}
._0_c00395{margin-left:-1.020600px;}
._4_c00395{width:1.022400px;}
._7_c00395{width:2.577600px;}
._2_c00395{width:4.651200px;}
._8_c00395{width:5.673600px;}
._e_c00395{width:6.775200px;}
._d_c00395{width:10.431000px;}
._c_c00395{width:11.512800px;}
._9_c00395{width:387.000000px;}
._a_c00395{width:470.160000px;}
._b_c00395{width:668.520000px;}
.fc1_c00395{color:rgb(68,84,106);}
.fc0_c00395{color:rgb(0,0,0);}
.fs2_c00395{font-size:54.000000px;}
.fs0_c00395{font-size:60.120000px;}
.fs1_c00395{font-size:72.000000px;}
.y0_c00395{bottom:0.000000px;}
.y6_c00395{bottom:57.360450px;}
.y5_c00395{bottom:78.060450px;}
.y21_c00395{bottom:128.460600px;}
.y20_c00395{bottom:159.510600px;}
.y1f_c00395{bottom:190.560600px;}
.y1e_c00395{bottom:221.610600px;}
.y1d_c00395{bottom:252.660600px;}
.y1c_c00395{bottom:283.710600px;}
.y1b_c00395{bottom:314.760600px;}
.y1a_c00395{bottom:345.810600px;}
.y19_c00395{bottom:376.860600px;}
.y18_c00395{bottom:407.910600px;}
.y17_c00395{bottom:434.910600px;}
.y16_c00395{bottom:574.590900px;}
.y15_c00395{bottom:590.160450px;}
.y14_c00395{bottom:616.890450px;}
.y13_c00395{bottom:647.940450px;}
.y12_c00395{bottom:678.990450px;}
.y11_c00395{bottom:709.950450px;}
.y10_c00395{bottom:741.000450px;}
.yf_c00395{bottom:772.050450px;}
.ye_c00395{bottom:803.100450px;}
.yd_c00395{bottom:834.150450px;}
.yc_c00395{bottom:865.200450px;}
.yb_c00395{bottom:896.250450px;}
.ya_c00395{bottom:927.300450px;}
.y9_c00395{bottom:954.300450px;}
.y8_c00395{bottom:1113.150000px;}
.y7_c00395{bottom:1128.630450px;}
.y4_c00395{bottom:1144.380657px;}
.y3_c00395{bottom:1161.660648px;}
.y2_c00395{bottom:1178.850459px;}
.y1_c00395{bottom:1196.130450px;}
.h3_c00395{height:47.513672px;}
.h1_c00395{height:52.898555px;}
.h2_c00395{height:63.175781px;}
.h4_c00395{height:63.351562px;}
.h0_c00395{height:1263.000000px;}
.w1_c00395{width:892.500000px;}
.w0_c00395{width:892.830000px;}
.x0_c00395{left:0.000000px;}
.x4_c00395{left:127.620000px;}
.x6_c00395{left:364.950000px;}
.x5_c00395{left:405.540000px;}
.x1_c00395{left:649.620000px;}
.x3_c00395{left:738.450000px;}
.x2_c00395{left:765.450198px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls11_c00395{letter-spacing:-0.110400pt;}
.ls15_c00395{letter-spacing:-0.043200pt;}
.lsd_c00395{letter-spacing:-0.042752pt;}
.ls10_c00395{letter-spacing:-0.033600pt;}
.lsf_c00395{letter-spacing:-0.019200pt;}
.ls13_c00395{letter-spacing:-0.012800pt;}
.ls14_c00395{letter-spacing:-0.006400pt;}
.lse_c00395{letter-spacing:0.000000pt;}
.ls6_c00395{letter-spacing:0.006400pt;}
.ls3_c00395{letter-spacing:0.012800pt;}
.ls8_c00395{letter-spacing:0.019200pt;}
.ls1_c00395{letter-spacing:0.025600pt;}
.ls2_c00395{letter-spacing:0.032000pt;}
.ls7_c00395{letter-spacing:0.038400pt;}
.ls9_c00395{letter-spacing:0.044800pt;}
.ls4_c00395{letter-spacing:0.051200pt;}
.lsc_c00395{letter-spacing:0.057600pt;}
.lsa_c00395{letter-spacing:0.076800pt;}
.lsb_c00395{letter-spacing:0.083200pt;}
.ls5_c00395{letter-spacing:0.108800pt;}
.ls12_c00395{letter-spacing:4.160000pt;}
.ls0_c00395{letter-spacing:760.000000pt;}
.ws6_c00395{word-spacing:-2.918400pt;}
.ws9_c00395{word-spacing:-2.097600pt;}
.ws7_c00395{word-spacing:-2.059200pt;}
.wsa_c00395{word-spacing:-2.044800pt;}
.ws8_c00395{word-spacing:-2.035200pt;}
.ws1_c00395{word-spacing:0.000000pt;}
.wsc_c00395{word-spacing:0.006400pt;}
.ws0_c00395{word-spacing:0.122912pt;}
.wsb_c00395{word-spacing:0.139200pt;}
.ws2_c00395{word-spacing:2.740800pt;}
.ws3_c00395{word-spacing:2.755200pt;}
.ws5_c00395{word-spacing:3.987200pt;}
.ws4_c00395{word-spacing:4.128000pt;}
._1_c00395{margin-left:-344.000000pt;}
._3_c00395{margin-left:-4.859200pt;}
._6_c00395{margin-left:-3.193600pt;}
._5_c00395{margin-left:-2.240000pt;}
._0_c00395{margin-left:-0.907200pt;}
._4_c00395{width:0.908800pt;}
._7_c00395{width:2.291200pt;}
._2_c00395{width:4.134400pt;}
._8_c00395{width:5.043200pt;}
._e_c00395{width:6.022400pt;}
._d_c00395{width:9.272000pt;}
._c_c00395{width:10.233600pt;}
._9_c00395{width:344.000000pt;}
._a_c00395{width:417.920000pt;}
._b_c00395{width:594.240000pt;}
.fs2_c00395{font-size:48.000000pt;}
.fs0_c00395{font-size:53.440000pt;}
.fs1_c00395{font-size:64.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y6_c00395{bottom:50.987067pt;}
.y5_c00395{bottom:69.387067pt;}
.y21_c00395{bottom:114.187200pt;}
.y20_c00395{bottom:141.787200pt;}
.y1f_c00395{bottom:169.387200pt;}
.y1e_c00395{bottom:196.987200pt;}
.y1d_c00395{bottom:224.587200pt;}
.y1c_c00395{bottom:252.187200pt;}
.y1b_c00395{bottom:279.787200pt;}
.y1a_c00395{bottom:307.387200pt;}
.y19_c00395{bottom:334.987200pt;}
.y18_c00395{bottom:362.587200pt;}
.y17_c00395{bottom:386.587200pt;}
.y16_c00395{bottom:510.747467pt;}
.y15_c00395{bottom:524.587067pt;}
.y14_c00395{bottom:548.347067pt;}
.y13_c00395{bottom:575.947067pt;}
.y12_c00395{bottom:603.547067pt;}
.y11_c00395{bottom:631.067067pt;}
.y10_c00395{bottom:658.667067pt;}
.yf_c00395{bottom:686.267067pt;}
.ye_c00395{bottom:713.867067pt;}
.yd_c00395{bottom:741.467067pt;}
.yc_c00395{bottom:769.067067pt;}
.yb_c00395{bottom:796.667067pt;}
.ya_c00395{bottom:824.267067pt;}
.y9_c00395{bottom:848.267067pt;}
.y8_c00395{bottom:989.466667pt;}
.y7_c00395{bottom:1003.227067pt;}
.y4_c00395{bottom:1017.227251pt;}
.y3_c00395{bottom:1032.587243pt;}
.y2_c00395{bottom:1047.867075pt;}
.y1_c00395{bottom:1063.227067pt;}
.h3_c00395{height:42.234375pt;}
.h1_c00395{height:47.020937pt;}
.h2_c00395{height:56.156250pt;}
.h4_c00395{height:56.312500pt;}
.h0_c00395{height:1122.666667pt;}
.w1_c00395{width:793.333333pt;}
.w0_c00395{width:793.626667pt;}
.x0_c00395{left:0.000000pt;}
.x4_c00395{left:113.440000pt;}
.x6_c00395{left:324.400000pt;}
.x5_c00395{left:360.480000pt;}
.x1_c00395{left:577.440000pt;}
.x3_c00395{left:656.400000pt;}
.x2_c00395{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5d302694b1ca37d4ecc4991.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.095703;font-style:normal;font-weight:normal;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_ca183cfd5b5bf3e6dd930a0c.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:1.093262;font-style: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;}
.ls11_c00396{letter-spacing:-2.880000px;}
.ls12_c00396{letter-spacing:-1.080000px;}
.lsc_c00396{letter-spacing:-0.102204px;}
.ls15_c00396{letter-spacing:-0.100800px;}
.ls13_c00396{letter-spacing:-0.043200px;}
.lse_c00396{letter-spacing:-0.036000px;}
.ls14_c00396{letter-spacing:-0.028800px;}
.lsf_c00396{letter-spacing:-0.014400px;}
.ls10_c00396{letter-spacing:-0.007200px;}
.lsd_c00396{letter-spacing:0.000000px;}
.ls7_c00396{letter-spacing:0.007200px;}
.ls4_c00396{letter-spacing:0.014400px;}
.ls5_c00396{letter-spacing:0.021600px;}
.ls9_c00396{letter-spacing:0.028800px;}
.ls1_c00396{letter-spacing:0.036000px;}
.ls0_c00396{letter-spacing:0.043200px;}
.ls3_c00396{letter-spacing:0.050400px;}
.ls8_c00396{letter-spacing:0.057600px;}
.lsb_c00396{letter-spacing:0.064800px;}
.ls6_c00396{letter-spacing:0.072000px;}
.ls2_c00396{letter-spacing:0.086400px;}
.lsa_c00396{letter-spacing:0.108000px;}
.ls16_c00396{letter-spacing:4.320000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00396{word-spacing:-18.057600px;}
.ws3_c00396{word-spacing:-3.254400px;}
.ws4_c00396{word-spacing:-2.887200px;}
.ws2_c00396{word-spacing:0.000000px;}
.ws1_c00396{word-spacing:0.192384px;}
.ws5_c00396{word-spacing:2.678400px;}
._d_c00396{margin-left:-4.495536px;}
._7_c00396{margin-left:-2.916000px;}
._4_c00396{margin-left:-1.159200px;}
._0_c00396{width:1.034064px;}
._9_c00396{width:2.544336px;}
._1_c00396{width:4.348800px;}
._2_c00396{width:5.716800px;}
._5_c00396{width:6.818400px;}
._c_c00396{width:7.920000px;}
._b_c00396{width:9.712800px;}
._a_c00396{width:10.749600px;}
._6_c00396{width:12.168000px;}
._8_c00396{width:13.478400px;}
._3_c00396{width:26.964000px;}
.fc1_c00396{color:rgb(0,0,0);}
.fc0_c00396{color:rgb(32,31,30);}
.fs0_c00396{font-size:60.120000px;}
.fs1_c00396{font-size:72.000000px;}
.y0_c00396{bottom:0.000000px;}
.y5_c00396{bottom:57.360450px;}
.y4_c00396{bottom:78.060450px;}
.y25_c00396{bottom:148.980450px;}
.y24_c00396{bottom:180.030450px;}
.y23_c00396{bottom:211.080450px;}
.y22_c00396{bottom:242.130450px;}
.y21_c00396{bottom:273.090450px;}
.y20_c00396{bottom:304.140450px;}
.y1f_c00396{bottom:335.190450px;}
.y1e_c00396{bottom:366.240450px;}
.y1d_c00396{bottom:397.290450px;}
.y1c_c00396{bottom:428.340450px;}
.y1b_c00396{bottom:459.390450px;}
.y1a_c00396{bottom:490.440450px;}
.y19_c00396{bottom:521.490450px;}
.y18_c00396{bottom:552.540450px;}
.y17_c00396{bottom:583.590450px;}
.y16_c00396{bottom:614.640450px;}
.y15_c00396{bottom:645.690450px;}
.y14_c00396{bottom:676.740450px;}
.y13_c00396{bottom:707.790450px;}
.y12_c00396{bottom:738.840450px;}
.y11_c00396{bottom:769.890450px;}
.y10_c00396{bottom:800.940450px;}
.yf_c00396{bottom:831.990450px;}
.ye_c00396{bottom:863.040450px;}
.yd_c00396{bottom:894.090450px;}
.yc_c00396{bottom:925.140450px;}
.yb_c00396{bottom:956.190450px;}
.ya_c00396{bottom:987.240450px;}
.y9_c00396{bottom:1018.290450px;}
.y8_c00396{bottom:1049.340450px;}
.y7_c00396{bottom:1080.390450px;}
.y6_c00396{bottom:1111.440450px;}
.y3_c00396{bottom:1132.140450px;}
.y2_c00396{bottom:1165.441023px;}
.y1_c00396{bottom:1196.040600px;}
.h1_c00396{height:52.898555px;}
.h2_c00396{height:63.175781px;}
.h3_c00396{height:63.351562px;}
.h0_c00396{height:1263.000000px;}
.w1_c00396{width:892.500000px;}
.w0_c00396{width:892.830000px;}
.x0_c00396{left:0.000000px;}
.x1_c00396{left:127.620000px;}
.x2_c00396{left:738.450000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls11_c00396{letter-spacing:-2.560000pt;}
.ls12_c00396{letter-spacing:-0.960000pt;}
.lsc_c00396{letter-spacing:-0.090848pt;}
.ls15_c00396{letter-spacing:-0.089600pt;}
.ls13_c00396{letter-spacing:-0.038400pt;}
.lse_c00396{letter-spacing:-0.032000pt;}
.ls14_c00396{letter-spacing:-0.025600pt;}
.lsf_c00396{letter-spacing:-0.012800pt;}
.ls10_c00396{letter-spacing:-0.006400pt;}
.lsd_c00396{letter-spacing:0.000000pt;}
.ls7_c00396{letter-spacing:0.006400pt;}
.ls4_c00396{letter-spacing:0.012800pt;}
.ls5_c00396{letter-spacing:0.019200pt;}
.ls9_c00396{letter-spacing:0.025600pt;}
.ls1_c00396{letter-spacing:0.032000pt;}
.ls0_c00396{letter-spacing:0.038400pt;}
.ls3_c00396{letter-spacing:0.044800pt;}
.ls8_c00396{letter-spacing:0.051200pt;}
.lsb_c00396{letter-spacing:0.057600pt;}
.ls6_c00396{letter-spacing:0.064000pt;}
.ls2_c00396{letter-spacing:0.076800pt;}
.lsa_c00396{letter-spacing:0.096000pt;}
.ls16_c00396{letter-spacing:3.840000pt;}
.ws0_c00396{word-spacing:-16.051200pt;}
.ws3_c00396{word-spacing:-2.892800pt;}
.ws4_c00396{word-spacing:-2.566400pt;}
.ws2_c00396{word-spacing:0.000000pt;}
.ws1_c00396{word-spacing:0.171008pt;}
.ws5_c00396{word-spacing:2.380800pt;}
._d_c00396{margin-left:-3.996032pt;}
._7_c00396{margin-left:-2.592000pt;}
._4_c00396{margin-left:-1.030400pt;}
._0_c00396{width:0.919168pt;}
._9_c00396{width:2.261632pt;}
._1_c00396{width:3.865600pt;}
._2_c00396{width:5.081600pt;}
._5_c00396{width:6.060800pt;}
._c_c00396{width:7.040000pt;}
._b_c00396{width:8.633600pt;}
._a_c00396{width:9.555200pt;}
._6_c00396{width:10.816000pt;}
._8_c00396{width:11.980800pt;}
._3_c00396{width:23.968000pt;}
.fs0_c00396{font-size:53.440000pt;}
.fs1_c00396{font-size:64.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.y5_c00396{bottom:50.987067pt;}
.y4_c00396{bottom:69.387067pt;}
.y25_c00396{bottom:132.427067pt;}
.y24_c00396{bottom:160.027067pt;}
.y23_c00396{bottom:187.627067pt;}
.y22_c00396{bottom:215.227067pt;}
.y21_c00396{bottom:242.747067pt;}
.y20_c00396{bottom:270.347067pt;}
.y1f_c00396{bottom:297.947067pt;}
.y1e_c00396{bottom:325.547067pt;}
.y1d_c00396{bottom:353.147067pt;}
.y1c_c00396{bottom:380.747067pt;}
.y1b_c00396{bottom:408.347067pt;}
.y1a_c00396{bottom:435.947067pt;}
.y19_c00396{bottom:463.547067pt;}
.y18_c00396{bottom:491.147067pt;}
.y17_c00396{bottom:518.747067pt;}
.y16_c00396{bottom:546.347067pt;}
.y15_c00396{bottom:573.947067pt;}
.y14_c00396{bottom:601.547067pt;}
.y13_c00396{bottom:629.147067pt;}
.y12_c00396{bottom:656.747067pt;}
.y11_c00396{bottom:684.347067pt;}
.y10_c00396{bottom:711.947067pt;}
.yf_c00396{bottom:739.547067pt;}
.ye_c00396{bottom:767.147067pt;}
.yd_c00396{bottom:794.747067pt;}
.yc_c00396{bottom:822.347067pt;}
.yb_c00396{bottom:849.947067pt;}
.ya_c00396{bottom:877.547067pt;}
.y9_c00396{bottom:905.147067pt;}
.y8_c00396{bottom:932.747067pt;}
.y7_c00396{bottom:960.347067pt;}
.y6_c00396{bottom:987.947067pt;}
.y3_c00396{bottom:1006.347067pt;}
.y2_c00396{bottom:1035.947576pt;}
.y1_c00396{bottom:1063.147200pt;}
.h1_c00396{height:47.020937pt;}
.h2_c00396{height:56.156250pt;}
.h3_c00396{height:56.312500pt;}
.h0_c00396{height:1122.666667pt;}
.w1_c00396{width:793.333333pt;}
.w0_c00396{width:793.626667pt;}
.x0_c00396{left:0.000000pt;}
.x1_c00396{left:113.440000pt;}
.x2_c00396{left:656.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_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_b3a41a0963d6c1445602114e.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.095703;font-style:normal;font-weight:normal;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_c148588d2decf4e677ed368f.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.093262;font-style: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;}
.ls15_c00397{letter-spacing:-0.136800px;}
.ls14_c00397{letter-spacing:-0.050400px;}
.ls10_c00397{letter-spacing:-0.048096px;}
.ls17_c00397{letter-spacing:-0.027000px;}
.ls19_c00397{letter-spacing:-0.021600px;}
.ls18_c00397{letter-spacing:-0.016200px;}
.ls13_c00397{letter-spacing:-0.014400px;}
.ls12_c00397{letter-spacing:-0.007200px;}
.ls11_c00397{letter-spacing:0.000000px;}
.lsd_c00397{letter-spacing:0.007200px;}
.ls6_c00397{letter-spacing:0.014400px;}
.ls0_c00397{letter-spacing:0.021600px;}
.lsf_c00397{letter-spacing:0.027000px;}
.ls9_c00397{letter-spacing:0.028800px;}
.ls7_c00397{letter-spacing:0.036000px;}
.ls8_c00397{letter-spacing:0.043200px;}
.ls4_c00397{letter-spacing:0.050400px;}
.ls1_c00397{letter-spacing:0.057600px;}
.lse_c00397{letter-spacing:0.064800px;}
.ls3_c00397{letter-spacing:0.072000px;}
.lsc_c00397{letter-spacing:0.079200px;}
.lsa_c00397{letter-spacing:0.086400px;}
.lsb_c00397{letter-spacing:0.108000px;}
.ls1a_c00397{letter-spacing:0.129600px;}
.ls5_c00397{letter-spacing:0.144000px;}
.ls2_c00397{letter-spacing:0.158400px;}
.ls16_c00397{letter-spacing:3.600000px;}
.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;}
}
.ws4_c00397{word-spacing:-1.296000px;}
.ws3_c00397{word-spacing:-1.029600px;}
.ws1_c00397{word-spacing:0.000000px;}
.ws9_c00397{word-spacing:0.135000px;}
.ws0_c00397{word-spacing:0.138276px;}
.ws6_c00397{word-spacing:0.151200px;}
.ws8_c00397{word-spacing:0.194400px;}
.ws7_c00397{word-spacing:0.205200px;}
.ws2_c00397{word-spacing:1.087200px;}
.ws5_c00397{word-spacing:2.383200px;}
._9_c00397{margin-left:-4.809600px;}
._6_c00397{margin-left:-3.448800px;}
._2_c00397{margin-left:-2.304000px;}
._1_c00397{margin-left:-1.036800px;}
._0_c00397{width:1.058400px;}
._7_c00397{width:2.455200px;}
._8_c00397{width:4.312800px;}
._d_c00397{width:6.832800px;}
._5_c00397{width:9.712800px;}
._4_c00397{width:10.749600px;}
._3_c00397{width:11.836800px;}
._a_c00397{width:28.389600px;}
._e_c00397{width:37.360800px;}
._c_c00397{width:38.469600px;}
._b_c00397{width:56.484000px;}
.fc1_c00397{color:rgb(68,84,106);}
.fc0_c00397{color:rgb(0,0,0);}
.fs2_c00397{font-size:54.000000px;}
.fs0_c00397{font-size:60.120000px;}
.fs1_c00397{font-size:72.000000px;}
.y0_c00397{bottom:0.000000px;}
.y24_c00397{bottom:3.240450px;}
.y6_c00397{bottom:57.360450px;}
.y5_c00397{bottom:78.060450px;}
.y22_c00397{bottom:166.170450px;}
.y21_c00397{bottom:197.220450px;}
.y20_c00397{bottom:228.270450px;}
.y1f_c00397{bottom:259.320450px;}
.y1e_c00397{bottom:290.370450px;}
.y1d_c00397{bottom:321.330450px;}
.y1c_c00397{bottom:352.380450px;}
.y1b_c00397{bottom:383.430450px;}
.y1a_c00397{bottom:414.480450px;}
.y19_c00397{bottom:445.530450px;}
.y18_c00397{bottom:476.580450px;}
.y23_c00397{bottom:498.000000px;}
.y25_c00397{bottom:501.240450px;}
.y17_c00397{bottom:534.090450px;}
.y16_c00397{bottom:561.090450px;}
.y15_c00397{bottom:694.020450px;}
.y14_c00397{bottom:720.750450px;}
.y13_c00397{bottom:751.800450px;}
.y12_c00397{bottom:782.850450px;}
.y11_c00397{bottom:813.900450px;}
.y10_c00397{bottom:844.950450px;}
.yf_c00397{bottom:876.000450px;}
.ye_c00397{bottom:907.050450px;}
.yd_c00397{bottom:938.100450px;}
.yc_c00397{bottom:969.150450px;}
.yb_c00397{bottom:1000.200450px;}
.ya_c00397{bottom:1031.160450px;}
.y9_c00397{bottom:1062.210450px;}
.y8_c00397{bottom:1093.260450px;}
.y7_c00397{bottom:1124.310450px;}
.y4_c00397{bottom:1144.380657px;}
.y3_c00397{bottom:1161.660648px;}
.y2_c00397{bottom:1178.850459px;}
.y1_c00397{bottom:1196.130450px;}
.h5_c00397{height:15.300000px;}
.h4_c00397{height:47.513672px;}
.h1_c00397{height:52.898555px;}
.h2_c00397{height:63.175781px;}
.h3_c00397{height:63.351562px;}
.h0_c00397{height:1263.000000px;}
.w2_c00397{width:5.490000px;}
.w1_c00397{width:892.500000px;}
.w0_c00397{width:892.830000px;}
.x0_c00397{left:0.000000px;}
.x7_c00397{left:126.360000px;}
.x4_c00397{left:127.620000px;}
.x8_c00397{left:130.860000px;}
.x6_c00397{left:519.120000px;}
.x1_c00397{left:649.620000px;}
.x3_c00397{left:738.450000px;}
.x5_c00397{left:755.280000px;}
.x2_c00397{left:765.450198px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls15_c00397{letter-spacing:-0.121600pt;}
.ls14_c00397{letter-spacing:-0.044800pt;}
.ls10_c00397{letter-spacing:-0.042752pt;}
.ls17_c00397{letter-spacing:-0.024000pt;}
.ls19_c00397{letter-spacing:-0.019200pt;}
.ls18_c00397{letter-spacing:-0.014400pt;}
.ls13_c00397{letter-spacing:-0.012800pt;}
.ls12_c00397{letter-spacing:-0.006400pt;}
.ls11_c00397{letter-spacing:0.000000pt;}
.lsd_c00397{letter-spacing:0.006400pt;}
.ls6_c00397{letter-spacing:0.012800pt;}
.ls0_c00397{letter-spacing:0.019200pt;}
.lsf_c00397{letter-spacing:0.024000pt;}
.ls9_c00397{letter-spacing:0.025600pt;}
.ls7_c00397{letter-spacing:0.032000pt;}
.ls8_c00397{letter-spacing:0.038400pt;}
.ls4_c00397{letter-spacing:0.044800pt;}
.ls1_c00397{letter-spacing:0.051200pt;}
.lse_c00397{letter-spacing:0.057600pt;}
.ls3_c00397{letter-spacing:0.064000pt;}
.lsc_c00397{letter-spacing:0.070400pt;}
.lsa_c00397{letter-spacing:0.076800pt;}
.lsb_c00397{letter-spacing:0.096000pt;}
.ls1a_c00397{letter-spacing:0.115200pt;}
.ls5_c00397{letter-spacing:0.128000pt;}
.ls2_c00397{letter-spacing:0.140800pt;}
.ls16_c00397{letter-spacing:3.200000pt;}
.ws4_c00397{word-spacing:-1.152000pt;}
.ws3_c00397{word-spacing:-0.915200pt;}
.ws1_c00397{word-spacing:0.000000pt;}
.ws9_c00397{word-spacing:0.120000pt;}
.ws0_c00397{word-spacing:0.122912pt;}
.ws6_c00397{word-spacing:0.134400pt;}
.ws8_c00397{word-spacing:0.172800pt;}
.ws7_c00397{word-spacing:0.182400pt;}
.ws2_c00397{word-spacing:0.966400pt;}
.ws5_c00397{word-spacing:2.118400pt;}
._9_c00397{margin-left:-4.275200pt;}
._6_c00397{margin-left:-3.065600pt;}
._2_c00397{margin-left:-2.048000pt;}
._1_c00397{margin-left:-0.921600pt;}
._0_c00397{width:0.940800pt;}
._7_c00397{width:2.182400pt;}
._8_c00397{width:3.833600pt;}
._d_c00397{width:6.073600pt;}
._5_c00397{width:8.633600pt;}
._4_c00397{width:9.555200pt;}
._3_c00397{width:10.521600pt;}
._a_c00397{width:25.235200pt;}
._e_c00397{width:33.209600pt;}
._c_c00397{width:34.195200pt;}
._b_c00397{width:50.208000pt;}
.fs2_c00397{font-size:48.000000pt;}
.fs0_c00397{font-size:53.440000pt;}
.fs1_c00397{font-size:64.000000pt;}
.y0_c00397{bottom:0.000000pt;}
.y24_c00397{bottom:2.880400pt;}
.y6_c00397{bottom:50.987067pt;}
.y5_c00397{bottom:69.387067pt;}
.y22_c00397{bottom:147.707067pt;}
.y21_c00397{bottom:175.307067pt;}
.y20_c00397{bottom:202.907067pt;}
.y1f_c00397{bottom:230.507067pt;}
.y1e_c00397{bottom:258.107067pt;}
.y1d_c00397{bottom:285.627067pt;}
.y1c_c00397{bottom:313.227067pt;}
.y1b_c00397{bottom:340.827067pt;}
.y1a_c00397{bottom:368.427067pt;}
.y19_c00397{bottom:396.027067pt;}
.y18_c00397{bottom:423.627067pt;}
.y23_c00397{bottom:442.666667pt;}
.y25_c00397{bottom:445.547067pt;}
.y17_c00397{bottom:474.747067pt;}
.y16_c00397{bottom:498.747067pt;}
.y15_c00397{bottom:616.907067pt;}
.y14_c00397{bottom:640.667067pt;}
.y13_c00397{bottom:668.267067pt;}
.y12_c00397{bottom:695.867067pt;}
.y11_c00397{bottom:723.467067pt;}
.y10_c00397{bottom:751.067067pt;}
.yf_c00397{bottom:778.667067pt;}
.ye_c00397{bottom:806.267067pt;}
.yd_c00397{bottom:833.867067pt;}
.yc_c00397{bottom:861.467067pt;}
.yb_c00397{bottom:889.067067pt;}
.ya_c00397{bottom:916.587067pt;}
.y9_c00397{bottom:944.187067pt;}
.y8_c00397{bottom:971.787067pt;}
.y7_c00397{bottom:999.387067pt;}
.y4_c00397{bottom:1017.227251pt;}
.y3_c00397{bottom:1032.587243pt;}
.y2_c00397{bottom:1047.867075pt;}
.y1_c00397{bottom:1063.227067pt;}
.h5_c00397{height:13.600000pt;}
.h4_c00397{height:42.234375pt;}
.h1_c00397{height:47.020937pt;}
.h2_c00397{height:56.156250pt;}
.h3_c00397{height:56.312500pt;}
.h0_c00397{height:1122.666667pt;}
.w2_c00397{width:4.880000pt;}
.w1_c00397{width:793.333333pt;}
.w0_c00397{width:793.626667pt;}
.x0_c00397{left:0.000000pt;}
.x7_c00397{left:112.320000pt;}
.x4_c00397{left:113.440000pt;}
.x8_c00397{left:116.320000pt;}
.x6_c00397{left:461.440000pt;}
.x1_c00397{left:577.440000pt;}
.x3_c00397{left:656.400000pt;}
.x5_c00397{left:671.360000pt;}
.x2_c00397{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26644c196eb4644b158cf08d.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.095703;font-style:normal;font-weight:normal;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_6a3994e0e3b05a5c71ce0e84.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_9c0052095c017d98ab3a083e.woff2')format("woff");}.ff3_c00398{font-family:ff3_c00398;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00398;src:url('chunks/assets/font_e089cbe3e9fa9d216bef0931.woff2')format("woff");}.ff4_c00398{font-family:ff4_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;}
@font-face{font-family:ff5_c00398;src:url('chunks/assets/font_4e821308b395605512e801fc.woff2')format("woff");}.ff5_c00398{font-family:ff5_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;}
.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;}
.v1_c00398{vertical-align:16.920000px;}
.lsf_c00398{letter-spacing:-0.180000px;}
.ls12_c00398{letter-spacing:-0.151200px;}
.ls10_c00398{letter-spacing:-0.124200px;}
.ls1a_c00398{letter-spacing:-0.102600px;}
.lsa_c00398{letter-spacing:-0.102204px;}
.ls17_c00398{letter-spacing:-0.081000px;}
.ls18_c00398{letter-spacing:-0.075600px;}
.ls11_c00398{letter-spacing:-0.064800px;}
.ls15_c00398{letter-spacing:-0.059400px;}
.ls1c_c00398{letter-spacing:-0.054000px;}
.ls19_c00398{letter-spacing:-0.048600px;}
.ls1b_c00398{letter-spacing:-0.032400px;}
.ls13_c00398{letter-spacing:-0.027000px;}
.ls14_c00398{letter-spacing:-0.021600px;}
.lsc_c00398{letter-spacing:-0.014400px;}
.ls16_c00398{letter-spacing:-0.010800px;}
.lse_c00398{letter-spacing:-0.007200px;}
.lsb_c00398{letter-spacing:0.000000px;}
.ls4_c00398{letter-spacing:0.007200px;}
.ls5_c00398{letter-spacing:0.010800px;}
.ls3_c00398{letter-spacing:0.021600px;}
.ls8_c00398{letter-spacing:0.028800px;}
.ls7_c00398{letter-spacing:0.036000px;}
.ls1_c00398{letter-spacing:0.041940px;}
.ls2_c00398{letter-spacing:0.043200px;}
.ls9_c00398{letter-spacing:0.050400px;}
.ls0_c00398{letter-spacing:0.067104px;}
.lsd_c00398{letter-spacing:0.108000px;}
.ls1d_c00398{letter-spacing:0.496800px;}
.ls1e_c00398{letter-spacing:0.720000px;}
.ls6_c00398{letter-spacing:192.240000px;}
.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.000000px;}
.ws2_c00398{word-spacing:0.167400px;}
.ws0_c00398{word-spacing:0.192384px;}
._1f_c00398{margin-left:-2.203200px;}
._7_c00398{margin-left:-1.101600px;}
._0_c00398{width:1.034064px;}
._1e_c00398{width:2.131200px;}
._3_c00398{width:4.989600px;}
._4_c00398{width:6.307200px;}
._5_c00398{width:10.195200px;}
._6_c00398{width:11.505600px;}
._2_c00398{width:13.752000px;}
._1_c00398{width:15.098400px;}
._8_c00398{width:320.581800px;}
._c_c00398{width:502.600536px;}
._14_c00398{width:532.373472px;}
._10_c00398{width:540.792000px;}
._a_c00398{width:586.476000px;}
._1b_c00398{width:604.142136px;}
._d_c00398{width:664.203600px;}
._18_c00398{width:682.380000px;}
._16_c00398{width:694.543536px;}
._b_c00398{width:745.365600px;}
._f_c00398{width:763.315200px;}
._17_c00398{width:775.197936px;}
._19_c00398{width:788.133600px;}
._11_c00398{width:806.223600px;}
._1c_c00398{width:824.076000px;}
._1a_c00398{width:852.814800px;}
._12_c00398{width:889.621200px;}
._13_c00398{width:967.618800px;}
._9_c00398{width:979.511400px;}
._e_c00398{width:1015.506000px;}
._15_c00398{width:1018.270800px;}
._1d_c00398{width:1035.248400px;}
.fc4_c00398{color:rgb(38,74,96);}
.fc3_c00398{color:rgb(1,2,5);}
.fc2_c00398{color:rgb(68,84,106);}
.fc1_c00398{color:rgb(0,0,0);}
.fc0_c00398{color:rgb(32,31,30);}
.fs3_c00398{font-size:54.000000px;}
.fs0_c00398{font-size:60.120000px;}
.fs1_c00398{font-size:72.000000px;}
.fs2_c00398{font-size:83.880000px;}
.y0_c00398{bottom:0.000000px;}
.y5_c00398{bottom:57.360450px;}
.y4_c00398{bottom:78.060450px;}
.y29_c00398{bottom:172.110450px;}
.y28_c00398{bottom:203.160450px;}
.y27_c00398{bottom:234.210450px;}
.y26_c00398{bottom:277.140450px;}
.y25_c00398{bottom:304.950450px;}
.y24_c00398{bottom:328.620450px;}
.y23_c00398{bottom:352.290600px;}
.y22_c00398{bottom:375.960600px;}
.y21_c00398{bottom:399.630450px;}
.y20_c00398{bottom:423.300450px;}
.y1f_c00398{bottom:446.970450px;}
.y1e_c00398{bottom:470.640450px;}
.y1d_c00398{bottom:494.220450px;}
.y1c_c00398{bottom:517.890450px;}
.y1b_c00398{bottom:541.560450px;}
.y1a_c00398{bottom:565.230450px;}
.y19_c00398{bottom:588.900450px;}
.y18_c00398{bottom:612.570450px;}
.y17_c00398{bottom:636.240450px;}
.y16_c00398{bottom:659.910450px;}
.y15_c00398{bottom:683.580450px;}
.y14_c00398{bottom:707.250450px;}
.y13_c00398{bottom:730.830450px;}
.y12_c00398{bottom:754.500450px;}
.y11_c00398{bottom:778.170450px;}
.y10_c00398{bottom:801.840450px;}
.yf_c00398{bottom:825.510450px;}
.ye_c00398{bottom:852.690450px;}
.yd_c00398{bottom:888.060450px;}
.yc_c00398{bottom:926.760450px;}
.yb_c00398{bottom:957.900450px;}
.ya_c00398{bottom:988.950450px;}
.y9_c00398{bottom:1020.000450px;}
.y8_c00398{bottom:1051.050450px;}
.y7_c00398{bottom:1085.250450px;}
.y6_c00398{bottom:1108.380450px;}
.y3_c00398{bottom:1132.140450px;}
.y2_c00398{bottom:1165.441023px;}
.y1_c00398{bottom:1196.040600px;}
.h4_c00398{height:47.513672px;}
.h6_c00398{height:48.410156px;}
.h1_c00398{height:52.898555px;}
.h2_c00398{height:63.175781px;}
.h5_c00398{height:65.330156px;}
.h3_c00398{height:74.500840px;}
.h0_c00398{height:1263.000000px;}
.w1_c00398{width:892.500000px;}
.w0_c00398{width:892.830000px;}
.x0_c00398{left:0.000000px;}
.x1_c00398{left:127.620000px;}
.x3_c00398{left:215.370000px;}
.x4_c00398{left:299.250000px;}
.x2_c00398{left:738.450000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.v1_c00398{vertical-align:15.040000pt;}
.lsf_c00398{letter-spacing:-0.160000pt;}
.ls12_c00398{letter-spacing:-0.134400pt;}
.ls10_c00398{letter-spacing:-0.110400pt;}
.ls1a_c00398{letter-spacing:-0.091200pt;}
.lsa_c00398{letter-spacing:-0.090848pt;}
.ls17_c00398{letter-spacing:-0.072000pt;}
.ls18_c00398{letter-spacing:-0.067200pt;}
.ls11_c00398{letter-spacing:-0.057600pt;}
.ls15_c00398{letter-spacing:-0.052800pt;}
.ls1c_c00398{letter-spacing:-0.048000pt;}
.ls19_c00398{letter-spacing:-0.043200pt;}
.ls1b_c00398{letter-spacing:-0.028800pt;}
.ls13_c00398{letter-spacing:-0.024000pt;}
.ls14_c00398{letter-spacing:-0.019200pt;}
.lsc_c00398{letter-spacing:-0.012800pt;}
.ls16_c00398{letter-spacing:-0.009600pt;}
.lse_c00398{letter-spacing:-0.006400pt;}
.lsb_c00398{letter-spacing:0.000000pt;}
.ls4_c00398{letter-spacing:0.006400pt;}
.ls5_c00398{letter-spacing:0.009600pt;}
.ls3_c00398{letter-spacing:0.019200pt;}
.ls8_c00398{letter-spacing:0.025600pt;}
.ls7_c00398{letter-spacing:0.032000pt;}
.ls1_c00398{letter-spacing:0.037280pt;}
.ls2_c00398{letter-spacing:0.038400pt;}
.ls9_c00398{letter-spacing:0.044800pt;}
.ls0_c00398{letter-spacing:0.059648pt;}
.lsd_c00398{letter-spacing:0.096000pt;}
.ls1d_c00398{letter-spacing:0.441600pt;}
.ls1e_c00398{letter-spacing:0.640000pt;}
.ls6_c00398{letter-spacing:170.880000pt;}
.ws1_c00398{word-spacing:0.000000pt;}
.ws2_c00398{word-spacing:0.148800pt;}
.ws0_c00398{word-spacing:0.171008pt;}
._1f_c00398{margin-left:-1.958400pt;}
._7_c00398{margin-left:-0.979200pt;}
._0_c00398{width:0.919168pt;}
._1e_c00398{width:1.894400pt;}
._3_c00398{width:4.435200pt;}
._4_c00398{width:5.606400pt;}
._5_c00398{width:9.062400pt;}
._6_c00398{width:10.227200pt;}
._2_c00398{width:12.224000pt;}
._1_c00398{width:13.420800pt;}
._8_c00398{width:284.961600pt;}
._c_c00398{width:446.756032pt;}
._14_c00398{width:473.220864pt;}
._10_c00398{width:480.704000pt;}
._a_c00398{width:521.312000pt;}
._1b_c00398{width:537.015232pt;}
._d_c00398{width:590.403200pt;}
._18_c00398{width:606.560000pt;}
._16_c00398{width:617.372032pt;}
._b_c00398{width:662.547200pt;}
._f_c00398{width:678.502400pt;}
._17_c00398{width:689.064832pt;}
._19_c00398{width:700.563200pt;}
._11_c00398{width:716.643200pt;}
._1c_c00398{width:732.512000pt;}
._1a_c00398{width:758.057600pt;}
._12_c00398{width:790.774400pt;}
._13_c00398{width:860.105600pt;}
._9_c00398{width:870.676800pt;}
._e_c00398{width:902.672000pt;}
._15_c00398{width:905.129600pt;}
._1d_c00398{width:920.220800pt;}
.fs3_c00398{font-size:48.000000pt;}
.fs0_c00398{font-size:53.440000pt;}
.fs1_c00398{font-size:64.000000pt;}
.fs2_c00398{font-size:74.560000pt;}
.y0_c00398{bottom:0.000000pt;}
.y5_c00398{bottom:50.987067pt;}
.y4_c00398{bottom:69.387067pt;}
.y29_c00398{bottom:152.987067pt;}
.y28_c00398{bottom:180.587067pt;}
.y27_c00398{bottom:208.187067pt;}
.y26_c00398{bottom:246.347067pt;}
.y25_c00398{bottom:271.067067pt;}
.y24_c00398{bottom:292.107067pt;}
.y23_c00398{bottom:313.147200pt;}
.y22_c00398{bottom:334.187200pt;}
.y21_c00398{bottom:355.227067pt;}
.y20_c00398{bottom:376.267067pt;}
.y1f_c00398{bottom:397.307067pt;}
.y1e_c00398{bottom:418.347067pt;}
.y1d_c00398{bottom:439.307067pt;}
.y1c_c00398{bottom:460.347067pt;}
.y1b_c00398{bottom:481.387067pt;}
.y1a_c00398{bottom:502.427067pt;}
.y19_c00398{bottom:523.467067pt;}
.y18_c00398{bottom:544.507067pt;}
.y17_c00398{bottom:565.547067pt;}
.y16_c00398{bottom:586.587067pt;}
.y15_c00398{bottom:607.627067pt;}
.y14_c00398{bottom:628.667067pt;}
.y13_c00398{bottom:649.627067pt;}
.y12_c00398{bottom:670.667067pt;}
.y11_c00398{bottom:691.707067pt;}
.y10_c00398{bottom:712.747067pt;}
.yf_c00398{bottom:733.787067pt;}
.ye_c00398{bottom:757.947067pt;}
.yd_c00398{bottom:789.387067pt;}
.yc_c00398{bottom:823.787067pt;}
.yb_c00398{bottom:851.467067pt;}
.ya_c00398{bottom:879.067067pt;}
.y9_c00398{bottom:906.667067pt;}
.y8_c00398{bottom:934.267067pt;}
.y7_c00398{bottom:964.667067pt;}
.y6_c00398{bottom:985.227067pt;}
.y3_c00398{bottom:1006.347067pt;}
.y2_c00398{bottom:1035.947576pt;}
.y1_c00398{bottom:1063.147200pt;}
.h4_c00398{height:42.234375pt;}
.h6_c00398{height:43.031250pt;}
.h1_c00398{height:47.020937pt;}
.h2_c00398{height:56.156250pt;}
.h5_c00398{height:58.071250pt;}
.h3_c00398{height:66.222969pt;}
.h0_c00398{height:1122.666667pt;}
.w1_c00398{width:793.333333pt;}
.w0_c00398{width:793.626667pt;}
.x0_c00398{left:0.000000pt;}
.x1_c00398{left:113.440000pt;}
.x3_c00398{left:191.440000pt;}
.x4_c00398{left:266.000000pt;}
.x2_c00398{left:656.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_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_62d5a3f1ea8e03c5a8805e2d.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.095703;font-style:normal;font-weight:normal;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_48ea446b3cb860ebb279bf09.woff2')format("woff");}.ff2_c00399{font-family:ff2_c00399;line-height:1.093262;font-style: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;}
.ls16_c00399{letter-spacing:-0.273600px;}
.ls15_c00399{letter-spacing:-0.072000px;}
.ls14_c00399{letter-spacing:-0.057600px;}
.lsd_c00399{letter-spacing:-0.048096px;}
.ls10_c00399{letter-spacing:-0.036000px;}
.ls11_c00399{letter-spacing:-0.028800px;}
.ls17_c00399{letter-spacing:-0.021600px;}
.ls12_c00399{letter-spacing:-0.014400px;}
.ls13_c00399{letter-spacing:-0.007200px;}
.lse_c00399{letter-spacing:0.000000px;}
.ls2_c00399{letter-spacing:0.007200px;}
.ls1_c00399{letter-spacing:0.014400px;}
.lsa_c00399{letter-spacing:0.021600px;}
.ls3_c00399{letter-spacing:0.028800px;}
.ls5_c00399{letter-spacing:0.036000px;}
.ls9_c00399{letter-spacing:0.043200px;}
.ls6_c00399{letter-spacing:0.050400px;}
.ls7_c00399{letter-spacing:0.057600px;}
.ls8_c00399{letter-spacing:0.064800px;}
.ls0_c00399{letter-spacing:0.072000px;}
.lsc_c00399{letter-spacing:0.079200px;}
.ls4_c00399{letter-spacing:0.086400px;}
.lsb_c00399{letter-spacing:0.093600px;}
.lsf_c00399{letter-spacing:0.720000px;}
.ls18_c00399{letter-spacing:7.473600px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00399{word-spacing:-18.000000px;}
.ws7_c00399{word-spacing:-1.094400px;}
.ws8_c00399{word-spacing:-0.763200px;}
.ws5_c00399{word-spacing:-0.244800px;}
.ws3_c00399{word-spacing:-0.028800px;}
.ws2_c00399{word-spacing:0.000000px;}
.ws4_c00399{word-spacing:0.014400px;}
.ws6_c00399{word-spacing:0.036000px;}
.ws1_c00399{word-spacing:0.138276px;}
._b_c00399{margin-left:-7.747200px;}
._a_c00399{margin-left:-6.652800px;}
._8_c00399{margin-left:-3.787200px;}
._7_c00399{margin-left:-2.556000px;}
._1_c00399{margin-left:-1.526400px;}
._0_c00399{width:1.310400px;}
._2_c00399{width:2.851200px;}
._3_c00399{width:3.988800px;}
._9_c00399{width:5.083200px;}
._5_c00399{width:6.811200px;}
._4_c00399{width:7.891200px;}
._6_c00399{width:10.764000px;}
._d_c00399{width:13.291200px;}
._c_c00399{width:16.920000px;}
.fc0_c00399{color:rgb(0,0,0);}
.fs0_c00399{font-size:60.120000px;}
.fs1_c00399{font-size:72.000000px;}
.y0_c00399{bottom:0.000000px;}
.y6_c00399{bottom:57.360450px;}
.y5_c00399{bottom:78.060450px;}
.y25_c00399{bottom:120.810450px;}
.y24_c00399{bottom:163.920450px;}
.y23_c00399{bottom:195.060450px;}
.y22_c00399{bottom:226.110450px;}
.y21_c00399{bottom:257.070450px;}
.y20_c00399{bottom:288.120450px;}
.y1f_c00399{bottom:319.170450px;}
.y1e_c00399{bottom:350.220450px;}
.y1d_c00399{bottom:381.270450px;}
.y1c_c00399{bottom:412.320450px;}
.y1b_c00399{bottom:455.340450px;}
.y1a_c00399{bottom:486.480450px;}
.y19_c00399{bottom:517.530450px;}
.y18_c00399{bottom:560.460450px;}
.y17_c00399{bottom:591.600450px;}
.y16_c00399{bottom:622.650450px;}
.y15_c00399{bottom:653.700450px;}
.y14_c00399{bottom:684.750450px;}
.y13_c00399{bottom:715.800450px;}
.y12_c00399{bottom:758.730450px;}
.y11_c00399{bottom:789.870450px;}
.y10_c00399{bottom:820.920450px;}
.yf_c00399{bottom:851.970450px;}
.ye_c00399{bottom:883.020450px;}
.yd_c00399{bottom:925.950450px;}
.yc_c00399{bottom:957.090450px;}
.yb_c00399{bottom:988.140450px;}
.ya_c00399{bottom:1019.190450px;}
.y9_c00399{bottom:1050.240450px;}
.y8_c00399{bottom:1093.170450px;}
.y7_c00399{bottom:1124.310450px;}
.y4_c00399{bottom:1144.380657px;}
.y3_c00399{bottom:1161.660648px;}
.y2_c00399{bottom:1178.850459px;}
.y1_c00399{bottom:1196.130450px;}
.h1_c00399{height:52.898555px;}
.h2_c00399{height:63.175781px;}
.h3_c00399{height:63.351562px;}
.h0_c00399{height:1263.000000px;}
.w1_c00399{width:892.500000px;}
.w0_c00399{width:892.830000px;}
.x0_c00399{left:0.000000px;}
.x4_c00399{left:127.620000px;}
.x1_c00399{left:649.620000px;}
.x3_c00399{left:738.450000px;}
.x2_c00399{left:765.450198px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls16_c00399{letter-spacing:-0.243200pt;}
.ls15_c00399{letter-spacing:-0.064000pt;}
.ls14_c00399{letter-spacing:-0.051200pt;}
.lsd_c00399{letter-spacing:-0.042752pt;}
.ls10_c00399{letter-spacing:-0.032000pt;}
.ls11_c00399{letter-spacing:-0.025600pt;}
.ls17_c00399{letter-spacing:-0.019200pt;}
.ls12_c00399{letter-spacing:-0.012800pt;}
.ls13_c00399{letter-spacing:-0.006400pt;}
.lse_c00399{letter-spacing:0.000000pt;}
.ls2_c00399{letter-spacing:0.006400pt;}
.ls1_c00399{letter-spacing:0.012800pt;}
.lsa_c00399{letter-spacing:0.019200pt;}
.ls3_c00399{letter-spacing:0.025600pt;}
.ls5_c00399{letter-spacing:0.032000pt;}
.ls9_c00399{letter-spacing:0.038400pt;}
.ls6_c00399{letter-spacing:0.044800pt;}
.ls7_c00399{letter-spacing:0.051200pt;}
.ls8_c00399{letter-spacing:0.057600pt;}
.ls0_c00399{letter-spacing:0.064000pt;}
.lsc_c00399{letter-spacing:0.070400pt;}
.ls4_c00399{letter-spacing:0.076800pt;}
.lsb_c00399{letter-spacing:0.083200pt;}
.lsf_c00399{letter-spacing:0.640000pt;}
.ls18_c00399{letter-spacing:6.643200pt;}
.ws0_c00399{word-spacing:-16.000000pt;}
.ws7_c00399{word-spacing:-0.972800pt;}
.ws8_c00399{word-spacing:-0.678400pt;}
.ws5_c00399{word-spacing:-0.217600pt;}
.ws3_c00399{word-spacing:-0.025600pt;}
.ws2_c00399{word-spacing:0.000000pt;}
.ws4_c00399{word-spacing:0.012800pt;}
.ws6_c00399{word-spacing:0.032000pt;}
.ws1_c00399{word-spacing:0.122912pt;}
._b_c00399{margin-left:-6.886400pt;}
._a_c00399{margin-left:-5.913600pt;}
._8_c00399{margin-left:-3.366400pt;}
._7_c00399{margin-left:-2.272000pt;}
._1_c00399{margin-left:-1.356800pt;}
._0_c00399{width:1.164800pt;}
._2_c00399{width:2.534400pt;}
._3_c00399{width:3.545600pt;}
._9_c00399{width:4.518400pt;}
._5_c00399{width:6.054400pt;}
._4_c00399{width:7.014400pt;}
._6_c00399{width:9.568000pt;}
._d_c00399{width:11.814400pt;}
._c_c00399{width:15.040000pt;}
.fs0_c00399{font-size:53.440000pt;}
.fs1_c00399{font-size:64.000000pt;}
.y0_c00399{bottom:0.000000pt;}
.y6_c00399{bottom:50.987067pt;}
.y5_c00399{bottom:69.387067pt;}
.y25_c00399{bottom:107.387067pt;}
.y24_c00399{bottom:145.707067pt;}
.y23_c00399{bottom:173.387067pt;}
.y22_c00399{bottom:200.987067pt;}
.y21_c00399{bottom:228.507067pt;}
.y20_c00399{bottom:256.107067pt;}
.y1f_c00399{bottom:283.707067pt;}
.y1e_c00399{bottom:311.307067pt;}
.y1d_c00399{bottom:338.907067pt;}
.y1c_c00399{bottom:366.507067pt;}
.y1b_c00399{bottom:404.747067pt;}
.y1a_c00399{bottom:432.427067pt;}
.y19_c00399{bottom:460.027067pt;}
.y18_c00399{bottom:498.187067pt;}
.y17_c00399{bottom:525.867067pt;}
.y16_c00399{bottom:553.467067pt;}
.y15_c00399{bottom:581.067067pt;}
.y14_c00399{bottom:608.667067pt;}
.y13_c00399{bottom:636.267067pt;}
.y12_c00399{bottom:674.427067pt;}
.y11_c00399{bottom:702.107067pt;}
.y10_c00399{bottom:729.707067pt;}
.yf_c00399{bottom:757.307067pt;}
.ye_c00399{bottom:784.907067pt;}
.yd_c00399{bottom:823.067067pt;}
.yc_c00399{bottom:850.747067pt;}
.yb_c00399{bottom:878.347067pt;}
.ya_c00399{bottom:905.947067pt;}
.y9_c00399{bottom:933.547067pt;}
.y8_c00399{bottom:971.707067pt;}
.y7_c00399{bottom:999.387067pt;}
.y4_c00399{bottom:1017.227251pt;}
.y3_c00399{bottom:1032.587243pt;}
.y2_c00399{bottom:1047.867075pt;}
.y1_c00399{bottom:1063.227067pt;}
.h1_c00399{height:47.020937pt;}
.h2_c00399{height:56.156250pt;}
.h3_c00399{height:56.312500pt;}
.h0_c00399{height:1122.666667pt;}
.w1_c00399{width:793.333333pt;}
.w0_c00399{width:793.626667pt;}
.x0_c00399{left:0.000000pt;}
.x4_c00399{left:113.440000pt;}
.x1_c00399{left:577.440000pt;}
.x3_c00399{left:656.400000pt;}
.x2_c00399{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd651ffd6bef729c02db3940.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.095703;font-style:normal;font-weight:normal;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_fb5801930f6bd77801dcff9e.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:1.093262;font-style: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;}
.ls13_c00400{letter-spacing:-0.720000px;}
.ls16_c00400{letter-spacing:-0.237600px;}
.lsf_c00400{letter-spacing:-0.102204px;}
.ls14_c00400{letter-spacing:-0.028800px;}
.ls17_c00400{letter-spacing:-0.014400px;}
.ls11_c00400{letter-spacing:-0.007200px;}
.ls10_c00400{letter-spacing:0.000000px;}
.lsb_c00400{letter-spacing:0.007200px;}
.ls8_c00400{letter-spacing:0.014400px;}
.ls1_c00400{letter-spacing:0.021600px;}
.lsc_c00400{letter-spacing:0.028800px;}
.ls0_c00400{letter-spacing:0.032400px;}
.ls9_c00400{letter-spacing:0.036000px;}
.ls6_c00400{letter-spacing:0.043200px;}
.lsa_c00400{letter-spacing:0.050400px;}
.lsd_c00400{letter-spacing:0.057600px;}
.ls3_c00400{letter-spacing:0.064800px;}
.lse_c00400{letter-spacing:0.072000px;}
.ls4_c00400{letter-spacing:0.079200px;}
.ls7_c00400{letter-spacing:0.086400px;}
.ls5_c00400{letter-spacing:0.093600px;}
.ls2_c00400{letter-spacing:0.108000px;}
.ls15_c00400{letter-spacing:3.240000px;}
.ls12_c00400{letter-spacing:5.400000px;}
.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;}
}
.ws1_c00400{word-spacing:-18.064800px;}
.ws0_c00400{word-spacing:-18.000000px;}
.ws8_c00400{word-spacing:-0.914400px;}
.ws7_c00400{word-spacing:-0.727200px;}
.ws9_c00400{word-spacing:-0.691200px;}
.ws3_c00400{word-spacing:0.000000px;}
.ws4_c00400{word-spacing:0.145800px;}
.ws2_c00400{word-spacing:0.192384px;}
.ws6_c00400{word-spacing:5.385600px;}
.ws5_c00400{word-spacing:5.572800px;}
._a_c00400{margin-left:-5.691600px;}
._8_c00400{margin-left:-4.186800px;}
._7_c00400{margin-left:-2.944800px;}
._1_c00400{margin-left:-1.047600px;}
._0_c00400{width:1.034064px;}
._6_c00400{width:2.372544px;}
._5_c00400{width:4.327200px;}
._4_c00400{width:5.378400px;}
._9_c00400{width:7.185600px;}
._b_c00400{width:11.851200px;}
._3_c00400{width:765.720000px;}
._2_c00400{width:945.000000px;}
.fc2_c00400{color:rgb(68,84,106);}
.fc1_c00400{color:rgb(0,0,0);}
.fc0_c00400{color:rgb(32,31,30);}
.fs2_c00400{font-size:54.000000px;}
.fs0_c00400{font-size:60.120000px;}
.fs1_c00400{font-size:72.000000px;}
.y0_c00400{bottom:0.000000px;}
.y5_c00400{bottom:57.360450px;}
.y4_c00400{bottom:78.060450px;}
.y21_c00400{bottom:127.020450px;}
.y20_c00400{bottom:170.040450px;}
.y1f_c00400{bottom:201.180450px;}
.y1e_c00400{bottom:232.230450px;}
.y1d_c00400{bottom:263.280450px;}
.y1c_c00400{bottom:294.330450px;}
.y1b_c00400{bottom:325.380450px;}
.y1a_c00400{bottom:356.430450px;}
.y19_c00400{bottom:399.360450px;}
.y18_c00400{bottom:430.500450px;}
.y17_c00400{bottom:461.550450px;}
.y16_c00400{bottom:492.600450px;}
.y15_c00400{bottom:523.650450px;}
.y14_c00400{bottom:554.700450px;}
.y13_c00400{bottom:585.750450px;}
.y12_c00400{bottom:616.800450px;}
.y11_c00400{bottom:647.850450px;}
.y10_c00400{bottom:678.900450px;}
.yf_c00400{bottom:709.950450px;}
.ye_c00400{bottom:752.880450px;}
.yd_c00400{bottom:784.020450px;}
.yc_c00400{bottom:815.070450px;}
.yb_c00400{bottom:846.120450px;}
.ya_c00400{bottom:877.170450px;}
.y9_c00400{bottom:908.220450px;}
.y8_c00400{bottom:939.270450px;}
.y7_c00400{bottom:978.240450px;}
.y6_c00400{bottom:1115.760450px;}
.y3_c00400{bottom:1132.140450px;}
.y2_c00400{bottom:1165.441023px;}
.y1_c00400{bottom:1196.040600px;}
.h3_c00400{height:47.513672px;}
.h1_c00400{height:52.898555px;}
.h2_c00400{height:63.175781px;}
.h4_c00400{height:63.351562px;}
.h0_c00400{height:1263.000000px;}
.w1_c00400{width:892.500000px;}
.w0_c00400{width:892.830000px;}
.x0_c00400{left:0.000000px;}
.x1_c00400{left:127.620000px;}
.x3_c00400{left:328.770000px;}
.x2_c00400{left:738.450000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls13_c00400{letter-spacing:-0.640000pt;}
.ls16_c00400{letter-spacing:-0.211200pt;}
.lsf_c00400{letter-spacing:-0.090848pt;}
.ls14_c00400{letter-spacing:-0.025600pt;}
.ls17_c00400{letter-spacing:-0.012800pt;}
.ls11_c00400{letter-spacing:-0.006400pt;}
.ls10_c00400{letter-spacing:0.000000pt;}
.lsb_c00400{letter-spacing:0.006400pt;}
.ls8_c00400{letter-spacing:0.012800pt;}
.ls1_c00400{letter-spacing:0.019200pt;}
.lsc_c00400{letter-spacing:0.025600pt;}
.ls0_c00400{letter-spacing:0.028800pt;}
.ls9_c00400{letter-spacing:0.032000pt;}
.ls6_c00400{letter-spacing:0.038400pt;}
.lsa_c00400{letter-spacing:0.044800pt;}
.lsd_c00400{letter-spacing:0.051200pt;}
.ls3_c00400{letter-spacing:0.057600pt;}
.lse_c00400{letter-spacing:0.064000pt;}
.ls4_c00400{letter-spacing:0.070400pt;}
.ls7_c00400{letter-spacing:0.076800pt;}
.ls5_c00400{letter-spacing:0.083200pt;}
.ls2_c00400{letter-spacing:0.096000pt;}
.ls15_c00400{letter-spacing:2.880000pt;}
.ls12_c00400{letter-spacing:4.800000pt;}
.ws1_c00400{word-spacing:-16.057600pt;}
.ws0_c00400{word-spacing:-16.000000pt;}
.ws8_c00400{word-spacing:-0.812800pt;}
.ws7_c00400{word-spacing:-0.646400pt;}
.ws9_c00400{word-spacing:-0.614400pt;}
.ws3_c00400{word-spacing:0.000000pt;}
.ws4_c00400{word-spacing:0.129600pt;}
.ws2_c00400{word-spacing:0.171008pt;}
.ws6_c00400{word-spacing:4.787200pt;}
.ws5_c00400{word-spacing:4.953600pt;}
._a_c00400{margin-left:-5.059200pt;}
._8_c00400{margin-left:-3.721600pt;}
._7_c00400{margin-left:-2.617600pt;}
._1_c00400{margin-left:-0.931200pt;}
._0_c00400{width:0.919168pt;}
._6_c00400{width:2.108928pt;}
._5_c00400{width:3.846400pt;}
._4_c00400{width:4.780800pt;}
._9_c00400{width:6.387200pt;}
._b_c00400{width:10.534400pt;}
._3_c00400{width:680.640000pt;}
._2_c00400{width:840.000000pt;}
.fs2_c00400{font-size:48.000000pt;}
.fs0_c00400{font-size:53.440000pt;}
.fs1_c00400{font-size:64.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y5_c00400{bottom:50.987067pt;}
.y4_c00400{bottom:69.387067pt;}
.y21_c00400{bottom:112.907067pt;}
.y20_c00400{bottom:151.147067pt;}
.y1f_c00400{bottom:178.827067pt;}
.y1e_c00400{bottom:206.427067pt;}
.y1d_c00400{bottom:234.027067pt;}
.y1c_c00400{bottom:261.627067pt;}
.y1b_c00400{bottom:289.227067pt;}
.y1a_c00400{bottom:316.827067pt;}
.y19_c00400{bottom:354.987067pt;}
.y18_c00400{bottom:382.667067pt;}
.y17_c00400{bottom:410.267067pt;}
.y16_c00400{bottom:437.867067pt;}
.y15_c00400{bottom:465.467067pt;}
.y14_c00400{bottom:493.067067pt;}
.y13_c00400{bottom:520.667067pt;}
.y12_c00400{bottom:548.267067pt;}
.y11_c00400{bottom:575.867067pt;}
.y10_c00400{bottom:603.467067pt;}
.yf_c00400{bottom:631.067067pt;}
.ye_c00400{bottom:669.227067pt;}
.yd_c00400{bottom:696.907067pt;}
.yc_c00400{bottom:724.507067pt;}
.yb_c00400{bottom:752.107067pt;}
.ya_c00400{bottom:779.707067pt;}
.y9_c00400{bottom:807.307067pt;}
.y8_c00400{bottom:834.907067pt;}
.y7_c00400{bottom:869.547067pt;}
.y6_c00400{bottom:991.787067pt;}
.y3_c00400{bottom:1006.347067pt;}
.y2_c00400{bottom:1035.947576pt;}
.y1_c00400{bottom:1063.147200pt;}
.h3_c00400{height:42.234375pt;}
.h1_c00400{height:47.020937pt;}
.h2_c00400{height:56.156250pt;}
.h4_c00400{height:56.312500pt;}
.h0_c00400{height:1122.666667pt;}
.w1_c00400{width:793.333333pt;}
.w0_c00400{width:793.626667pt;}
.x0_c00400{left:0.000000pt;}
.x1_c00400{left:113.440000pt;}
.x3_c00400{left:292.240000pt;}
.x2_c00400{left:656.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_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_ac0c15113f379c54ec9e8303.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.095703;font-style:normal;font-weight:normal;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_4444fa38cc78d7834eec6093.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.093262;font-style: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;}
.ls17_c00401{letter-spacing:-4.320000px;}
.ls1c_c00401{letter-spacing:-1.080000px;}
.ls1d_c00401{letter-spacing:-0.108000px;}
.ls13_c00401{letter-spacing:-0.048096px;}
.ls18_c00401{letter-spacing:-0.043200px;}
.ls15_c00401{letter-spacing:-0.021600px;}
.ls16_c00401{letter-spacing:-0.016200px;}
.ls1b_c00401{letter-spacing:-0.014400px;}
.ls19_c00401{letter-spacing:-0.007200px;}
.ls14_c00401{letter-spacing:0.000000px;}
.lsd_c00401{letter-spacing:0.007200px;}
.ls4_c00401{letter-spacing:0.014400px;}
.ls6_c00401{letter-spacing:0.021600px;}
.ls0_c00401{letter-spacing:0.027000px;}
.ls2_c00401{letter-spacing:0.028800px;}
.ls1_c00401{letter-spacing:0.036000px;}
.ls5_c00401{letter-spacing:0.043200px;}
.lse_c00401{letter-spacing:0.050400px;}
.ls3_c00401{letter-spacing:0.057600px;}
.ls7_c00401{letter-spacing:0.064800px;}
.ls8_c00401{letter-spacing:0.072000px;}
.ls12_c00401{letter-spacing:0.079200px;}
.ls9_c00401{letter-spacing:0.086400px;}
.ls11_c00401{letter-spacing:0.093600px;}
.ls10_c00401{letter-spacing:0.115200px;}
.lsf_c00401{letter-spacing:0.136800px;}
.lsa_c00401{letter-spacing:0.151200px;}
.lsb_c00401{letter-spacing:0.259200px;}
.lsc_c00401{letter-spacing:0.360000px;}
.ls1a_c00401{letter-spacing:5.709600px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00401{word-spacing:0.000000px;}
.ws5_c00401{word-spacing:0.014400px;}
.ws0_c00401{word-spacing:0.138276px;}
.ws4_c00401{word-spacing:0.194400px;}
.ws3_c00401{word-spacing:2.311200px;}
.ws2_c00401{word-spacing:2.359800px;}
._c_c00401{margin-left:-6.674400px;}
._7_c00401{margin-left:-5.562000px;}
._a_c00401{margin-left:-4.534200px;}
._6_c00401{margin-left:-3.502800px;}
._3_c00401{margin-left:-2.386800px;}
._0_c00401{margin-left:-1.020600px;}
._b_c00401{width:1.191600px;}
._d_c00401{width:2.505600px;}
._9_c00401{width:4.046400px;}
._8_c00401{width:5.286600px;}
._11_c00401{width:6.352200px;}
._4_c00401{width:7.502400px;}
._5_c00401{width:8.784000px;}
._10_c00401{width:10.368000px;}
._e_c00401{width:11.851200px;}
._12_c00401{width:19.087200px;}
._13_c00401{width:20.455200px;}
._f_c00401{width:38.109600px;}
._2_c00401{width:774.000000px;}
._1_c00401{width:787.320000px;}
.fc2_c00401{color:rgb(255,0,0);}
.fc1_c00401{color:rgb(68,84,106);}
.fc0_c00401{color:rgb(0,0,0);}
.fs2_c00401{font-size:54.000000px;}
.fs0_c00401{font-size:60.120000px;}
.fs1_c00401{font-size:72.000000px;}
.y0_c00401{bottom:0.000000px;}
.y6_c00401{bottom:57.360450px;}
.y5_c00401{bottom:78.060450px;}
.y24_c00401{bottom:113.610450px;}
.y23_c00401{bottom:144.750450px;}
.y22_c00401{bottom:175.800450px;}
.y21_c00401{bottom:206.850450px;}
.y20_c00401{bottom:237.900450px;}
.y1f_c00401{bottom:268.950450px;}
.y1e_c00401{bottom:300.000450px;}
.y1d_c00401{bottom:342.930450px;}
.y1c_c00401{bottom:374.070450px;}
.y1b_c00401{bottom:405.120450px;}
.y1a_c00401{bottom:436.170450px;}
.y19_c00401{bottom:479.190450px;}
.y18_c00401{bottom:510.330450px;}
.y17_c00401{bottom:541.290450px;}
.y16_c00401{bottom:572.340450px;}
.y15_c00401{bottom:603.390450px;}
.y14_c00401{bottom:646.410450px;}
.y13_c00401{bottom:677.550450px;}
.y12_c00401{bottom:708.600450px;}
.y11_c00401{bottom:739.650450px;}
.y10_c00401{bottom:770.700450px;}
.yf_c00401{bottom:801.750450px;}
.ye_c00401{bottom:832.800450px;}
.yd_c00401{bottom:863.850450px;}
.yc_c00401{bottom:894.810450px;}
.yb_c00401{bottom:925.860450px;}
.ya_c00401{bottom:956.910450px;}
.y9_c00401{bottom:995.880450px;}
.y8_c00401{bottom:1113.150000px;}
.y7_c00401{bottom:1128.630450px;}
.y4_c00401{bottom:1144.380657px;}
.y3_c00401{bottom:1161.660648px;}
.y2_c00401{bottom:1178.850459px;}
.y1_c00401{bottom:1196.130450px;}
.h3_c00401{height:47.513672px;}
.h1_c00401{height:52.898555px;}
.h2_c00401{height:63.175781px;}
.h4_c00401{height:63.351562px;}
.h0_c00401{height:1263.000000px;}
.w1_c00401{width:892.500000px;}
.w0_c00401{width:892.830000px;}
.x0_c00401{left:0.000000px;}
.x4_c00401{left:127.620000px;}
.x5_c00401{left:352.620000px;}
.x1_c00401{left:649.620000px;}
.x3_c00401{left:738.450000px;}
.x2_c00401{left:765.450198px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls17_c00401{letter-spacing:-3.840000pt;}
.ls1c_c00401{letter-spacing:-0.960000pt;}
.ls1d_c00401{letter-spacing:-0.096000pt;}
.ls13_c00401{letter-spacing:-0.042752pt;}
.ls18_c00401{letter-spacing:-0.038400pt;}
.ls15_c00401{letter-spacing:-0.019200pt;}
.ls16_c00401{letter-spacing:-0.014400pt;}
.ls1b_c00401{letter-spacing:-0.012800pt;}
.ls19_c00401{letter-spacing:-0.006400pt;}
.ls14_c00401{letter-spacing:0.000000pt;}
.lsd_c00401{letter-spacing:0.006400pt;}
.ls4_c00401{letter-spacing:0.012800pt;}
.ls6_c00401{letter-spacing:0.019200pt;}
.ls0_c00401{letter-spacing:0.024000pt;}
.ls2_c00401{letter-spacing:0.025600pt;}
.ls1_c00401{letter-spacing:0.032000pt;}
.ls5_c00401{letter-spacing:0.038400pt;}
.lse_c00401{letter-spacing:0.044800pt;}
.ls3_c00401{letter-spacing:0.051200pt;}
.ls7_c00401{letter-spacing:0.057600pt;}
.ls8_c00401{letter-spacing:0.064000pt;}
.ls12_c00401{letter-spacing:0.070400pt;}
.ls9_c00401{letter-spacing:0.076800pt;}
.ls11_c00401{letter-spacing:0.083200pt;}
.ls10_c00401{letter-spacing:0.102400pt;}
.lsf_c00401{letter-spacing:0.121600pt;}
.lsa_c00401{letter-spacing:0.134400pt;}
.lsb_c00401{letter-spacing:0.230400pt;}
.lsc_c00401{letter-spacing:0.320000pt;}
.ls1a_c00401{letter-spacing:5.075200pt;}
.ws1_c00401{word-spacing:0.000000pt;}
.ws5_c00401{word-spacing:0.012800pt;}
.ws0_c00401{word-spacing:0.122912pt;}
.ws4_c00401{word-spacing:0.172800pt;}
.ws3_c00401{word-spacing:2.054400pt;}
.ws2_c00401{word-spacing:2.097600pt;}
._c_c00401{margin-left:-5.932800pt;}
._7_c00401{margin-left:-4.944000pt;}
._a_c00401{margin-left:-4.030400pt;}
._6_c00401{margin-left:-3.113600pt;}
._3_c00401{margin-left:-2.121600pt;}
._0_c00401{margin-left:-0.907200pt;}
._b_c00401{width:1.059200pt;}
._d_c00401{width:2.227200pt;}
._9_c00401{width:3.596800pt;}
._8_c00401{width:4.699200pt;}
._11_c00401{width:5.646400pt;}
._4_c00401{width:6.668800pt;}
._5_c00401{width:7.808000pt;}
._10_c00401{width:9.216000pt;}
._e_c00401{width:10.534400pt;}
._12_c00401{width:16.966400pt;}
._13_c00401{width:18.182400pt;}
._f_c00401{width:33.875200pt;}
._2_c00401{width:688.000000pt;}
._1_c00401{width:699.840000pt;}
.fs2_c00401{font-size:48.000000pt;}
.fs0_c00401{font-size:53.440000pt;}
.fs1_c00401{font-size:64.000000pt;}
.y0_c00401{bottom:0.000000pt;}
.y6_c00401{bottom:50.987067pt;}
.y5_c00401{bottom:69.387067pt;}
.y24_c00401{bottom:100.987067pt;}
.y23_c00401{bottom:128.667067pt;}
.y22_c00401{bottom:156.267067pt;}
.y21_c00401{bottom:183.867067pt;}
.y20_c00401{bottom:211.467067pt;}
.y1f_c00401{bottom:239.067067pt;}
.y1e_c00401{bottom:266.667067pt;}
.y1d_c00401{bottom:304.827067pt;}
.y1c_c00401{bottom:332.507067pt;}
.y1b_c00401{bottom:360.107067pt;}
.y1a_c00401{bottom:387.707067pt;}
.y19_c00401{bottom:425.947067pt;}
.y18_c00401{bottom:453.627067pt;}
.y17_c00401{bottom:481.147067pt;}
.y16_c00401{bottom:508.747067pt;}
.y15_c00401{bottom:536.347067pt;}
.y14_c00401{bottom:574.587067pt;}
.y13_c00401{bottom:602.267067pt;}
.y12_c00401{bottom:629.867067pt;}
.y11_c00401{bottom:657.467067pt;}
.y10_c00401{bottom:685.067067pt;}
.yf_c00401{bottom:712.667067pt;}
.ye_c00401{bottom:740.267067pt;}
.yd_c00401{bottom:767.867067pt;}
.yc_c00401{bottom:795.387067pt;}
.yb_c00401{bottom:822.987067pt;}
.ya_c00401{bottom:850.587067pt;}
.y9_c00401{bottom:885.227067pt;}
.y8_c00401{bottom:989.466667pt;}
.y7_c00401{bottom:1003.227067pt;}
.y4_c00401{bottom:1017.227251pt;}
.y3_c00401{bottom:1032.587243pt;}
.y2_c00401{bottom:1047.867075pt;}
.y1_c00401{bottom:1063.227067pt;}
.h3_c00401{height:42.234375pt;}
.h1_c00401{height:47.020937pt;}
.h2_c00401{height:56.156250pt;}
.h4_c00401{height:56.312500pt;}
.h0_c00401{height:1122.666667pt;}
.w1_c00401{width:793.333333pt;}
.w0_c00401{width:793.626667pt;}
.x0_c00401{left:0.000000pt;}
.x4_c00401{left:113.440000pt;}
.x5_c00401{left:313.440000pt;}
.x1_c00401{left:577.440000pt;}
.x3_c00401{left:656.400000pt;}
.x2_c00401{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3409cfc8a5c5a9d412a98c1.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.095703;font-style:normal;font-weight:normal;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_5b0cf41c23d113452af0e52d.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:1.093262;font-style: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;}
.ls15_c00402{letter-spacing:-1.800000px;}
.lsd_c00402{letter-spacing:-0.102204px;}
.ls14_c00402{letter-spacing:-0.036000px;}
.ls16_c00402{letter-spacing:-0.027000px;}
.lsf_c00402{letter-spacing:-0.021600px;}
.ls11_c00402{letter-spacing:-0.014400px;}
.ls12_c00402{letter-spacing:-0.007200px;}
.lse_c00402{letter-spacing:0.000000px;}
.ls3_c00402{letter-spacing:0.007200px;}
.ls4_c00402{letter-spacing:0.014400px;}
.lsc_c00402{letter-spacing:0.016200px;}
.ls9_c00402{letter-spacing:0.021600px;}
.ls1_c00402{letter-spacing:0.028800px;}
.ls8_c00402{letter-spacing:0.036000px;}
.ls0_c00402{letter-spacing:0.043200px;}
.ls6_c00402{letter-spacing:0.050400px;}
.lsb_c00402{letter-spacing:0.057600px;}
.ls5_c00402{letter-spacing:0.064800px;}
.ls2_c00402{letter-spacing:0.072000px;}
.ls7_c00402{letter-spacing:0.079200px;}
.lsa_c00402{letter-spacing:0.100800px;}
.ls10_c00402{letter-spacing:1.080000px;}
.ls13_c00402{letter-spacing:7.200000px;}
.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;}
}
.ws4_c00402{word-spacing:-1.836000px;}
.ws5_c00402{word-spacing:-1.800000px;}
.ws6_c00402{word-spacing:-0.156600px;}
.ws7_c00402{word-spacing:-0.151200px;}
.ws1_c00402{word-spacing:0.000000px;}
.ws8_c00402{word-spacing:0.162000px;}
.ws0_c00402{word-spacing:0.192384px;}
.ws2_c00402{word-spacing:0.885600px;}
.ws3_c00402{word-spacing:30.945600px;}
._a_c00402{margin-left:-8.085600px;}
._9_c00402{margin-left:-6.976800px;}
._4_c00402{margin-left:-4.305600px;}
._5_c00402{margin-left:-3.276000px;}
._d_c00402{margin-left:-2.203200px;}
._3_c00402{margin-left:-1.065600px;}
._0_c00402{width:1.034064px;}
._1_c00402{width:2.116800px;}
._2_c00402{width:3.271536px;}
._7_c00402{width:4.415328px;}
._10_c00402{width:5.688000px;}
._8_c00402{width:7.185600px;}
._e_c00402{width:9.417600px;}
._f_c00402{width:10.641600px;}
._6_c00402{width:23.407200px;}
._b_c00402{width:30.600000px;}
._c_c00402{width:31.766400px;}
._11_c00402{width:751.320000px;}
.fc2_c00402{color:rgb(32,33,34);}
.fc3_c00402{color:rgb(68,84,106);}
.fc1_c00402{color:rgb(0,0,0);}
.fc0_c00402{color:rgb(32,31,30);}
.fs2_c00402{font-size:54.000000px;}
.fs0_c00402{font-size:60.120000px;}
.fs1_c00402{font-size:72.000000px;}
.y0_c00402{bottom:0.000000px;}
.y5_c00402{bottom:57.360450px;}
.y4_c00402{bottom:78.060450px;}
.y21_c00402{bottom:132.150450px;}
.y20_c00402{bottom:167.070450px;}
.y1f_c00402{bottom:201.630450px;}
.y1e_c00402{bottom:326.100900px;}
.y1d_c00402{bottom:341.670450px;}
.y1c_c00402{bottom:380.280450px;}
.y1b_c00402{bottom:423.300450px;}
.y1a_c00402{bottom:454.440450px;}
.y19_c00402{bottom:485.490450px;}
.y18_c00402{bottom:516.540450px;}
.y17_c00402{bottom:547.590450px;}
.y16_c00402{bottom:590.610450px;}
.y15_c00402{bottom:621.660450px;}
.y14_c00402{bottom:652.710450px;}
.y13_c00402{bottom:683.760450px;}
.y12_c00402{bottom:714.810450px;}
.y11_c00402{bottom:745.860450px;}
.y10_c00402{bottom:776.910450px;}
.yf_c00402{bottom:819.930450px;}
.ye_c00402{bottom:851.070450px;}
.yd_c00402{bottom:882.120450px;}
.yc_c00402{bottom:913.170450px;}
.yb_c00402{bottom:944.220450px;}
.ya_c00402{bottom:975.180450px;}
.y9_c00402{bottom:1006.230450px;}
.y8_c00402{bottom:1049.250450px;}
.y7_c00402{bottom:1080.390450px;}
.y6_c00402{bottom:1111.440450px;}
.y3_c00402{bottom:1132.140450px;}
.y2_c00402{bottom:1165.441023px;}
.y1_c00402{bottom:1196.040600px;}
.h4_c00402{height:47.513672px;}
.h1_c00402{height:52.898555px;}
.h2_c00402{height:63.175781px;}
.h3_c00402{height:63.351562px;}
.h0_c00402{height:1263.000000px;}
.w1_c00402{width:892.500000px;}
.w0_c00402{width:892.830000px;}
.x0_c00402{left:0.000000px;}
.x1_c00402{left:127.620000px;}
.x3_c00402{left:550.620000px;}
.x2_c00402{left:738.450000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls15_c00402{letter-spacing:-1.600000pt;}
.lsd_c00402{letter-spacing:-0.090848pt;}
.ls14_c00402{letter-spacing:-0.032000pt;}
.ls16_c00402{letter-spacing:-0.024000pt;}
.lsf_c00402{letter-spacing:-0.019200pt;}
.ls11_c00402{letter-spacing:-0.012800pt;}
.ls12_c00402{letter-spacing:-0.006400pt;}
.lse_c00402{letter-spacing:0.000000pt;}
.ls3_c00402{letter-spacing:0.006400pt;}
.ls4_c00402{letter-spacing:0.012800pt;}
.lsc_c00402{letter-spacing:0.014400pt;}
.ls9_c00402{letter-spacing:0.019200pt;}
.ls1_c00402{letter-spacing:0.025600pt;}
.ls8_c00402{letter-spacing:0.032000pt;}
.ls0_c00402{letter-spacing:0.038400pt;}
.ls6_c00402{letter-spacing:0.044800pt;}
.lsb_c00402{letter-spacing:0.051200pt;}
.ls5_c00402{letter-spacing:0.057600pt;}
.ls2_c00402{letter-spacing:0.064000pt;}
.ls7_c00402{letter-spacing:0.070400pt;}
.lsa_c00402{letter-spacing:0.089600pt;}
.ls10_c00402{letter-spacing:0.960000pt;}
.ls13_c00402{letter-spacing:6.400000pt;}
.ws4_c00402{word-spacing:-1.632000pt;}
.ws5_c00402{word-spacing:-1.600000pt;}
.ws6_c00402{word-spacing:-0.139200pt;}
.ws7_c00402{word-spacing:-0.134400pt;}
.ws1_c00402{word-spacing:0.000000pt;}
.ws8_c00402{word-spacing:0.144000pt;}
.ws0_c00402{word-spacing:0.171008pt;}
.ws2_c00402{word-spacing:0.787200pt;}
.ws3_c00402{word-spacing:27.507200pt;}
._a_c00402{margin-left:-7.187200pt;}
._9_c00402{margin-left:-6.201600pt;}
._4_c00402{margin-left:-3.827200pt;}
._5_c00402{margin-left:-2.912000pt;}
._d_c00402{margin-left:-1.958400pt;}
._3_c00402{margin-left:-0.947200pt;}
._0_c00402{width:0.919168pt;}
._1_c00402{width:1.881600pt;}
._2_c00402{width:2.908032pt;}
._7_c00402{width:3.924736pt;}
._10_c00402{width:5.056000pt;}
._8_c00402{width:6.387200pt;}
._e_c00402{width:8.371200pt;}
._f_c00402{width:9.459200pt;}
._6_c00402{width:20.806400pt;}
._b_c00402{width:27.200000pt;}
._c_c00402{width:28.236800pt;}
._11_c00402{width:667.840000pt;}
.fs2_c00402{font-size:48.000000pt;}
.fs0_c00402{font-size:53.440000pt;}
.fs1_c00402{font-size:64.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y5_c00402{bottom:50.987067pt;}
.y4_c00402{bottom:69.387067pt;}
.y21_c00402{bottom:117.467067pt;}
.y20_c00402{bottom:148.507067pt;}
.y1f_c00402{bottom:179.227067pt;}
.y1e_c00402{bottom:289.867467pt;}
.y1d_c00402{bottom:303.707067pt;}
.y1c_c00402{bottom:338.027067pt;}
.y1b_c00402{bottom:376.267067pt;}
.y1a_c00402{bottom:403.947067pt;}
.y19_c00402{bottom:431.547067pt;}
.y18_c00402{bottom:459.147067pt;}
.y17_c00402{bottom:486.747067pt;}
.y16_c00402{bottom:524.987067pt;}
.y15_c00402{bottom:552.587067pt;}
.y14_c00402{bottom:580.187067pt;}
.y13_c00402{bottom:607.787067pt;}
.y12_c00402{bottom:635.387067pt;}
.y11_c00402{bottom:662.987067pt;}
.y10_c00402{bottom:690.587067pt;}
.yf_c00402{bottom:728.827067pt;}
.ye_c00402{bottom:756.507067pt;}
.yd_c00402{bottom:784.107067pt;}
.yc_c00402{bottom:811.707067pt;}
.yb_c00402{bottom:839.307067pt;}
.ya_c00402{bottom:866.827067pt;}
.y9_c00402{bottom:894.427067pt;}
.y8_c00402{bottom:932.667067pt;}
.y7_c00402{bottom:960.347067pt;}
.y6_c00402{bottom:987.947067pt;}
.y3_c00402{bottom:1006.347067pt;}
.y2_c00402{bottom:1035.947576pt;}
.y1_c00402{bottom:1063.147200pt;}
.h4_c00402{height:42.234375pt;}
.h1_c00402{height:47.020937pt;}
.h2_c00402{height:56.156250pt;}
.h3_c00402{height:56.312500pt;}
.h0_c00402{height:1122.666667pt;}
.w1_c00402{width:793.333333pt;}
.w0_c00402{width:793.626667pt;}
.x0_c00402{left:0.000000pt;}
.x1_c00402{left:113.440000pt;}
.x3_c00402{left:489.440000pt;}
.x2_c00402{left:656.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_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_67cf7fa6d2f1a977df6275a0.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.095703;font-style:normal;font-weight:normal;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_c031c385d3cbf6dafe490904.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_401e7a69f4bdcfa4cb231842.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00403;src:url('chunks/assets/font_e7694207e826cb8fff588cf4.woff2')format("woff");}.ff4_c00403{font-family:ff4_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;}
.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:16.920000px;}
.ls8_c00403{letter-spacing:-0.151200px;}
.ls6_c00403{letter-spacing:-0.124200px;}
.ls13_c00403{letter-spacing:-0.108000px;}
.ls14_c00403{letter-spacing:-0.086400px;}
.lsc_c00403{letter-spacing:-0.081000px;}
.lsd_c00403{letter-spacing:-0.075600px;}
.ls10_c00403{letter-spacing:-0.070200px;}
.ls7_c00403{letter-spacing:-0.064800px;}
.ls11_c00403{letter-spacing:-0.059400px;}
.lsa_c00403{letter-spacing:-0.054000px;}
.lse_c00403{letter-spacing:-0.048600px;}
.ls3_c00403{letter-spacing:-0.048096px;}
.lsb_c00403{letter-spacing:-0.043200px;}
.lsf_c00403{letter-spacing:-0.037800px;}
.ls12_c00403{letter-spacing:-0.032400px;}
.ls16_c00403{letter-spacing:-0.027000px;}
.ls5_c00403{letter-spacing:-0.007200px;}
.ls4_c00403{letter-spacing:0.000000px;}
.ls0_c00403{letter-spacing:0.010800px;}
.ls2_c00403{letter-spacing:0.081000px;}
.ls15_c00403{letter-spacing:0.129600px;}
.ls9_c00403{letter-spacing:0.156600px;}
.ls17_c00403{letter-spacing:0.496800px;}
.ls1_c00403{letter-spacing:141.840000px;}
.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:0.000000px;}
.ws0_c00403{word-spacing:0.138276px;}
.ws2_c00403{word-spacing:0.167400px;}
._3_c00403{margin-left:-1.236600px;}
._0_c00403{width:1.065600px;}
._1_c00403{width:73.980000px;}
._1c_c00403{width:279.946800px;}
._25_c00403{width:301.881600px;}
._14_c00403{width:316.513800px;}
._1f_c00403{width:486.966600px;}
._16_c00403{width:505.317600px;}
._d_c00403{width:604.958400px;}
._1d_c00403{width:613.220400px;}
._11_c00403{width:639.820800px;}
._b_c00403{width:655.146000px;}
._26_c00403{width:673.268400px;}
._23_c00403{width:698.218200px;}
._20_c00403{width:706.964400px;}
._1e_c00403{width:721.821600px;}
._18_c00403{width:730.238400px;}
._24_c00403{width:733.456800px;}
._1b_c00403{width:739.321200px;}
._19_c00403{width:757.011600px;}
._a_c00403{width:790.043400px;}
._21_c00403{width:822.564000px;}
._e_c00403{width:895.208400px;}
._c_c00403{width:947.325600px;}
._6_c00403{width:949.755600px;}
._13_c00403{width:962.240400px;}
._12_c00403{width:969.870600px;}
._17_c00403{width:989.029800px;}
._15_c00403{width:1006.758000px;}
._22_c00403{width:1027.467000px;}
._4_c00403{width:1050.395400px;}
._8_c00403{width:1056.934800px;}
._2_c00403{width:1093.928400px;}
._1a_c00403{width:1100.016000px;}
._10_c00403{width:1160.118000px;}
._9_c00403{width:1171.738800px;}
._5_c00403{width:1183.554000px;}
._7_c00403{width:1219.626000px;}
._f_c00403{width:1222.390800px;}
._27_c00403{width:1239.638400px;}
.fc3_c00403{color:rgb(38,74,96);}
.fc2_c00403{color:rgb(1,2,5);}
.fc1_c00403{color:rgb(68,84,106);}
.fc0_c00403{color:rgb(0,0,0);}
.fs2_c00403{font-size:54.000000px;}
.fs0_c00403{font-size:60.120000px;}
.fs1_c00403{font-size:72.000000px;}
.y0_c00403{bottom:0.000000px;}
.y6_c00403{bottom:57.360450px;}
.y5_c00403{bottom:78.060450px;}
.y31_c00403{bottom:115.500450px;}
.y30_c00403{bottom:143.310450px;}
.y2f_c00403{bottom:166.980450px;}
.y2e_c00403{bottom:190.650450px;}
.y2d_c00403{bottom:214.320450px;}
.y2c_c00403{bottom:237.990450px;}
.y2b_c00403{bottom:261.660450px;}
.y2a_c00403{bottom:285.240450px;}
.y29_c00403{bottom:308.910450px;}
.y28_c00403{bottom:332.580450px;}
.y27_c00403{bottom:356.250600px;}
.y26_c00403{bottom:379.920450px;}
.y25_c00403{bottom:403.590600px;}
.y24_c00403{bottom:427.260450px;}
.y23_c00403{bottom:450.930600px;}
.y22_c00403{bottom:474.600450px;}
.y21_c00403{bottom:498.180600px;}
.y20_c00403{bottom:521.850450px;}
.y1f_c00403{bottom:545.520450px;}
.y1e_c00403{bottom:569.190450px;}
.y1d_c00403{bottom:592.860450px;}
.y1c_c00403{bottom:616.530450px;}
.y1b_c00403{bottom:640.200450px;}
.y1a_c00403{bottom:663.870450px;}
.y19_c00403{bottom:687.540450px;}
.y18_c00403{bottom:711.210450px;}
.y17_c00403{bottom:734.790450px;}
.y16_c00403{bottom:758.460450px;}
.y15_c00403{bottom:782.130450px;}
.y14_c00403{bottom:805.800450px;}
.y13_c00403{bottom:829.470450px;}
.y12_c00403{bottom:853.140450px;}
.y11_c00403{bottom:876.810450px;}
.y10_c00403{bottom:900.480450px;}
.yf_c00403{bottom:924.150450px;}
.ye_c00403{bottom:947.730450px;}
.yd_c00403{bottom:971.400450px;}
.yc_c00403{bottom:995.070450px;}
.yb_c00403{bottom:1018.740450px;}
.ya_c00403{bottom:1042.410450px;}
.y9_c00403{bottom:1066.080450px;}
.y8_c00403{bottom:1093.260450px;}
.y7_c00403{bottom:1128.630450px;}
.y4_c00403{bottom:1144.380657px;}
.y3_c00403{bottom:1161.660648px;}
.y2_c00403{bottom:1178.850459px;}
.y1_c00403{bottom:1196.130450px;}
.h3_c00403{height:47.513672px;}
.h5_c00403{height:48.410156px;}
.h1_c00403{height:52.898555px;}
.h2_c00403{height:63.175781px;}
.h4_c00403{height:65.330156px;}
.h0_c00403{height:1263.000000px;}
.w1_c00403{width:892.500000px;}
.w0_c00403{width:892.830000px;}
.x0_c00403{left:0.000000px;}
.x4_c00403{left:127.620000px;}
.x5_c00403{left:220.680000px;}
.x6_c00403{left:242.910000px;}
.x1_c00403{left:649.620000px;}
.x3_c00403{left:738.450000px;}
.x2_c00403{left:765.450198px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.v1_c00403{vertical-align:15.040000pt;}
.ls8_c00403{letter-spacing:-0.134400pt;}
.ls6_c00403{letter-spacing:-0.110400pt;}
.ls13_c00403{letter-spacing:-0.096000pt;}
.ls14_c00403{letter-spacing:-0.076800pt;}
.lsc_c00403{letter-spacing:-0.072000pt;}
.lsd_c00403{letter-spacing:-0.067200pt;}
.ls10_c00403{letter-spacing:-0.062400pt;}
.ls7_c00403{letter-spacing:-0.057600pt;}
.ls11_c00403{letter-spacing:-0.052800pt;}
.lsa_c00403{letter-spacing:-0.048000pt;}
.lse_c00403{letter-spacing:-0.043200pt;}
.ls3_c00403{letter-spacing:-0.042752pt;}
.lsb_c00403{letter-spacing:-0.038400pt;}
.lsf_c00403{letter-spacing:-0.033600pt;}
.ls12_c00403{letter-spacing:-0.028800pt;}
.ls16_c00403{letter-spacing:-0.024000pt;}
.ls5_c00403{letter-spacing:-0.006400pt;}
.ls4_c00403{letter-spacing:0.000000pt;}
.ls0_c00403{letter-spacing:0.009600pt;}
.ls2_c00403{letter-spacing:0.072000pt;}
.ls15_c00403{letter-spacing:0.115200pt;}
.ls9_c00403{letter-spacing:0.139200pt;}
.ls17_c00403{letter-spacing:0.441600pt;}
.ls1_c00403{letter-spacing:126.080000pt;}
.ws1_c00403{word-spacing:0.000000pt;}
.ws0_c00403{word-spacing:0.122912pt;}
.ws2_c00403{word-spacing:0.148800pt;}
._3_c00403{margin-left:-1.099200pt;}
._0_c00403{width:0.947200pt;}
._1_c00403{width:65.760000pt;}
._1c_c00403{width:248.841600pt;}
._25_c00403{width:268.339200pt;}
._14_c00403{width:281.345600pt;}
._1f_c00403{width:432.859200pt;}
._16_c00403{width:449.171200pt;}
._d_c00403{width:537.740800pt;}
._1d_c00403{width:545.084800pt;}
._11_c00403{width:568.729600pt;}
._b_c00403{width:582.352000pt;}
._26_c00403{width:598.460800pt;}
._23_c00403{width:620.638400pt;}
._20_c00403{width:628.412800pt;}
._1e_c00403{width:641.619200pt;}
._18_c00403{width:649.100800pt;}
._24_c00403{width:651.961600pt;}
._1b_c00403{width:657.174400pt;}
._19_c00403{width:672.899200pt;}
._a_c00403{width:702.260800pt;}
._21_c00403{width:731.168000pt;}
._e_c00403{width:795.740800pt;}
._c_c00403{width:842.067200pt;}
._6_c00403{width:844.227200pt;}
._13_c00403{width:855.324800pt;}
._12_c00403{width:862.107200pt;}
._17_c00403{width:879.137600pt;}
._15_c00403{width:894.896000pt;}
._22_c00403{width:913.304000pt;}
._4_c00403{width:933.684800pt;}
._8_c00403{width:939.497600pt;}
._2_c00403{width:972.380800pt;}
._1a_c00403{width:977.792000pt;}
._10_c00403{width:1031.216000pt;}
._9_c00403{width:1041.545600pt;}
._5_c00403{width:1052.048000pt;}
._7_c00403{width:1084.112000pt;}
._f_c00403{width:1086.569600pt;}
._27_c00403{width:1101.900800pt;}
.fs2_c00403{font-size:48.000000pt;}
.fs0_c00403{font-size:53.440000pt;}
.fs1_c00403{font-size:64.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.y6_c00403{bottom:50.987067pt;}
.y5_c00403{bottom:69.387067pt;}
.y31_c00403{bottom:102.667067pt;}
.y30_c00403{bottom:127.387067pt;}
.y2f_c00403{bottom:148.427067pt;}
.y2e_c00403{bottom:169.467067pt;}
.y2d_c00403{bottom:190.507067pt;}
.y2c_c00403{bottom:211.547067pt;}
.y2b_c00403{bottom:232.587067pt;}
.y2a_c00403{bottom:253.547067pt;}
.y29_c00403{bottom:274.587067pt;}
.y28_c00403{bottom:295.627067pt;}
.y27_c00403{bottom:316.667200pt;}
.y26_c00403{bottom:337.707067pt;}
.y25_c00403{bottom:358.747200pt;}
.y24_c00403{bottom:379.787067pt;}
.y23_c00403{bottom:400.827200pt;}
.y22_c00403{bottom:421.867067pt;}
.y21_c00403{bottom:442.827200pt;}
.y20_c00403{bottom:463.867067pt;}
.y1f_c00403{bottom:484.907067pt;}
.y1e_c00403{bottom:505.947067pt;}
.y1d_c00403{bottom:526.987067pt;}
.y1c_c00403{bottom:548.027067pt;}
.y1b_c00403{bottom:569.067067pt;}
.y1a_c00403{bottom:590.107067pt;}
.y19_c00403{bottom:611.147067pt;}
.y18_c00403{bottom:632.187067pt;}
.y17_c00403{bottom:653.147067pt;}
.y16_c00403{bottom:674.187067pt;}
.y15_c00403{bottom:695.227067pt;}
.y14_c00403{bottom:716.267067pt;}
.y13_c00403{bottom:737.307067pt;}
.y12_c00403{bottom:758.347067pt;}
.y11_c00403{bottom:779.387067pt;}
.y10_c00403{bottom:800.427067pt;}
.yf_c00403{bottom:821.467067pt;}
.ye_c00403{bottom:842.427067pt;}
.yd_c00403{bottom:863.467067pt;}
.yc_c00403{bottom:884.507067pt;}
.yb_c00403{bottom:905.547067pt;}
.ya_c00403{bottom:926.587067pt;}
.y9_c00403{bottom:947.627067pt;}
.y8_c00403{bottom:971.787067pt;}
.y7_c00403{bottom:1003.227067pt;}
.y4_c00403{bottom:1017.227251pt;}
.y3_c00403{bottom:1032.587243pt;}
.y2_c00403{bottom:1047.867075pt;}
.y1_c00403{bottom:1063.227067pt;}
.h3_c00403{height:42.234375pt;}
.h5_c00403{height:43.031250pt;}
.h1_c00403{height:47.020937pt;}
.h2_c00403{height:56.156250pt;}
.h4_c00403{height:58.071250pt;}
.h0_c00403{height:1122.666667pt;}
.w1_c00403{width:793.333333pt;}
.w0_c00403{width:793.626667pt;}
.x0_c00403{left:0.000000pt;}
.x4_c00403{left:113.440000pt;}
.x5_c00403{left:196.160000pt;}
.x6_c00403{left:215.920000pt;}
.x1_c00403{left:577.440000pt;}
.x3_c00403{left:656.400000pt;}
.x2_c00403{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.095703;font-style:normal;font-weight:normal;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_c0543103eab92d357851e84d.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:1.093262;font-style: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;}
.ls11_c00404{letter-spacing:-0.648000px;}
.lsd_c00404{letter-spacing:-0.102204px;}
.ls15_c00404{letter-spacing:-0.064800px;}
.ls16_c00404{letter-spacing:-0.050400px;}
.ls12_c00404{letter-spacing:-0.043200px;}
.ls14_c00404{letter-spacing:-0.021600px;}
.lsf_c00404{letter-spacing:-0.014400px;}
.ls10_c00404{letter-spacing:-0.007200px;}
.lse_c00404{letter-spacing:0.000000px;}
.ls7_c00404{letter-spacing:0.007200px;}
.ls2_c00404{letter-spacing:0.014400px;}
.ls3_c00404{letter-spacing:0.021600px;}
.ls6_c00404{letter-spacing:0.028800px;}
.ls1_c00404{letter-spacing:0.036000px;}
.ls5_c00404{letter-spacing:0.043200px;}
.ls8_c00404{letter-spacing:0.050400px;}
.lsb_c00404{letter-spacing:0.057600px;}
.ls0_c00404{letter-spacing:0.064800px;}
.ls9_c00404{letter-spacing:0.072000px;}
.lsa_c00404{letter-spacing:0.079200px;}
.ls4_c00404{letter-spacing:0.093600px;}
.lsc_c00404{letter-spacing:0.122400px;}
.ls13_c00404{letter-spacing:6.120000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00404{word-spacing:0.000000px;}
.ws0_c00404{word-spacing:0.192384px;}
._a_c00404{margin-left:-6.516000px;}
._b_c00404{margin-left:-5.385600px;}
._f_c00404{margin-left:-3.196800px;}
._4_c00404{margin-left:-2.196000px;}
._1_c00404{margin-left:-1.065600px;}
._0_c00404{width:1.034064px;}
._5_c00404{width:2.338272px;}
._8_c00404{width:3.941856px;}
._9_c00404{width:6.091200px;}
._11_c00404{width:7.101936px;}
._10_c00404{width:8.280000px;}
._e_c00404{width:9.504000px;}
._7_c00404{width:10.605600px;}
._6_c00404{width:12.175200px;}
._d_c00404{width:15.076800px;}
._c_c00404{width:16.178400px;}
._3_c00404{width:21.571200px;}
._2_c00404{width:22.644000px;}
.fc1_c00404{color:rgb(0,0,0);}
.fc0_c00404{color:rgb(32,31,30);}
.fs0_c00404{font-size:60.120000px;}
.fs1_c00404{font-size:72.000000px;}
.y0_c00404{bottom:0.000000px;}
.y5_c00404{bottom:57.360450px;}
.y4_c00404{bottom:78.060450px;}
.y24_c00404{bottom:131.880450px;}
.y23_c00404{bottom:163.020450px;}
.y22_c00404{bottom:194.070450px;}
.y21_c00404{bottom:225.120450px;}
.y20_c00404{bottom:268.050450px;}
.y1f_c00404{bottom:299.190450px;}
.y1e_c00404{bottom:330.240450px;}
.y1d_c00404{bottom:361.290450px;}
.y1c_c00404{bottom:392.340450px;}
.y1b_c00404{bottom:423.390450px;}
.y1a_c00404{bottom:454.440450px;}
.y19_c00404{bottom:485.490450px;}
.y18_c00404{bottom:528.510450px;}
.y17_c00404{bottom:559.650450px;}
.y16_c00404{bottom:590.700450px;}
.y15_c00404{bottom:621.660450px;}
.y14_c00404{bottom:664.680450px;}
.y13_c00404{bottom:695.820450px;}
.y12_c00404{bottom:726.870450px;}
.y11_c00404{bottom:757.920450px;}
.y10_c00404{bottom:788.970450px;}
.yf_c00404{bottom:820.020450px;}
.ye_c00404{bottom:862.950450px;}
.yd_c00404{bottom:894.090450px;}
.yc_c00404{bottom:925.140450px;}
.yb_c00404{bottom:956.190450px;}
.ya_c00404{bottom:987.240450px;}
.y9_c00404{bottom:1018.290450px;}
.y8_c00404{bottom:1049.340450px;}
.y7_c00404{bottom:1080.390450px;}
.y6_c00404{bottom:1111.440450px;}
.y3_c00404{bottom:1132.140450px;}
.y2_c00404{bottom:1165.441023px;}
.y1_c00404{bottom:1196.040600px;}
.h1_c00404{height:52.898555px;}
.h2_c00404{height:63.175781px;}
.h0_c00404{height:1263.000000px;}
.w1_c00404{width:892.500000px;}
.w0_c00404{width:892.830000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:127.620000px;}
.x2_c00404{left:738.450000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls11_c00404{letter-spacing:-0.576000pt;}
.lsd_c00404{letter-spacing:-0.090848pt;}
.ls15_c00404{letter-spacing:-0.057600pt;}
.ls16_c00404{letter-spacing:-0.044800pt;}
.ls12_c00404{letter-spacing:-0.038400pt;}
.ls14_c00404{letter-spacing:-0.019200pt;}
.lsf_c00404{letter-spacing:-0.012800pt;}
.ls10_c00404{letter-spacing:-0.006400pt;}
.lse_c00404{letter-spacing:0.000000pt;}
.ls7_c00404{letter-spacing:0.006400pt;}
.ls2_c00404{letter-spacing:0.012800pt;}
.ls3_c00404{letter-spacing:0.019200pt;}
.ls6_c00404{letter-spacing:0.025600pt;}
.ls1_c00404{letter-spacing:0.032000pt;}
.ls5_c00404{letter-spacing:0.038400pt;}
.ls8_c00404{letter-spacing:0.044800pt;}
.lsb_c00404{letter-spacing:0.051200pt;}
.ls0_c00404{letter-spacing:0.057600pt;}
.ls9_c00404{letter-spacing:0.064000pt;}
.lsa_c00404{letter-spacing:0.070400pt;}
.ls4_c00404{letter-spacing:0.083200pt;}
.lsc_c00404{letter-spacing:0.108800pt;}
.ls13_c00404{letter-spacing:5.440000pt;}
.ws1_c00404{word-spacing:0.000000pt;}
.ws0_c00404{word-spacing:0.171008pt;}
._a_c00404{margin-left:-5.792000pt;}
._b_c00404{margin-left:-4.787200pt;}
._f_c00404{margin-left:-2.841600pt;}
._4_c00404{margin-left:-1.952000pt;}
._1_c00404{margin-left:-0.947200pt;}
._0_c00404{width:0.919168pt;}
._5_c00404{width:2.078464pt;}
._8_c00404{width:3.503872pt;}
._9_c00404{width:5.414400pt;}
._11_c00404{width:6.312832pt;}
._10_c00404{width:7.360000pt;}
._e_c00404{width:8.448000pt;}
._7_c00404{width:9.427200pt;}
._6_c00404{width:10.822400pt;}
._d_c00404{width:13.401600pt;}
._c_c00404{width:14.380800pt;}
._3_c00404{width:19.174400pt;}
._2_c00404{width:20.128000pt;}
.fs0_c00404{font-size:53.440000pt;}
.fs1_c00404{font-size:64.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y5_c00404{bottom:50.987067pt;}
.y4_c00404{bottom:69.387067pt;}
.y24_c00404{bottom:117.227067pt;}
.y23_c00404{bottom:144.907067pt;}
.y22_c00404{bottom:172.507067pt;}
.y21_c00404{bottom:200.107067pt;}
.y20_c00404{bottom:238.267067pt;}
.y1f_c00404{bottom:265.947067pt;}
.y1e_c00404{bottom:293.547067pt;}
.y1d_c00404{bottom:321.147067pt;}
.y1c_c00404{bottom:348.747067pt;}
.y1b_c00404{bottom:376.347067pt;}
.y1a_c00404{bottom:403.947067pt;}
.y19_c00404{bottom:431.547067pt;}
.y18_c00404{bottom:469.787067pt;}
.y17_c00404{bottom:497.467067pt;}
.y16_c00404{bottom:525.067067pt;}
.y15_c00404{bottom:552.587067pt;}
.y14_c00404{bottom:590.827067pt;}
.y13_c00404{bottom:618.507067pt;}
.y12_c00404{bottom:646.107067pt;}
.y11_c00404{bottom:673.707067pt;}
.y10_c00404{bottom:701.307067pt;}
.yf_c00404{bottom:728.907067pt;}
.ye_c00404{bottom:767.067067pt;}
.yd_c00404{bottom:794.747067pt;}
.yc_c00404{bottom:822.347067pt;}
.yb_c00404{bottom:849.947067pt;}
.ya_c00404{bottom:877.547067pt;}
.y9_c00404{bottom:905.147067pt;}
.y8_c00404{bottom:932.747067pt;}
.y7_c00404{bottom:960.347067pt;}
.y6_c00404{bottom:987.947067pt;}
.y3_c00404{bottom:1006.347067pt;}
.y2_c00404{bottom:1035.947576pt;}
.y1_c00404{bottom:1063.147200pt;}
.h1_c00404{height:47.020937pt;}
.h2_c00404{height:56.156250pt;}
.h0_c00404{height:1122.666667pt;}
.w1_c00404{width:793.333333pt;}
.w0_c00404{width:793.626667pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:113.440000pt;}
.x2_c00404{left:656.400000pt;}
}





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

.ir_c00405:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00405;src:url('chunks/assets/font_f7d23da645924321c73454c3.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.095703;font-style:normal;font-weight:normal;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_9d8a312167bc78e01cb4e2b6.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.093262;font-style: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;}
.ls18_c00405{letter-spacing:-0.720000px;}
.ls12_c00405{letter-spacing:-0.172800px;}
.ls16_c00405{letter-spacing:-0.057600px;}
.lsf_c00405{letter-spacing:-0.048096px;}
.ls19_c00405{letter-spacing:-0.021600px;}
.ls13_c00405{letter-spacing:-0.014400px;}
.ls11_c00405{letter-spacing:-0.007200px;}
.ls10_c00405{letter-spacing:0.000000px;}
.ls3_c00405{letter-spacing:0.007200px;}
.ls8_c00405{letter-spacing:0.014400px;}
.ls9_c00405{letter-spacing:0.016200px;}
.ls4_c00405{letter-spacing:0.021600px;}
.ls7_c00405{letter-spacing:0.028800px;}
.lsa_c00405{letter-spacing:0.032400px;}
.ls0_c00405{letter-spacing:0.036000px;}
.lsd_c00405{letter-spacing:0.043200px;}
.lsb_c00405{letter-spacing:0.050400px;}
.lsc_c00405{letter-spacing:0.057600px;}
.ls5_c00405{letter-spacing:0.064800px;}
.ls2_c00405{letter-spacing:0.072000px;}
.ls17_c00405{letter-spacing:0.086400px;}
.ls1_c00405{letter-spacing:0.093600px;}
.lse_c00405{letter-spacing:0.129600px;}
.ls14_c00405{letter-spacing:0.583200px;}
.ls6_c00405{letter-spacing:0.720000px;}
.ls15_c00405{letter-spacing:1246.141800px;}
.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;}
}
.ws4_c00405{word-spacing:-1.440000px;}
.ws5_c00405{word-spacing:-1.116000px;}
.ws6_c00405{word-spacing:-0.698400px;}
.ws1_c00405{word-spacing:0.000000px;}
.ws0_c00405{word-spacing:0.138276px;}
.ws3_c00405{word-spacing:25.709400px;}
.ws2_c00405{word-spacing:25.725600px;}
._0_c00405{margin-left:-3.996000px;}
._6_c00405{margin-left:-2.671200px;}
._1_c00405{margin-left:-1.533600px;}
._4_c00405{width:1.252800px;}
._3_c00405{width:2.865600px;}
._2_c00405{width:3.967200px;}
._5_c00405{width:5.040000px;}
._7_c00405{width:7.912800px;}
._8_c00405{width:9.144000px;}
._9_c00405{width:10.404000px;}
.fc1_c00405{color:rgb(255,0,0);}
.fc2_c00405{color:rgb(68,84,106);}
.fc0_c00405{color:rgb(0,0,0);}
.fs2_c00405{font-size:54.000000px;}
.fs0_c00405{font-size:60.120000px;}
.fs1_c00405{font-size:72.000000px;}
.y0_c00405{bottom:0.000000px;}
.y6_c00405{bottom:57.360450px;}
.y5_c00405{bottom:78.060450px;}
.y20_c00405{bottom:142.680450px;}
.y1f_c00405{bottom:185.700450px;}
.y1e_c00405{bottom:228.720450px;}
.y1d_c00405{bottom:259.860450px;}
.y1c_c00405{bottom:290.910450px;}
.y1b_c00405{bottom:321.960450px;}
.y1a_c00405{bottom:353.010450px;}
.y19_c00405{bottom:384.060450px;}
.y18_c00405{bottom:426.990450px;}
.y17_c00405{bottom:458.130450px;}
.y16_c00405{bottom:489.180450px;}
.y15_c00405{bottom:520.230450px;}
.y14_c00405{bottom:551.280450px;}
.y13_c00405{bottom:582.330450px;}
.y12_c00405{bottom:613.380450px;}
.y11_c00405{bottom:656.310450px;}
.y10_c00405{bottom:695.820450px;}
.yf_c00405{bottom:844.320450px;}
.ye_c00405{bottom:882.930450px;}
.yd_c00405{bottom:925.950450px;}
.yc_c00405{bottom:957.090450px;}
.yb_c00405{bottom:1000.110450px;}
.ya_c00405{bottom:1031.160450px;}
.y9_c00405{bottom:1062.210450px;}
.y8_c00405{bottom:1093.260450px;}
.y7_c00405{bottom:1124.310450px;}
.y4_c00405{bottom:1144.380657px;}
.y3_c00405{bottom:1161.660648px;}
.y2_c00405{bottom:1178.850459px;}
.y1_c00405{bottom:1196.130450px;}
.h3_c00405{height:47.513672px;}
.h1_c00405{height:52.898555px;}
.h2_c00405{height:63.175781px;}
.h4_c00405{height:63.351562px;}
.h0_c00405{height:1263.000000px;}
.w1_c00405{width:892.500000px;}
.w0_c00405{width:892.830000px;}
.x0_c00405{left:0.000000px;}
.x4_c00405{left:127.620000px;}
.x5_c00405{left:404.370000px;}
.x1_c00405{left:649.620000px;}
.x3_c00405{left:738.450000px;}
.x2_c00405{left:765.450198px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls18_c00405{letter-spacing:-0.640000pt;}
.ls12_c00405{letter-spacing:-0.153600pt;}
.ls16_c00405{letter-spacing:-0.051200pt;}
.lsf_c00405{letter-spacing:-0.042752pt;}
.ls19_c00405{letter-spacing:-0.019200pt;}
.ls13_c00405{letter-spacing:-0.012800pt;}
.ls11_c00405{letter-spacing:-0.006400pt;}
.ls10_c00405{letter-spacing:0.000000pt;}
.ls3_c00405{letter-spacing:0.006400pt;}
.ls8_c00405{letter-spacing:0.012800pt;}
.ls9_c00405{letter-spacing:0.014400pt;}
.ls4_c00405{letter-spacing:0.019200pt;}
.ls7_c00405{letter-spacing:0.025600pt;}
.lsa_c00405{letter-spacing:0.028800pt;}
.ls0_c00405{letter-spacing:0.032000pt;}
.lsd_c00405{letter-spacing:0.038400pt;}
.lsb_c00405{letter-spacing:0.044800pt;}
.lsc_c00405{letter-spacing:0.051200pt;}
.ls5_c00405{letter-spacing:0.057600pt;}
.ls2_c00405{letter-spacing:0.064000pt;}
.ls17_c00405{letter-spacing:0.076800pt;}
.ls1_c00405{letter-spacing:0.083200pt;}
.lse_c00405{letter-spacing:0.115200pt;}
.ls14_c00405{letter-spacing:0.518400pt;}
.ls6_c00405{letter-spacing:0.640000pt;}
.ls15_c00405{letter-spacing:1107.681600pt;}
.ws4_c00405{word-spacing:-1.280000pt;}
.ws5_c00405{word-spacing:-0.992000pt;}
.ws6_c00405{word-spacing:-0.620800pt;}
.ws1_c00405{word-spacing:0.000000pt;}
.ws0_c00405{word-spacing:0.122912pt;}
.ws3_c00405{word-spacing:22.852800pt;}
.ws2_c00405{word-spacing:22.867200pt;}
._0_c00405{margin-left:-3.552000pt;}
._6_c00405{margin-left:-2.374400pt;}
._1_c00405{margin-left:-1.363200pt;}
._4_c00405{width:1.113600pt;}
._3_c00405{width:2.547200pt;}
._2_c00405{width:3.526400pt;}
._5_c00405{width:4.480000pt;}
._7_c00405{width:7.033600pt;}
._8_c00405{width:8.128000pt;}
._9_c00405{width:9.248000pt;}
.fs2_c00405{font-size:48.000000pt;}
.fs0_c00405{font-size:53.440000pt;}
.fs1_c00405{font-size:64.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y6_c00405{bottom:50.987067pt;}
.y5_c00405{bottom:69.387067pt;}
.y20_c00405{bottom:126.827067pt;}
.y1f_c00405{bottom:165.067067pt;}
.y1e_c00405{bottom:203.307067pt;}
.y1d_c00405{bottom:230.987067pt;}
.y1c_c00405{bottom:258.587067pt;}
.y1b_c00405{bottom:286.187067pt;}
.y1a_c00405{bottom:313.787067pt;}
.y19_c00405{bottom:341.387067pt;}
.y18_c00405{bottom:379.547067pt;}
.y17_c00405{bottom:407.227067pt;}
.y16_c00405{bottom:434.827067pt;}
.y15_c00405{bottom:462.427067pt;}
.y14_c00405{bottom:490.027067pt;}
.y13_c00405{bottom:517.627067pt;}
.y12_c00405{bottom:545.227067pt;}
.y11_c00405{bottom:583.387067pt;}
.y10_c00405{bottom:618.507067pt;}
.yf_c00405{bottom:750.507067pt;}
.ye_c00405{bottom:784.827067pt;}
.yd_c00405{bottom:823.067067pt;}
.yc_c00405{bottom:850.747067pt;}
.yb_c00405{bottom:888.987067pt;}
.ya_c00405{bottom:916.587067pt;}
.y9_c00405{bottom:944.187067pt;}
.y8_c00405{bottom:971.787067pt;}
.y7_c00405{bottom:999.387067pt;}
.y4_c00405{bottom:1017.227251pt;}
.y3_c00405{bottom:1032.587243pt;}
.y2_c00405{bottom:1047.867075pt;}
.y1_c00405{bottom:1063.227067pt;}
.h3_c00405{height:42.234375pt;}
.h1_c00405{height:47.020937pt;}
.h2_c00405{height:56.156250pt;}
.h4_c00405{height:56.312500pt;}
.h0_c00405{height:1122.666667pt;}
.w1_c00405{width:793.333333pt;}
.w0_c00405{width:793.626667pt;}
.x0_c00405{left:0.000000pt;}
.x4_c00405{left:113.440000pt;}
.x5_c00405{left:359.440000pt;}
.x1_c00405{left:577.440000pt;}
.x3_c00405{left:656.400000pt;}
.x2_c00405{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d26ad1b91316b08d7659bcb.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.095703;font-style:normal;font-weight:normal;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_0bd96ce2449d7e60dc1ccdab.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:1.093262;font-style: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;}
.lsd_c00406{letter-spacing:-0.102204px;}
.ls14_c00406{letter-spacing:-0.079200px;}
.ls19_c00406{letter-spacing:-0.072000px;}
.ls12_c00406{letter-spacing:-0.064800px;}
.ls11_c00406{letter-spacing:-0.036000px;}
.ls10_c00406{letter-spacing:-0.028800px;}
.ls18_c00406{letter-spacing:-0.021600px;}
.ls17_c00406{letter-spacing:-0.014400px;}
.ls13_c00406{letter-spacing:-0.007200px;}
.lse_c00406{letter-spacing:0.000000px;}
.ls8_c00406{letter-spacing:0.007200px;}
.ls0_c00406{letter-spacing:0.010800px;}
.ls5_c00406{letter-spacing:0.014400px;}
.ls4_c00406{letter-spacing:0.021600px;}
.ls2_c00406{letter-spacing:0.028800px;}
.ls1_c00406{letter-spacing:0.036000px;}
.ls6_c00406{letter-spacing:0.043200px;}
.lsc_c00406{letter-spacing:0.050400px;}
.ls7_c00406{letter-spacing:0.057600px;}
.ls3_c00406{letter-spacing:0.064800px;}
.lsb_c00406{letter-spacing:0.072000px;}
.ls16_c00406{letter-spacing:0.122400px;}
.lsa_c00406{letter-spacing:0.187200px;}
.lsf_c00406{letter-spacing:2.836800px;}
.ls9_c00406{letter-spacing:3.600000px;}
.ls15_c00406{letter-spacing:14.400000px;}
.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:-18.072000px;}
.ws2_c00406{word-spacing:0.000000px;}
.ws3_c00406{word-spacing:0.167400px;}
.ws1_c00406{word-spacing:0.192384px;}
.ws4_c00406{word-spacing:14.392800px;}
._b_c00406{margin-left:-14.904000px;}
._5_c00406{margin-left:-2.836800px;}
._1_c00406{margin-left:-1.069200px;}
._0_c00406{width:1.034064px;}
._9_c00406{width:2.048400px;}
._6_c00406{width:3.225600px;}
._7_c00406{width:4.298400px;}
._4_c00406{width:7.056000px;}
._3_c00406{width:8.251200px;}
._8_c00406{width:10.051200px;}
._a_c00406{width:11.491200px;}
._2_c00406{width:12.564000px;}
._c_c00406{width:14.083200px;}
._d_c00406{width:15.386400px;}
.fc3_c00406{color:rgb(255,0,0);}
.fc2_c00406{color:rgb(68,84,106);}
.fc1_c00406{color:rgb(0,0,0);}
.fc0_c00406{color:rgb(32,31,30);}
.fs2_c00406{font-size:54.000000px;}
.fs0_c00406{font-size:60.120000px;}
.fs1_c00406{font-size:72.000000px;}
.y0_c00406{bottom:0.000000px;}
.y5_c00406{bottom:57.360450px;}
.y4_c00406{bottom:78.060450px;}
.y20_c00406{bottom:111.450450px;}
.y1f_c00406{bottom:154.470450px;}
.y1e_c00406{bottom:197.490450px;}
.y1d_c00406{bottom:240.600450px;}
.y1c_c00406{bottom:283.620450px;}
.y1b_c00406{bottom:314.760450px;}
.y1a_c00406{bottom:345.810450px;}
.y19_c00406{bottom:376.860450px;}
.y18_c00406{bottom:407.910450px;}
.y17_c00406{bottom:438.960450px;}
.y16_c00406{bottom:470.010450px;}
.y15_c00406{bottom:501.060450px;}
.y14_c00406{bottom:532.110450px;}
.y13_c00406{bottom:575.040450px;}
.y12_c00406{bottom:606.180450px;}
.y11_c00406{bottom:637.230450px;}
.y10_c00406{bottom:668.280450px;}
.yf_c00406{bottom:699.330450px;}
.ye_c00406{bottom:730.380450px;}
.yd_c00406{bottom:761.430450px;}
.yc_c00406{bottom:792.480450px;}
.yb_c00406{bottom:823.530450px;}
.ya_c00406{bottom:854.580450px;}
.y9_c00406{bottom:885.630450px;}
.y8_c00406{bottom:916.680450px;}
.y7_c00406{bottom:955.650450px;}
.y6_c00406{bottom:1115.760450px;}
.y3_c00406{bottom:1132.140450px;}
.y2_c00406{bottom:1165.441023px;}
.y1_c00406{bottom:1196.040600px;}
.h3_c00406{height:47.513672px;}
.h1_c00406{height:52.898555px;}
.h2_c00406{height:63.175781px;}
.h4_c00406{height:63.351562px;}
.h0_c00406{height:1263.000000px;}
.w1_c00406{width:892.500000px;}
.w0_c00406{width:892.830000px;}
.x0_c00406{left:0.000000px;}
.x1_c00406{left:127.620000px;}
.x2_c00406{left:738.450000px;}
.x3_c00406{left:754.740000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.lsd_c00406{letter-spacing:-0.090848pt;}
.ls14_c00406{letter-spacing:-0.070400pt;}
.ls19_c00406{letter-spacing:-0.064000pt;}
.ls12_c00406{letter-spacing:-0.057600pt;}
.ls11_c00406{letter-spacing:-0.032000pt;}
.ls10_c00406{letter-spacing:-0.025600pt;}
.ls18_c00406{letter-spacing:-0.019200pt;}
.ls17_c00406{letter-spacing:-0.012800pt;}
.ls13_c00406{letter-spacing:-0.006400pt;}
.lse_c00406{letter-spacing:0.000000pt;}
.ls8_c00406{letter-spacing:0.006400pt;}
.ls0_c00406{letter-spacing:0.009600pt;}
.ls5_c00406{letter-spacing:0.012800pt;}
.ls4_c00406{letter-spacing:0.019200pt;}
.ls2_c00406{letter-spacing:0.025600pt;}
.ls1_c00406{letter-spacing:0.032000pt;}
.ls6_c00406{letter-spacing:0.038400pt;}
.lsc_c00406{letter-spacing:0.044800pt;}
.ls7_c00406{letter-spacing:0.051200pt;}
.ls3_c00406{letter-spacing:0.057600pt;}
.lsb_c00406{letter-spacing:0.064000pt;}
.ls16_c00406{letter-spacing:0.108800pt;}
.lsa_c00406{letter-spacing:0.166400pt;}
.lsf_c00406{letter-spacing:2.521600pt;}
.ls9_c00406{letter-spacing:3.200000pt;}
.ls15_c00406{letter-spacing:12.800000pt;}
.ws0_c00406{word-spacing:-16.064000pt;}
.ws2_c00406{word-spacing:0.000000pt;}
.ws3_c00406{word-spacing:0.148800pt;}
.ws1_c00406{word-spacing:0.171008pt;}
.ws4_c00406{word-spacing:12.793600pt;}
._b_c00406{margin-left:-13.248000pt;}
._5_c00406{margin-left:-2.521600pt;}
._1_c00406{margin-left:-0.950400pt;}
._0_c00406{width:0.919168pt;}
._9_c00406{width:1.820800pt;}
._6_c00406{width:2.867200pt;}
._7_c00406{width:3.820800pt;}
._4_c00406{width:6.272000pt;}
._3_c00406{width:7.334400pt;}
._8_c00406{width:8.934400pt;}
._a_c00406{width:10.214400pt;}
._2_c00406{width:11.168000pt;}
._c_c00406{width:12.518400pt;}
._d_c00406{width:13.676800pt;}
.fs2_c00406{font-size:48.000000pt;}
.fs0_c00406{font-size:53.440000pt;}
.fs1_c00406{font-size:64.000000pt;}
.y0_c00406{bottom:0.000000pt;}
.y5_c00406{bottom:50.987067pt;}
.y4_c00406{bottom:69.387067pt;}
.y20_c00406{bottom:99.067067pt;}
.y1f_c00406{bottom:137.307067pt;}
.y1e_c00406{bottom:175.547067pt;}
.y1d_c00406{bottom:213.867067pt;}
.y1c_c00406{bottom:252.107067pt;}
.y1b_c00406{bottom:279.787067pt;}
.y1a_c00406{bottom:307.387067pt;}
.y19_c00406{bottom:334.987067pt;}
.y18_c00406{bottom:362.587067pt;}
.y17_c00406{bottom:390.187067pt;}
.y16_c00406{bottom:417.787067pt;}
.y15_c00406{bottom:445.387067pt;}
.y14_c00406{bottom:472.987067pt;}
.y13_c00406{bottom:511.147067pt;}
.y12_c00406{bottom:538.827067pt;}
.y11_c00406{bottom:566.427067pt;}
.y10_c00406{bottom:594.027067pt;}
.yf_c00406{bottom:621.627067pt;}
.ye_c00406{bottom:649.227067pt;}
.yd_c00406{bottom:676.827067pt;}
.yc_c00406{bottom:704.427067pt;}
.yb_c00406{bottom:732.027067pt;}
.ya_c00406{bottom:759.627067pt;}
.y9_c00406{bottom:787.227067pt;}
.y8_c00406{bottom:814.827067pt;}
.y7_c00406{bottom:849.467067pt;}
.y6_c00406{bottom:991.787067pt;}
.y3_c00406{bottom:1006.347067pt;}
.y2_c00406{bottom:1035.947576pt;}
.y1_c00406{bottom:1063.147200pt;}
.h3_c00406{height:42.234375pt;}
.h1_c00406{height:47.020937pt;}
.h2_c00406{height:56.156250pt;}
.h4_c00406{height:56.312500pt;}
.h0_c00406{height:1122.666667pt;}
.w1_c00406{width:793.333333pt;}
.w0_c00406{width:793.626667pt;}
.x0_c00406{left:0.000000pt;}
.x1_c00406{left:113.440000pt;}
.x2_c00406{left:656.400000pt;}
.x3_c00406{left:670.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_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_31d0b40eeddd2920eccd4e1b.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.095703;font-style:normal;font-weight:normal;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_da1694958f91a21da8b1a257.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.093262;font-style: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;}
.lse_c00407{letter-spacing:-0.568800px;}
.lsc_c00407{letter-spacing:-0.048096px;}
.ls11_c00407{letter-spacing:-0.043200px;}
.ls13_c00407{letter-spacing:-0.036000px;}
.ls12_c00407{letter-spacing:-0.028800px;}
.ls14_c00407{letter-spacing:-0.021600px;}
.ls15_c00407{letter-spacing:-0.014400px;}
.ls10_c00407{letter-spacing:-0.007200px;}
.lsd_c00407{letter-spacing:0.000000px;}
.lsa_c00407{letter-spacing:0.005400px;}
.ls9_c00407{letter-spacing:0.007200px;}
.ls2_c00407{letter-spacing:0.014400px;}
.ls1_c00407{letter-spacing:0.021600px;}
.lsb_c00407{letter-spacing:0.027000px;}
.ls0_c00407{letter-spacing:0.028800px;}
.ls3_c00407{letter-spacing:0.043200px;}
.ls5_c00407{letter-spacing:0.050400px;}
.ls4_c00407{letter-spacing:0.064800px;}
.ls6_c00407{letter-spacing:0.079200px;}
.ls7_c00407{letter-spacing:0.093600px;}
.ls8_c00407{letter-spacing:0.108000px;}
.lsf_c00407{letter-spacing:15.120000px;}
.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:-18.021600px;}
.ws1_c00407{word-spacing:-17.956800px;}
.ws3_c00407{word-spacing:0.000000px;}
.ws2_c00407{word-spacing:0.138276px;}
.ws7_c00407{word-spacing:0.151200px;}
.ws6_c00407{word-spacing:0.172800px;}
.ws4_c00407{word-spacing:0.178200px;}
.ws5_c00407{word-spacing:15.465600px;}
._4_c00407{margin-left:-15.098400px;}
._c_c00407{margin-left:-4.219200px;}
._d_c00407{margin-left:-3.168000px;}
._b_c00407{margin-left:-2.160000px;}
._0_c00407{margin-left:-1.074600px;}
._3_c00407{width:1.526400px;}
._7_c00407{width:3.211200px;}
._a_c00407{width:8.409600px;}
._8_c00407{width:10.440000px;}
._9_c00407{width:11.692800px;}
._6_c00407{width:14.637600px;}
._5_c00407{width:15.832800px;}
._1_c00407{width:19.238400px;}
._2_c00407{width:20.347200px;}
.fc1_c00407{color:rgb(68,84,106);}
.fc0_c00407{color:rgb(0,0,0);}
.fs2_c00407{font-size:54.000000px;}
.fs0_c00407{font-size:60.120000px;}
.fs1_c00407{font-size:72.000000px;}
.y0_c00407{bottom:0.000000px;}
.y6_c00407{bottom:57.360450px;}
.y5_c00407{bottom:78.060450px;}
.y1d_c00407{bottom:162.750450px;}
.y1c_c00407{bottom:201.720450px;}
.y1b_c00407{bottom:337.440450px;}
.y1a_c00407{bottom:367.950450px;}
.y19_c00407{bottom:406.650450px;}
.y18_c00407{bottom:437.790450px;}
.y17_c00407{bottom:468.840450px;}
.y16_c00407{bottom:499.890450px;}
.y15_c00407{bottom:530.940450px;}
.y14_c00407{bottom:573.870450px;}
.y13_c00407{bottom:605.010450px;}
.y12_c00407{bottom:636.060450px;}
.y11_c00407{bottom:667.110450px;}
.y10_c00407{bottom:698.160450px;}
.yf_c00407{bottom:729.210450px;}
.ye_c00407{bottom:760.260450px;}
.yd_c00407{bottom:791.310450px;}
.yc_c00407{bottom:822.360450px;}
.yb_c00407{bottom:853.410450px;}
.ya_c00407{bottom:884.460450px;}
.y9_c00407{bottom:915.510450px;}
.y8_c00407{bottom:954.390450px;}
.y7_c00407{bottom:1128.630450px;}
.y4_c00407{bottom:1144.380657px;}
.y3_c00407{bottom:1161.660648px;}
.y2_c00407{bottom:1178.850459px;}
.y1_c00407{bottom:1196.130450px;}
.h3_c00407{height:47.513672px;}
.h1_c00407{height:52.898555px;}
.h2_c00407{height:63.175781px;}
.h4_c00407{height:63.351562px;}
.h0_c00407{height:1263.000000px;}
.w1_c00407{width:892.500000px;}
.w0_c00407{width:892.830000px;}
.x0_c00407{left:0.000000px;}
.x4_c00407{left:127.620000px;}
.x1_c00407{left:649.620000px;}
.x5_c00407{left:703.440000px;}
.x6_c00407{left:735.120000px;}
.x3_c00407{left:738.450000px;}
.x2_c00407{left:765.450198px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.lse_c00407{letter-spacing:-0.505600pt;}
.lsc_c00407{letter-spacing:-0.042752pt;}
.ls11_c00407{letter-spacing:-0.038400pt;}
.ls13_c00407{letter-spacing:-0.032000pt;}
.ls12_c00407{letter-spacing:-0.025600pt;}
.ls14_c00407{letter-spacing:-0.019200pt;}
.ls15_c00407{letter-spacing:-0.012800pt;}
.ls10_c00407{letter-spacing:-0.006400pt;}
.lsd_c00407{letter-spacing:0.000000pt;}
.lsa_c00407{letter-spacing:0.004800pt;}
.ls9_c00407{letter-spacing:0.006400pt;}
.ls2_c00407{letter-spacing:0.012800pt;}
.ls1_c00407{letter-spacing:0.019200pt;}
.lsb_c00407{letter-spacing:0.024000pt;}
.ls0_c00407{letter-spacing:0.025600pt;}
.ls3_c00407{letter-spacing:0.038400pt;}
.ls5_c00407{letter-spacing:0.044800pt;}
.ls4_c00407{letter-spacing:0.057600pt;}
.ls6_c00407{letter-spacing:0.070400pt;}
.ls7_c00407{letter-spacing:0.083200pt;}
.ls8_c00407{letter-spacing:0.096000pt;}
.lsf_c00407{letter-spacing:13.440000pt;}
.ws0_c00407{word-spacing:-16.019200pt;}
.ws1_c00407{word-spacing:-15.961600pt;}
.ws3_c00407{word-spacing:0.000000pt;}
.ws2_c00407{word-spacing:0.122912pt;}
.ws7_c00407{word-spacing:0.134400pt;}
.ws6_c00407{word-spacing:0.153600pt;}
.ws4_c00407{word-spacing:0.158400pt;}
.ws5_c00407{word-spacing:13.747200pt;}
._4_c00407{margin-left:-13.420800pt;}
._c_c00407{margin-left:-3.750400pt;}
._d_c00407{margin-left:-2.816000pt;}
._b_c00407{margin-left:-1.920000pt;}
._0_c00407{margin-left:-0.955200pt;}
._3_c00407{width:1.356800pt;}
._7_c00407{width:2.854400pt;}
._a_c00407{width:7.475200pt;}
._8_c00407{width:9.280000pt;}
._9_c00407{width:10.393600pt;}
._6_c00407{width:13.011200pt;}
._5_c00407{width:14.073600pt;}
._1_c00407{width:17.100800pt;}
._2_c00407{width:18.086400pt;}
.fs2_c00407{font-size:48.000000pt;}
.fs0_c00407{font-size:53.440000pt;}
.fs1_c00407{font-size:64.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y6_c00407{bottom:50.987067pt;}
.y5_c00407{bottom:69.387067pt;}
.y1d_c00407{bottom:144.667067pt;}
.y1c_c00407{bottom:179.307067pt;}
.y1b_c00407{bottom:299.947067pt;}
.y1a_c00407{bottom:327.067067pt;}
.y19_c00407{bottom:361.467067pt;}
.y18_c00407{bottom:389.147067pt;}
.y17_c00407{bottom:416.747067pt;}
.y16_c00407{bottom:444.347067pt;}
.y15_c00407{bottom:471.947067pt;}
.y14_c00407{bottom:510.107067pt;}
.y13_c00407{bottom:537.787067pt;}
.y12_c00407{bottom:565.387067pt;}
.y11_c00407{bottom:592.987067pt;}
.y10_c00407{bottom:620.587067pt;}
.yf_c00407{bottom:648.187067pt;}
.ye_c00407{bottom:675.787067pt;}
.yd_c00407{bottom:703.387067pt;}
.yc_c00407{bottom:730.987067pt;}
.yb_c00407{bottom:758.587067pt;}
.ya_c00407{bottom:786.187067pt;}
.y9_c00407{bottom:813.787067pt;}
.y8_c00407{bottom:848.347067pt;}
.y7_c00407{bottom:1003.227067pt;}
.y4_c00407{bottom:1017.227251pt;}
.y3_c00407{bottom:1032.587243pt;}
.y2_c00407{bottom:1047.867075pt;}
.y1_c00407{bottom:1063.227067pt;}
.h3_c00407{height:42.234375pt;}
.h1_c00407{height:47.020937pt;}
.h2_c00407{height:56.156250pt;}
.h4_c00407{height:56.312500pt;}
.h0_c00407{height:1122.666667pt;}
.w1_c00407{width:793.333333pt;}
.w0_c00407{width:793.626667pt;}
.x0_c00407{left:0.000000pt;}
.x4_c00407{left:113.440000pt;}
.x1_c00407{left:577.440000pt;}
.x5_c00407{left:625.280000pt;}
.x6_c00407{left:653.440000pt;}
.x3_c00407{left:656.400000pt;}
.x2_c00407{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8aeeab7fc372c300ca41f954.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.095703;font-style:normal;font-weight:normal;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_f9bc847f9e319124a3f4772d.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:1.093262;font-style: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;}
.lsf_c00408{letter-spacing:-0.102204px;}
.ls14_c00408{letter-spacing:-0.036000px;}
.ls11_c00408{letter-spacing:-0.028800px;}
.ls13_c00408{letter-spacing:-0.021600px;}
.ls15_c00408{letter-spacing:-0.010800px;}
.ls12_c00408{letter-spacing:-0.007200px;}
.ls10_c00408{letter-spacing:0.000000px;}
.ls0_c00408{letter-spacing:0.007200px;}
.lse_c00408{letter-spacing:0.010800px;}
.ls1_c00408{letter-spacing:0.014400px;}
.ls6_c00408{letter-spacing:0.021600px;}
.ls4_c00408{letter-spacing:0.036000px;}
.lsb_c00408{letter-spacing:0.043200px;}
.ls2_c00408{letter-spacing:0.050400px;}
.ls3_c00408{letter-spacing:0.057600px;}
.ls5_c00408{letter-spacing:0.064800px;}
.lsa_c00408{letter-spacing:0.072000px;}
.ls7_c00408{letter-spacing:0.079200px;}
.ls9_c00408{letter-spacing:0.086400px;}
.ls8_c00408{letter-spacing:0.108000px;}
.lsd_c00408{letter-spacing:0.180000px;}
.lsc_c00408{letter-spacing:0.720000px;}
.ls16_c00408{letter-spacing:1160.821800px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00408{word-spacing:-18.057600px;}
.ws1_c00408{word-spacing:-18.014400px;}
.ws3_c00408{word-spacing:0.000000px;}
.ws5_c00408{word-spacing:0.156600px;}
.ws7_c00408{word-spacing:0.167400px;}
.ws6_c00408{word-spacing:0.189000px;}
.ws2_c00408{word-spacing:0.192384px;}
.ws4_c00408{word-spacing:8.172000px;}
._9_c00408{margin-left:-4.348800px;}
._8_c00408{margin-left:-3.261600px;}
._2_c00408{margin-left:-1.130400px;}
._0_c00408{width:1.034064px;}
._3_c00408{width:2.342736px;}
._5_c00408{width:3.352464px;}
._1_c00408{width:5.032800px;}
._b_c00408{width:6.177600px;}
._a_c00408{width:7.185600px;}
._7_c00408{width:8.229600px;}
._6_c00408{width:13.003200px;}
._4_c00408{width:14.032800px;}
.fc2_c00408{color:rgb(255,0,0);}
.fc3_c00408{color:rgb(68,84,106);}
.fc1_c00408{color:rgb(0,0,0);}
.fc0_c00408{color:rgb(32,31,30);}
.fs2_c00408{font-size:54.000000px;}
.fs0_c00408{font-size:60.120000px;}
.fs1_c00408{font-size:72.000000px;}
.y0_c00408{bottom:0.000000px;}
.y5_c00408{bottom:57.360450px;}
.y4_c00408{bottom:78.060450px;}
.y1d_c00408{bottom:207.570900px;}
.y1c_c00408{bottom:372.720450px;}
.y1b_c00408{bottom:411.330450px;}
.y1a_c00408{bottom:454.350450px;}
.y19_c00408{bottom:485.490450px;}
.y18_c00408{bottom:516.540450px;}
.y17_c00408{bottom:559.560450px;}
.y16_c00408{bottom:590.700450px;}
.y15_c00408{bottom:621.660450px;}
.y14_c00408{bottom:664.680450px;}
.y13_c00408{bottom:695.820450px;}
.y12_c00408{bottom:726.870450px;}
.y11_c00408{bottom:757.920450px;}
.y10_c00408{bottom:788.970450px;}
.yf_c00408{bottom:820.020450px;}
.ye_c00408{bottom:851.070450px;}
.yd_c00408{bottom:882.120450px;}
.yc_c00408{bottom:913.170450px;}
.yb_c00408{bottom:944.220450px;}
.ya_c00408{bottom:987.150450px;}
.y9_c00408{bottom:1018.290450px;}
.y8_c00408{bottom:1049.340450px;}
.y7_c00408{bottom:1080.390450px;}
.y6_c00408{bottom:1111.440450px;}
.y3_c00408{bottom:1132.140450px;}
.y2_c00408{bottom:1165.441023px;}
.y1_c00408{bottom:1196.040600px;}
.h4_c00408{height:47.513672px;}
.h1_c00408{height:52.898555px;}
.h2_c00408{height:63.175781px;}
.h3_c00408{height:63.351562px;}
.h0_c00408{height:1263.000000px;}
.w1_c00408{width:892.500000px;}
.w0_c00408{width:892.830000px;}
.x0_c00408{left:0.000000px;}
.x1_c00408{left:127.620000px;}
.x3_c00408{left:210.870000px;}
.x4_c00408{left:459.811350px;}
.x2_c00408{left:738.450000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.lsf_c00408{letter-spacing:-0.090848pt;}
.ls14_c00408{letter-spacing:-0.032000pt;}
.ls11_c00408{letter-spacing:-0.025600pt;}
.ls13_c00408{letter-spacing:-0.019200pt;}
.ls15_c00408{letter-spacing:-0.009600pt;}
.ls12_c00408{letter-spacing:-0.006400pt;}
.ls10_c00408{letter-spacing:0.000000pt;}
.ls0_c00408{letter-spacing:0.006400pt;}
.lse_c00408{letter-spacing:0.009600pt;}
.ls1_c00408{letter-spacing:0.012800pt;}
.ls6_c00408{letter-spacing:0.019200pt;}
.ls4_c00408{letter-spacing:0.032000pt;}
.lsb_c00408{letter-spacing:0.038400pt;}
.ls2_c00408{letter-spacing:0.044800pt;}
.ls3_c00408{letter-spacing:0.051200pt;}
.ls5_c00408{letter-spacing:0.057600pt;}
.lsa_c00408{letter-spacing:0.064000pt;}
.ls7_c00408{letter-spacing:0.070400pt;}
.ls9_c00408{letter-spacing:0.076800pt;}
.ls8_c00408{letter-spacing:0.096000pt;}
.lsd_c00408{letter-spacing:0.160000pt;}
.lsc_c00408{letter-spacing:0.640000pt;}
.ls16_c00408{letter-spacing:1031.841600pt;}
.ws0_c00408{word-spacing:-16.051200pt;}
.ws1_c00408{word-spacing:-16.012800pt;}
.ws3_c00408{word-spacing:0.000000pt;}
.ws5_c00408{word-spacing:0.139200pt;}
.ws7_c00408{word-spacing:0.148800pt;}
.ws6_c00408{word-spacing:0.168000pt;}
.ws2_c00408{word-spacing:0.171008pt;}
.ws4_c00408{word-spacing:7.264000pt;}
._9_c00408{margin-left:-3.865600pt;}
._8_c00408{margin-left:-2.899200pt;}
._2_c00408{margin-left:-1.004800pt;}
._0_c00408{width:0.919168pt;}
._3_c00408{width:2.082432pt;}
._5_c00408{width:2.979968pt;}
._1_c00408{width:4.473600pt;}
._b_c00408{width:5.491200pt;}
._a_c00408{width:6.387200pt;}
._7_c00408{width:7.315200pt;}
._6_c00408{width:11.558400pt;}
._4_c00408{width:12.473600pt;}
.fs2_c00408{font-size:48.000000pt;}
.fs0_c00408{font-size:53.440000pt;}
.fs1_c00408{font-size:64.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y5_c00408{bottom:50.987067pt;}
.y4_c00408{bottom:69.387067pt;}
.y1d_c00408{bottom:184.507467pt;}
.y1c_c00408{bottom:331.307067pt;}
.y1b_c00408{bottom:365.627067pt;}
.y1a_c00408{bottom:403.867067pt;}
.y19_c00408{bottom:431.547067pt;}
.y18_c00408{bottom:459.147067pt;}
.y17_c00408{bottom:497.387067pt;}
.y16_c00408{bottom:525.067067pt;}
.y15_c00408{bottom:552.587067pt;}
.y14_c00408{bottom:590.827067pt;}
.y13_c00408{bottom:618.507067pt;}
.y12_c00408{bottom:646.107067pt;}
.y11_c00408{bottom:673.707067pt;}
.y10_c00408{bottom:701.307067pt;}
.yf_c00408{bottom:728.907067pt;}
.ye_c00408{bottom:756.507067pt;}
.yd_c00408{bottom:784.107067pt;}
.yc_c00408{bottom:811.707067pt;}
.yb_c00408{bottom:839.307067pt;}
.ya_c00408{bottom:877.467067pt;}
.y9_c00408{bottom:905.147067pt;}
.y8_c00408{bottom:932.747067pt;}
.y7_c00408{bottom:960.347067pt;}
.y6_c00408{bottom:987.947067pt;}
.y3_c00408{bottom:1006.347067pt;}
.y2_c00408{bottom:1035.947576pt;}
.y1_c00408{bottom:1063.147200pt;}
.h4_c00408{height:42.234375pt;}
.h1_c00408{height:47.020937pt;}
.h2_c00408{height:56.156250pt;}
.h3_c00408{height:56.312500pt;}
.h0_c00408{height:1122.666667pt;}
.w1_c00408{width:793.333333pt;}
.w0_c00408{width:793.626667pt;}
.x0_c00408{left:0.000000pt;}
.x1_c00408{left:113.440000pt;}
.x3_c00408{left:187.440000pt;}
.x4_c00408{left:408.721200pt;}
.x2_c00408{left:656.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_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_92a496ded9d04c26e4e46f9e.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.095703;font-style:normal;font-weight:normal;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_8c88560495b6f7d29659e4cc.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.093262;font-style:normal;font-weight:normal;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_fd47aa666ec80748097fc419.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_75059e6cd869c50d92510ba2.woff2')format("woff");}.ff4_c00409{font-family:ff4_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:ff5_c00409;src:url('chunks/assets/font_b0a19063ce331f62661527e0.woff2')format("woff");}.ff5_c00409{font-family:ff5_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;}
.ls1f_c00409{letter-spacing:-1.080000px;}
.ls19_c00409{letter-spacing:-0.151200px;}
.ls18_c00409{letter-spacing:-0.097200px;}
.ls14_c00409{letter-spacing:-0.091800px;}
.ls16_c00409{letter-spacing:-0.086400px;}
.ls1a_c00409{letter-spacing:-0.075600px;}
.ls17_c00409{letter-spacing:-0.070200px;}
.ls1b_c00409{letter-spacing:-0.057600px;}
.ls12_c00409{letter-spacing:-0.048096px;}
.ls1e_c00409{letter-spacing:-0.028800px;}
.ls1c_c00409{letter-spacing:-0.014400px;}
.ls15_c00409{letter-spacing:-0.010800px;}
.ls1d_c00409{letter-spacing:-0.007200px;}
.ls13_c00409{letter-spacing:0.000000px;}
.ls10_c00409{letter-spacing:0.007200px;}
.ls1_c00409{letter-spacing:0.010800px;}
.lse_c00409{letter-spacing:0.014400px;}
.lsc_c00409{letter-spacing:0.021600px;}
.ls2_c00409{letter-spacing:0.027000px;}
.ls8_c00409{letter-spacing:0.028800px;}
.lsd_c00409{letter-spacing:0.036000px;}
.ls0_c00409{letter-spacing:0.041940px;}
.ls11_c00409{letter-spacing:0.043200px;}
.ls9_c00409{letter-spacing:0.050400px;}
.lsa_c00409{letter-spacing:0.057600px;}
.ls4_c00409{letter-spacing:0.064800px;}
.ls3_c00409{letter-spacing:0.070200px;}
.lsb_c00409{letter-spacing:0.072000px;}
.lsf_c00409{letter-spacing:0.079200px;}
.ls7_c00409{letter-spacing:0.091800px;}
.ls5_c00409{letter-spacing:0.097200px;}
.ls6_c00409{letter-spacing:0.113400px;}
.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:-18.000000px;}
.ws2_c00409{word-spacing:0.000000px;}
.ws1_c00409{word-spacing:0.138276px;}
.ws3_c00409{word-spacing:0.167400px;}
.ws4_c00409{word-spacing:4.996800px;}
.ws5_c00409{word-spacing:5.004000px;}
._16_c00409{margin-left:-2.404800px;}
._0_c00409{margin-left:-1.112400px;}
._15_c00409{width:1.108800px;}
._14_c00409{width:2.131200px;}
._17_c00409{width:3.924000px;}
._1a_c00409{width:5.392800px;}
._13_c00409{width:7.300800px;}
._12_c00409{width:8.589600px;}
._11_c00409{width:9.691200px;}
._1b_c00409{width:12.636000px;}
._1c_c00409{width:13.680000px;}
._19_c00409{width:15.595200px;}
._18_c00409{width:16.927200px;}
._b_c00409{width:128.028600px;}
._4_c00409{width:142.808400px;}
._6_c00409{width:172.654200px;}
._2_c00409{width:184.658400px;}
._8_c00409{width:202.683600px;}
._a_c00409{width:223.927200px;}
._7_c00409{width:253.659600px;}
._10_c00409{width:343.353600px;}
._e_c00409{width:363.884400px;}
._c_c00409{width:373.172400px;}
._9_c00409{width:424.980000px;}
._d_c00409{width:438.015600px;}
._5_c00409{width:455.220000px;}
._1_c00409{width:527.688000px;}
._3_c00409{width:552.009600px;}
._f_c00409{width:584.398800px;}
.fc2_c00409{color:rgb(38,74,96);}
.fc1_c00409{color:rgb(68,84,106);}
.fc0_c00409{color:rgb(0,0,0);}
.fs3_c00409{font-size:54.000000px;}
.fs0_c00409{font-size:60.120000px;}
.fs1_c00409{font-size:72.000000px;}
.fs2_c00409{font-size:83.880000px;}
.y0_c00409{bottom:0.000000px;}
.y6_c00409{bottom:57.360450px;}
.y5_c00409{bottom:78.060450px;}
.y28_c00409{bottom:118.380450px;}
.y27_c00409{bottom:149.520450px;}
.y26_c00409{bottom:180.570450px;}
.y25_c00409{bottom:211.620450px;}
.y24_c00409{bottom:242.670450px;}
.y23_c00409{bottom:273.720450px;}
.y22_c00409{bottom:304.770450px;}
.y21_c00409{bottom:335.730450px;}
.y20_c00409{bottom:366.780450px;}
.y1f_c00409{bottom:397.830450px;}
.y1e_c00409{bottom:428.880450px;}
.y1d_c00409{bottom:471.900450px;}
.y1c_c00409{bottom:503.040450px;}
.y1b_c00409{bottom:534.090450px;}
.y1a_c00409{bottom:565.140450px;}
.y19_c00409{bottom:596.190450px;}
.y18_c00409{bottom:627.240450px;}
.y17_c00409{bottom:670.170450px;}
.y16_c00409{bottom:701.490450px;}
.y15_c00409{bottom:728.580450px;}
.y14_c00409{bottom:756.750450px;}
.y13_c00409{bottom:783.840450px;}
.y12_c00409{bottom:810.930600px;}
.y11_c00409{bottom:839.100450px;}
.y10_c00409{bottom:866.190450px;}
.yf_c00409{bottom:893.280450px;}
.ye_c00409{bottom:921.450450px;}
.yd_c00409{bottom:950.340450px;}
.yc_c00409{bottom:981.120450px;}
.yb_c00409{bottom:1011.000450px;}
.ya_c00409{bottom:1034.128488px;}
.y9_c00409{bottom:1063.199199px;}
.y8_c00409{bottom:1092.269910px;}
.y7_c00409{bottom:1121.250450px;}
.y4_c00409{bottom:1144.380657px;}
.y3_c00409{bottom:1161.660648px;}
.y2_c00409{bottom:1178.850459px;}
.y1_c00409{bottom:1196.130450px;}
.h4_c00409{height:47.513672px;}
.h5_c00409{height:48.410156px;}
.h6_c00409{height:48.752930px;}
.h1_c00409{height:52.898555px;}
.h2_c00409{height:63.175781px;}
.h7_c00409{height:63.351562px;}
.h3_c00409{height:74.500840px;}
.h0_c00409{height:1263.000000px;}
.w1_c00409{width:892.500000px;}
.w0_c00409{width:892.830000px;}
.x0_c00409{left:0.000000px;}
.x4_c00409{left:127.620000px;}
.x5_c00409{left:262.530000px;}
.x1_c00409{left:649.620000px;}
.x3_c00409{left:738.450000px;}
.x2_c00409{left:765.450198px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls1f_c00409{letter-spacing:-0.960000pt;}
.ls19_c00409{letter-spacing:-0.134400pt;}
.ls18_c00409{letter-spacing:-0.086400pt;}
.ls14_c00409{letter-spacing:-0.081600pt;}
.ls16_c00409{letter-spacing:-0.076800pt;}
.ls1a_c00409{letter-spacing:-0.067200pt;}
.ls17_c00409{letter-spacing:-0.062400pt;}
.ls1b_c00409{letter-spacing:-0.051200pt;}
.ls12_c00409{letter-spacing:-0.042752pt;}
.ls1e_c00409{letter-spacing:-0.025600pt;}
.ls1c_c00409{letter-spacing:-0.012800pt;}
.ls15_c00409{letter-spacing:-0.009600pt;}
.ls1d_c00409{letter-spacing:-0.006400pt;}
.ls13_c00409{letter-spacing:0.000000pt;}
.ls10_c00409{letter-spacing:0.006400pt;}
.ls1_c00409{letter-spacing:0.009600pt;}
.lse_c00409{letter-spacing:0.012800pt;}
.lsc_c00409{letter-spacing:0.019200pt;}
.ls2_c00409{letter-spacing:0.024000pt;}
.ls8_c00409{letter-spacing:0.025600pt;}
.lsd_c00409{letter-spacing:0.032000pt;}
.ls0_c00409{letter-spacing:0.037280pt;}
.ls11_c00409{letter-spacing:0.038400pt;}
.ls9_c00409{letter-spacing:0.044800pt;}
.lsa_c00409{letter-spacing:0.051200pt;}
.ls4_c00409{letter-spacing:0.057600pt;}
.ls3_c00409{letter-spacing:0.062400pt;}
.lsb_c00409{letter-spacing:0.064000pt;}
.lsf_c00409{letter-spacing:0.070400pt;}
.ls7_c00409{letter-spacing:0.081600pt;}
.ls5_c00409{letter-spacing:0.086400pt;}
.ls6_c00409{letter-spacing:0.100800pt;}
.ws0_c00409{word-spacing:-16.000000pt;}
.ws2_c00409{word-spacing:0.000000pt;}
.ws1_c00409{word-spacing:0.122912pt;}
.ws3_c00409{word-spacing:0.148800pt;}
.ws4_c00409{word-spacing:4.441600pt;}
.ws5_c00409{word-spacing:4.448000pt;}
._16_c00409{margin-left:-2.137600pt;}
._0_c00409{margin-left:-0.988800pt;}
._15_c00409{width:0.985600pt;}
._14_c00409{width:1.894400pt;}
._17_c00409{width:3.488000pt;}
._1a_c00409{width:4.793600pt;}
._13_c00409{width:6.489600pt;}
._12_c00409{width:7.635200pt;}
._11_c00409{width:8.614400pt;}
._1b_c00409{width:11.232000pt;}
._1c_c00409{width:12.160000pt;}
._19_c00409{width:13.862400pt;}
._18_c00409{width:15.046400pt;}
._b_c00409{width:113.803200pt;}
._4_c00409{width:126.940800pt;}
._6_c00409{width:153.470400pt;}
._2_c00409{width:164.140800pt;}
._8_c00409{width:180.163200pt;}
._a_c00409{width:199.046400pt;}
._7_c00409{width:225.475200pt;}
._10_c00409{width:305.203200pt;}
._e_c00409{width:323.452800pt;}
._c_c00409{width:331.708800pt;}
._9_c00409{width:377.760000pt;}
._d_c00409{width:389.347200pt;}
._5_c00409{width:404.640000pt;}
._1_c00409{width:469.056000pt;}
._3_c00409{width:490.675200pt;}
._f_c00409{width:519.465600pt;}
.fs3_c00409{font-size:48.000000pt;}
.fs0_c00409{font-size:53.440000pt;}
.fs1_c00409{font-size:64.000000pt;}
.fs2_c00409{font-size:74.560000pt;}
.y0_c00409{bottom:0.000000pt;}
.y6_c00409{bottom:50.987067pt;}
.y5_c00409{bottom:69.387067pt;}
.y28_c00409{bottom:105.227067pt;}
.y27_c00409{bottom:132.907067pt;}
.y26_c00409{bottom:160.507067pt;}
.y25_c00409{bottom:188.107067pt;}
.y24_c00409{bottom:215.707067pt;}
.y23_c00409{bottom:243.307067pt;}
.y22_c00409{bottom:270.907067pt;}
.y21_c00409{bottom:298.427067pt;}
.y20_c00409{bottom:326.027067pt;}
.y1f_c00409{bottom:353.627067pt;}
.y1e_c00409{bottom:381.227067pt;}
.y1d_c00409{bottom:419.467067pt;}
.y1c_c00409{bottom:447.147067pt;}
.y1b_c00409{bottom:474.747067pt;}
.y1a_c00409{bottom:502.347067pt;}
.y19_c00409{bottom:529.947067pt;}
.y18_c00409{bottom:557.547067pt;}
.y17_c00409{bottom:595.707067pt;}
.y16_c00409{bottom:623.547067pt;}
.y15_c00409{bottom:647.627067pt;}
.y14_c00409{bottom:672.667067pt;}
.y13_c00409{bottom:696.747067pt;}
.y12_c00409{bottom:720.827200pt;}
.y11_c00409{bottom:745.867067pt;}
.y10_c00409{bottom:769.947067pt;}
.yf_c00409{bottom:794.027067pt;}
.ye_c00409{bottom:819.067067pt;}
.yd_c00409{bottom:844.747067pt;}
.yc_c00409{bottom:872.107067pt;}
.yb_c00409{bottom:898.667067pt;}
.ya_c00409{bottom:919.225323pt;}
.y9_c00409{bottom:945.065955pt;}
.y8_c00409{bottom:970.906587pt;}
.y7_c00409{bottom:996.667067pt;}
.y4_c00409{bottom:1017.227251pt;}
.y3_c00409{bottom:1032.587243pt;}
.y2_c00409{bottom:1047.867075pt;}
.y1_c00409{bottom:1063.227067pt;}
.h4_c00409{height:42.234375pt;}
.h5_c00409{height:43.031250pt;}
.h6_c00409{height:43.335938pt;}
.h1_c00409{height:47.020937pt;}
.h2_c00409{height:56.156250pt;}
.h7_c00409{height:56.312500pt;}
.h3_c00409{height:66.222969pt;}
.h0_c00409{height:1122.666667pt;}
.w1_c00409{width:793.333333pt;}
.w0_c00409{width:793.626667pt;}
.x0_c00409{left:0.000000pt;}
.x4_c00409{left:113.440000pt;}
.x5_c00409{left:233.360000pt;}
.x1_c00409{left:577.440000pt;}
.x3_c00409{left:656.400000pt;}
.x2_c00409{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d2c5b83034e65c09f7454b9.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.095703;font-style:normal;font-weight:normal;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_7fca8728c0194347f75a87e7.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:1.093262;font-style: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;}
.ls17_c00410{letter-spacing:-0.122400px;}
.lse_c00410{letter-spacing:-0.102204px;}
.ls16_c00410{letter-spacing:-0.079200px;}
.ls15_c00410{letter-spacing:-0.057600px;}
.ls11_c00410{letter-spacing:-0.036000px;}
.ls13_c00410{letter-spacing:-0.028800px;}
.ls10_c00410{letter-spacing:-0.021600px;}
.ls18_c00410{letter-spacing:-0.014400px;}
.ls14_c00410{letter-spacing:-0.007200px;}
.lsf_c00410{letter-spacing:0.000000px;}
.ls3_c00410{letter-spacing:0.007200px;}
.lsd_c00410{letter-spacing:0.010800px;}
.ls7_c00410{letter-spacing:0.014400px;}
.lsc_c00410{letter-spacing:0.021600px;}
.ls0_c00410{letter-spacing:0.027000px;}
.ls8_c00410{letter-spacing:0.028800px;}
.ls1_c00410{letter-spacing:0.036000px;}
.ls2_c00410{letter-spacing:0.043200px;}
.ls5_c00410{letter-spacing:0.050400px;}
.lsa_c00410{letter-spacing:0.057600px;}
.ls4_c00410{letter-spacing:0.064800px;}
.lsb_c00410{letter-spacing:0.072000px;}
.ls6_c00410{letter-spacing:0.079200px;}
.ls9_c00410{letter-spacing:0.093600px;}
.ls12_c00410{letter-spacing:2.160000px;}
.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:-18.000000px;}
.ws2_c00410{word-spacing:0.000000px;}
.ws3_c00410{word-spacing:0.151200px;}
.ws5_c00410{word-spacing:0.167400px;}
.ws1_c00410{word-spacing:0.192384px;}
.ws4_c00410{word-spacing:2.188800px;}
._7_c00410{margin-left:-2.275200px;}
._1_c00410{margin-left:-1.101600px;}
._0_c00410{width:1.034064px;}
._6_c00410{width:2.102400px;}
._5_c00410{width:3.189600px;}
._a_c00410{width:7.286400px;}
._b_c00410{width:8.496000px;}
._3_c00410{width:10.216800px;}
._2_c00410{width:11.484000px;}
._4_c00410{width:12.501936px;}
._9_c00410{width:13.703328px;}
._8_c00410{width:19.080000px;}
.fc2_c00410{color:rgb(68,84,106);}
.fc1_c00410{color:rgb(0,0,0);}
.fc0_c00410{color:rgb(32,31,30);}
.fs2_c00410{font-size:54.000000px;}
.fs0_c00410{font-size:60.120000px;}
.fs1_c00410{font-size:72.000000px;}
.y0_c00410{bottom:0.000000px;}
.y21_c00410{bottom:3.240450px;}
.y5_c00410{bottom:57.360450px;}
.y4_c00410{bottom:78.060450px;}
.y1f_c00410{bottom:141.150450px;}
.y1e_c00410{bottom:172.290450px;}
.y1d_c00410{bottom:203.340450px;}
.y1c_c00410{bottom:234.300450px;}
.y1b_c00410{bottom:265.350450px;}
.y1a_c00410{bottom:308.370450px;}
.y19_c00410{bottom:339.510450px;}
.y18_c00410{bottom:370.560450px;}
.y17_c00410{bottom:401.610450px;}
.y16_c00410{bottom:432.660450px;}
.y15_c00410{bottom:463.710450px;}
.y14_c00410{bottom:494.760450px;}
.y13_c00410{bottom:525.810450px;}
.y20_c00410{bottom:544.890000px;}
.y22_c00410{bottom:548.130450px;}
.y12_c00410{bottom:568.740450px;}
.y11_c00410{bottom:611.760450px;}
.y10_c00410{bottom:642.900450px;}
.yf_c00410{bottom:673.950450px;}
.ye_c00410{bottom:705.000450px;}
.yd_c00410{bottom:747.930450px;}
.yc_c00410{bottom:779.070450px;}
.yb_c00410{bottom:810.120450px;}
.ya_c00410{bottom:841.170450px;}
.y9_c00410{bottom:872.220450px;}
.y8_c00410{bottom:903.270450px;}
.y7_c00410{bottom:942.240450px;}
.y6_c00410{bottom:1115.760450px;}
.y3_c00410{bottom:1132.140450px;}
.y2_c00410{bottom:1165.441023px;}
.y1_c00410{bottom:1196.040600px;}
.h5_c00410{height:15.300000px;}
.h3_c00410{height:47.513672px;}
.h1_c00410{height:52.898555px;}
.h2_c00410{height:63.175781px;}
.h4_c00410{height:63.351562px;}
.h0_c00410{height:1263.000000px;}
.w2_c00410{width:195.750000px;}
.w1_c00410{width:892.500000px;}
.w0_c00410{width:892.830000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:127.620000px;}
.x5_c00410{left:132.120000px;}
.x6_c00410{left:190.530000px;}
.x7_c00410{left:323.370000px;}
.x4_c00410{left:430.830000px;}
.x2_c00410{left:738.450000px;}
.x3_c00410{left:762.030000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls17_c00410{letter-spacing:-0.108800pt;}
.lse_c00410{letter-spacing:-0.090848pt;}
.ls16_c00410{letter-spacing:-0.070400pt;}
.ls15_c00410{letter-spacing:-0.051200pt;}
.ls11_c00410{letter-spacing:-0.032000pt;}
.ls13_c00410{letter-spacing:-0.025600pt;}
.ls10_c00410{letter-spacing:-0.019200pt;}
.ls18_c00410{letter-spacing:-0.012800pt;}
.ls14_c00410{letter-spacing:-0.006400pt;}
.lsf_c00410{letter-spacing:0.000000pt;}
.ls3_c00410{letter-spacing:0.006400pt;}
.lsd_c00410{letter-spacing:0.009600pt;}
.ls7_c00410{letter-spacing:0.012800pt;}
.lsc_c00410{letter-spacing:0.019200pt;}
.ls0_c00410{letter-spacing:0.024000pt;}
.ls8_c00410{letter-spacing:0.025600pt;}
.ls1_c00410{letter-spacing:0.032000pt;}
.ls2_c00410{letter-spacing:0.038400pt;}
.ls5_c00410{letter-spacing:0.044800pt;}
.lsa_c00410{letter-spacing:0.051200pt;}
.ls4_c00410{letter-spacing:0.057600pt;}
.lsb_c00410{letter-spacing:0.064000pt;}
.ls6_c00410{letter-spacing:0.070400pt;}
.ls9_c00410{letter-spacing:0.083200pt;}
.ls12_c00410{letter-spacing:1.920000pt;}
.ws0_c00410{word-spacing:-16.000000pt;}
.ws2_c00410{word-spacing:0.000000pt;}
.ws3_c00410{word-spacing:0.134400pt;}
.ws5_c00410{word-spacing:0.148800pt;}
.ws1_c00410{word-spacing:0.171008pt;}
.ws4_c00410{word-spacing:1.945600pt;}
._7_c00410{margin-left:-2.022400pt;}
._1_c00410{margin-left:-0.979200pt;}
._0_c00410{width:0.919168pt;}
._6_c00410{width:1.868800pt;}
._5_c00410{width:2.835200pt;}
._a_c00410{width:6.476800pt;}
._b_c00410{width:7.552000pt;}
._3_c00410{width:9.081600pt;}
._2_c00410{width:10.208000pt;}
._4_c00410{width:11.112832pt;}
._9_c00410{width:12.180736pt;}
._8_c00410{width:16.960000pt;}
.fs2_c00410{font-size:48.000000pt;}
.fs0_c00410{font-size:53.440000pt;}
.fs1_c00410{font-size:64.000000pt;}
.y0_c00410{bottom:0.000000pt;}
.y21_c00410{bottom:2.880400pt;}
.y5_c00410{bottom:50.987067pt;}
.y4_c00410{bottom:69.387067pt;}
.y1f_c00410{bottom:125.467067pt;}
.y1e_c00410{bottom:153.147067pt;}
.y1d_c00410{bottom:180.747067pt;}
.y1c_c00410{bottom:208.267067pt;}
.y1b_c00410{bottom:235.867067pt;}
.y1a_c00410{bottom:274.107067pt;}
.y19_c00410{bottom:301.787067pt;}
.y18_c00410{bottom:329.387067pt;}
.y17_c00410{bottom:356.987067pt;}
.y16_c00410{bottom:384.587067pt;}
.y15_c00410{bottom:412.187067pt;}
.y14_c00410{bottom:439.787067pt;}
.y13_c00410{bottom:467.387067pt;}
.y20_c00410{bottom:484.346667pt;}
.y22_c00410{bottom:487.227067pt;}
.y12_c00410{bottom:505.547067pt;}
.y11_c00410{bottom:543.787067pt;}
.y10_c00410{bottom:571.467067pt;}
.yf_c00410{bottom:599.067067pt;}
.ye_c00410{bottom:626.667067pt;}
.yd_c00410{bottom:664.827067pt;}
.yc_c00410{bottom:692.507067pt;}
.yb_c00410{bottom:720.107067pt;}
.ya_c00410{bottom:747.707067pt;}
.y9_c00410{bottom:775.307067pt;}
.y8_c00410{bottom:802.907067pt;}
.y7_c00410{bottom:837.547067pt;}
.y6_c00410{bottom:991.787067pt;}
.y3_c00410{bottom:1006.347067pt;}
.y2_c00410{bottom:1035.947576pt;}
.y1_c00410{bottom:1063.147200pt;}
.h5_c00410{height:13.600000pt;}
.h3_c00410{height:42.234375pt;}
.h1_c00410{height:47.020937pt;}
.h2_c00410{height:56.156250pt;}
.h4_c00410{height:56.312500pt;}
.h0_c00410{height:1122.666667pt;}
.w2_c00410{width:174.000000pt;}
.w1_c00410{width:793.333333pt;}
.w0_c00410{width:793.626667pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:113.440000pt;}
.x5_c00410{left:117.440000pt;}
.x6_c00410{left:169.360000pt;}
.x7_c00410{left:287.440000pt;}
.x4_c00410{left:382.960000pt;}
.x2_c00410{left:656.400000pt;}
.x3_c00410{left:677.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_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_be1bc8f79b6bef3afa25ebab.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.095703;font-style:normal;font-weight:normal;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_eeb829d3014bdcac49260573.woff2')format("woff");}.ff2_c00411{font-family:ff2_c00411;line-height:1.093262;font-style: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;}
.ls11_c00411{letter-spacing:-0.057600px;}
.lsc_c00411{letter-spacing:-0.048096px;}
.ls10_c00411{letter-spacing:-0.036000px;}
.ls12_c00411{letter-spacing:-0.028800px;}
.ls13_c00411{letter-spacing:-0.021600px;}
.lse_c00411{letter-spacing:-0.014400px;}
.ls14_c00411{letter-spacing:-0.010800px;}
.lsf_c00411{letter-spacing:-0.007200px;}
.lsd_c00411{letter-spacing:0.000000px;}
.ls3_c00411{letter-spacing:0.007200px;}
.ls8_c00411{letter-spacing:0.014400px;}
.ls0_c00411{letter-spacing:0.021600px;}
.lsb_c00411{letter-spacing:0.027000px;}
.ls1_c00411{letter-spacing:0.028800px;}
.ls4_c00411{letter-spacing:0.036000px;}
.ls5_c00411{letter-spacing:0.043200px;}
.ls9_c00411{letter-spacing:0.050400px;}
.ls2_c00411{letter-spacing:0.064800px;}
.lsa_c00411{letter-spacing:0.072000px;}
.ls7_c00411{letter-spacing:0.079200px;}
.ls6_c00411{letter-spacing:0.115200px;}
.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:-17.985600px;}
.ws2_c00411{word-spacing:0.000000px;}
.ws1_c00411{word-spacing:0.138276px;}
.ws5_c00411{word-spacing:0.151200px;}
.ws4_c00411{word-spacing:0.189000px;}
.ws3_c00411{word-spacing:4.291200px;}
._c_c00411{margin-left:-4.240800px;}
._b_c00411{margin-left:-3.038400px;}
._1_c00411{margin-left:-1.368000px;}
._9_c00411{width:1.051200px;}
._0_c00411{width:2.138400px;}
._4_c00411{width:3.852000px;}
._2_c00411{width:5.011200px;}
._a_c00411{width:6.415200px;}
._6_c00411{width:9.338400px;}
._5_c00411{width:10.396800px;}
._8_c00411{width:12.585600px;}
._7_c00411{width:13.658400px;}
._3_c00411{width:15.818400px;}
._e_c00411{width:16.941600px;}
._d_c00411{width:20.829600px;}
.fc1_c00411{color:rgb(68,84,106);}
.fc0_c00411{color:rgb(0,0,0);}
.fs2_c00411{font-size:54.000000px;}
.fs0_c00411{font-size:60.120000px;}
.fs1_c00411{font-size:72.000000px;}
.y0_c00411{bottom:0.000000px;}
.y22_c00411{bottom:3.240450px;}
.y6_c00411{bottom:57.360450px;}
.y5_c00411{bottom:78.060450px;}
.y20_c00411{bottom:120.540600px;}
.y1f_c00411{bottom:163.200600px;}
.y1e_c00411{bottom:201.810450px;}
.y1d_c00411{bottom:232.950450px;}
.y1c_c00411{bottom:264.000450px;}
.y1b_c00411{bottom:295.050450px;}
.y1a_c00411{bottom:326.100450px;}
.y19_c00411{bottom:357.150450px;}
.y18_c00411{bottom:388.200450px;}
.y17_c00411{bottom:419.250450px;}
.y16_c00411{bottom:462.270450px;}
.y15_c00411{bottom:501.240450px;}
.y21_c00411{bottom:669.990000px;}
.y23_c00411{bottom:673.230450px;}
.y14_c00411{bottom:720.660450px;}
.y13_c00411{bottom:751.800450px;}
.y12_c00411{bottom:782.850450px;}
.y11_c00411{bottom:813.900450px;}
.y10_c00411{bottom:844.950450px;}
.yf_c00411{bottom:876.000450px;}
.ye_c00411{bottom:907.050450px;}
.yd_c00411{bottom:938.100450px;}
.yc_c00411{bottom:969.150450px;}
.yb_c00411{bottom:1000.200450px;}
.ya_c00411{bottom:1031.160450px;}
.y9_c00411{bottom:1062.210450px;}
.y8_c00411{bottom:1093.260450px;}
.y7_c00411{bottom:1124.310450px;}
.y4_c00411{bottom:1144.380657px;}
.y3_c00411{bottom:1161.660648px;}
.y2_c00411{bottom:1178.850459px;}
.y1_c00411{bottom:1196.130450px;}
.h5_c00411{height:15.300000px;}
.h4_c00411{height:47.513672px;}
.h1_c00411{height:52.898555px;}
.h2_c00411{height:63.175781px;}
.h3_c00411{height:63.351562px;}
.h0_c00411{height:1263.000000px;}
.w2_c00411{width:284.310000px;}
.w1_c00411{width:892.500000px;}
.w0_c00411{width:892.830000px;}
.x0_c00411{left:0.000000px;}
.x4_c00411{left:127.620000px;}
.x6_c00411{left:132.120000px;}
.x1_c00411{left:649.620000px;}
.x3_c00411{left:738.450000px;}
.x5_c00411{left:762.660000px;}
.x2_c00411{left:765.450198px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls11_c00411{letter-spacing:-0.051200pt;}
.lsc_c00411{letter-spacing:-0.042752pt;}
.ls10_c00411{letter-spacing:-0.032000pt;}
.ls12_c00411{letter-spacing:-0.025600pt;}
.ls13_c00411{letter-spacing:-0.019200pt;}
.lse_c00411{letter-spacing:-0.012800pt;}
.ls14_c00411{letter-spacing:-0.009600pt;}
.lsf_c00411{letter-spacing:-0.006400pt;}
.lsd_c00411{letter-spacing:0.000000pt;}
.ls3_c00411{letter-spacing:0.006400pt;}
.ls8_c00411{letter-spacing:0.012800pt;}
.ls0_c00411{letter-spacing:0.019200pt;}
.lsb_c00411{letter-spacing:0.024000pt;}
.ls1_c00411{letter-spacing:0.025600pt;}
.ls4_c00411{letter-spacing:0.032000pt;}
.ls5_c00411{letter-spacing:0.038400pt;}
.ls9_c00411{letter-spacing:0.044800pt;}
.ls2_c00411{letter-spacing:0.057600pt;}
.lsa_c00411{letter-spacing:0.064000pt;}
.ls7_c00411{letter-spacing:0.070400pt;}
.ls6_c00411{letter-spacing:0.102400pt;}
.ws0_c00411{word-spacing:-15.987200pt;}
.ws2_c00411{word-spacing:0.000000pt;}
.ws1_c00411{word-spacing:0.122912pt;}
.ws5_c00411{word-spacing:0.134400pt;}
.ws4_c00411{word-spacing:0.168000pt;}
.ws3_c00411{word-spacing:3.814400pt;}
._c_c00411{margin-left:-3.769600pt;}
._b_c00411{margin-left:-2.700800pt;}
._1_c00411{margin-left:-1.216000pt;}
._9_c00411{width:0.934400pt;}
._0_c00411{width:1.900800pt;}
._4_c00411{width:3.424000pt;}
._2_c00411{width:4.454400pt;}
._a_c00411{width:5.702400pt;}
._6_c00411{width:8.300800pt;}
._5_c00411{width:9.241600pt;}
._8_c00411{width:11.187200pt;}
._7_c00411{width:12.140800pt;}
._3_c00411{width:14.060800pt;}
._e_c00411{width:15.059200pt;}
._d_c00411{width:18.515200pt;}
.fs2_c00411{font-size:48.000000pt;}
.fs0_c00411{font-size:53.440000pt;}
.fs1_c00411{font-size:64.000000pt;}
.y0_c00411{bottom:0.000000pt;}
.y22_c00411{bottom:2.880400pt;}
.y6_c00411{bottom:50.987067pt;}
.y5_c00411{bottom:69.387067pt;}
.y20_c00411{bottom:107.147200pt;}
.y1f_c00411{bottom:145.067200pt;}
.y1e_c00411{bottom:179.387067pt;}
.y1d_c00411{bottom:207.067067pt;}
.y1c_c00411{bottom:234.667067pt;}
.y1b_c00411{bottom:262.267067pt;}
.y1a_c00411{bottom:289.867067pt;}
.y19_c00411{bottom:317.467067pt;}
.y18_c00411{bottom:345.067067pt;}
.y17_c00411{bottom:372.667067pt;}
.y16_c00411{bottom:410.907067pt;}
.y15_c00411{bottom:445.547067pt;}
.y21_c00411{bottom:595.546667pt;}
.y23_c00411{bottom:598.427067pt;}
.y14_c00411{bottom:640.587067pt;}
.y13_c00411{bottom:668.267067pt;}
.y12_c00411{bottom:695.867067pt;}
.y11_c00411{bottom:723.467067pt;}
.y10_c00411{bottom:751.067067pt;}
.yf_c00411{bottom:778.667067pt;}
.ye_c00411{bottom:806.267067pt;}
.yd_c00411{bottom:833.867067pt;}
.yc_c00411{bottom:861.467067pt;}
.yb_c00411{bottom:889.067067pt;}
.ya_c00411{bottom:916.587067pt;}
.y9_c00411{bottom:944.187067pt;}
.y8_c00411{bottom:971.787067pt;}
.y7_c00411{bottom:999.387067pt;}
.y4_c00411{bottom:1017.227251pt;}
.y3_c00411{bottom:1032.587243pt;}
.y2_c00411{bottom:1047.867075pt;}
.y1_c00411{bottom:1063.227067pt;}
.h5_c00411{height:13.600000pt;}
.h4_c00411{height:42.234375pt;}
.h1_c00411{height:47.020937pt;}
.h2_c00411{height:56.156250pt;}
.h3_c00411{height:56.312500pt;}
.h0_c00411{height:1122.666667pt;}
.w2_c00411{width:252.720000pt;}
.w1_c00411{width:793.333333pt;}
.w0_c00411{width:793.626667pt;}
.x0_c00411{left:0.000000pt;}
.x4_c00411{left:113.440000pt;}
.x6_c00411{left:117.440000pt;}
.x1_c00411{left:577.440000pt;}
.x3_c00411{left:656.400000pt;}
.x5_c00411{left:677.920000pt;}
.x2_c00411{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d627a9d330fdec4e58479ca.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.095703;font-style:normal;font-weight:normal;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_97937e6f6399f08f51955bb9.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:1.093262;font-style: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;}
.ls9_c00412{letter-spacing:-0.102204px;}
.lsc_c00412{letter-spacing:-0.086400px;}
.lsb_c00412{letter-spacing:-0.014400px;}
.lsa_c00412{letter-spacing:0.000000px;}
.ls0_c00412{letter-spacing:0.005400px;}
.ls8_c00412{letter-spacing:0.007200px;}
.ls7_c00412{letter-spacing:0.014400px;}
.ls1_c00412{letter-spacing:0.027000px;}
.ls4_c00412{letter-spacing:0.036000px;}
.ls3_c00412{letter-spacing:0.043200px;}
.ls6_c00412{letter-spacing:0.057600px;}
.ls2_c00412{letter-spacing:0.064800px;}
.ls5_c00412{letter-spacing:0.086400px;}
.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;}
}
.ws1_c00412{word-spacing:0.000000px;}
.ws3_c00412{word-spacing:0.151200px;}
.ws2_c00412{word-spacing:0.172800px;}
.ws0_c00412{word-spacing:0.192384px;}
._9_c00412{margin-left:-3.927600px;}
._7_c00412{margin-left:-2.916000px;}
._1_c00412{margin-left:-1.285200px;}
._0_c00412{width:1.034064px;}
._4_c00412{width:2.124000px;}
._3_c00412{width:3.249936px;}
._6_c00412{width:14.011200px;}
._5_c00412{width:15.076800px;}
._8_c00412{width:20.462400px;}
._2_c00412{width:1120.320000px;}
.fc2_c00412{color:rgb(68,84,106);}
.fc1_c00412{color:rgb(0,0,0);}
.fc0_c00412{color:rgb(32,31,30);}
.fs2_c00412{font-size:54.000000px;}
.fs0_c00412{font-size:60.120000px;}
.fs1_c00412{font-size:72.000000px;}
.y0_c00412{bottom:0.000000px;}
.y5_c00412{bottom:57.360450px;}
.y4_c00412{bottom:78.060450px;}
.y1b_c00412{bottom:144.300450px;}
.y1a_c00412{bottom:187.320450px;}
.y19_c00412{bottom:230.340450px;}
.y18_c00412{bottom:273.450450px;}
.y17_c00412{bottom:316.470450px;}
.y16_c00412{bottom:359.490450px;}
.y15_c00412{bottom:402.600450px;}
.y14_c00412{bottom:445.620450px;}
.y13_c00412{bottom:488.640450px;}
.y12_c00412{bottom:531.750450px;}
.y11_c00412{bottom:574.770450px;}
.y10_c00412{bottom:617.790450px;}
.yf_c00412{bottom:660.900450px;}
.ye_c00412{bottom:703.920450px;}
.yd_c00412{bottom:746.940450px;}
.yc_c00412{bottom:778.080450px;}
.yb_c00412{bottom:809.130450px;}
.ya_c00412{bottom:840.180450px;}
.y9_c00412{bottom:871.230450px;}
.y8_c00412{bottom:902.280450px;}
.y7_c00412{bottom:941.160450px;}
.y6_c00412{bottom:1115.760450px;}
.y3_c00412{bottom:1132.140450px;}
.y2_c00412{bottom:1165.441023px;}
.y1_c00412{bottom:1196.040600px;}
.h3_c00412{height:47.513672px;}
.h1_c00412{height:52.898555px;}
.h2_c00412{height:63.175781px;}
.h0_c00412{height:1263.000000px;}
.w1_c00412{width:892.500000px;}
.w0_c00412{width:892.830000px;}
.x0_c00412{left:0.000000px;}
.x1_c00412{left:127.620000px;}
.x3_c00412{left:403.020000px;}
.x2_c00412{left:738.450000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls9_c00412{letter-spacing:-0.090848pt;}
.lsc_c00412{letter-spacing:-0.076800pt;}
.lsb_c00412{letter-spacing:-0.012800pt;}
.lsa_c00412{letter-spacing:0.000000pt;}
.ls0_c00412{letter-spacing:0.004800pt;}
.ls8_c00412{letter-spacing:0.006400pt;}
.ls7_c00412{letter-spacing:0.012800pt;}
.ls1_c00412{letter-spacing:0.024000pt;}
.ls4_c00412{letter-spacing:0.032000pt;}
.ls3_c00412{letter-spacing:0.038400pt;}
.ls6_c00412{letter-spacing:0.051200pt;}
.ls2_c00412{letter-spacing:0.057600pt;}
.ls5_c00412{letter-spacing:0.076800pt;}
.ws1_c00412{word-spacing:0.000000pt;}
.ws3_c00412{word-spacing:0.134400pt;}
.ws2_c00412{word-spacing:0.153600pt;}
.ws0_c00412{word-spacing:0.171008pt;}
._9_c00412{margin-left:-3.491200pt;}
._7_c00412{margin-left:-2.592000pt;}
._1_c00412{margin-left:-1.142400pt;}
._0_c00412{width:0.919168pt;}
._4_c00412{width:1.888000pt;}
._3_c00412{width:2.888832pt;}
._6_c00412{width:12.454400pt;}
._5_c00412{width:13.401600pt;}
._8_c00412{width:18.188800pt;}
._2_c00412{width:995.840000pt;}
.fs2_c00412{font-size:48.000000pt;}
.fs0_c00412{font-size:53.440000pt;}
.fs1_c00412{font-size:64.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y5_c00412{bottom:50.987067pt;}
.y4_c00412{bottom:69.387067pt;}
.y1b_c00412{bottom:128.267067pt;}
.y1a_c00412{bottom:166.507067pt;}
.y19_c00412{bottom:204.747067pt;}
.y18_c00412{bottom:243.067067pt;}
.y17_c00412{bottom:281.307067pt;}
.y16_c00412{bottom:319.547067pt;}
.y15_c00412{bottom:357.867067pt;}
.y14_c00412{bottom:396.107067pt;}
.y13_c00412{bottom:434.347067pt;}
.y12_c00412{bottom:472.667067pt;}
.y11_c00412{bottom:510.907067pt;}
.y10_c00412{bottom:549.147067pt;}
.yf_c00412{bottom:587.467067pt;}
.ye_c00412{bottom:625.707067pt;}
.yd_c00412{bottom:663.947067pt;}
.yc_c00412{bottom:691.627067pt;}
.yb_c00412{bottom:719.227067pt;}
.ya_c00412{bottom:746.827067pt;}
.y9_c00412{bottom:774.427067pt;}
.y8_c00412{bottom:802.027067pt;}
.y7_c00412{bottom:836.587067pt;}
.y6_c00412{bottom:991.787067pt;}
.y3_c00412{bottom:1006.347067pt;}
.y2_c00412{bottom:1035.947576pt;}
.y1_c00412{bottom:1063.147200pt;}
.h3_c00412{height:42.234375pt;}
.h1_c00412{height:47.020937pt;}
.h2_c00412{height:56.156250pt;}
.h0_c00412{height:1122.666667pt;}
.w1_c00412{width:793.333333pt;}
.w0_c00412{width:793.626667pt;}
.x0_c00412{left:0.000000pt;}
.x1_c00412{left:113.440000pt;}
.x3_c00412{left:358.240000pt;}
.x2_c00412{left:656.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_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_b2628e8e2b1bca5417098ab8.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.095703;font-style:normal;font-weight:normal;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_85318fb797688c74e9b54a53.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.093262;font-style:normal;font-weight:normal;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_3619a151439891f67cfa5886.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:1.104004;font-style: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;}
.ls11_c00413{letter-spacing:-0.072000px;}
.lsa_c00413{letter-spacing:-0.048096px;}
.lsc_c00413{letter-spacing:-0.043200px;}
.ls10_c00413{letter-spacing:-0.028800px;}
.lsf_c00413{letter-spacing:-0.014400px;}
.lsd_c00413{letter-spacing:-0.007200px;}
.lsb_c00413{letter-spacing:0.000000px;}
.ls5_c00413{letter-spacing:0.007200px;}
.ls6_c00413{letter-spacing:0.014400px;}
.ls4_c00413{letter-spacing:0.021600px;}
.ls1_c00413{letter-spacing:0.028800px;}
.ls7_c00413{letter-spacing:0.036000px;}
.ls2_c00413{letter-spacing:0.043200px;}
.ls9_c00413{letter-spacing:0.050400px;}
.ls8_c00413{letter-spacing:0.057600px;}
.ls3_c00413{letter-spacing:0.064800px;}
.ls0_c00413{letter-spacing:0.086400px;}
.lse_c00413{letter-spacing:1.440000px;}
.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:-18.014400px;}
.ws2_c00413{word-spacing:0.000000px;}
.ws1_c00413{word-spacing:0.138276px;}
._8_c00413{margin-left:-3.974400px;}
._3_c00413{margin-left:-2.476800px;}
._1_c00413{margin-left:-1.094400px;}
._2_c00413{width:1.454400px;}
._4_c00413{width:3.218400px;}
._6_c00413{width:4.658400px;}
._7_c00413{width:7.603200px;}
._5_c00413{width:8.640000px;}
._a_c00413{width:10.404000px;}
._b_c00413{width:12.024000px;}
._0_c00413{width:14.673600px;}
._9_c00413{width:21.592800px;}
.fc0_c00413{color:rgb(0,0,0);}
.fs0_c00413{font-size:60.120000px;}
.fs1_c00413{font-size:72.000000px;}
.fs2_c00413{font-size:108.000000px;}
.y0_c00413{bottom:0.000000px;}
.y6_c00413{bottom:57.360450px;}
.y5_c00413{bottom:78.060450px;}
.y24_c00413{bottom:140.160450px;}
.y23_c00413{bottom:171.300450px;}
.y22_c00413{bottom:202.350450px;}
.y21_c00413{bottom:233.400450px;}
.y20_c00413{bottom:264.450450px;}
.y1f_c00413{bottom:295.500450px;}
.y1e_c00413{bottom:338.430450px;}
.y1d_c00413{bottom:369.570450px;}
.y1c_c00413{bottom:400.620450px;}
.y1b_c00413{bottom:431.670450px;}
.y1a_c00413{bottom:462.720450px;}
.y19_c00413{bottom:493.770450px;}
.y18_c00413{bottom:536.700450px;}
.y17_c00413{bottom:567.840450px;}
.y16_c00413{bottom:598.890450px;}
.y15_c00413{bottom:629.940450px;}
.y14_c00413{bottom:672.870450px;}
.y13_c00413{bottom:704.010450px;}
.y12_c00413{bottom:735.060450px;}
.y11_c00413{bottom:777.990450px;}
.y10_c00413{bottom:809.130450px;}
.yf_c00413{bottom:840.180450px;}
.ye_c00413{bottom:883.200450px;}
.yd_c00413{bottom:914.340450px;}
.yc_c00413{bottom:945.390450px;}
.yb_c00413{bottom:976.440450px;}
.ya_c00413{bottom:1007.490450px;}
.y9_c00413{bottom:1050.420450px;}
.y8_c00413{bottom:1075.440450px;}
.y7_c00413{bottom:1124.220450px;}
.y4_c00413{bottom:1144.380657px;}
.y3_c00413{bottom:1161.660648px;}
.y2_c00413{bottom:1178.850459px;}
.y1_c00413{bottom:1196.130450px;}
.h1_c00413{height:52.898555px;}
.h2_c00413{height:63.175781px;}
.h4_c00413{height:63.351562px;}
.h3_c00413{height:95.923828px;}
.h0_c00413{height:1263.000000px;}
.w1_c00413{width:892.500000px;}
.w0_c00413{width:892.830000px;}
.x0_c00413{left:0.000000px;}
.x4_c00413{left:127.620000px;}
.x1_c00413{left:649.620000px;}
.x3_c00413{left:738.450000px;}
.x2_c00413{left:765.450198px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls11_c00413{letter-spacing:-0.064000pt;}
.lsa_c00413{letter-spacing:-0.042752pt;}
.lsc_c00413{letter-spacing:-0.038400pt;}
.ls10_c00413{letter-spacing:-0.025600pt;}
.lsf_c00413{letter-spacing:-0.012800pt;}
.lsd_c00413{letter-spacing:-0.006400pt;}
.lsb_c00413{letter-spacing:0.000000pt;}
.ls5_c00413{letter-spacing:0.006400pt;}
.ls6_c00413{letter-spacing:0.012800pt;}
.ls4_c00413{letter-spacing:0.019200pt;}
.ls1_c00413{letter-spacing:0.025600pt;}
.ls7_c00413{letter-spacing:0.032000pt;}
.ls2_c00413{letter-spacing:0.038400pt;}
.ls9_c00413{letter-spacing:0.044800pt;}
.ls8_c00413{letter-spacing:0.051200pt;}
.ls3_c00413{letter-spacing:0.057600pt;}
.ls0_c00413{letter-spacing:0.076800pt;}
.lse_c00413{letter-spacing:1.280000pt;}
.ws0_c00413{word-spacing:-16.012800pt;}
.ws2_c00413{word-spacing:0.000000pt;}
.ws1_c00413{word-spacing:0.122912pt;}
._8_c00413{margin-left:-3.532800pt;}
._3_c00413{margin-left:-2.201600pt;}
._1_c00413{margin-left:-0.972800pt;}
._2_c00413{width:1.292800pt;}
._4_c00413{width:2.860800pt;}
._6_c00413{width:4.140800pt;}
._7_c00413{width:6.758400pt;}
._5_c00413{width:7.680000pt;}
._a_c00413{width:9.248000pt;}
._b_c00413{width:10.688000pt;}
._0_c00413{width:13.043200pt;}
._9_c00413{width:19.193600pt;}
.fs0_c00413{font-size:53.440000pt;}
.fs1_c00413{font-size:64.000000pt;}
.fs2_c00413{font-size:96.000000pt;}
.y0_c00413{bottom:0.000000pt;}
.y6_c00413{bottom:50.987067pt;}
.y5_c00413{bottom:69.387067pt;}
.y24_c00413{bottom:124.587067pt;}
.y23_c00413{bottom:152.267067pt;}
.y22_c00413{bottom:179.867067pt;}
.y21_c00413{bottom:207.467067pt;}
.y20_c00413{bottom:235.067067pt;}
.y1f_c00413{bottom:262.667067pt;}
.y1e_c00413{bottom:300.827067pt;}
.y1d_c00413{bottom:328.507067pt;}
.y1c_c00413{bottom:356.107067pt;}
.y1b_c00413{bottom:383.707067pt;}
.y1a_c00413{bottom:411.307067pt;}
.y19_c00413{bottom:438.907067pt;}
.y18_c00413{bottom:477.067067pt;}
.y17_c00413{bottom:504.747067pt;}
.y16_c00413{bottom:532.347067pt;}
.y15_c00413{bottom:559.947067pt;}
.y14_c00413{bottom:598.107067pt;}
.y13_c00413{bottom:625.787067pt;}
.y12_c00413{bottom:653.387067pt;}
.y11_c00413{bottom:691.547067pt;}
.y10_c00413{bottom:719.227067pt;}
.yf_c00413{bottom:746.827067pt;}
.ye_c00413{bottom:785.067067pt;}
.yd_c00413{bottom:812.747067pt;}
.yc_c00413{bottom:840.347067pt;}
.yb_c00413{bottom:867.947067pt;}
.ya_c00413{bottom:895.547067pt;}
.y9_c00413{bottom:933.707067pt;}
.y8_c00413{bottom:955.947067pt;}
.y7_c00413{bottom:999.307067pt;}
.y4_c00413{bottom:1017.227251pt;}
.y3_c00413{bottom:1032.587243pt;}
.y2_c00413{bottom:1047.867075pt;}
.y1_c00413{bottom:1063.227067pt;}
.h1_c00413{height:47.020937pt;}
.h2_c00413{height:56.156250pt;}
.h4_c00413{height:56.312500pt;}
.h3_c00413{height:85.265625pt;}
.h0_c00413{height:1122.666667pt;}
.w1_c00413{width:793.333333pt;}
.w0_c00413{width:793.626667pt;}
.x0_c00413{left:0.000000pt;}
.x4_c00413{left:113.440000pt;}
.x1_c00413{left:577.440000pt;}
.x3_c00413{left:656.400000pt;}
.x2_c00413{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.095703;font-style:normal;font-weight:normal;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_ee6f02eb28e4d06f40d53c35.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:1.093262;font-style: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;}
.ls13_c00414{letter-spacing:-2.880000px;}
.lse_c00414{letter-spacing:-0.102204px;}
.ls12_c00414{letter-spacing:-0.072000px;}
.ls19_c00414{letter-spacing:-0.050400px;}
.ls18_c00414{letter-spacing:-0.036000px;}
.ls10_c00414{letter-spacing:-0.021600px;}
.ls11_c00414{letter-spacing:-0.014400px;}
.ls17_c00414{letter-spacing:-0.007200px;}
.lsf_c00414{letter-spacing:0.000000px;}
.ls6_c00414{letter-spacing:0.007200px;}
.ls4_c00414{letter-spacing:0.014400px;}
.ls3_c00414{letter-spacing:0.021600px;}
.ls7_c00414{letter-spacing:0.028800px;}
.ls8_c00414{letter-spacing:0.036000px;}
.ls5_c00414{letter-spacing:0.043200px;}
.ls1_c00414{letter-spacing:0.050400px;}
.ls0_c00414{letter-spacing:0.057600px;}
.ls2_c00414{letter-spacing:0.064800px;}
.lsa_c00414{letter-spacing:0.072000px;}
.ls9_c00414{letter-spacing:0.108000px;}
.lsc_c00414{letter-spacing:0.115200px;}
.lsb_c00414{letter-spacing:0.122400px;}
.lsd_c00414{letter-spacing:0.129600px;}
.ls16_c00414{letter-spacing:5.040000px;}
.ls14_c00414{letter-spacing:12.960000px;}
.ls15_c00414{letter-spacing:20.520000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00414{word-spacing:-18.000000px;}
.ws2_c00414{word-spacing:0.000000px;}
.ws1_c00414{word-spacing:0.192384px;}
._c_c00414{margin-left:-21.700800px;}
._d_c00414{margin-left:-20.520000px;}
._a_c00414{margin-left:-14.212800px;}
._9_c00414{margin-left:-12.355200px;}
._10_c00414{margin-left:-5.090400px;}
._11_c00414{margin-left:-4.003200px;}
._1_c00414{margin-left:-2.865600px;}
._5_c00414{margin-left:-1.108800px;}
._0_c00414{width:1.034064px;}
._3_c00414{width:2.244672px;}
._2_c00414{width:3.283200px;}
._6_c00414{width:4.435200px;}
._f_c00414{width:5.572800px;}
._13_c00414{width:7.538400px;}
._12_c00414{width:8.568000px;}
._4_c00414{width:9.698400px;}
._e_c00414{width:11.131200px;}
._7_c00414{width:12.600000px;}
._8_c00414{width:13.737600px;}
._14_c00414{width:14.889600px;}
._15_c00414{width:16.027200px;}
._16_c00414{width:17.056800px;}
._b_c00414{width:20.484000px;}
.fc1_c00414{color:rgb(0,0,0);}
.fc0_c00414{color:rgb(32,31,30);}
.fs0_c00414{font-size:60.120000px;}
.fs1_c00414{font-size:72.000000px;}
.y0_c00414{bottom:0.000000px;}
.y5_c00414{bottom:57.360450px;}
.y4_c00414{bottom:78.060450px;}
.y23_c00414{bottom:150.960450px;}
.y22_c00414{bottom:182.100450px;}
.y21_c00414{bottom:213.150450px;}
.y20_c00414{bottom:256.080450px;}
.y1f_c00414{bottom:287.220450px;}
.y1e_c00414{bottom:318.270450px;}
.y1d_c00414{bottom:349.320450px;}
.y1c_c00414{bottom:392.250450px;}
.y1b_c00414{bottom:423.390450px;}
.y1a_c00414{bottom:454.440450px;}
.y19_c00414{bottom:485.490450px;}
.y18_c00414{bottom:516.540450px;}
.y17_c00414{bottom:559.560450px;}
.y16_c00414{bottom:590.700450px;}
.y15_c00414{bottom:621.660450px;}
.y14_c00414{bottom:652.710450px;}
.y13_c00414{bottom:683.760450px;}
.y12_c00414{bottom:714.810450px;}
.y11_c00414{bottom:745.860450px;}
.y10_c00414{bottom:776.910450px;}
.yf_c00414{bottom:807.960450px;}
.ye_c00414{bottom:839.010450px;}
.yd_c00414{bottom:870.060450px;}
.yc_c00414{bottom:913.080450px;}
.yb_c00414{bottom:944.220450px;}
.ya_c00414{bottom:975.180450px;}
.y9_c00414{bottom:1006.230450px;}
.y8_c00414{bottom:1049.250450px;}
.y7_c00414{bottom:1080.390450px;}
.y6_c00414{bottom:1111.440450px;}
.y3_c00414{bottom:1132.140450px;}
.y2_c00414{bottom:1165.441023px;}
.y1_c00414{bottom:1196.040600px;}
.h1_c00414{height:52.898555px;}
.h2_c00414{height:63.175781px;}
.h3_c00414{height:63.351562px;}
.h0_c00414{height:1263.000000px;}
.w1_c00414{width:892.500000px;}
.w0_c00414{width:892.830000px;}
.x0_c00414{left:0.000000px;}
.x1_c00414{left:127.620000px;}
.x2_c00414{left:738.450000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls13_c00414{letter-spacing:-2.560000pt;}
.lse_c00414{letter-spacing:-0.090848pt;}
.ls12_c00414{letter-spacing:-0.064000pt;}
.ls19_c00414{letter-spacing:-0.044800pt;}
.ls18_c00414{letter-spacing:-0.032000pt;}
.ls10_c00414{letter-spacing:-0.019200pt;}
.ls11_c00414{letter-spacing:-0.012800pt;}
.ls17_c00414{letter-spacing:-0.006400pt;}
.lsf_c00414{letter-spacing:0.000000pt;}
.ls6_c00414{letter-spacing:0.006400pt;}
.ls4_c00414{letter-spacing:0.012800pt;}
.ls3_c00414{letter-spacing:0.019200pt;}
.ls7_c00414{letter-spacing:0.025600pt;}
.ls8_c00414{letter-spacing:0.032000pt;}
.ls5_c00414{letter-spacing:0.038400pt;}
.ls1_c00414{letter-spacing:0.044800pt;}
.ls0_c00414{letter-spacing:0.051200pt;}
.ls2_c00414{letter-spacing:0.057600pt;}
.lsa_c00414{letter-spacing:0.064000pt;}
.ls9_c00414{letter-spacing:0.096000pt;}
.lsc_c00414{letter-spacing:0.102400pt;}
.lsb_c00414{letter-spacing:0.108800pt;}
.lsd_c00414{letter-spacing:0.115200pt;}
.ls16_c00414{letter-spacing:4.480000pt;}
.ls14_c00414{letter-spacing:11.520000pt;}
.ls15_c00414{letter-spacing:18.240000pt;}
.ws0_c00414{word-spacing:-16.000000pt;}
.ws2_c00414{word-spacing:0.000000pt;}
.ws1_c00414{word-spacing:0.171008pt;}
._c_c00414{margin-left:-19.289600pt;}
._d_c00414{margin-left:-18.240000pt;}
._a_c00414{margin-left:-12.633600pt;}
._9_c00414{margin-left:-10.982400pt;}
._10_c00414{margin-left:-4.524800pt;}
._11_c00414{margin-left:-3.558400pt;}
._1_c00414{margin-left:-2.547200pt;}
._5_c00414{margin-left:-0.985600pt;}
._0_c00414{width:0.919168pt;}
._3_c00414{width:1.995264pt;}
._2_c00414{width:2.918400pt;}
._6_c00414{width:3.942400pt;}
._f_c00414{width:4.953600pt;}
._13_c00414{width:6.700800pt;}
._12_c00414{width:7.616000pt;}
._4_c00414{width:8.620800pt;}
._e_c00414{width:9.894400pt;}
._7_c00414{width:11.200000pt;}
._8_c00414{width:12.211200pt;}
._14_c00414{width:13.235200pt;}
._15_c00414{width:14.246400pt;}
._16_c00414{width:15.161600pt;}
._b_c00414{width:18.208000pt;}
.fs0_c00414{font-size:53.440000pt;}
.fs1_c00414{font-size:64.000000pt;}
.y0_c00414{bottom:0.000000pt;}
.y5_c00414{bottom:50.987067pt;}
.y4_c00414{bottom:69.387067pt;}
.y23_c00414{bottom:134.187067pt;}
.y22_c00414{bottom:161.867067pt;}
.y21_c00414{bottom:189.467067pt;}
.y20_c00414{bottom:227.627067pt;}
.y1f_c00414{bottom:255.307067pt;}
.y1e_c00414{bottom:282.907067pt;}
.y1d_c00414{bottom:310.507067pt;}
.y1c_c00414{bottom:348.667067pt;}
.y1b_c00414{bottom:376.347067pt;}
.y1a_c00414{bottom:403.947067pt;}
.y19_c00414{bottom:431.547067pt;}
.y18_c00414{bottom:459.147067pt;}
.y17_c00414{bottom:497.387067pt;}
.y16_c00414{bottom:525.067067pt;}
.y15_c00414{bottom:552.587067pt;}
.y14_c00414{bottom:580.187067pt;}
.y13_c00414{bottom:607.787067pt;}
.y12_c00414{bottom:635.387067pt;}
.y11_c00414{bottom:662.987067pt;}
.y10_c00414{bottom:690.587067pt;}
.yf_c00414{bottom:718.187067pt;}
.ye_c00414{bottom:745.787067pt;}
.yd_c00414{bottom:773.387067pt;}
.yc_c00414{bottom:811.627067pt;}
.yb_c00414{bottom:839.307067pt;}
.ya_c00414{bottom:866.827067pt;}
.y9_c00414{bottom:894.427067pt;}
.y8_c00414{bottom:932.667067pt;}
.y7_c00414{bottom:960.347067pt;}
.y6_c00414{bottom:987.947067pt;}
.y3_c00414{bottom:1006.347067pt;}
.y2_c00414{bottom:1035.947576pt;}
.y1_c00414{bottom:1063.147200pt;}
.h1_c00414{height:47.020937pt;}
.h2_c00414{height:56.156250pt;}
.h3_c00414{height:56.312500pt;}
.h0_c00414{height:1122.666667pt;}
.w1_c00414{width:793.333333pt;}
.w0_c00414{width:793.626667pt;}
.x0_c00414{left:0.000000pt;}
.x1_c00414{left:113.440000pt;}
.x2_c00414{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.095703;font-style:normal;font-weight:normal;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_df09dd8b0e265281c92b2d84.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.093262;font-style: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;}
.ls13_c00415{letter-spacing:-2.520000px;}
.lsf_c00415{letter-spacing:-2.160000px;}
.ls14_c00415{letter-spacing:-1.080000px;}
.lsc_c00415{letter-spacing:-0.048096px;}
.ls12_c00415{letter-spacing:-0.028800px;}
.lse_c00415{letter-spacing:-0.021600px;}
.ls10_c00415{letter-spacing:-0.014400px;}
.ls15_c00415{letter-spacing:-0.007200px;}
.lsd_c00415{letter-spacing:0.000000px;}
.ls9_c00415{letter-spacing:0.007200px;}
.ls5_c00415{letter-spacing:0.014400px;}
.ls7_c00415{letter-spacing:0.021600px;}
.ls2_c00415{letter-spacing:0.028800px;}
.ls4_c00415{letter-spacing:0.036000px;}
.ls6_c00415{letter-spacing:0.043200px;}
.ls3_c00415{letter-spacing:0.050400px;}
.ls8_c00415{letter-spacing:0.057600px;}
.lsb_c00415{letter-spacing:0.064800px;}
.lsa_c00415{letter-spacing:0.072000px;}
.ls1_c00415{letter-spacing:0.079200px;}
.ls0_c00415{letter-spacing:0.086400px;}
.ls11_c00415{letter-spacing:4.320000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00415{word-spacing:0.000000px;}
.ws0_c00415{word-spacing:0.138276px;}
._6_c00415{margin-left:-4.507200px;}
._4_c00415{margin-left:-3.139200px;}
._1_c00415{margin-left:-1.569600px;}
._5_c00415{width:1.245600px;}
._2_c00415{width:2.318400px;}
._3_c00415{width:3.672000px;}
._7_c00415{width:5.032800px;}
._0_c00415{width:8.553600px;}
._8_c00415{width:9.705600px;}
._c_c00415{width:10.778400px;}
._a_c00415{width:13.312800px;}
._9_c00415{width:14.371200px;}
._b_c00415{width:16.473600px;}
.fc0_c00415{color:rgb(0,0,0);}
.fs0_c00415{font-size:60.120000px;}
.fs1_c00415{font-size:72.000000px;}
.y0_c00415{bottom:0.000000px;}
.y6_c00415{bottom:57.360450px;}
.y5_c00415{bottom:78.060450px;}
.y25_c00415{bottom:156.810450px;}
.y24_c00415{bottom:187.950450px;}
.y23_c00415{bottom:219.000450px;}
.y22_c00415{bottom:250.050450px;}
.y21_c00415{bottom:281.100450px;}
.y20_c00415{bottom:312.150450px;}
.y1f_c00415{bottom:343.200450px;}
.y1e_c00415{bottom:374.250450px;}
.y1d_c00415{bottom:405.300450px;}
.y1c_c00415{bottom:436.350450px;}
.y1b_c00415{bottom:467.400450px;}
.y1a_c00415{bottom:498.450450px;}
.y19_c00415{bottom:529.500450px;}
.y18_c00415{bottom:560.550450px;}
.y17_c00415{bottom:591.600450px;}
.y16_c00415{bottom:634.530450px;}
.y15_c00415{bottom:665.670450px;}
.y14_c00415{bottom:696.720450px;}
.y13_c00415{bottom:727.770450px;}
.y12_c00415{bottom:758.820450px;}
.y11_c00415{bottom:801.750450px;}
.y10_c00415{bottom:832.890450px;}
.yf_c00415{bottom:863.940450px;}
.ye_c00415{bottom:894.990450px;}
.yd_c00415{bottom:938.010450px;}
.yc_c00415{bottom:969.150450px;}
.yb_c00415{bottom:1000.200450px;}
.ya_c00415{bottom:1031.160450px;}
.y9_c00415{bottom:1062.210450px;}
.y8_c00415{bottom:1093.260450px;}
.y7_c00415{bottom:1124.310450px;}
.y4_c00415{bottom:1144.380657px;}
.y3_c00415{bottom:1161.660648px;}
.y2_c00415{bottom:1178.850459px;}
.y1_c00415{bottom:1196.130450px;}
.h1_c00415{height:52.898555px;}
.h2_c00415{height:63.175781px;}
.h0_c00415{height:1263.000000px;}
.w1_c00415{width:892.500000px;}
.w0_c00415{width:892.830000px;}
.x0_c00415{left:0.000000px;}
.x4_c00415{left:127.620000px;}
.x1_c00415{left:649.620000px;}
.x3_c00415{left:738.450000px;}
.x2_c00415{left:765.450198px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls13_c00415{letter-spacing:-2.240000pt;}
.lsf_c00415{letter-spacing:-1.920000pt;}
.ls14_c00415{letter-spacing:-0.960000pt;}
.lsc_c00415{letter-spacing:-0.042752pt;}
.ls12_c00415{letter-spacing:-0.025600pt;}
.lse_c00415{letter-spacing:-0.019200pt;}
.ls10_c00415{letter-spacing:-0.012800pt;}
.ls15_c00415{letter-spacing:-0.006400pt;}
.lsd_c00415{letter-spacing:0.000000pt;}
.ls9_c00415{letter-spacing:0.006400pt;}
.ls5_c00415{letter-spacing:0.012800pt;}
.ls7_c00415{letter-spacing:0.019200pt;}
.ls2_c00415{letter-spacing:0.025600pt;}
.ls4_c00415{letter-spacing:0.032000pt;}
.ls6_c00415{letter-spacing:0.038400pt;}
.ls3_c00415{letter-spacing:0.044800pt;}
.ls8_c00415{letter-spacing:0.051200pt;}
.lsb_c00415{letter-spacing:0.057600pt;}
.lsa_c00415{letter-spacing:0.064000pt;}
.ls1_c00415{letter-spacing:0.070400pt;}
.ls0_c00415{letter-spacing:0.076800pt;}
.ls11_c00415{letter-spacing:3.840000pt;}
.ws1_c00415{word-spacing:0.000000pt;}
.ws0_c00415{word-spacing:0.122912pt;}
._6_c00415{margin-left:-4.006400pt;}
._4_c00415{margin-left:-2.790400pt;}
._1_c00415{margin-left:-1.395200pt;}
._5_c00415{width:1.107200pt;}
._2_c00415{width:2.060800pt;}
._3_c00415{width:3.264000pt;}
._7_c00415{width:4.473600pt;}
._0_c00415{width:7.603200pt;}
._8_c00415{width:8.627200pt;}
._c_c00415{width:9.580800pt;}
._a_c00415{width:11.833600pt;}
._9_c00415{width:12.774400pt;}
._b_c00415{width:14.643200pt;}
.fs0_c00415{font-size:53.440000pt;}
.fs1_c00415{font-size:64.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y6_c00415{bottom:50.987067pt;}
.y5_c00415{bottom:69.387067pt;}
.y25_c00415{bottom:139.387067pt;}
.y24_c00415{bottom:167.067067pt;}
.y23_c00415{bottom:194.667067pt;}
.y22_c00415{bottom:222.267067pt;}
.y21_c00415{bottom:249.867067pt;}
.y20_c00415{bottom:277.467067pt;}
.y1f_c00415{bottom:305.067067pt;}
.y1e_c00415{bottom:332.667067pt;}
.y1d_c00415{bottom:360.267067pt;}
.y1c_c00415{bottom:387.867067pt;}
.y1b_c00415{bottom:415.467067pt;}
.y1a_c00415{bottom:443.067067pt;}
.y19_c00415{bottom:470.667067pt;}
.y18_c00415{bottom:498.267067pt;}
.y17_c00415{bottom:525.867067pt;}
.y16_c00415{bottom:564.027067pt;}
.y15_c00415{bottom:591.707067pt;}
.y14_c00415{bottom:619.307067pt;}
.y13_c00415{bottom:646.907067pt;}
.y12_c00415{bottom:674.507067pt;}
.y11_c00415{bottom:712.667067pt;}
.y10_c00415{bottom:740.347067pt;}
.yf_c00415{bottom:767.947067pt;}
.ye_c00415{bottom:795.547067pt;}
.yd_c00415{bottom:833.787067pt;}
.yc_c00415{bottom:861.467067pt;}
.yb_c00415{bottom:889.067067pt;}
.ya_c00415{bottom:916.587067pt;}
.y9_c00415{bottom:944.187067pt;}
.y8_c00415{bottom:971.787067pt;}
.y7_c00415{bottom:999.387067pt;}
.y4_c00415{bottom:1017.227251pt;}
.y3_c00415{bottom:1032.587243pt;}
.y2_c00415{bottom:1047.867075pt;}
.y1_c00415{bottom:1063.227067pt;}
.h1_c00415{height:47.020937pt;}
.h2_c00415{height:56.156250pt;}
.h0_c00415{height:1122.666667pt;}
.w1_c00415{width:793.333333pt;}
.w0_c00415{width:793.626667pt;}
.x0_c00415{left:0.000000pt;}
.x4_c00415{left:113.440000pt;}
.x1_c00415{left:577.440000pt;}
.x3_c00415{left:656.400000pt;}
.x2_c00415{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.095703;font-style:normal;font-weight:normal;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_d0eb1fda91160f92c72cafc7.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:1.093262;font-style: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);}
.v2_c00416{vertical-align:-20.880000px;}
.v0_c00416{vertical-align:0.000000px;}
.v1_c00416{vertical-align:27.000600px;}
.ls12_c00416{letter-spacing:-0.158400px;}
.lsf_c00416{letter-spacing:-0.102204px;}
.ls15_c00416{letter-spacing:-0.050400px;}
.ls13_c00416{letter-spacing:-0.021600px;}
.ls11_c00416{letter-spacing:-0.014400px;}
.ls14_c00416{letter-spacing:-0.007200px;}
.ls10_c00416{letter-spacing:0.000000px;}
.lse_c00416{letter-spacing:0.003888px;}
.lsb_c00416{letter-spacing:0.007200px;}
.lsd_c00416{letter-spacing:0.007776px;}
.ls4_c00416{letter-spacing:0.014400px;}
.ls5_c00416{letter-spacing:0.021600px;}
.ls0_c00416{letter-spacing:0.028800px;}
.ls2_c00416{letter-spacing:0.036000px;}
.ls6_c00416{letter-spacing:0.043200px;}
.ls7_c00416{letter-spacing:0.050400px;}
.ls8_c00416{letter-spacing:0.057600px;}
.ls3_c00416{letter-spacing:0.072000px;}
.ls9_c00416{letter-spacing:0.079200px;}
.lsa_c00416{letter-spacing:0.086400px;}
.lsc_c00416{letter-spacing:0.090000px;}
.ls1_c00416{letter-spacing:0.093600px;}
.ls16_c00416{letter-spacing:0.151200px;}
.ls1a_c00416{letter-spacing:0.181944px;}
.ls17_c00416{letter-spacing:2.880000px;}
.ls18_c00416{letter-spacing:14.342400px;}
.ls19_c00416{letter-spacing:14.400000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00416{word-spacing:-12.151944px;}
.ws1_c00416{word-spacing:-9.720000px;}
.ws3_c00416{word-spacing:0.000000px;}
.ws2_c00416{word-spacing:0.192384px;}
._d_c00416{margin-left:-15.264000px;}
._c_c00416{margin-left:-14.256000px;}
._e_c00416{margin-left:-13.204800px;}
._b_c00416{margin-left:-3.902400px;}
._7_c00416{margin-left:-2.527200px;}
._1_c00416{margin-left:-1.108800px;}
._0_c00416{width:1.034064px;}
._4_c00416{width:2.340000px;}
._5_c00416{width:3.787200px;}
._8_c00416{width:5.100336px;}
._9_c00416{width:6.290064px;}
._6_c00416{width:13.665600px;}
._3_c00416{width:14.882400px;}
._2_c00416{width:16.214400px;}
._a_c00416{width:19.756800px;}
.fc1_c00416{color:rgb(0,0,0);}
.fc0_c00416{color:rgb(32,31,30);}
.fs3_c00416{font-size:38.880000px;}
.fs2_c00416{font-size:47.880000px;}
.fs0_c00416{font-size:60.120000px;}
.fs1_c00416{font-size:72.000000px;}
.y0_c00416{bottom:0.000000px;}
.y5_c00416{bottom:57.360450px;}
.y4_c00416{bottom:78.060450px;}
.y25_c00416{bottom:115.140162px;}
.y24_c00416{bottom:132.329982px;}
.y23_c00416{bottom:149.610198px;}
.y22_c00416{bottom:166.890414px;}
.y21_c00416{bottom:184.080234px;}
.y20_c00416{bottom:201.360450px;}
.y1f_c00416{bottom:214.050600px;}
.y1e_c00416{bottom:330.150600px;}
.y1d_c00416{bottom:361.290450px;}
.y1c_c00416{bottom:392.340450px;}
.y1b_c00416{bottom:423.390450px;}
.y1a_c00416{bottom:454.440450px;}
.y19_c00416{bottom:485.490450px;}
.y18_c00416{bottom:528.510450px;}
.y17_c00416{bottom:559.650450px;}
.y16_c00416{bottom:590.700450px;}
.y15_c00416{bottom:621.660450px;}
.y14_c00416{bottom:664.680450px;}
.y13_c00416{bottom:695.820450px;}
.y12_c00416{bottom:726.870450px;}
.y11_c00416{bottom:757.920450px;}
.y10_c00416{bottom:788.970450px;}
.yf_c00416{bottom:831.900450px;}
.ye_c00416{bottom:863.040450px;}
.yd_c00416{bottom:894.090450px;}
.yc_c00416{bottom:925.140450px;}
.yb_c00416{bottom:956.190450px;}
.ya_c00416{bottom:987.240450px;}
.y9_c00416{bottom:1018.290450px;}
.y8_c00416{bottom:1049.340450px;}
.y7_c00416{bottom:1080.390450px;}
.y6_c00416{bottom:1111.440450px;}
.y3_c00416{bottom:1132.140450px;}
.y2_c00416{bottom:1165.441023px;}
.y1_c00416{bottom:1196.040600px;}
.h4_c00416{height:34.114922px;}
.h1_c00416{height:52.898555px;}
.h2_c00416{height:63.175781px;}
.h3_c00416{height:69.012495px;}
.h0_c00416{height:1263.000000px;}
.w1_c00416{width:892.500000px;}
.w0_c00416{width:892.830000px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:127.620000px;}
.x2_c00416{left:738.450000px;}
@media print{
.v2_c00416{vertical-align:-18.560000pt;}
.v0_c00416{vertical-align:0.000000pt;}
.v1_c00416{vertical-align:24.000533pt;}
.ls12_c00416{letter-spacing:-0.140800pt;}
.lsf_c00416{letter-spacing:-0.090848pt;}
.ls15_c00416{letter-spacing:-0.044800pt;}
.ls13_c00416{letter-spacing:-0.019200pt;}
.ls11_c00416{letter-spacing:-0.012800pt;}
.ls14_c00416{letter-spacing:-0.006400pt;}
.ls10_c00416{letter-spacing:0.000000pt;}
.lse_c00416{letter-spacing:0.003456pt;}
.lsb_c00416{letter-spacing:0.006400pt;}
.lsd_c00416{letter-spacing:0.006912pt;}
.ls4_c00416{letter-spacing:0.012800pt;}
.ls5_c00416{letter-spacing:0.019200pt;}
.ls0_c00416{letter-spacing:0.025600pt;}
.ls2_c00416{letter-spacing:0.032000pt;}
.ls6_c00416{letter-spacing:0.038400pt;}
.ls7_c00416{letter-spacing:0.044800pt;}
.ls8_c00416{letter-spacing:0.051200pt;}
.ls3_c00416{letter-spacing:0.064000pt;}
.ls9_c00416{letter-spacing:0.070400pt;}
.lsa_c00416{letter-spacing:0.076800pt;}
.lsc_c00416{letter-spacing:0.080000pt;}
.ls1_c00416{letter-spacing:0.083200pt;}
.ls16_c00416{letter-spacing:0.134400pt;}
.ls1a_c00416{letter-spacing:0.161728pt;}
.ls17_c00416{letter-spacing:2.560000pt;}
.ls18_c00416{letter-spacing:12.748800pt;}
.ls19_c00416{letter-spacing:12.800000pt;}
.ws0_c00416{word-spacing:-10.801728pt;}
.ws1_c00416{word-spacing:-8.640000pt;}
.ws3_c00416{word-spacing:0.000000pt;}
.ws2_c00416{word-spacing:0.171008pt;}
._d_c00416{margin-left:-13.568000pt;}
._c_c00416{margin-left:-12.672000pt;}
._e_c00416{margin-left:-11.737600pt;}
._b_c00416{margin-left:-3.468800pt;}
._7_c00416{margin-left:-2.246400pt;}
._1_c00416{margin-left:-0.985600pt;}
._0_c00416{width:0.919168pt;}
._4_c00416{width:2.080000pt;}
._5_c00416{width:3.366400pt;}
._8_c00416{width:4.533632pt;}
._9_c00416{width:5.591168pt;}
._6_c00416{width:12.147200pt;}
._3_c00416{width:13.228800pt;}
._2_c00416{width:14.412800pt;}
._a_c00416{width:17.561600pt;}
.fs3_c00416{font-size:34.560000pt;}
.fs2_c00416{font-size:42.560000pt;}
.fs0_c00416{font-size:53.440000pt;}
.fs1_c00416{font-size:64.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y5_c00416{bottom:50.987067pt;}
.y4_c00416{bottom:69.387067pt;}
.y25_c00416{bottom:102.346811pt;}
.y24_c00416{bottom:117.626651pt;}
.y23_c00416{bottom:132.986843pt;}
.y22_c00416{bottom:148.347035pt;}
.y21_c00416{bottom:163.626875pt;}
.y20_c00416{bottom:178.987067pt;}
.y1f_c00416{bottom:190.267200pt;}
.y1e_c00416{bottom:293.467200pt;}
.y1d_c00416{bottom:321.147067pt;}
.y1c_c00416{bottom:348.747067pt;}
.y1b_c00416{bottom:376.347067pt;}
.y1a_c00416{bottom:403.947067pt;}
.y19_c00416{bottom:431.547067pt;}
.y18_c00416{bottom:469.787067pt;}
.y17_c00416{bottom:497.467067pt;}
.y16_c00416{bottom:525.067067pt;}
.y15_c00416{bottom:552.587067pt;}
.y14_c00416{bottom:590.827067pt;}
.y13_c00416{bottom:618.507067pt;}
.y12_c00416{bottom:646.107067pt;}
.y11_c00416{bottom:673.707067pt;}
.y10_c00416{bottom:701.307067pt;}
.yf_c00416{bottom:739.467067pt;}
.ye_c00416{bottom:767.147067pt;}
.yd_c00416{bottom:794.747067pt;}
.yc_c00416{bottom:822.347067pt;}
.yb_c00416{bottom:849.947067pt;}
.ya_c00416{bottom:877.547067pt;}
.y9_c00416{bottom:905.147067pt;}
.y8_c00416{bottom:932.747067pt;}
.y7_c00416{bottom:960.347067pt;}
.y6_c00416{bottom:987.947067pt;}
.y3_c00416{bottom:1006.347067pt;}
.y2_c00416{bottom:1035.947576pt;}
.y1_c00416{bottom:1063.147200pt;}
.h4_c00416{height:30.324375pt;}
.h1_c00416{height:47.020937pt;}
.h2_c00416{height:56.156250pt;}
.h3_c00416{height:61.344440pt;}
.h0_c00416{height:1122.666667pt;}
.w1_c00416{width:793.333333pt;}
.w0_c00416{width:793.626667pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:113.440000pt;}
.x2_c00416{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.095703;font-style:normal;font-weight:normal;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_c6661b3d16573fb8abf1961f.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.093262;font-style: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;}
.ls16_c00417{letter-spacing:-1.440000px;}
.ls14_c00417{letter-spacing:-0.144000px;}
.ls1b_c00417{letter-spacing:-0.072000px;}
.lsf_c00417{letter-spacing:-0.048096px;}
.ls19_c00417{letter-spacing:-0.043200px;}
.ls17_c00417{letter-spacing:-0.036000px;}
.ls15_c00417{letter-spacing:-0.028800px;}
.ls13_c00417{letter-spacing:-0.014400px;}
.ls12_c00417{letter-spacing:-0.007200px;}
.ls10_c00417{letter-spacing:0.000000px;}
.ls5_c00417{letter-spacing:0.007200px;}
.ls4_c00417{letter-spacing:0.014400px;}
.ls2_c00417{letter-spacing:0.021600px;}
.ls6_c00417{letter-spacing:0.028800px;}
.lsa_c00417{letter-spacing:0.036000px;}
.ls1_c00417{letter-spacing:0.043200px;}
.ls9_c00417{letter-spacing:0.050400px;}
.ls0_c00417{letter-spacing:0.057600px;}
.ls8_c00417{letter-spacing:0.064800px;}
.ls7_c00417{letter-spacing:0.072000px;}
.lsb_c00417{letter-spacing:0.079200px;}
.lsc_c00417{letter-spacing:0.086400px;}
.lsd_c00417{letter-spacing:0.100800px;}
.ls3_c00417{letter-spacing:0.108000px;}
.lse_c00417{letter-spacing:0.122400px;}
.ls1c_c00417{letter-spacing:2.160000px;}
.ls1a_c00417{letter-spacing:2.520000px;}
.ls11_c00417{letter-spacing:8.323200px;}
.ls18_c00417{letter-spacing:14.400000px;}
.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:0.000000px;}
.ws0_c00417{word-spacing:0.138276px;}
._12_c00417{margin-left:-15.544800px;}
._13_c00417{margin-left:-14.313600px;}
._5_c00417{margin-left:-9.518400px;}
._4_c00417{margin-left:-8.164800px;}
._8_c00417{margin-left:-3.254400px;}
._10_c00417{margin-left:-2.196000px;}
._2_c00417{margin-left:-1.123200px;}
._3_c00417{width:1.108800px;}
._0_c00417{width:2.923200px;}
._1_c00417{width:4.104000px;}
._f_c00417{width:6.926400px;}
._6_c00417{width:8.128800px;}
._e_c00417{width:9.835200px;}
._7_c00417{width:11.131200px;}
._c_c00417{width:12.268800px;}
._9_c00417{width:13.672800px;}
._d_c00417{width:15.098400px;}
._11_c00417{width:16.948800px;}
._14_c00417{width:19.490400px;}
._a_c00417{width:20.512800px;}
._b_c00417{width:21.744000px;}
.fc0_c00417{color:rgb(0,0,0);}
.fs0_c00417{font-size:60.120000px;}
.fs1_c00417{font-size:72.000000px;}
.y0_c00417{bottom:0.000000px;}
.y6_c00417{bottom:57.360450px;}
.y5_c00417{bottom:78.060450px;}
.y26_c00417{bottom:113.880450px;}
.y25_c00417{bottom:144.930450px;}
.y24_c00417{bottom:175.980450px;}
.y23_c00417{bottom:207.030450px;}
.y22_c00417{bottom:238.080450px;}
.y21_c00417{bottom:281.010450px;}
.y20_c00417{bottom:312.150450px;}
.y1f_c00417{bottom:343.200450px;}
.y1e_c00417{bottom:374.250450px;}
.y1d_c00417{bottom:405.300450px;}
.y1c_c00417{bottom:436.350450px;}
.y1b_c00417{bottom:467.400450px;}
.y1a_c00417{bottom:498.450450px;}
.y19_c00417{bottom:529.500450px;}
.y18_c00417{bottom:572.430450px;}
.y17_c00417{bottom:603.570450px;}
.y16_c00417{bottom:634.620450px;}
.y15_c00417{bottom:665.670450px;}
.y14_c00417{bottom:696.720450px;}
.y13_c00417{bottom:727.770450px;}
.y12_c00417{bottom:758.820450px;}
.y11_c00417{bottom:801.750450px;}
.y10_c00417{bottom:832.890450px;}
.yf_c00417{bottom:863.940450px;}
.ye_c00417{bottom:894.990450px;}
.yd_c00417{bottom:926.040450px;}
.yc_c00417{bottom:957.090450px;}
.yb_c00417{bottom:988.140450px;}
.ya_c00417{bottom:1019.190450px;}
.y9_c00417{bottom:1062.120450px;}
.y8_c00417{bottom:1093.260450px;}
.y7_c00417{bottom:1124.310450px;}
.y4_c00417{bottom:1144.380657px;}
.y3_c00417{bottom:1161.660648px;}
.y2_c00417{bottom:1178.850459px;}
.y1_c00417{bottom:1196.130450px;}
.h1_c00417{height:52.898555px;}
.h2_c00417{height:63.175781px;}
.h0_c00417{height:1263.000000px;}
.w1_c00417{width:892.500000px;}
.w0_c00417{width:892.830000px;}
.x0_c00417{left:0.000000px;}
.x4_c00417{left:127.620000px;}
.x1_c00417{left:649.620000px;}
.x3_c00417{left:738.450000px;}
.x2_c00417{left:765.450198px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls16_c00417{letter-spacing:-1.280000pt;}
.ls14_c00417{letter-spacing:-0.128000pt;}
.ls1b_c00417{letter-spacing:-0.064000pt;}
.lsf_c00417{letter-spacing:-0.042752pt;}
.ls19_c00417{letter-spacing:-0.038400pt;}
.ls17_c00417{letter-spacing:-0.032000pt;}
.ls15_c00417{letter-spacing:-0.025600pt;}
.ls13_c00417{letter-spacing:-0.012800pt;}
.ls12_c00417{letter-spacing:-0.006400pt;}
.ls10_c00417{letter-spacing:0.000000pt;}
.ls5_c00417{letter-spacing:0.006400pt;}
.ls4_c00417{letter-spacing:0.012800pt;}
.ls2_c00417{letter-spacing:0.019200pt;}
.ls6_c00417{letter-spacing:0.025600pt;}
.lsa_c00417{letter-spacing:0.032000pt;}
.ls1_c00417{letter-spacing:0.038400pt;}
.ls9_c00417{letter-spacing:0.044800pt;}
.ls0_c00417{letter-spacing:0.051200pt;}
.ls8_c00417{letter-spacing:0.057600pt;}
.ls7_c00417{letter-spacing:0.064000pt;}
.lsb_c00417{letter-spacing:0.070400pt;}
.lsc_c00417{letter-spacing:0.076800pt;}
.lsd_c00417{letter-spacing:0.089600pt;}
.ls3_c00417{letter-spacing:0.096000pt;}
.lse_c00417{letter-spacing:0.108800pt;}
.ls1c_c00417{letter-spacing:1.920000pt;}
.ls1a_c00417{letter-spacing:2.240000pt;}
.ls11_c00417{letter-spacing:7.398400pt;}
.ls18_c00417{letter-spacing:12.800000pt;}
.ws1_c00417{word-spacing:0.000000pt;}
.ws0_c00417{word-spacing:0.122912pt;}
._12_c00417{margin-left:-13.817600pt;}
._13_c00417{margin-left:-12.723200pt;}
._5_c00417{margin-left:-8.460800pt;}
._4_c00417{margin-left:-7.257600pt;}
._8_c00417{margin-left:-2.892800pt;}
._10_c00417{margin-left:-1.952000pt;}
._2_c00417{margin-left:-0.998400pt;}
._3_c00417{width:0.985600pt;}
._0_c00417{width:2.598400pt;}
._1_c00417{width:3.648000pt;}
._f_c00417{width:6.156800pt;}
._6_c00417{width:7.225600pt;}
._e_c00417{width:8.742400pt;}
._7_c00417{width:9.894400pt;}
._c_c00417{width:10.905600pt;}
._9_c00417{width:12.153600pt;}
._d_c00417{width:13.420800pt;}
._11_c00417{width:15.065600pt;}
._14_c00417{width:17.324800pt;}
._a_c00417{width:18.233600pt;}
._b_c00417{width:19.328000pt;}
.fs0_c00417{font-size:53.440000pt;}
.fs1_c00417{font-size:64.000000pt;}
.y0_c00417{bottom:0.000000pt;}
.y6_c00417{bottom:50.987067pt;}
.y5_c00417{bottom:69.387067pt;}
.y26_c00417{bottom:101.227067pt;}
.y25_c00417{bottom:128.827067pt;}
.y24_c00417{bottom:156.427067pt;}
.y23_c00417{bottom:184.027067pt;}
.y22_c00417{bottom:211.627067pt;}
.y21_c00417{bottom:249.787067pt;}
.y20_c00417{bottom:277.467067pt;}
.y1f_c00417{bottom:305.067067pt;}
.y1e_c00417{bottom:332.667067pt;}
.y1d_c00417{bottom:360.267067pt;}
.y1c_c00417{bottom:387.867067pt;}
.y1b_c00417{bottom:415.467067pt;}
.y1a_c00417{bottom:443.067067pt;}
.y19_c00417{bottom:470.667067pt;}
.y18_c00417{bottom:508.827067pt;}
.y17_c00417{bottom:536.507067pt;}
.y16_c00417{bottom:564.107067pt;}
.y15_c00417{bottom:591.707067pt;}
.y14_c00417{bottom:619.307067pt;}
.y13_c00417{bottom:646.907067pt;}
.y12_c00417{bottom:674.507067pt;}
.y11_c00417{bottom:712.667067pt;}
.y10_c00417{bottom:740.347067pt;}
.yf_c00417{bottom:767.947067pt;}
.ye_c00417{bottom:795.547067pt;}
.yd_c00417{bottom:823.147067pt;}
.yc_c00417{bottom:850.747067pt;}
.yb_c00417{bottom:878.347067pt;}
.ya_c00417{bottom:905.947067pt;}
.y9_c00417{bottom:944.107067pt;}
.y8_c00417{bottom:971.787067pt;}
.y7_c00417{bottom:999.387067pt;}
.y4_c00417{bottom:1017.227251pt;}
.y3_c00417{bottom:1032.587243pt;}
.y2_c00417{bottom:1047.867075pt;}
.y1_c00417{bottom:1063.227067pt;}
.h1_c00417{height:47.020937pt;}
.h2_c00417{height:56.156250pt;}
.h0_c00417{height:1122.666667pt;}
.w1_c00417{width:793.333333pt;}
.w0_c00417{width:793.626667pt;}
.x0_c00417{left:0.000000pt;}
.x4_c00417{left:113.440000pt;}
.x1_c00417{left:577.440000pt;}
.x3_c00417{left:656.400000pt;}
.x2_c00417{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d0110ad57970be3af1a1e45.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.095703;font-style:normal;font-weight:normal;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_ba56b06899a12287494226d2.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls19_c00418{letter-spacing:-3.240000px;}
.ls13_c00418{letter-spacing:-0.244800px;}
.ls18_c00418{letter-spacing:-0.136800px;}
.ls15_c00418{letter-spacing:-0.115200px;}
.lsf_c00418{letter-spacing:-0.102204px;}
.ls11_c00418{letter-spacing:-0.072000px;}
.ls17_c00418{letter-spacing:-0.057600px;}
.ls14_c00418{letter-spacing:-0.036000px;}
.ls12_c00418{letter-spacing:-0.028800px;}
.ls16_c00418{letter-spacing:-0.014400px;}
.ls1a_c00418{letter-spacing:-0.007200px;}
.ls10_c00418{letter-spacing:0.000000px;}
.ls0_c00418{letter-spacing:0.007200px;}
.lsd_c00418{letter-spacing:0.014400px;}
.ls1_c00418{letter-spacing:0.021600px;}
.ls4_c00418{letter-spacing:0.028800px;}
.ls2_c00418{letter-spacing:0.036000px;}
.ls5_c00418{letter-spacing:0.043200px;}
.ls3_c00418{letter-spacing:0.050400px;}
.ls8_c00418{letter-spacing:0.057600px;}
.ls9_c00418{letter-spacing:0.064800px;}
.lsc_c00418{letter-spacing:0.072000px;}
.lse_c00418{letter-spacing:0.079200px;}
.ls7_c00418{letter-spacing:0.086400px;}
.lsa_c00418{letter-spacing:0.093600px;}
.lsb_c00418{letter-spacing:0.108000px;}
.ls6_c00418{letter-spacing:0.136800px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00418{word-spacing:0.000000px;}
.ws0_c00418{word-spacing:0.192384px;}
.ws2_c00418{word-spacing:4.284000px;}
._9_c00418{margin-left:-4.780800px;}
._8_c00418{margin-left:-3.628800px;}
._6_c00418{margin-left:-2.448000px;}
._1_c00418{margin-left:-1.051200px;}
._0_c00418{width:1.034064px;}
._3_c00418{width:2.851200px;}
._4_c00418{width:3.960000px;}
._2_c00418{width:5.760000px;}
._5_c00418{width:7.387200px;}
._7_c00418{width:9.324000px;}
.fc1_c00418{color:rgb(0,0,0);}
.fc0_c00418{color:rgb(32,31,30);}
.fs0_c00418{font-size:60.120000px;}
.fs1_c00418{font-size:72.000000px;}
.y0_c00418{bottom:0.000000px;}
.y5_c00418{bottom:57.360450px;}
.y4_c00418{bottom:78.060450px;}
.y24_c00418{bottom:120.000450px;}
.y23_c00418{bottom:151.050450px;}
.y22_c00418{bottom:193.980450px;}
.y21_c00418{bottom:225.120450px;}
.y20_c00418{bottom:256.170450px;}
.y1f_c00418{bottom:287.220450px;}
.y1e_c00418{bottom:318.270450px;}
.y1d_c00418{bottom:361.200450px;}
.y1c_c00418{bottom:392.340450px;}
.y1b_c00418{bottom:423.390450px;}
.y1a_c00418{bottom:454.440450px;}
.y19_c00418{bottom:485.490450px;}
.y18_c00418{bottom:516.540450px;}
.y17_c00418{bottom:547.590450px;}
.y16_c00418{bottom:578.640450px;}
.y15_c00418{bottom:609.690450px;}
.y14_c00418{bottom:652.620450px;}
.y13_c00418{bottom:683.760450px;}
.y12_c00418{bottom:714.810450px;}
.y11_c00418{bottom:745.860450px;}
.y10_c00418{bottom:788.880450px;}
.yf_c00418{bottom:820.020450px;}
.ye_c00418{bottom:851.070450px;}
.yd_c00418{bottom:882.120450px;}
.yc_c00418{bottom:913.170450px;}
.yb_c00418{bottom:944.220450px;}
.ya_c00418{bottom:987.150450px;}
.y9_c00418{bottom:1018.290450px;}
.y8_c00418{bottom:1049.340450px;}
.y7_c00418{bottom:1080.390450px;}
.y6_c00418{bottom:1111.440450px;}
.y3_c00418{bottom:1132.140450px;}
.y2_c00418{bottom:1165.441023px;}
.y1_c00418{bottom:1196.040600px;}
.h1_c00418{height:52.898555px;}
.h2_c00418{height:63.175781px;}
.h3_c00418{height:63.351562px;}
.h0_c00418{height:1263.000000px;}
.w1_c00418{width:892.500000px;}
.w0_c00418{width:892.830000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:127.620000px;}
.x2_c00418{left:738.450000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls19_c00418{letter-spacing:-2.880000pt;}
.ls13_c00418{letter-spacing:-0.217600pt;}
.ls18_c00418{letter-spacing:-0.121600pt;}
.ls15_c00418{letter-spacing:-0.102400pt;}
.lsf_c00418{letter-spacing:-0.090848pt;}
.ls11_c00418{letter-spacing:-0.064000pt;}
.ls17_c00418{letter-spacing:-0.051200pt;}
.ls14_c00418{letter-spacing:-0.032000pt;}
.ls12_c00418{letter-spacing:-0.025600pt;}
.ls16_c00418{letter-spacing:-0.012800pt;}
.ls1a_c00418{letter-spacing:-0.006400pt;}
.ls10_c00418{letter-spacing:0.000000pt;}
.ls0_c00418{letter-spacing:0.006400pt;}
.lsd_c00418{letter-spacing:0.012800pt;}
.ls1_c00418{letter-spacing:0.019200pt;}
.ls4_c00418{letter-spacing:0.025600pt;}
.ls2_c00418{letter-spacing:0.032000pt;}
.ls5_c00418{letter-spacing:0.038400pt;}
.ls3_c00418{letter-spacing:0.044800pt;}
.ls8_c00418{letter-spacing:0.051200pt;}
.ls9_c00418{letter-spacing:0.057600pt;}
.lsc_c00418{letter-spacing:0.064000pt;}
.lse_c00418{letter-spacing:0.070400pt;}
.ls7_c00418{letter-spacing:0.076800pt;}
.lsa_c00418{letter-spacing:0.083200pt;}
.lsb_c00418{letter-spacing:0.096000pt;}
.ls6_c00418{letter-spacing:0.121600pt;}
.ws1_c00418{word-spacing:0.000000pt;}
.ws0_c00418{word-spacing:0.171008pt;}
.ws2_c00418{word-spacing:3.808000pt;}
._9_c00418{margin-left:-4.249600pt;}
._8_c00418{margin-left:-3.225600pt;}
._6_c00418{margin-left:-2.176000pt;}
._1_c00418{margin-left:-0.934400pt;}
._0_c00418{width:0.919168pt;}
._3_c00418{width:2.534400pt;}
._4_c00418{width:3.520000pt;}
._2_c00418{width:5.120000pt;}
._5_c00418{width:6.566400pt;}
._7_c00418{width:8.288000pt;}
.fs0_c00418{font-size:53.440000pt;}
.fs1_c00418{font-size:64.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y5_c00418{bottom:50.987067pt;}
.y4_c00418{bottom:69.387067pt;}
.y24_c00418{bottom:106.667067pt;}
.y23_c00418{bottom:134.267067pt;}
.y22_c00418{bottom:172.427067pt;}
.y21_c00418{bottom:200.107067pt;}
.y20_c00418{bottom:227.707067pt;}
.y1f_c00418{bottom:255.307067pt;}
.y1e_c00418{bottom:282.907067pt;}
.y1d_c00418{bottom:321.067067pt;}
.y1c_c00418{bottom:348.747067pt;}
.y1b_c00418{bottom:376.347067pt;}
.y1a_c00418{bottom:403.947067pt;}
.y19_c00418{bottom:431.547067pt;}
.y18_c00418{bottom:459.147067pt;}
.y17_c00418{bottom:486.747067pt;}
.y16_c00418{bottom:514.347067pt;}
.y15_c00418{bottom:541.947067pt;}
.y14_c00418{bottom:580.107067pt;}
.y13_c00418{bottom:607.787067pt;}
.y12_c00418{bottom:635.387067pt;}
.y11_c00418{bottom:662.987067pt;}
.y10_c00418{bottom:701.227067pt;}
.yf_c00418{bottom:728.907067pt;}
.ye_c00418{bottom:756.507067pt;}
.yd_c00418{bottom:784.107067pt;}
.yc_c00418{bottom:811.707067pt;}
.yb_c00418{bottom:839.307067pt;}
.ya_c00418{bottom:877.467067pt;}
.y9_c00418{bottom:905.147067pt;}
.y8_c00418{bottom:932.747067pt;}
.y7_c00418{bottom:960.347067pt;}
.y6_c00418{bottom:987.947067pt;}
.y3_c00418{bottom:1006.347067pt;}
.y2_c00418{bottom:1035.947576pt;}
.y1_c00418{bottom:1063.147200pt;}
.h1_c00418{height:47.020937pt;}
.h2_c00418{height:56.156250pt;}
.h3_c00418{height:56.312500pt;}
.h0_c00418{height:1122.666667pt;}
.w1_c00418{width:793.333333pt;}
.w0_c00418{width:793.626667pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:113.440000pt;}
.x2_c00418{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.095703;font-style:normal;font-weight:normal;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_df3145c0f870a2665fbc3812.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.093262;font-style: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;}
.ls14_c00419{letter-spacing:-3.240000px;}
.ls16_c00419{letter-spacing:-0.720000px;}
.ls15_c00419{letter-spacing:-0.360000px;}
.lsc_c00419{letter-spacing:-0.048096px;}
.lse_c00419{letter-spacing:-0.043200px;}
.ls11_c00419{letter-spacing:-0.036000px;}
.ls13_c00419{letter-spacing:-0.028800px;}
.ls10_c00419{letter-spacing:-0.021600px;}
.ls12_c00419{letter-spacing:-0.014400px;}
.lsf_c00419{letter-spacing:-0.007200px;}
.lsd_c00419{letter-spacing:0.000000px;}
.ls6_c00419{letter-spacing:0.007200px;}
.ls3_c00419{letter-spacing:0.014400px;}
.ls2_c00419{letter-spacing:0.021600px;}
.lsa_c00419{letter-spacing:0.028800px;}
.ls0_c00419{letter-spacing:0.036000px;}
.ls4_c00419{letter-spacing:0.043200px;}
.ls8_c00419{letter-spacing:0.050400px;}
.ls9_c00419{letter-spacing:0.057600px;}
.ls5_c00419{letter-spacing:0.064800px;}
.ls1_c00419{letter-spacing:0.072000px;}
.ls7_c00419{letter-spacing:0.086400px;}
.lsb_c00419{letter-spacing:0.115200px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00419{word-spacing:0.000000px;}
.ws0_c00419{word-spacing:0.138276px;}
._b_c00419{margin-left:-4.334400px;}
._a_c00419{margin-left:-3.297600px;}
._8_c00419{margin-left:-2.203200px;}
._2_c00419{margin-left:-1.202400px;}
._5_c00419{width:1.288800px;}
._0_c00419{width:2.570400px;}
._1_c00419{width:4.032000px;}
._4_c00419{width:5.284800px;}
._3_c00419{width:6.465600px;}
._c_c00419{width:7.531200px;}
._d_c00419{width:8.625600px;}
._9_c00419{width:10.396800px;}
._6_c00419{width:11.865600px;}
._7_c00419{width:13.176000px;}
._f_c00419{width:21.067200px;}
._e_c00419{width:22.298400px;}
.fc0_c00419{color:rgb(0,0,0);}
.fs0_c00419{font-size:60.120000px;}
.fs1_c00419{font-size:72.000000px;}
.y0_c00419{bottom:0.000000px;}
.y6_c00419{bottom:57.360450px;}
.y5_c00419{bottom:78.060450px;}
.y24_c00419{bottom:175.890450px;}
.y23_c00419{bottom:207.030450px;}
.y22_c00419{bottom:238.080450px;}
.y21_c00419{bottom:269.130450px;}
.y20_c00419{bottom:312.060450px;}
.y1f_c00419{bottom:343.200450px;}
.y1e_c00419{bottom:374.250450px;}
.y1d_c00419{bottom:405.300450px;}
.y1c_c00419{bottom:436.350450px;}
.y1b_c00419{bottom:467.400450px;}
.y1a_c00419{bottom:498.450450px;}
.y19_c00419{bottom:541.380450px;}
.y18_c00419{bottom:572.520450px;}
.y17_c00419{bottom:603.570450px;}
.y16_c00419{bottom:634.620450px;}
.y15_c00419{bottom:665.670450px;}
.y14_c00419{bottom:696.720450px;}
.y13_c00419{bottom:739.650450px;}
.y12_c00419{bottom:770.790450px;}
.y11_c00419{bottom:801.840450px;}
.y10_c00419{bottom:832.890450px;}
.yf_c00419{bottom:875.910450px;}
.ye_c00419{bottom:907.050450px;}
.yd_c00419{bottom:938.100450px;}
.yc_c00419{bottom:969.150450px;}
.yb_c00419{bottom:1000.200450px;}
.ya_c00419{bottom:1031.160450px;}
.y9_c00419{bottom:1062.210450px;}
.y8_c00419{bottom:1093.260450px;}
.y7_c00419{bottom:1124.310450px;}
.y4_c00419{bottom:1144.380657px;}
.y3_c00419{bottom:1161.660648px;}
.y2_c00419{bottom:1178.850459px;}
.y1_c00419{bottom:1196.130450px;}
.h1_c00419{height:52.898555px;}
.h2_c00419{height:63.175781px;}
.h0_c00419{height:1263.000000px;}
.w1_c00419{width:892.500000px;}
.w0_c00419{width:892.830000px;}
.x0_c00419{left:0.000000px;}
.x4_c00419{left:127.620000px;}
.x1_c00419{left:649.620000px;}
.x3_c00419{left:738.450000px;}
.x2_c00419{left:765.450198px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls14_c00419{letter-spacing:-2.880000pt;}
.ls16_c00419{letter-spacing:-0.640000pt;}
.ls15_c00419{letter-spacing:-0.320000pt;}
.lsc_c00419{letter-spacing:-0.042752pt;}
.lse_c00419{letter-spacing:-0.038400pt;}
.ls11_c00419{letter-spacing:-0.032000pt;}
.ls13_c00419{letter-spacing:-0.025600pt;}
.ls10_c00419{letter-spacing:-0.019200pt;}
.ls12_c00419{letter-spacing:-0.012800pt;}
.lsf_c00419{letter-spacing:-0.006400pt;}
.lsd_c00419{letter-spacing:0.000000pt;}
.ls6_c00419{letter-spacing:0.006400pt;}
.ls3_c00419{letter-spacing:0.012800pt;}
.ls2_c00419{letter-spacing:0.019200pt;}
.lsa_c00419{letter-spacing:0.025600pt;}
.ls0_c00419{letter-spacing:0.032000pt;}
.ls4_c00419{letter-spacing:0.038400pt;}
.ls8_c00419{letter-spacing:0.044800pt;}
.ls9_c00419{letter-spacing:0.051200pt;}
.ls5_c00419{letter-spacing:0.057600pt;}
.ls1_c00419{letter-spacing:0.064000pt;}
.ls7_c00419{letter-spacing:0.076800pt;}
.lsb_c00419{letter-spacing:0.102400pt;}
.ws1_c00419{word-spacing:0.000000pt;}
.ws0_c00419{word-spacing:0.122912pt;}
._b_c00419{margin-left:-3.852800pt;}
._a_c00419{margin-left:-2.931200pt;}
._8_c00419{margin-left:-1.958400pt;}
._2_c00419{margin-left:-1.068800pt;}
._5_c00419{width:1.145600pt;}
._0_c00419{width:2.284800pt;}
._1_c00419{width:3.584000pt;}
._4_c00419{width:4.697600pt;}
._3_c00419{width:5.747200pt;}
._c_c00419{width:6.694400pt;}
._d_c00419{width:7.667200pt;}
._9_c00419{width:9.241600pt;}
._6_c00419{width:10.547200pt;}
._7_c00419{width:11.712000pt;}
._f_c00419{width:18.726400pt;}
._e_c00419{width:19.820800pt;}
.fs0_c00419{font-size:53.440000pt;}
.fs1_c00419{font-size:64.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y6_c00419{bottom:50.987067pt;}
.y5_c00419{bottom:69.387067pt;}
.y24_c00419{bottom:156.347067pt;}
.y23_c00419{bottom:184.027067pt;}
.y22_c00419{bottom:211.627067pt;}
.y21_c00419{bottom:239.227067pt;}
.y20_c00419{bottom:277.387067pt;}
.y1f_c00419{bottom:305.067067pt;}
.y1e_c00419{bottom:332.667067pt;}
.y1d_c00419{bottom:360.267067pt;}
.y1c_c00419{bottom:387.867067pt;}
.y1b_c00419{bottom:415.467067pt;}
.y1a_c00419{bottom:443.067067pt;}
.y19_c00419{bottom:481.227067pt;}
.y18_c00419{bottom:508.907067pt;}
.y17_c00419{bottom:536.507067pt;}
.y16_c00419{bottom:564.107067pt;}
.y15_c00419{bottom:591.707067pt;}
.y14_c00419{bottom:619.307067pt;}
.y13_c00419{bottom:657.467067pt;}
.y12_c00419{bottom:685.147067pt;}
.y11_c00419{bottom:712.747067pt;}
.y10_c00419{bottom:740.347067pt;}
.yf_c00419{bottom:778.587067pt;}
.ye_c00419{bottom:806.267067pt;}
.yd_c00419{bottom:833.867067pt;}
.yc_c00419{bottom:861.467067pt;}
.yb_c00419{bottom:889.067067pt;}
.ya_c00419{bottom:916.587067pt;}
.y9_c00419{bottom:944.187067pt;}
.y8_c00419{bottom:971.787067pt;}
.y7_c00419{bottom:999.387067pt;}
.y4_c00419{bottom:1017.227251pt;}
.y3_c00419{bottom:1032.587243pt;}
.y2_c00419{bottom:1047.867075pt;}
.y1_c00419{bottom:1063.227067pt;}
.h1_c00419{height:47.020937pt;}
.h2_c00419{height:56.156250pt;}
.h0_c00419{height:1122.666667pt;}
.w1_c00419{width:793.333333pt;}
.w0_c00419{width:793.626667pt;}
.x0_c00419{left:0.000000pt;}
.x4_c00419{left:113.440000pt;}
.x1_c00419{left:577.440000pt;}
.x3_c00419{left:656.400000pt;}
.x2_c00419{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.095703;font-style:normal;font-weight:normal;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_5aa51246d37a13d08520ce81.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_4429532e72ac28bf743b6500.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.104004;font-style: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;}
.ls10_c00420{letter-spacing:-0.102204px;}
.ls16_c00420{letter-spacing:-0.057600px;}
.ls15_c00420{letter-spacing:-0.036000px;}
.ls17_c00420{letter-spacing:-0.021600px;}
.ls13_c00420{letter-spacing:-0.014400px;}
.ls12_c00420{letter-spacing:-0.007200px;}
.ls11_c00420{letter-spacing:0.000000px;}
.ls8_c00420{letter-spacing:0.007200px;}
.ls7_c00420{letter-spacing:0.014400px;}
.ls2_c00420{letter-spacing:0.021600px;}
.ls0_c00420{letter-spacing:0.028800px;}
.ls9_c00420{letter-spacing:0.036000px;}
.ls5_c00420{letter-spacing:0.043200px;}
.ls6_c00420{letter-spacing:0.050400px;}
.lsb_c00420{letter-spacing:0.057600px;}
.ls3_c00420{letter-spacing:0.064800px;}
.ls4_c00420{letter-spacing:0.072000px;}
.lsd_c00420{letter-spacing:0.079200px;}
.lse_c00420{letter-spacing:0.083880px;}
.lsf_c00420{letter-spacing:0.086400px;}
.ls1_c00420{letter-spacing:0.093600px;}
.lsa_c00420{letter-spacing:0.100800px;}
.lsc_c00420{letter-spacing:0.108000px;}
.ls14_c00420{letter-spacing:9.000000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00420{word-spacing:-17.992800px;}
.ws2_c00420{word-spacing:0.000000px;}
.ws1_c00420{word-spacing:0.192384px;}
._a_c00420{margin-left:-9.666864px;}
._b_c00420{margin-left:-8.189136px;}
._6_c00420{margin-left:-3.823200px;}
._1_c00420{margin-left:-2.721600px;}
._2_c00420{margin-left:-1.108800px;}
._0_c00420{width:1.034064px;}
._13_c00420{width:2.044800px;}
._14_c00420{width:3.578400px;}
._7_c00420{width:4.644000px;}
._f_c00420{width:5.659200px;}
._c_c00420{width:6.811200px;}
._5_c00420{width:7.826400px;}
._4_c00420{width:9.244800px;}
._3_c00420{width:10.418400px;}
._12_c00420{width:11.570400px;}
._10_c00420{width:13.039200px;}
._11_c00420{width:14.169600px;}
._e_c00420{width:15.559200px;}
._d_c00420{width:16.869600px;}
._9_c00420{width:26.251200px;}
._8_c00420{width:27.302400px;}
.fc1_c00420{color:rgb(0,0,0);}
.fc0_c00420{color:rgb(32,31,30);}
.fs0_c00420{font-size:60.120000px;}
.fs1_c00420{font-size:72.000000px;}
.fs2_c00420{font-size:83.880000px;}
.y0_c00420{bottom:0.000000px;}
.y5_c00420{bottom:57.360450px;}
.y4_c00420{bottom:78.060450px;}
.y22_c00420{bottom:176.970450px;}
.y21_c00420{bottom:208.110450px;}
.y20_c00420{bottom:239.160450px;}
.y1f_c00420{bottom:270.210450px;}
.y1e_c00420{bottom:313.140450px;}
.y1d_c00420{bottom:344.280450px;}
.y1c_c00420{bottom:375.330450px;}
.y1b_c00420{bottom:406.380450px;}
.y1a_c00420{bottom:437.430450px;}
.y19_c00420{bottom:480.360450px;}
.y18_c00420{bottom:511.500450px;}
.y17_c00420{bottom:542.550450px;}
.y16_c00420{bottom:565.589739px;}
.y15_c00420{bottom:594.660450px;}
.y14_c00420{bottom:640.650450px;}
.y13_c00420{bottom:683.670450px;}
.y12_c00420{bottom:714.810450px;}
.y11_c00420{bottom:745.860450px;}
.y10_c00420{bottom:776.910450px;}
.yf_c00420{bottom:807.960450px;}
.ye_c00420{bottom:850.980450px;}
.yd_c00420{bottom:882.120450px;}
.yc_c00420{bottom:913.170450px;}
.yb_c00420{bottom:944.220450px;}
.ya_c00420{bottom:975.180450px;}
.y9_c00420{bottom:1006.230450px;}
.y8_c00420{bottom:1049.250450px;}
.y7_c00420{bottom:1080.390450px;}
.y6_c00420{bottom:1111.440450px;}
.y3_c00420{bottom:1132.140450px;}
.y2_c00420{bottom:1165.441023px;}
.y1_c00420{bottom:1196.040600px;}
.h1_c00420{height:52.898555px;}
.h2_c00420{height:63.175781px;}
.h4_c00420{height:63.351562px;}
.h3_c00420{height:74.500840px;}
.h0_c00420{height:1263.000000px;}
.w1_c00420{width:892.500000px;}
.w0_c00420{width:892.830000px;}
.x0_c00420{left:0.000000px;}
.x1_c00420{left:127.620000px;}
.x2_c00420{left:738.450000px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls10_c00420{letter-spacing:-0.090848pt;}
.ls16_c00420{letter-spacing:-0.051200pt;}
.ls15_c00420{letter-spacing:-0.032000pt;}
.ls17_c00420{letter-spacing:-0.019200pt;}
.ls13_c00420{letter-spacing:-0.012800pt;}
.ls12_c00420{letter-spacing:-0.006400pt;}
.ls11_c00420{letter-spacing:0.000000pt;}
.ls8_c00420{letter-spacing:0.006400pt;}
.ls7_c00420{letter-spacing:0.012800pt;}
.ls2_c00420{letter-spacing:0.019200pt;}
.ls0_c00420{letter-spacing:0.025600pt;}
.ls9_c00420{letter-spacing:0.032000pt;}
.ls5_c00420{letter-spacing:0.038400pt;}
.ls6_c00420{letter-spacing:0.044800pt;}
.lsb_c00420{letter-spacing:0.051200pt;}
.ls3_c00420{letter-spacing:0.057600pt;}
.ls4_c00420{letter-spacing:0.064000pt;}
.lsd_c00420{letter-spacing:0.070400pt;}
.lse_c00420{letter-spacing:0.074560pt;}
.lsf_c00420{letter-spacing:0.076800pt;}
.ls1_c00420{letter-spacing:0.083200pt;}
.lsa_c00420{letter-spacing:0.089600pt;}
.lsc_c00420{letter-spacing:0.096000pt;}
.ls14_c00420{letter-spacing:8.000000pt;}
.ws0_c00420{word-spacing:-15.993600pt;}
.ws2_c00420{word-spacing:0.000000pt;}
.ws1_c00420{word-spacing:0.171008pt;}
._a_c00420{margin-left:-8.592768pt;}
._b_c00420{margin-left:-7.279232pt;}
._6_c00420{margin-left:-3.398400pt;}
._1_c00420{margin-left:-2.419200pt;}
._2_c00420{margin-left:-0.985600pt;}
._0_c00420{width:0.919168pt;}
._13_c00420{width:1.817600pt;}
._14_c00420{width:3.180800pt;}
._7_c00420{width:4.128000pt;}
._f_c00420{width:5.030400pt;}
._c_c00420{width:6.054400pt;}
._5_c00420{width:6.956800pt;}
._4_c00420{width:8.217600pt;}
._3_c00420{width:9.260800pt;}
._12_c00420{width:10.284800pt;}
._10_c00420{width:11.590400pt;}
._11_c00420{width:12.595200pt;}
._e_c00420{width:13.830400pt;}
._d_c00420{width:14.995200pt;}
._9_c00420{width:23.334400pt;}
._8_c00420{width:24.268800pt;}
.fs0_c00420{font-size:53.440000pt;}
.fs1_c00420{font-size:64.000000pt;}
.fs2_c00420{font-size:74.560000pt;}
.y0_c00420{bottom:0.000000pt;}
.y5_c00420{bottom:50.987067pt;}
.y4_c00420{bottom:69.387067pt;}
.y22_c00420{bottom:157.307067pt;}
.y21_c00420{bottom:184.987067pt;}
.y20_c00420{bottom:212.587067pt;}
.y1f_c00420{bottom:240.187067pt;}
.y1e_c00420{bottom:278.347067pt;}
.y1d_c00420{bottom:306.027067pt;}
.y1c_c00420{bottom:333.627067pt;}
.y1b_c00420{bottom:361.227067pt;}
.y1a_c00420{bottom:388.827067pt;}
.y19_c00420{bottom:426.987067pt;}
.y18_c00420{bottom:454.667067pt;}
.y17_c00420{bottom:482.267067pt;}
.y16_c00420{bottom:502.746435pt;}
.y15_c00420{bottom:528.587067pt;}
.y14_c00420{bottom:569.467067pt;}
.y13_c00420{bottom:607.707067pt;}
.y12_c00420{bottom:635.387067pt;}
.y11_c00420{bottom:662.987067pt;}
.y10_c00420{bottom:690.587067pt;}
.yf_c00420{bottom:718.187067pt;}
.ye_c00420{bottom:756.427067pt;}
.yd_c00420{bottom:784.107067pt;}
.yc_c00420{bottom:811.707067pt;}
.yb_c00420{bottom:839.307067pt;}
.ya_c00420{bottom:866.827067pt;}
.y9_c00420{bottom:894.427067pt;}
.y8_c00420{bottom:932.667067pt;}
.y7_c00420{bottom:960.347067pt;}
.y6_c00420{bottom:987.947067pt;}
.y3_c00420{bottom:1006.347067pt;}
.y2_c00420{bottom:1035.947576pt;}
.y1_c00420{bottom:1063.147200pt;}
.h1_c00420{height:47.020937pt;}
.h2_c00420{height:56.156250pt;}
.h4_c00420{height:56.312500pt;}
.h3_c00420{height:66.222969pt;}
.h0_c00420{height:1122.666667pt;}
.w1_c00420{width:793.333333pt;}
.w0_c00420{width:793.626667pt;}
.x0_c00420{left:0.000000pt;}
.x1_c00420{left:113.440000pt;}
.x2_c00420{left:656.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_c00421 {
    display:none;
  }
  .loading-indicator_c00421.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00421 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c00421 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c00421" -> "#page-container .classname_c00421")
 */
.pf_c00421 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00421 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00421 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c00421 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c00421 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00421 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00421 {overflow:visible;}
  }
}
.c_c00421 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00421 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c00421:after { /* webkit #35443 */
  content: '';
}
.t_c00421:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00421 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c00421 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c00421 { /* info for Javascript */
  display:none;
}
.l_c00421 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00421 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00421 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00421:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00421{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00421;src:url('chunks/assets/font_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_0869d6de0b2998a2c36adf10.woff2')format("woff");}.ff2_c00421{font-family:ff2_c00421;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00421{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.lsd_c00421{letter-spacing:-0.048096px;}
.ls12_c00421{letter-spacing:-0.043200px;}
.ls11_c00421{letter-spacing:-0.036000px;}
.lsf_c00421{letter-spacing:-0.028800px;}
.ls10_c00421{letter-spacing:-0.007200px;}
.lse_c00421{letter-spacing:0.000000px;}
.ls9_c00421{letter-spacing:0.007200px;}
.ls4_c00421{letter-spacing:0.014400px;}
.ls7_c00421{letter-spacing:0.021600px;}
.ls2_c00421{letter-spacing:0.028800px;}
.ls0_c00421{letter-spacing:0.036000px;}
.ls3_c00421{letter-spacing:0.043200px;}
.ls6_c00421{letter-spacing:0.050400px;}
.lsc_c00421{letter-spacing:0.057600px;}
.ls8_c00421{letter-spacing:0.064800px;}
.ls5_c00421{letter-spacing:0.072000px;}
.lsa_c00421{letter-spacing:0.086400px;}
.ls1_c00421{letter-spacing:0.100800px;}
.lsb_c00421{letter-spacing:0.115200px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00421{word-spacing:0.000000px;}
.ws0_c00421{word-spacing:0.138276px;}
._2_c00421{margin-left:-3.636000px;}
._3_c00421{margin-left:-2.433600px;}
._1_c00421{margin-left:-1.317600px;}
._6_c00421{width:1.324800px;}
._4_c00421{width:2.851200px;}
._8_c00421{width:4.125600px;}
._b_c00421{width:6.789600px;}
._9_c00421{width:8.208000px;}
._0_c00421{width:9.684000px;}
._c_c00421{width:10.886400px;}
._5_c00421{width:12.240000px;}
._7_c00421{width:13.348800px;}
._a_c00421{width:15.775200px;}
.fc0_c00421{color:rgb(0,0,0);}
.fs0_c00421{font-size:60.120000px;}
.fs1_c00421{font-size:72.000000px;}
.y0_c00421{bottom:0.000000px;}
.y6_c00421{bottom:57.360450px;}
.y5_c00421{bottom:78.060450px;}
.y25_c00421{bottom:120.900450px;}
.y24_c00421{bottom:151.950450px;}
.y23_c00421{bottom:183.000450px;}
.y22_c00421{bottom:226.020450px;}
.y21_c00421{bottom:257.070450px;}
.y20_c00421{bottom:288.120450px;}
.y1f_c00421{bottom:319.170450px;}
.y1e_c00421{bottom:350.220450px;}
.y1d_c00421{bottom:393.240450px;}
.y1c_c00421{bottom:424.380450px;}
.y1b_c00421{bottom:455.430450px;}
.y1a_c00421{bottom:498.360450px;}
.y19_c00421{bottom:529.500450px;}
.y18_c00421{bottom:560.550450px;}
.y17_c00421{bottom:591.600450px;}
.y16_c00421{bottom:634.530450px;}
.y15_c00421{bottom:665.670450px;}
.y14_c00421{bottom:696.720450px;}
.y13_c00421{bottom:727.770450px;}
.y12_c00421{bottom:758.820450px;}
.y11_c00421{bottom:801.750450px;}
.y10_c00421{bottom:832.890450px;}
.yf_c00421{bottom:863.940450px;}
.ye_c00421{bottom:894.990450px;}
.yd_c00421{bottom:926.040450px;}
.yc_c00421{bottom:957.090450px;}
.yb_c00421{bottom:1000.110450px;}
.ya_c00421{bottom:1031.160450px;}
.y9_c00421{bottom:1062.210450px;}
.y8_c00421{bottom:1093.260450px;}
.y7_c00421{bottom:1124.310450px;}
.y4_c00421{bottom:1144.380657px;}
.y3_c00421{bottom:1161.660648px;}
.y2_c00421{bottom:1178.850459px;}
.y1_c00421{bottom:1196.130450px;}
.h1_c00421{height:52.898555px;}
.h2_c00421{height:63.175781px;}
.h0_c00421{height:1263.000000px;}
.w1_c00421{width:892.500000px;}
.w0_c00421{width:892.830000px;}
.x0_c00421{left:0.000000px;}
.x4_c00421{left:127.620000px;}
.x1_c00421{left:649.620000px;}
.x3_c00421{left:738.450000px;}
.x2_c00421{left:765.450198px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.lsd_c00421{letter-spacing:-0.042752pt;}
.ls12_c00421{letter-spacing:-0.038400pt;}
.ls11_c00421{letter-spacing:-0.032000pt;}
.lsf_c00421{letter-spacing:-0.025600pt;}
.ls10_c00421{letter-spacing:-0.006400pt;}
.lse_c00421{letter-spacing:0.000000pt;}
.ls9_c00421{letter-spacing:0.006400pt;}
.ls4_c00421{letter-spacing:0.012800pt;}
.ls7_c00421{letter-spacing:0.019200pt;}
.ls2_c00421{letter-spacing:0.025600pt;}
.ls0_c00421{letter-spacing:0.032000pt;}
.ls3_c00421{letter-spacing:0.038400pt;}
.ls6_c00421{letter-spacing:0.044800pt;}
.lsc_c00421{letter-spacing:0.051200pt;}
.ls8_c00421{letter-spacing:0.057600pt;}
.ls5_c00421{letter-spacing:0.064000pt;}
.lsa_c00421{letter-spacing:0.076800pt;}
.ls1_c00421{letter-spacing:0.089600pt;}
.lsb_c00421{letter-spacing:0.102400pt;}
.ws1_c00421{word-spacing:0.000000pt;}
.ws0_c00421{word-spacing:0.122912pt;}
._2_c00421{margin-left:-3.232000pt;}
._3_c00421{margin-left:-2.163200pt;}
._1_c00421{margin-left:-1.171200pt;}
._6_c00421{width:1.177600pt;}
._4_c00421{width:2.534400pt;}
._8_c00421{width:3.667200pt;}
._b_c00421{width:6.035200pt;}
._9_c00421{width:7.296000pt;}
._0_c00421{width:8.608000pt;}
._c_c00421{width:9.676800pt;}
._5_c00421{width:10.880000pt;}
._7_c00421{width:11.865600pt;}
._a_c00421{width:14.022400pt;}
.fs0_c00421{font-size:53.440000pt;}
.fs1_c00421{font-size:64.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y6_c00421{bottom:50.987067pt;}
.y5_c00421{bottom:69.387067pt;}
.y25_c00421{bottom:107.467067pt;}
.y24_c00421{bottom:135.067067pt;}
.y23_c00421{bottom:162.667067pt;}
.y22_c00421{bottom:200.907067pt;}
.y21_c00421{bottom:228.507067pt;}
.y20_c00421{bottom:256.107067pt;}
.y1f_c00421{bottom:283.707067pt;}
.y1e_c00421{bottom:311.307067pt;}
.y1d_c00421{bottom:349.547067pt;}
.y1c_c00421{bottom:377.227067pt;}
.y1b_c00421{bottom:404.827067pt;}
.y1a_c00421{bottom:442.987067pt;}
.y19_c00421{bottom:470.667067pt;}
.y18_c00421{bottom:498.267067pt;}
.y17_c00421{bottom:525.867067pt;}
.y16_c00421{bottom:564.027067pt;}
.y15_c00421{bottom:591.707067pt;}
.y14_c00421{bottom:619.307067pt;}
.y13_c00421{bottom:646.907067pt;}
.y12_c00421{bottom:674.507067pt;}
.y11_c00421{bottom:712.667067pt;}
.y10_c00421{bottom:740.347067pt;}
.yf_c00421{bottom:767.947067pt;}
.ye_c00421{bottom:795.547067pt;}
.yd_c00421{bottom:823.147067pt;}
.yc_c00421{bottom:850.747067pt;}
.yb_c00421{bottom:888.987067pt;}
.ya_c00421{bottom:916.587067pt;}
.y9_c00421{bottom:944.187067pt;}
.y8_c00421{bottom:971.787067pt;}
.y7_c00421{bottom:999.387067pt;}
.y4_c00421{bottom:1017.227251pt;}
.y3_c00421{bottom:1032.587243pt;}
.y2_c00421{bottom:1047.867075pt;}
.y1_c00421{bottom:1063.227067pt;}
.h1_c00421{height:47.020937pt;}
.h2_c00421{height:56.156250pt;}
.h0_c00421{height:1122.666667pt;}
.w1_c00421{width:793.333333pt;}
.w0_c00421{width:793.626667pt;}
.x0_c00421{left:0.000000pt;}
.x4_c00421{left:113.440000pt;}
.x1_c00421{left:577.440000pt;}
.x3_c00421{left:656.400000pt;}
.x2_c00421{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.095703;font-style:normal;font-weight:normal;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_b40ad95313a0924229134e4e.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:1.093262;font-style:normal;font-weight:normal;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_5009e4282d6843bf4f004684.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.104004;font-style: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;}
.ls12_c00422{letter-spacing:-0.102204px;}
.ls14_c00422{letter-spacing:-0.028800px;}
.ls13_c00422{letter-spacing:0.000000px;}
.lsd_c00422{letter-spacing:0.007200px;}
.ls3_c00422{letter-spacing:0.014400px;}
.ls9_c00422{letter-spacing:0.021600px;}
.ls2_c00422{letter-spacing:0.028800px;}
.lse_c00422{letter-spacing:0.033552px;}
.ls0_c00422{letter-spacing:0.036000px;}
.ls5_c00422{letter-spacing:0.043200px;}
.ls7_c00422{letter-spacing:0.050328px;}
.ls4_c00422{letter-spacing:0.050400px;}
.lsc_c00422{letter-spacing:0.057600px;}
.ls10_c00422{letter-spacing:0.064800px;}
.ls11_c00422{letter-spacing:0.072000px;}
.ls8_c00422{letter-spacing:0.075492px;}
.lsa_c00422{letter-spacing:0.079200px;}
.ls1_c00422{letter-spacing:0.086400px;}
.lsf_c00422{letter-spacing:0.092268px;}
.ls6_c00422{letter-spacing:0.093600px;}
.lsb_c00422{letter-spacing:0.100800px;}
.ls15_c00422{letter-spacing:5.760000px;}
.ls16_c00422{letter-spacing:6.120000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00422{word-spacing:0.000000px;}
.ws0_c00422{word-spacing:0.192384px;}
._c_c00422{margin-left:-6.732000px;}
._b_c00422{margin-left:-5.709600px;}
._d_c00422{margin-left:-4.104000px;}
._6_c00422{margin-left:-2.534400px;}
._4_c00422{margin-left:-1.368000px;}
._0_c00422{width:1.034064px;}
._1_c00422{width:2.966400px;}
._2_c00422{width:4.161600px;}
._5_c00422{width:6.069600px;}
._e_c00422{width:7.826400px;}
._3_c00422{width:8.971200px;}
._7_c00422{width:10.418400px;}
._8_c00422{width:14.407200px;}
._9_c00422{width:16.020000px;}
._a_c00422{width:23.371200px;}
.fc1_c00422{color:rgb(0,0,0);}
.fc0_c00422{color:rgb(32,31,30);}
.fs0_c00422{font-size:60.120000px;}
.fs1_c00422{font-size:72.000000px;}
.fs2_c00422{font-size:83.880000px;}
.y0_c00422{bottom:0.000000px;}
.y5_c00422{bottom:57.360450px;}
.y4_c00422{bottom:78.060450px;}
.y24_c00422{bottom:125.220450px;}
.y23_c00422{bottom:156.270450px;}
.y22_c00422{bottom:187.320450px;}
.y21_c00422{bottom:218.370450px;}
.y20_c00422{bottom:249.420450px;}
.y1f_c00422{bottom:280.470450px;}
.y1e_c00422{bottom:311.520450px;}
.y1d_c00422{bottom:342.570450px;}
.y1c_c00422{bottom:373.620450px;}
.y1b_c00422{bottom:407.820450px;}
.y1a_c00422{bottom:430.950600px;}
.y19_c00422{bottom:476.940450px;}
.y18_c00422{bottom:508.080450px;}
.y17_c00422{bottom:539.130450px;}
.y16_c00422{bottom:570.180450px;}
.y15_c00422{bottom:601.230450px;}
.y14_c00422{bottom:632.280450px;}
.y13_c00422{bottom:663.330450px;}
.y12_c00422{bottom:694.380450px;}
.y11_c00422{bottom:725.430450px;}
.y10_c00422{bottom:759.720450px;}
.yf_c00422{bottom:792.930450px;}
.ye_c00422{bottom:838.920450px;}
.yd_c00422{bottom:882.030450px;}
.yc_c00422{bottom:913.170450px;}
.yb_c00422{bottom:944.220450px;}
.ya_c00422{bottom:975.180450px;}
.y9_c00422{bottom:1006.230450px;}
.y8_c00422{bottom:1049.250450px;}
.y7_c00422{bottom:1080.390450px;}
.y6_c00422{bottom:1111.440450px;}
.y3_c00422{bottom:1132.140450px;}
.y2_c00422{bottom:1165.441023px;}
.y1_c00422{bottom:1196.040600px;}
.h1_c00422{height:52.898555px;}
.h2_c00422{height:63.175781px;}
.h3_c00422{height:74.500840px;}
.h0_c00422{height:1263.000000px;}
.w1_c00422{width:892.500000px;}
.w0_c00422{width:892.830000px;}
.x0_c00422{left:0.000000px;}
.x1_c00422{left:127.620000px;}
.x2_c00422{left:738.450000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls12_c00422{letter-spacing:-0.090848pt;}
.ls14_c00422{letter-spacing:-0.025600pt;}
.ls13_c00422{letter-spacing:0.000000pt;}
.lsd_c00422{letter-spacing:0.006400pt;}
.ls3_c00422{letter-spacing:0.012800pt;}
.ls9_c00422{letter-spacing:0.019200pt;}
.ls2_c00422{letter-spacing:0.025600pt;}
.lse_c00422{letter-spacing:0.029824pt;}
.ls0_c00422{letter-spacing:0.032000pt;}
.ls5_c00422{letter-spacing:0.038400pt;}
.ls7_c00422{letter-spacing:0.044736pt;}
.ls4_c00422{letter-spacing:0.044800pt;}
.lsc_c00422{letter-spacing:0.051200pt;}
.ls10_c00422{letter-spacing:0.057600pt;}
.ls11_c00422{letter-spacing:0.064000pt;}
.ls8_c00422{letter-spacing:0.067104pt;}
.lsa_c00422{letter-spacing:0.070400pt;}
.ls1_c00422{letter-spacing:0.076800pt;}
.lsf_c00422{letter-spacing:0.082016pt;}
.ls6_c00422{letter-spacing:0.083200pt;}
.lsb_c00422{letter-spacing:0.089600pt;}
.ls15_c00422{letter-spacing:5.120000pt;}
.ls16_c00422{letter-spacing:5.440000pt;}
.ws1_c00422{word-spacing:0.000000pt;}
.ws0_c00422{word-spacing:0.171008pt;}
._c_c00422{margin-left:-5.984000pt;}
._b_c00422{margin-left:-5.075200pt;}
._d_c00422{margin-left:-3.648000pt;}
._6_c00422{margin-left:-2.252800pt;}
._4_c00422{margin-left:-1.216000pt;}
._0_c00422{width:0.919168pt;}
._1_c00422{width:2.636800pt;}
._2_c00422{width:3.699200pt;}
._5_c00422{width:5.395200pt;}
._e_c00422{width:6.956800pt;}
._3_c00422{width:7.974400pt;}
._7_c00422{width:9.260800pt;}
._8_c00422{width:12.806400pt;}
._9_c00422{width:14.240000pt;}
._a_c00422{width:20.774400pt;}
.fs0_c00422{font-size:53.440000pt;}
.fs1_c00422{font-size:64.000000pt;}
.fs2_c00422{font-size:74.560000pt;}
.y0_c00422{bottom:0.000000pt;}
.y5_c00422{bottom:50.987067pt;}
.y4_c00422{bottom:69.387067pt;}
.y24_c00422{bottom:111.307067pt;}
.y23_c00422{bottom:138.907067pt;}
.y22_c00422{bottom:166.507067pt;}
.y21_c00422{bottom:194.107067pt;}
.y20_c00422{bottom:221.707067pt;}
.y1f_c00422{bottom:249.307067pt;}
.y1e_c00422{bottom:276.907067pt;}
.y1d_c00422{bottom:304.507067pt;}
.y1c_c00422{bottom:332.107067pt;}
.y1b_c00422{bottom:362.507067pt;}
.y1a_c00422{bottom:383.067200pt;}
.y19_c00422{bottom:423.947067pt;}
.y18_c00422{bottom:451.627067pt;}
.y17_c00422{bottom:479.227067pt;}
.y16_c00422{bottom:506.827067pt;}
.y15_c00422{bottom:534.427067pt;}
.y14_c00422{bottom:562.027067pt;}
.y13_c00422{bottom:589.627067pt;}
.y12_c00422{bottom:617.227067pt;}
.y11_c00422{bottom:644.827067pt;}
.y10_c00422{bottom:675.307067pt;}
.yf_c00422{bottom:704.827067pt;}
.ye_c00422{bottom:745.707067pt;}
.yd_c00422{bottom:784.027067pt;}
.yc_c00422{bottom:811.707067pt;}
.yb_c00422{bottom:839.307067pt;}
.ya_c00422{bottom:866.827067pt;}
.y9_c00422{bottom:894.427067pt;}
.y8_c00422{bottom:932.667067pt;}
.y7_c00422{bottom:960.347067pt;}
.y6_c00422{bottom:987.947067pt;}
.y3_c00422{bottom:1006.347067pt;}
.y2_c00422{bottom:1035.947576pt;}
.y1_c00422{bottom:1063.147200pt;}
.h1_c00422{height:47.020937pt;}
.h2_c00422{height:56.156250pt;}
.h3_c00422{height:66.222969pt;}
.h0_c00422{height:1122.666667pt;}
.w1_c00422{width:793.333333pt;}
.w0_c00422{width:793.626667pt;}
.x0_c00422{left:0.000000pt;}
.x1_c00422{left:113.440000pt;}
.x2_c00422{left:656.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_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_671466c694ed36cb9a0a850d.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.095703;font-style:normal;font-weight:normal;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_dfe9c365378aab09f80c463f.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.093262;font-style: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;}
.ls12_c00423{letter-spacing:-0.360000px;}
.lsf_c00423{letter-spacing:-0.086400px;}
.ls13_c00423{letter-spacing:-0.064800px;}
.lsc_c00423{letter-spacing:-0.048096px;}
.ls10_c00423{letter-spacing:-0.036000px;}
.lse_c00423{letter-spacing:-0.014400px;}
.lsd_c00423{letter-spacing:0.000000px;}
.ls7_c00423{letter-spacing:0.007200px;}
.ls2_c00423{letter-spacing:0.014400px;}
.ls9_c00423{letter-spacing:0.021600px;}
.ls4_c00423{letter-spacing:0.028800px;}
.ls5_c00423{letter-spacing:0.036000px;}
.ls3_c00423{letter-spacing:0.043200px;}
.ls1_c00423{letter-spacing:0.050400px;}
.ls0_c00423{letter-spacing:0.057600px;}
.ls8_c00423{letter-spacing:0.064800px;}
.lsa_c00423{letter-spacing:0.086400px;}
.ls6_c00423{letter-spacing:0.100800px;}
.lsb_c00423{letter-spacing:0.122400px;}
.ls11_c00423{letter-spacing:2.880000px;}
.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;}
}
.ws4_c00423{word-spacing:-0.388800px;}
.ws1_c00423{word-spacing:0.000000px;}
.ws0_c00423{word-spacing:0.138276px;}
.ws2_c00423{word-spacing:2.822400px;}
.ws3_c00423{word-spacing:3.038400px;}
._7_c00423{margin-left:-4.809600px;}
._2_c00423{margin-left:-3.268800px;}
._5_c00423{margin-left:-2.224800px;}
._0_c00423{margin-left:-1.137600px;}
._3_c00423{width:1.180800px;}
._1_c00423{width:2.476800px;}
._b_c00423{width:3.600000px;}
._8_c00423{width:5.176800px;}
._9_c00423{width:6.472800px;}
._6_c00423{width:8.632800px;}
._a_c00423{width:10.080000px;}
._4_c00423{width:19.440000px;}
.fc0_c00423{color:rgb(0,0,0);}
.fs0_c00423{font-size:60.120000px;}
.fs1_c00423{font-size:72.000000px;}
.y0_c00423{bottom:0.000000px;}
.y6_c00423{bottom:57.360450px;}
.y5_c00423{bottom:78.060450px;}
.y23_c00423{bottom:158.970450px;}
.y22_c00423{bottom:201.990450px;}
.y21_c00423{bottom:245.010450px;}
.y20_c00423{bottom:288.030450px;}
.y1f_c00423{bottom:331.140450px;}
.y1e_c00423{bottom:362.280450px;}
.y1d_c00423{bottom:393.330450px;}
.y1c_c00423{bottom:424.380450px;}
.y1b_c00423{bottom:455.430450px;}
.y1a_c00423{bottom:498.360450px;}
.y19_c00423{bottom:529.500450px;}
.y18_c00423{bottom:560.550450px;}
.y17_c00423{bottom:591.600450px;}
.y16_c00423{bottom:622.650450px;}
.y15_c00423{bottom:665.580450px;}
.y14_c00423{bottom:696.720450px;}
.y13_c00423{bottom:727.770450px;}
.y12_c00423{bottom:758.820450px;}
.y11_c00423{bottom:801.750450px;}
.y10_c00423{bottom:832.890450px;}
.yf_c00423{bottom:863.940450px;}
.ye_c00423{bottom:894.990450px;}
.yd_c00423{bottom:926.040450px;}
.yc_c00423{bottom:969.060450px;}
.yb_c00423{bottom:1000.200450px;}
.ya_c00423{bottom:1031.160450px;}
.y9_c00423{bottom:1062.210450px;}
.y8_c00423{bottom:1093.260450px;}
.y7_c00423{bottom:1124.310450px;}
.y4_c00423{bottom:1144.380657px;}
.y3_c00423{bottom:1161.660648px;}
.y2_c00423{bottom:1178.850459px;}
.y1_c00423{bottom:1196.130450px;}
.h1_c00423{height:52.898555px;}
.h2_c00423{height:63.175781px;}
.h3_c00423{height:63.351562px;}
.h0_c00423{height:1263.000000px;}
.w1_c00423{width:892.500000px;}
.w0_c00423{width:892.830000px;}
.x0_c00423{left:0.000000px;}
.x4_c00423{left:127.620000px;}
.x1_c00423{left:649.620000px;}
.x3_c00423{left:738.450000px;}
.x2_c00423{left:765.450198px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls12_c00423{letter-spacing:-0.320000pt;}
.lsf_c00423{letter-spacing:-0.076800pt;}
.ls13_c00423{letter-spacing:-0.057600pt;}
.lsc_c00423{letter-spacing:-0.042752pt;}
.ls10_c00423{letter-spacing:-0.032000pt;}
.lse_c00423{letter-spacing:-0.012800pt;}
.lsd_c00423{letter-spacing:0.000000pt;}
.ls7_c00423{letter-spacing:0.006400pt;}
.ls2_c00423{letter-spacing:0.012800pt;}
.ls9_c00423{letter-spacing:0.019200pt;}
.ls4_c00423{letter-spacing:0.025600pt;}
.ls5_c00423{letter-spacing:0.032000pt;}
.ls3_c00423{letter-spacing:0.038400pt;}
.ls1_c00423{letter-spacing:0.044800pt;}
.ls0_c00423{letter-spacing:0.051200pt;}
.ls8_c00423{letter-spacing:0.057600pt;}
.lsa_c00423{letter-spacing:0.076800pt;}
.ls6_c00423{letter-spacing:0.089600pt;}
.lsb_c00423{letter-spacing:0.108800pt;}
.ls11_c00423{letter-spacing:2.560000pt;}
.ws4_c00423{word-spacing:-0.345600pt;}
.ws1_c00423{word-spacing:0.000000pt;}
.ws0_c00423{word-spacing:0.122912pt;}
.ws2_c00423{word-spacing:2.508800pt;}
.ws3_c00423{word-spacing:2.700800pt;}
._7_c00423{margin-left:-4.275200pt;}
._2_c00423{margin-left:-2.905600pt;}
._5_c00423{margin-left:-1.977600pt;}
._0_c00423{margin-left:-1.011200pt;}
._3_c00423{width:1.049600pt;}
._1_c00423{width:2.201600pt;}
._b_c00423{width:3.200000pt;}
._8_c00423{width:4.601600pt;}
._9_c00423{width:5.753600pt;}
._6_c00423{width:7.673600pt;}
._a_c00423{width:8.960000pt;}
._4_c00423{width:17.280000pt;}
.fs0_c00423{font-size:53.440000pt;}
.fs1_c00423{font-size:64.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y6_c00423{bottom:50.987067pt;}
.y5_c00423{bottom:69.387067pt;}
.y23_c00423{bottom:141.307067pt;}
.y22_c00423{bottom:179.547067pt;}
.y21_c00423{bottom:217.787067pt;}
.y20_c00423{bottom:256.027067pt;}
.y1f_c00423{bottom:294.347067pt;}
.y1e_c00423{bottom:322.027067pt;}
.y1d_c00423{bottom:349.627067pt;}
.y1c_c00423{bottom:377.227067pt;}
.y1b_c00423{bottom:404.827067pt;}
.y1a_c00423{bottom:442.987067pt;}
.y19_c00423{bottom:470.667067pt;}
.y18_c00423{bottom:498.267067pt;}
.y17_c00423{bottom:525.867067pt;}
.y16_c00423{bottom:553.467067pt;}
.y15_c00423{bottom:591.627067pt;}
.y14_c00423{bottom:619.307067pt;}
.y13_c00423{bottom:646.907067pt;}
.y12_c00423{bottom:674.507067pt;}
.y11_c00423{bottom:712.667067pt;}
.y10_c00423{bottom:740.347067pt;}
.yf_c00423{bottom:767.947067pt;}
.ye_c00423{bottom:795.547067pt;}
.yd_c00423{bottom:823.147067pt;}
.yc_c00423{bottom:861.387067pt;}
.yb_c00423{bottom:889.067067pt;}
.ya_c00423{bottom:916.587067pt;}
.y9_c00423{bottom:944.187067pt;}
.y8_c00423{bottom:971.787067pt;}
.y7_c00423{bottom:999.387067pt;}
.y4_c00423{bottom:1017.227251pt;}
.y3_c00423{bottom:1032.587243pt;}
.y2_c00423{bottom:1047.867075pt;}
.y1_c00423{bottom:1063.227067pt;}
.h1_c00423{height:47.020937pt;}
.h2_c00423{height:56.156250pt;}
.h3_c00423{height:56.312500pt;}
.h0_c00423{height:1122.666667pt;}
.w1_c00423{width:793.333333pt;}
.w0_c00423{width:793.626667pt;}
.x0_c00423{left:0.000000pt;}
.x4_c00423{left:113.440000pt;}
.x1_c00423{left:577.440000pt;}
.x3_c00423{left:656.400000pt;}
.x2_c00423{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43ca6f5e9f875336df650026.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.095703;font-style:normal;font-weight:normal;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_cd4b02e1db522bb91404f286.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:1.093262;font-style: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;}
.ls14_c00424{letter-spacing:-0.180000px;}
.lsc_c00424{letter-spacing:-0.102204px;}
.ls16_c00424{letter-spacing:-0.079200px;}
.ls15_c00424{letter-spacing:-0.064800px;}
.ls11_c00424{letter-spacing:-0.057600px;}
.ls12_c00424{letter-spacing:-0.043200px;}
.ls13_c00424{letter-spacing:-0.036000px;}
.ls17_c00424{letter-spacing:-0.028800px;}
.ls10_c00424{letter-spacing:-0.021600px;}
.lsf_c00424{letter-spacing:-0.014400px;}
.lse_c00424{letter-spacing:-0.005400px;}
.lsd_c00424{letter-spacing:0.000000px;}
.ls3_c00424{letter-spacing:0.007200px;}
.ls6_c00424{letter-spacing:0.014400px;}
.ls0_c00424{letter-spacing:0.016200px;}
.ls8_c00424{letter-spacing:0.021600px;}
.lsa_c00424{letter-spacing:0.028800px;}
.ls7_c00424{letter-spacing:0.036000px;}
.ls5_c00424{letter-spacing:0.043200px;}
.ls2_c00424{letter-spacing:0.050400px;}
.ls4_c00424{letter-spacing:0.057600px;}
.lsb_c00424{letter-spacing:0.064800px;}
.ls1_c00424{letter-spacing:0.075600px;}
.ls9_c00424{letter-spacing:0.086400px;}
.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:-18.000000px;}
.ws2_c00424{word-spacing:0.000000px;}
.ws1_c00424{word-spacing:0.192384px;}
.ws5_c00424{word-spacing:6.120000px;}
.ws4_c00424{word-spacing:13.483800px;}
.ws3_c00424{word-spacing:13.505400px;}
._c_c00424{margin-left:-4.989600px;}
._6_c00424{margin-left:-3.643200px;}
._d_c00424{margin-left:-2.332800px;}
._1_c00424{margin-left:-1.306800px;}
._0_c00424{width:1.034064px;}
._4_c00424{width:2.136672px;}
._5_c00424{width:3.542400px;}
._9_c00424{width:5.407200px;}
._a_c00424{width:6.458400px;}
._8_c00424{width:7.768800px;}
._7_c00424{width:9.021600px;}
._b_c00424{width:10.785600px;}
._2_c00424{width:666.360000px;}
._3_c00424{width:1074.960000px;}
.fc2_c00424{color:rgb(68,84,106);}
.fc1_c00424{color:rgb(0,0,0);}
.fc0_c00424{color:rgb(32,31,30);}
.fs2_c00424{font-size:54.000000px;}
.fs0_c00424{font-size:60.120000px;}
.fs1_c00424{font-size:72.000000px;}
.y0_c00424{bottom:0.000000px;}
.y5_c00424{bottom:57.360450px;}
.y4_c00424{bottom:78.060450px;}
.y20_c00424{bottom:126.930450px;}
.y1f_c00424{bottom:169.950450px;}
.y1e_c00424{bottom:213.060450px;}
.y1d_c00424{bottom:244.200450px;}
.y1c_c00424{bottom:275.250450px;}
.y1b_c00424{bottom:306.300450px;}
.y1a_c00424{bottom:337.350450px;}
.y19_c00424{bottom:368.400450px;}
.y18_c00424{bottom:399.450450px;}
.y17_c00424{bottom:430.410450px;}
.y16_c00424{bottom:461.460450px;}
.y15_c00424{bottom:492.510450px;}
.y14_c00424{bottom:535.530450px;}
.y13_c00424{bottom:566.670450px;}
.y12_c00424{bottom:597.720450px;}
.y11_c00424{bottom:640.650450px;}
.y10_c00424{bottom:671.790450px;}
.yf_c00424{bottom:702.840450px;}
.ye_c00424{bottom:733.890450px;}
.yd_c00424{bottom:764.940450px;}
.yc_c00424{bottom:795.990450px;}
.yb_c00424{bottom:827.040450px;}
.ya_c00424{bottom:858.090450px;}
.y9_c00424{bottom:901.020450px;}
.y8_c00424{bottom:940.080450px;}
.y7_c00424{bottom:1100.190900px;}
.y6_c00424{bottom:1115.760450px;}
.y3_c00424{bottom:1132.140450px;}
.y2_c00424{bottom:1165.441023px;}
.y1_c00424{bottom:1196.040600px;}
.h3_c00424{height:47.513672px;}
.h1_c00424{height:52.898555px;}
.h2_c00424{height:63.175781px;}
.h4_c00424{height:63.351562px;}
.h0_c00424{height:1263.000000px;}
.w1_c00424{width:892.500000px;}
.w0_c00424{width:892.830000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:127.620000px;}
.x3_c00424{left:264.870000px;}
.x2_c00424{left:738.450000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls14_c00424{letter-spacing:-0.160000pt;}
.lsc_c00424{letter-spacing:-0.090848pt;}
.ls16_c00424{letter-spacing:-0.070400pt;}
.ls15_c00424{letter-spacing:-0.057600pt;}
.ls11_c00424{letter-spacing:-0.051200pt;}
.ls12_c00424{letter-spacing:-0.038400pt;}
.ls13_c00424{letter-spacing:-0.032000pt;}
.ls17_c00424{letter-spacing:-0.025600pt;}
.ls10_c00424{letter-spacing:-0.019200pt;}
.lsf_c00424{letter-spacing:-0.012800pt;}
.lse_c00424{letter-spacing:-0.004800pt;}
.lsd_c00424{letter-spacing:0.000000pt;}
.ls3_c00424{letter-spacing:0.006400pt;}
.ls6_c00424{letter-spacing:0.012800pt;}
.ls0_c00424{letter-spacing:0.014400pt;}
.ls8_c00424{letter-spacing:0.019200pt;}
.lsa_c00424{letter-spacing:0.025600pt;}
.ls7_c00424{letter-spacing:0.032000pt;}
.ls5_c00424{letter-spacing:0.038400pt;}
.ls2_c00424{letter-spacing:0.044800pt;}
.ls4_c00424{letter-spacing:0.051200pt;}
.lsb_c00424{letter-spacing:0.057600pt;}
.ls1_c00424{letter-spacing:0.067200pt;}
.ls9_c00424{letter-spacing:0.076800pt;}
.ws0_c00424{word-spacing:-16.000000pt;}
.ws2_c00424{word-spacing:0.000000pt;}
.ws1_c00424{word-spacing:0.171008pt;}
.ws5_c00424{word-spacing:5.440000pt;}
.ws4_c00424{word-spacing:11.985600pt;}
.ws3_c00424{word-spacing:12.004800pt;}
._c_c00424{margin-left:-4.435200pt;}
._6_c00424{margin-left:-3.238400pt;}
._d_c00424{margin-left:-2.073600pt;}
._1_c00424{margin-left:-1.161600pt;}
._0_c00424{width:0.919168pt;}
._4_c00424{width:1.899264pt;}
._5_c00424{width:3.148800pt;}
._9_c00424{width:4.806400pt;}
._a_c00424{width:5.740800pt;}
._8_c00424{width:6.905600pt;}
._7_c00424{width:8.019200pt;}
._b_c00424{width:9.587200pt;}
._2_c00424{width:592.320000pt;}
._3_c00424{width:955.520000pt;}
.fs2_c00424{font-size:48.000000pt;}
.fs0_c00424{font-size:53.440000pt;}
.fs1_c00424{font-size:64.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y5_c00424{bottom:50.987067pt;}
.y4_c00424{bottom:69.387067pt;}
.y20_c00424{bottom:112.827067pt;}
.y1f_c00424{bottom:151.067067pt;}
.y1e_c00424{bottom:189.387067pt;}
.y1d_c00424{bottom:217.067067pt;}
.y1c_c00424{bottom:244.667067pt;}
.y1b_c00424{bottom:272.267067pt;}
.y1a_c00424{bottom:299.867067pt;}
.y19_c00424{bottom:327.467067pt;}
.y18_c00424{bottom:355.067067pt;}
.y17_c00424{bottom:382.587067pt;}
.y16_c00424{bottom:410.187067pt;}
.y15_c00424{bottom:437.787067pt;}
.y14_c00424{bottom:476.027067pt;}
.y13_c00424{bottom:503.707067pt;}
.y12_c00424{bottom:531.307067pt;}
.y11_c00424{bottom:569.467067pt;}
.y10_c00424{bottom:597.147067pt;}
.yf_c00424{bottom:624.747067pt;}
.ye_c00424{bottom:652.347067pt;}
.yd_c00424{bottom:679.947067pt;}
.yc_c00424{bottom:707.547067pt;}
.yb_c00424{bottom:735.147067pt;}
.ya_c00424{bottom:762.747067pt;}
.y9_c00424{bottom:800.907067pt;}
.y8_c00424{bottom:835.627067pt;}
.y7_c00424{bottom:977.947467pt;}
.y6_c00424{bottom:991.787067pt;}
.y3_c00424{bottom:1006.347067pt;}
.y2_c00424{bottom:1035.947576pt;}
.y1_c00424{bottom:1063.147200pt;}
.h3_c00424{height:42.234375pt;}
.h1_c00424{height:47.020937pt;}
.h2_c00424{height:56.156250pt;}
.h4_c00424{height:56.312500pt;}
.h0_c00424{height:1122.666667pt;}
.w1_c00424{width:793.333333pt;}
.w0_c00424{width:793.626667pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:113.440000pt;}
.x3_c00424{left:235.440000pt;}
.x2_c00424{left:656.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_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_77ccfe41d5eb5ae256f9bdfc.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.095703;font-style:normal;font-weight:normal;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_3b562e4d74aa1651a1bf5f7d.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_1cb8141b32935beed001cba1.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:1.104004;font-style: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;}
.ls12_c00425{letter-spacing:-0.050400px;}
.lse_c00425{letter-spacing:-0.048096px;}
.ls10_c00425{letter-spacing:-0.037800px;}
.ls14_c00425{letter-spacing:-0.028800px;}
.ls13_c00425{letter-spacing:-0.021600px;}
.lsf_c00425{letter-spacing:0.000000px;}
.ls0_c00425{letter-spacing:0.005400px;}
.lsa_c00425{letter-spacing:0.007200px;}
.ls6_c00425{letter-spacing:0.014400px;}
.ls1_c00425{letter-spacing:0.016200px;}
.ls8_c00425{letter-spacing:0.021600px;}
.ls7_c00425{letter-spacing:0.028800px;}
.ls4_c00425{letter-spacing:0.036000px;}
.ls5_c00425{letter-spacing:0.043200px;}
.lsc_c00425{letter-spacing:0.050400px;}
.lsb_c00425{letter-spacing:0.057600px;}
.lsd_c00425{letter-spacing:0.072000px;}
.ls2_c00425{letter-spacing:0.075492px;}
.ls3_c00425{letter-spacing:0.100656px;}
.ls9_c00425{letter-spacing:0.100800px;}
.ls11_c00425{letter-spacing:845.818200px;}
.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:-18.000000px;}
.ws2_c00425{word-spacing:0.000000px;}
.ws1_c00425{word-spacing:0.138276px;}
.ws4_c00425{word-spacing:0.162000px;}
.ws3_c00425{word-spacing:0.172800px;}
.ws5_c00425{word-spacing:0.216000px;}
.ws6_c00425{word-spacing:7.228800px;}
._2_c00425{margin-left:-845.640000px;}
._1_c00425{margin-left:-150.838200px;}
._7_c00425{margin-left:-4.608000px;}
._8_c00425{margin-left:-3.585600px;}
._0_c00425{margin-left:-1.069200px;}
._9_c00425{width:1.411200px;}
._a_c00425{width:2.476800px;}
._b_c00425{width:3.672000px;}
._3_c00425{width:5.090400px;}
._4_c00425{width:6.408000px;}
._d_c00425{width:7.459200px;}
._c_c00425{width:9.172800px;}
._5_c00425{width:27.000000px;}
._6_c00425{width:28.080000px;}
.fc1_c00425{color:rgb(68,84,106);}
.fc0_c00425{color:rgb(0,0,0);}
.fs2_c00425{font-size:54.000000px;}
.fs0_c00425{font-size:60.120000px;}
.fs1_c00425{font-size:72.000000px;}
.fs3_c00425{font-size:83.880000px;}
.y0_c00425{bottom:0.000000px;}
.y6_c00425{bottom:57.360450px;}
.y5_c00425{bottom:78.060450px;}
.y22_c00425{bottom:143.940450px;}
.y21_c00425{bottom:186.960450px;}
.y20_c00425{bottom:218.100450px;}
.y1f_c00425{bottom:249.150450px;}
.y1e_c00425{bottom:280.200450px;}
.y1d_c00425{bottom:323.220450px;}
.y1c_c00425{bottom:354.360450px;}
.y1b_c00425{bottom:385.410450px;}
.y1a_c00425{bottom:416.370450px;}
.y19_c00425{bottom:447.420450px;}
.y18_c00425{bottom:478.470450px;}
.y17_c00425{bottom:521.490450px;}
.y16_c00425{bottom:552.630450px;}
.y15_c00425{bottom:583.680450px;}
.y14_c00425{bottom:614.730450px;}
.y13_c00425{bottom:645.780450px;}
.y12_c00425{bottom:676.830450px;}
.y11_c00425{bottom:707.880450px;}
.y10_c00425{bottom:738.930450px;}
.yf_c00425{bottom:769.890450px;}
.ye_c00425{bottom:800.940450px;}
.yd_c00425{bottom:831.990450px;}
.yc_c00425{bottom:866.280450px;}
.yb_c00425{bottom:889.410450px;}
.ya_c00425{bottom:926.670450px;}
.y9_c00425{bottom:949.800450px;}
.y8_c00425{bottom:984.450450px;}
.y7_c00425{bottom:1128.630450px;}
.y4_c00425{bottom:1144.380657px;}
.y3_c00425{bottom:1161.660648px;}
.y2_c00425{bottom:1178.850459px;}
.y1_c00425{bottom:1196.130450px;}
.h3_c00425{height:47.513672px;}
.h1_c00425{height:52.898555px;}
.h2_c00425{height:63.175781px;}
.h5_c00425{height:63.351562px;}
.h4_c00425{height:74.500840px;}
.h0_c00425{height:1263.000000px;}
.w1_c00425{width:892.500000px;}
.w0_c00425{width:892.830000px;}
.x0_c00425{left:0.000000px;}
.x4_c00425{left:127.620000px;}
.x5_c00425{left:309.871350px;}
.x1_c00425{left:649.620000px;}
.x3_c00425{left:738.450000px;}
.x2_c00425{left:765.450198px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls12_c00425{letter-spacing:-0.044800pt;}
.lse_c00425{letter-spacing:-0.042752pt;}
.ls10_c00425{letter-spacing:-0.033600pt;}
.ls14_c00425{letter-spacing:-0.025600pt;}
.ls13_c00425{letter-spacing:-0.019200pt;}
.lsf_c00425{letter-spacing:0.000000pt;}
.ls0_c00425{letter-spacing:0.004800pt;}
.lsa_c00425{letter-spacing:0.006400pt;}
.ls6_c00425{letter-spacing:0.012800pt;}
.ls1_c00425{letter-spacing:0.014400pt;}
.ls8_c00425{letter-spacing:0.019200pt;}
.ls7_c00425{letter-spacing:0.025600pt;}
.ls4_c00425{letter-spacing:0.032000pt;}
.ls5_c00425{letter-spacing:0.038400pt;}
.lsc_c00425{letter-spacing:0.044800pt;}
.lsb_c00425{letter-spacing:0.051200pt;}
.lsd_c00425{letter-spacing:0.064000pt;}
.ls2_c00425{letter-spacing:0.067104pt;}
.ls3_c00425{letter-spacing:0.089472pt;}
.ls9_c00425{letter-spacing:0.089600pt;}
.ls11_c00425{letter-spacing:751.838400pt;}
.ws0_c00425{word-spacing:-16.000000pt;}
.ws2_c00425{word-spacing:0.000000pt;}
.ws1_c00425{word-spacing:0.122912pt;}
.ws4_c00425{word-spacing:0.144000pt;}
.ws3_c00425{word-spacing:0.153600pt;}
.ws5_c00425{word-spacing:0.192000pt;}
.ws6_c00425{word-spacing:6.425600pt;}
._2_c00425{margin-left:-751.680000pt;}
._1_c00425{margin-left:-134.078400pt;}
._7_c00425{margin-left:-4.096000pt;}
._8_c00425{margin-left:-3.187200pt;}
._0_c00425{margin-left:-0.950400pt;}
._9_c00425{width:1.254400pt;}
._a_c00425{width:2.201600pt;}
._b_c00425{width:3.264000pt;}
._3_c00425{width:4.524800pt;}
._4_c00425{width:5.696000pt;}
._d_c00425{width:6.630400pt;}
._c_c00425{width:8.153600pt;}
._5_c00425{width:24.000000pt;}
._6_c00425{width:24.960000pt;}
.fs2_c00425{font-size:48.000000pt;}
.fs0_c00425{font-size:53.440000pt;}
.fs1_c00425{font-size:64.000000pt;}
.fs3_c00425{font-size:74.560000pt;}
.y0_c00425{bottom:0.000000pt;}
.y6_c00425{bottom:50.987067pt;}
.y5_c00425{bottom:69.387067pt;}
.y22_c00425{bottom:127.947067pt;}
.y21_c00425{bottom:166.187067pt;}
.y20_c00425{bottom:193.867067pt;}
.y1f_c00425{bottom:221.467067pt;}
.y1e_c00425{bottom:249.067067pt;}
.y1d_c00425{bottom:287.307067pt;}
.y1c_c00425{bottom:314.987067pt;}
.y1b_c00425{bottom:342.587067pt;}
.y1a_c00425{bottom:370.107067pt;}
.y19_c00425{bottom:397.707067pt;}
.y18_c00425{bottom:425.307067pt;}
.y17_c00425{bottom:463.547067pt;}
.y16_c00425{bottom:491.227067pt;}
.y15_c00425{bottom:518.827067pt;}
.y14_c00425{bottom:546.427067pt;}
.y13_c00425{bottom:574.027067pt;}
.y12_c00425{bottom:601.627067pt;}
.y11_c00425{bottom:629.227067pt;}
.y10_c00425{bottom:656.827067pt;}
.yf_c00425{bottom:684.347067pt;}
.ye_c00425{bottom:711.947067pt;}
.yd_c00425{bottom:739.547067pt;}
.yc_c00425{bottom:770.027067pt;}
.yb_c00425{bottom:790.587067pt;}
.ya_c00425{bottom:823.707067pt;}
.y9_c00425{bottom:844.267067pt;}
.y8_c00425{bottom:875.067067pt;}
.y7_c00425{bottom:1003.227067pt;}
.y4_c00425{bottom:1017.227251pt;}
.y3_c00425{bottom:1032.587243pt;}
.y2_c00425{bottom:1047.867075pt;}
.y1_c00425{bottom:1063.227067pt;}
.h3_c00425{height:42.234375pt;}
.h1_c00425{height:47.020937pt;}
.h2_c00425{height:56.156250pt;}
.h5_c00425{height:56.312500pt;}
.h4_c00425{height:66.222969pt;}
.h0_c00425{height:1122.666667pt;}
.w1_c00425{width:793.333333pt;}
.w0_c00425{width:793.626667pt;}
.x0_c00425{left:0.000000pt;}
.x4_c00425{left:113.440000pt;}
.x5_c00425{left:275.441200pt;}
.x1_c00425{left:577.440000pt;}
.x3_c00425{left:656.400000pt;}
.x2_c00425{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49a57416a1d049824a13e388.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.095703;font-style:normal;font-weight:normal;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_c5f4ebfbc8286054426d63a8.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_5a63959ac08bd464fcc1b394.woff2')format("woff");}.ff3_c00426{font-family:ff3_c00426;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00426;src:url('chunks/assets/font_53ed5fa52297d6117bb25bd7.woff2')format("woff");}.ff4_c00426{font-family:ff4_c00426;line-height:0.896973;font-style: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);}
.v2_c00426{vertical-align:-20.880000px;}
.v0_c00426{vertical-align:0.000000px;}
.v1_c00426{vertical-align:27.000000px;}
.ls13_c00426{letter-spacing:-1.440000px;}
.ls14_c00426{letter-spacing:-0.144288px;}
.ls15_c00426{letter-spacing:-0.108216px;}
.lsa_c00426{letter-spacing:-0.102204px;}
.lsf_c00426{letter-spacing:-0.043200px;}
.lsc_c00426{letter-spacing:-0.033552px;}
.lsd_c00426{letter-spacing:-0.021600px;}
.ls12_c00426{letter-spacing:-0.007200px;}
.lsb_c00426{letter-spacing:0.000000px;}
.ls6_c00426{letter-spacing:0.014400px;}
.ls1_c00426{letter-spacing:0.021600px;}
.ls5_c00426{letter-spacing:0.036000px;}
.ls8_c00426{letter-spacing:0.036072px;}
.ls4_c00426{letter-spacing:0.050328px;}
.ls0_c00426{letter-spacing:0.059400px;}
.ls7_c00426{letter-spacing:0.064800px;}
.ls3_c00426{letter-spacing:0.083880px;}
.ls9_c00426{letter-spacing:0.090180px;}
.ls2_c00426{letter-spacing:0.091800px;}
.ls16_c00426{letter-spacing:0.156312px;}
.ls10_c00426{letter-spacing:0.181944px;}
.ls11_c00426{letter-spacing:2.880000px;}
.lse_c00426{letter-spacing:6.120000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00426{word-spacing:-18.000000px;}
.ws0_c00426{word-spacing:-12.151944px;}
.ws2_c00426{word-spacing:-9.720000px;}
.ws4_c00426{word-spacing:0.000000px;}
.ws7_c00426{word-spacing:0.086400px;}
.ws5_c00426{word-spacing:0.118800px;}
.ws6_c00426{word-spacing:0.156600px;}
.ws8_c00426{word-spacing:0.184536px;}
.ws3_c00426{word-spacing:0.192384px;}
.ws9_c00426{word-spacing:5.004000px;}
._4_c00426{margin-left:-7.171200px;}
._5_c00426{margin-left:-6.033600px;}
._9_c00426{margin-left:-3.744000px;}
._2_c00426{margin-left:-2.595600px;}
._1_c00426{margin-left:-1.333800px;}
._0_c00426{width:1.034064px;}
._7_c00426{width:2.390400px;}
._8_c00426{width:3.427200px;}
._6_c00426{width:5.025600px;}
._3_c00426{width:6.105600px;}
._a_c00426{width:10.864800px;}
.fc2_c00426{color:rgb(68,84,106);}
.fc1_c00426{color:rgb(0,0,0);}
.fc0_c00426{color:rgb(32,31,30);}
.fs5_c00426{font-size:38.880000px;}
.fs4_c00426{font-size:47.880000px;}
.fs2_c00426{font-size:54.000000px;}
.fs0_c00426{font-size:60.120000px;}
.fs1_c00426{font-size:72.000000px;}
.fs3_c00426{font-size:83.880000px;}
.y0_c00426{bottom:0.000000px;}
.y5_c00426{bottom:57.360450px;}
.y4_c00426{bottom:78.060450px;}
.y19_c00426{bottom:109.920648px;}
.y18_c00426{bottom:127.110459px;}
.y17_c00426{bottom:149.610450px;}
.y16_c00426{bottom:162.300450px;}
.y15_c00426{bottom:203.880450px;}
.y14_c00426{bottom:234.930450px;}
.y13_c00426{bottom:265.980450px;}
.y12_c00426{bottom:297.030450px;}
.y11_c00426{bottom:328.080450px;}
.y10_c00426{bottom:359.130450px;}
.yf_c00426{bottom:390.180450px;}
.ye_c00426{bottom:424.470450px;}
.yd_c00426{bottom:447.510450px;}
.yc_c00426{bottom:493.590450px;}
.yb_c00426{bottom:532.560450px;}
.ya_c00426{bottom:706.080450px;}
.y9_c00426{bottom:736.590450px;}
.y8_c00426{bottom:763.860450px;}
.y7_c00426{bottom:942.240450px;}
.y6_c00426{bottom:1115.760450px;}
.y3_c00426{bottom:1132.140450px;}
.y2_c00426{bottom:1165.441023px;}
.y1_c00426{bottom:1196.040600px;}
.h6_c00426{height:34.114922px;}
.h3_c00426{height:47.513672px;}
.h7_c00426{height:52.751777px;}
.h1_c00426{height:52.898555px;}
.h2_c00426{height:63.175781px;}
.h5_c00426{height:69.011895px;}
.h4_c00426{height:74.500840px;}
.h0_c00426{height:1263.000000px;}
.w1_c00426{width:892.500000px;}
.w0_c00426{width:892.830000px;}
.x0_c00426{left:0.000000px;}
.x1_c00426{left:127.620000px;}
.x4_c00426{left:596.160000px;}
.x3_c00426{left:597.240000px;}
.x2_c00426{left:738.450000px;}
.x5_c00426{left:746.460000px;}
@media print{
.v2_c00426{vertical-align:-18.560000pt;}
.v0_c00426{vertical-align:0.000000pt;}
.v1_c00426{vertical-align:24.000000pt;}
.ls13_c00426{letter-spacing:-1.280000pt;}
.ls14_c00426{letter-spacing:-0.128256pt;}
.ls15_c00426{letter-spacing:-0.096192pt;}
.lsa_c00426{letter-spacing:-0.090848pt;}
.lsf_c00426{letter-spacing:-0.038400pt;}
.lsc_c00426{letter-spacing:-0.029824pt;}
.lsd_c00426{letter-spacing:-0.019200pt;}
.ls12_c00426{letter-spacing:-0.006400pt;}
.lsb_c00426{letter-spacing:0.000000pt;}
.ls6_c00426{letter-spacing:0.012800pt;}
.ls1_c00426{letter-spacing:0.019200pt;}
.ls5_c00426{letter-spacing:0.032000pt;}
.ls8_c00426{letter-spacing:0.032064pt;}
.ls4_c00426{letter-spacing:0.044736pt;}
.ls0_c00426{letter-spacing:0.052800pt;}
.ls7_c00426{letter-spacing:0.057600pt;}
.ls3_c00426{letter-spacing:0.074560pt;}
.ls9_c00426{letter-spacing:0.080160pt;}
.ls2_c00426{letter-spacing:0.081600pt;}
.ls16_c00426{letter-spacing:0.138944pt;}
.ls10_c00426{letter-spacing:0.161728pt;}
.ls11_c00426{letter-spacing:2.560000pt;}
.lse_c00426{letter-spacing:5.440000pt;}
.ws1_c00426{word-spacing:-16.000000pt;}
.ws0_c00426{word-spacing:-10.801728pt;}
.ws2_c00426{word-spacing:-8.640000pt;}
.ws4_c00426{word-spacing:0.000000pt;}
.ws7_c00426{word-spacing:0.076800pt;}
.ws5_c00426{word-spacing:0.105600pt;}
.ws6_c00426{word-spacing:0.139200pt;}
.ws8_c00426{word-spacing:0.164032pt;}
.ws3_c00426{word-spacing:0.171008pt;}
.ws9_c00426{word-spacing:4.448000pt;}
._4_c00426{margin-left:-6.374400pt;}
._5_c00426{margin-left:-5.363200pt;}
._9_c00426{margin-left:-3.328000pt;}
._2_c00426{margin-left:-2.307200pt;}
._1_c00426{margin-left:-1.185600pt;}
._0_c00426{width:0.919168pt;}
._7_c00426{width:2.124800pt;}
._8_c00426{width:3.046400pt;}
._6_c00426{width:4.467200pt;}
._3_c00426{width:5.427200pt;}
._a_c00426{width:9.657600pt;}
.fs5_c00426{font-size:34.560000pt;}
.fs4_c00426{font-size:42.560000pt;}
.fs2_c00426{font-size:48.000000pt;}
.fs0_c00426{font-size:53.440000pt;}
.fs1_c00426{font-size:64.000000pt;}
.fs3_c00426{font-size:74.560000pt;}
.y0_c00426{bottom:0.000000pt;}
.y5_c00426{bottom:50.987067pt;}
.y4_c00426{bottom:69.387067pt;}
.y19_c00426{bottom:97.707243pt;}
.y18_c00426{bottom:112.987075pt;}
.y17_c00426{bottom:132.987067pt;}
.y16_c00426{bottom:144.267067pt;}
.y15_c00426{bottom:181.227067pt;}
.y14_c00426{bottom:208.827067pt;}
.y13_c00426{bottom:236.427067pt;}
.y12_c00426{bottom:264.027067pt;}
.y11_c00426{bottom:291.627067pt;}
.y10_c00426{bottom:319.227067pt;}
.yf_c00426{bottom:346.827067pt;}
.ye_c00426{bottom:377.307067pt;}
.yd_c00426{bottom:397.787067pt;}
.yc_c00426{bottom:438.747067pt;}
.yb_c00426{bottom:473.387067pt;}
.ya_c00426{bottom:627.627067pt;}
.y9_c00426{bottom:654.747067pt;}
.y8_c00426{bottom:678.987067pt;}
.y7_c00426{bottom:837.547067pt;}
.y6_c00426{bottom:991.787067pt;}
.y3_c00426{bottom:1006.347067pt;}
.y2_c00426{bottom:1035.947576pt;}
.y1_c00426{bottom:1063.147200pt;}
.h6_c00426{height:30.324375pt;}
.h3_c00426{height:42.234375pt;}
.h7_c00426{height:46.890469pt;}
.h1_c00426{height:47.020937pt;}
.h2_c00426{height:56.156250pt;}
.h5_c00426{height:61.343906pt;}
.h4_c00426{height:66.222969pt;}
.h0_c00426{height:1122.666667pt;}
.w1_c00426{width:793.333333pt;}
.w0_c00426{width:793.626667pt;}
.x0_c00426{left:0.000000pt;}
.x1_c00426{left:113.440000pt;}
.x4_c00426{left:529.920000pt;}
.x3_c00426{left:530.880000pt;}
.x2_c00426{left:656.400000pt;}
.x5_c00426{left:663.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_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_f176421c282ece585522bdf6.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.095703;font-style:normal;font-weight:normal;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_649cc3d1ba198979a56bdfd9.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.093262;font-style:normal;font-weight:normal;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_b01c67df1cc45271e5e7afed.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:1.104004;font-style: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;}
.ls1b_c00427{letter-spacing:-0.266400px;}
.ls1d_c00427{letter-spacing:-0.237600px;}
.ls17_c00427{letter-spacing:-0.216000px;}
.ls1a_c00427{letter-spacing:-0.100800px;}
.ls1e_c00427{letter-spacing:-0.086400px;}
.ls19_c00427{letter-spacing:-0.064800px;}
.ls15_c00427{letter-spacing:-0.050400px;}
.lse_c00427{letter-spacing:-0.048096px;}
.ls14_c00427{letter-spacing:-0.043200px;}
.ls1c_c00427{letter-spacing:-0.036000px;}
.ls10_c00427{letter-spacing:-0.028800px;}
.ls11_c00427{letter-spacing:-0.014400px;}
.ls13_c00427{letter-spacing:-0.007200px;}
.lsf_c00427{letter-spacing:0.000000px;}
.ls6_c00427{letter-spacing:0.007200px;}
.ls1_c00427{letter-spacing:0.014400px;}
.ls2_c00427{letter-spacing:0.021600px;}
.ls4_c00427{letter-spacing:0.028800px;}
.ls5_c00427{letter-spacing:0.036000px;}
.ls3_c00427{letter-spacing:0.043200px;}
.ls8_c00427{letter-spacing:0.050328px;}
.lsc_c00427{letter-spacing:0.050400px;}
.ls7_c00427{letter-spacing:0.064800px;}
.ls16_c00427{letter-spacing:0.079200px;}
.ls9_c00427{letter-spacing:0.083880px;}
.lsd_c00427{letter-spacing:0.086400px;}
.lsa_c00427{letter-spacing:0.100800px;}
.lsb_c00427{letter-spacing:0.108000px;}
.ls18_c00427{letter-spacing:0.122400px;}
.ls0_c00427{letter-spacing:0.129600px;}
.ls1f_c00427{letter-spacing:6.840000px;}
.ls12_c00427{letter-spacing:12.240000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00427{word-spacing:0.000000px;}
.ws0_c00427{word-spacing:0.138276px;}
.ws2_c00427{word-spacing:12.211200px;}
._4_c00427{margin-left:-13.046400px;}
._5_c00427{margin-left:-11.196000px;}
._10_c00427{margin-left:-7.344000px;}
._11_c00427{margin-left:-6.091200px;}
._e_c00427{margin-left:-4.485600px;}
._a_c00427{margin-left:-3.369600px;}
._1_c00427{margin-left:-2.282400px;}
._0_c00427{margin-left:-1.281600px;}
._8_c00427{width:1.072800px;}
._13_c00427{width:2.138400px;}
._6_c00427{width:3.204000px;}
._9_c00427{width:6.055200px;}
._f_c00427{width:7.624800px;}
._12_c00427{width:8.956800px;}
._7_c00427{width:10.454400px;}
._2_c00427{width:11.880000px;}
._3_c00427{width:13.132800px;}
._c_c00427{width:15.364800px;}
._b_c00427{width:16.531200px;}
._d_c00427{width:26.949600px;}
.fc0_c00427{color:rgb(0,0,0);}
.fs0_c00427{font-size:60.120000px;}
.fs1_c00427{font-size:72.000000px;}
.fs2_c00427{font-size:83.880000px;}
.y0_c00427{bottom:0.000000px;}
.y6_c00427{bottom:57.360450px;}
.y5_c00427{bottom:78.060450px;}
.y25_c00427{bottom:146.550450px;}
.y24_c00427{bottom:177.690450px;}
.y23_c00427{bottom:208.740450px;}
.y22_c00427{bottom:239.790450px;}
.y21_c00427{bottom:270.840450px;}
.y20_c00427{bottom:301.890450px;}
.y1f_c00427{bottom:332.940450px;}
.y1e_c00427{bottom:363.990450px;}
.y1d_c00427{bottom:395.040450px;}
.y1c_c00427{bottom:426.090450px;}
.y1b_c00427{bottom:457.140450px;}
.y1a_c00427{bottom:500.070450px;}
.y19_c00427{bottom:531.210450px;}
.y18_c00427{bottom:562.260450px;}
.y17_c00427{bottom:593.310450px;}
.y16_c00427{bottom:624.360450px;}
.y15_c00427{bottom:655.410450px;}
.y14_c00427{bottom:689.610450px;}
.y13_c00427{bottom:712.740450px;}
.y12_c00427{bottom:758.730450px;}
.y11_c00427{bottom:801.750450px;}
.y10_c00427{bottom:832.890450px;}
.yf_c00427{bottom:863.940450px;}
.ye_c00427{bottom:894.990450px;}
.yd_c00427{bottom:926.040450px;}
.yc_c00427{bottom:957.090450px;}
.yb_c00427{bottom:988.140450px;}
.ya_c00427{bottom:1019.190450px;}
.y9_c00427{bottom:1050.240450px;}
.y8_c00427{bottom:1093.170450px;}
.y7_c00427{bottom:1124.310450px;}
.y4_c00427{bottom:1144.380657px;}
.y3_c00427{bottom:1161.660648px;}
.y2_c00427{bottom:1178.850459px;}
.y1_c00427{bottom:1196.130450px;}
.h1_c00427{height:52.898555px;}
.h2_c00427{height:63.175781px;}
.h3_c00427{height:63.351562px;}
.h4_c00427{height:74.500840px;}
.h0_c00427{height:1263.000000px;}
.w1_c00427{width:892.500000px;}
.w0_c00427{width:892.830000px;}
.x0_c00427{left:0.000000px;}
.x4_c00427{left:127.620000px;}
.x1_c00427{left:649.620000px;}
.x3_c00427{left:738.450000px;}
.x2_c00427{left:765.450198px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls1b_c00427{letter-spacing:-0.236800pt;}
.ls1d_c00427{letter-spacing:-0.211200pt;}
.ls17_c00427{letter-spacing:-0.192000pt;}
.ls1a_c00427{letter-spacing:-0.089600pt;}
.ls1e_c00427{letter-spacing:-0.076800pt;}
.ls19_c00427{letter-spacing:-0.057600pt;}
.ls15_c00427{letter-spacing:-0.044800pt;}
.lse_c00427{letter-spacing:-0.042752pt;}
.ls14_c00427{letter-spacing:-0.038400pt;}
.ls1c_c00427{letter-spacing:-0.032000pt;}
.ls10_c00427{letter-spacing:-0.025600pt;}
.ls11_c00427{letter-spacing:-0.012800pt;}
.ls13_c00427{letter-spacing:-0.006400pt;}
.lsf_c00427{letter-spacing:0.000000pt;}
.ls6_c00427{letter-spacing:0.006400pt;}
.ls1_c00427{letter-spacing:0.012800pt;}
.ls2_c00427{letter-spacing:0.019200pt;}
.ls4_c00427{letter-spacing:0.025600pt;}
.ls5_c00427{letter-spacing:0.032000pt;}
.ls3_c00427{letter-spacing:0.038400pt;}
.ls8_c00427{letter-spacing:0.044736pt;}
.lsc_c00427{letter-spacing:0.044800pt;}
.ls7_c00427{letter-spacing:0.057600pt;}
.ls16_c00427{letter-spacing:0.070400pt;}
.ls9_c00427{letter-spacing:0.074560pt;}
.lsd_c00427{letter-spacing:0.076800pt;}
.lsa_c00427{letter-spacing:0.089600pt;}
.lsb_c00427{letter-spacing:0.096000pt;}
.ls18_c00427{letter-spacing:0.108800pt;}
.ls0_c00427{letter-spacing:0.115200pt;}
.ls1f_c00427{letter-spacing:6.080000pt;}
.ls12_c00427{letter-spacing:10.880000pt;}
.ws1_c00427{word-spacing:0.000000pt;}
.ws0_c00427{word-spacing:0.122912pt;}
.ws2_c00427{word-spacing:10.854400pt;}
._4_c00427{margin-left:-11.596800pt;}
._5_c00427{margin-left:-9.952000pt;}
._10_c00427{margin-left:-6.528000pt;}
._11_c00427{margin-left:-5.414400pt;}
._e_c00427{margin-left:-3.987200pt;}
._a_c00427{margin-left:-2.995200pt;}
._1_c00427{margin-left:-2.028800pt;}
._0_c00427{margin-left:-1.139200pt;}
._8_c00427{width:0.953600pt;}
._13_c00427{width:1.900800pt;}
._6_c00427{width:2.848000pt;}
._9_c00427{width:5.382400pt;}
._f_c00427{width:6.777600pt;}
._12_c00427{width:7.961600pt;}
._7_c00427{width:9.292800pt;}
._2_c00427{width:10.560000pt;}
._3_c00427{width:11.673600pt;}
._c_c00427{width:13.657600pt;}
._b_c00427{width:14.694400pt;}
._d_c00427{width:23.955200pt;}
.fs0_c00427{font-size:53.440000pt;}
.fs1_c00427{font-size:64.000000pt;}
.fs2_c00427{font-size:74.560000pt;}
.y0_c00427{bottom:0.000000pt;}
.y6_c00427{bottom:50.987067pt;}
.y5_c00427{bottom:69.387067pt;}
.y25_c00427{bottom:130.267067pt;}
.y24_c00427{bottom:157.947067pt;}
.y23_c00427{bottom:185.547067pt;}
.y22_c00427{bottom:213.147067pt;}
.y21_c00427{bottom:240.747067pt;}
.y20_c00427{bottom:268.347067pt;}
.y1f_c00427{bottom:295.947067pt;}
.y1e_c00427{bottom:323.547067pt;}
.y1d_c00427{bottom:351.147067pt;}
.y1c_c00427{bottom:378.747067pt;}
.y1b_c00427{bottom:406.347067pt;}
.y1a_c00427{bottom:444.507067pt;}
.y19_c00427{bottom:472.187067pt;}
.y18_c00427{bottom:499.787067pt;}
.y17_c00427{bottom:527.387067pt;}
.y16_c00427{bottom:554.987067pt;}
.y15_c00427{bottom:582.587067pt;}
.y14_c00427{bottom:612.987067pt;}
.y13_c00427{bottom:633.547067pt;}
.y12_c00427{bottom:674.427067pt;}
.y11_c00427{bottom:712.667067pt;}
.y10_c00427{bottom:740.347067pt;}
.yf_c00427{bottom:767.947067pt;}
.ye_c00427{bottom:795.547067pt;}
.yd_c00427{bottom:823.147067pt;}
.yc_c00427{bottom:850.747067pt;}
.yb_c00427{bottom:878.347067pt;}
.ya_c00427{bottom:905.947067pt;}
.y9_c00427{bottom:933.547067pt;}
.y8_c00427{bottom:971.707067pt;}
.y7_c00427{bottom:999.387067pt;}
.y4_c00427{bottom:1017.227251pt;}
.y3_c00427{bottom:1032.587243pt;}
.y2_c00427{bottom:1047.867075pt;}
.y1_c00427{bottom:1063.227067pt;}
.h1_c00427{height:47.020937pt;}
.h2_c00427{height:56.156250pt;}
.h3_c00427{height:56.312500pt;}
.h4_c00427{height:66.222969pt;}
.h0_c00427{height:1122.666667pt;}
.w1_c00427{width:793.333333pt;}
.w0_c00427{width:793.626667pt;}
.x0_c00427{left:0.000000pt;}
.x4_c00427{left:113.440000pt;}
.x1_c00427{left:577.440000pt;}
.x3_c00427{left:656.400000pt;}
.x2_c00427{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.095703;font-style:normal;font-weight:normal;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_e4334bccf1e31ea3e6a87dee.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:1.093262;font-style:normal;font-weight:normal;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_a232563d374e2945f6a15eba.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.104004;font-style: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;}
.ls1b_c00428{letter-spacing:-1.440000px;}
.ls14_c00428{letter-spacing:-0.273600px;}
.ls13_c00428{letter-spacing:-0.201600px;}
.ls11_c00428{letter-spacing:-0.108000px;}
.lse_c00428{letter-spacing:-0.102204px;}
.ls19_c00428{letter-spacing:-0.100800px;}
.ls12_c00428{letter-spacing:-0.086400px;}
.ls18_c00428{letter-spacing:-0.028800px;}
.ls17_c00428{letter-spacing:-0.021600px;}
.ls10_c00428{letter-spacing:-0.014400px;}
.ls16_c00428{letter-spacing:-0.007200px;}
.lsf_c00428{letter-spacing:0.000000px;}
.ls9_c00428{letter-spacing:0.007200px;}
.ls6_c00428{letter-spacing:0.014400px;}
.lsc_c00428{letter-spacing:0.021600px;}
.ls7_c00428{letter-spacing:0.028800px;}
.ls3_c00428{letter-spacing:0.036000px;}
.lsd_c00428{letter-spacing:0.043200px;}
.ls0_c00428{letter-spacing:0.050400px;}
.ls1_c00428{letter-spacing:0.057600px;}
.ls4_c00428{letter-spacing:0.064800px;}
.lsb_c00428{letter-spacing:0.067104px;}
.ls1a_c00428{letter-spacing:0.072000px;}
.ls2_c00428{letter-spacing:0.079200px;}
.ls5_c00428{letter-spacing:0.086400px;}
.lsa_c00428{letter-spacing:0.108000px;}
.ls8_c00428{letter-spacing:0.151200px;}
.ls15_c00428{letter-spacing:4.680000px;}
.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:-18.000000px;}
.ws1_c00428{word-spacing:-17.899200px;}
.ws3_c00428{word-spacing:0.000000px;}
.ws2_c00428{word-spacing:0.192384px;}
._7_c00428{margin-left:-5.608800px;}
._6_c00428{margin-left:-4.550400px;}
._8_c00428{margin-left:-3.067200px;}
._2_c00428{margin-left:-1.144800px;}
._0_c00428{width:1.034064px;}
._a_c00428{width:2.152800px;}
._b_c00428{width:3.412800px;}
._5_c00428{width:4.665600px;}
._c_c00428{width:6.004800px;}
._d_c00428{width:8.971200px;}
._3_c00428{width:10.576800px;}
._4_c00428{width:12.081600px;}
._f_c00428{width:14.932800px;}
._e_c00428{width:16.171200px;}
._1_c00428{width:26.589600px;}
._9_c00428{width:40.305600px;}
.fc1_c00428{color:rgb(0,0,0);}
.fc0_c00428{color:rgb(32,31,30);}
.fs0_c00428{font-size:60.120000px;}
.fs1_c00428{font-size:72.000000px;}
.fs2_c00428{font-size:83.880000px;}
.y0_c00428{bottom:0.000000px;}
.y5_c00428{bottom:57.360450px;}
.y4_c00428{bottom:78.060450px;}
.y24_c00428{bottom:121.710450px;}
.y23_c00428{bottom:152.760450px;}
.y22_c00428{bottom:183.810450px;}
.y21_c00428{bottom:226.740450px;}
.y20_c00428{bottom:257.880450px;}
.y1f_c00428{bottom:288.930450px;}
.y1e_c00428{bottom:319.980450px;}
.y1d_c00428{bottom:351.030450px;}
.y1c_c00428{bottom:382.080450px;}
.y1b_c00428{bottom:413.130450px;}
.y1a_c00428{bottom:444.180450px;}
.y19_c00428{bottom:475.230450px;}
.y18_c00428{bottom:506.280450px;}
.y17_c00428{bottom:537.330450px;}
.y16_c00428{bottom:568.380450px;}
.y15_c00428{bottom:602.580450px;}
.y14_c00428{bottom:625.710450px;}
.y13_c00428{bottom:671.700450px;}
.y12_c00428{bottom:714.720450px;}
.y11_c00428{bottom:745.860450px;}
.y10_c00428{bottom:776.910450px;}
.yf_c00428{bottom:819.930450px;}
.ye_c00428{bottom:851.070450px;}
.yd_c00428{bottom:882.120450px;}
.yc_c00428{bottom:913.170450px;}
.yb_c00428{bottom:944.220450px;}
.ya_c00428{bottom:975.180450px;}
.y9_c00428{bottom:1018.200450px;}
.y8_c00428{bottom:1049.340450px;}
.y7_c00428{bottom:1080.390450px;}
.y6_c00428{bottom:1111.440450px;}
.y3_c00428{bottom:1132.140450px;}
.y2_c00428{bottom:1165.441023px;}
.y1_c00428{bottom:1196.040600px;}
.h1_c00428{height:52.898555px;}
.h2_c00428{height:63.175781px;}
.h3_c00428{height:63.351562px;}
.h4_c00428{height:74.500840px;}
.h0_c00428{height:1263.000000px;}
.w1_c00428{width:892.500000px;}
.w0_c00428{width:892.830000px;}
.x0_c00428{left:0.000000px;}
.x1_c00428{left:127.620000px;}
.x2_c00428{left:738.450000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls1b_c00428{letter-spacing:-1.280000pt;}
.ls14_c00428{letter-spacing:-0.243200pt;}
.ls13_c00428{letter-spacing:-0.179200pt;}
.ls11_c00428{letter-spacing:-0.096000pt;}
.lse_c00428{letter-spacing:-0.090848pt;}
.ls19_c00428{letter-spacing:-0.089600pt;}
.ls12_c00428{letter-spacing:-0.076800pt;}
.ls18_c00428{letter-spacing:-0.025600pt;}
.ls17_c00428{letter-spacing:-0.019200pt;}
.ls10_c00428{letter-spacing:-0.012800pt;}
.ls16_c00428{letter-spacing:-0.006400pt;}
.lsf_c00428{letter-spacing:0.000000pt;}
.ls9_c00428{letter-spacing:0.006400pt;}
.ls6_c00428{letter-spacing:0.012800pt;}
.lsc_c00428{letter-spacing:0.019200pt;}
.ls7_c00428{letter-spacing:0.025600pt;}
.ls3_c00428{letter-spacing:0.032000pt;}
.lsd_c00428{letter-spacing:0.038400pt;}
.ls0_c00428{letter-spacing:0.044800pt;}
.ls1_c00428{letter-spacing:0.051200pt;}
.ls4_c00428{letter-spacing:0.057600pt;}
.lsb_c00428{letter-spacing:0.059648pt;}
.ls1a_c00428{letter-spacing:0.064000pt;}
.ls2_c00428{letter-spacing:0.070400pt;}
.ls5_c00428{letter-spacing:0.076800pt;}
.lsa_c00428{letter-spacing:0.096000pt;}
.ls8_c00428{letter-spacing:0.134400pt;}
.ls15_c00428{letter-spacing:4.160000pt;}
.ws0_c00428{word-spacing:-16.000000pt;}
.ws1_c00428{word-spacing:-15.910400pt;}
.ws3_c00428{word-spacing:0.000000pt;}
.ws2_c00428{word-spacing:0.171008pt;}
._7_c00428{margin-left:-4.985600pt;}
._6_c00428{margin-left:-4.044800pt;}
._8_c00428{margin-left:-2.726400pt;}
._2_c00428{margin-left:-1.017600pt;}
._0_c00428{width:0.919168pt;}
._a_c00428{width:1.913600pt;}
._b_c00428{width:3.033600pt;}
._5_c00428{width:4.147200pt;}
._c_c00428{width:5.337600pt;}
._d_c00428{width:7.974400pt;}
._3_c00428{width:9.401600pt;}
._4_c00428{width:10.739200pt;}
._f_c00428{width:13.273600pt;}
._e_c00428{width:14.374400pt;}
._1_c00428{width:23.635200pt;}
._9_c00428{width:35.827200pt;}
.fs0_c00428{font-size:53.440000pt;}
.fs1_c00428{font-size:64.000000pt;}
.fs2_c00428{font-size:74.560000pt;}
.y0_c00428{bottom:0.000000pt;}
.y5_c00428{bottom:50.987067pt;}
.y4_c00428{bottom:69.387067pt;}
.y24_c00428{bottom:108.187067pt;}
.y23_c00428{bottom:135.787067pt;}
.y22_c00428{bottom:163.387067pt;}
.y21_c00428{bottom:201.547067pt;}
.y20_c00428{bottom:229.227067pt;}
.y1f_c00428{bottom:256.827067pt;}
.y1e_c00428{bottom:284.427067pt;}
.y1d_c00428{bottom:312.027067pt;}
.y1c_c00428{bottom:339.627067pt;}
.y1b_c00428{bottom:367.227067pt;}
.y1a_c00428{bottom:394.827067pt;}
.y19_c00428{bottom:422.427067pt;}
.y18_c00428{bottom:450.027067pt;}
.y17_c00428{bottom:477.627067pt;}
.y16_c00428{bottom:505.227067pt;}
.y15_c00428{bottom:535.627067pt;}
.y14_c00428{bottom:556.187067pt;}
.y13_c00428{bottom:597.067067pt;}
.y12_c00428{bottom:635.307067pt;}
.y11_c00428{bottom:662.987067pt;}
.y10_c00428{bottom:690.587067pt;}
.yf_c00428{bottom:728.827067pt;}
.ye_c00428{bottom:756.507067pt;}
.yd_c00428{bottom:784.107067pt;}
.yc_c00428{bottom:811.707067pt;}
.yb_c00428{bottom:839.307067pt;}
.ya_c00428{bottom:866.827067pt;}
.y9_c00428{bottom:905.067067pt;}
.y8_c00428{bottom:932.747067pt;}
.y7_c00428{bottom:960.347067pt;}
.y6_c00428{bottom:987.947067pt;}
.y3_c00428{bottom:1006.347067pt;}
.y2_c00428{bottom:1035.947576pt;}
.y1_c00428{bottom:1063.147200pt;}
.h1_c00428{height:47.020937pt;}
.h2_c00428{height:56.156250pt;}
.h3_c00428{height:56.312500pt;}
.h4_c00428{height:66.222969pt;}
.h0_c00428{height:1122.666667pt;}
.w1_c00428{width:793.333333pt;}
.w0_c00428{width:793.626667pt;}
.x0_c00428{left:0.000000pt;}
.x1_c00428{left:113.440000pt;}
.x2_c00428{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.095703;font-style:normal;font-weight:normal;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_c49c3b0f799a34827393d595.woff2')format("woff");}.ff2_c00429{font-family:ff2_c00429;line-height:1.093262;font-style: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;}
.ls14_c00429{letter-spacing:-0.180000px;}
.ls11_c00429{letter-spacing:-0.057600px;}
.ls10_c00429{letter-spacing:-0.050400px;}
.lsd_c00429{letter-spacing:-0.048096px;}
.ls15_c00429{letter-spacing:-0.036000px;}
.ls12_c00429{letter-spacing:-0.021600px;}
.lsf_c00429{letter-spacing:-0.014400px;}
.ls13_c00429{letter-spacing:-0.007200px;}
.lse_c00429{letter-spacing:0.000000px;}
.ls8_c00429{letter-spacing:0.007200px;}
.ls0_c00429{letter-spacing:0.014400px;}
.ls3_c00429{letter-spacing:0.021600px;}
.ls5_c00429{letter-spacing:0.028800px;}
.ls9_c00429{letter-spacing:0.036000px;}
.ls2_c00429{letter-spacing:0.043200px;}
.ls6_c00429{letter-spacing:0.050400px;}
.ls1_c00429{letter-spacing:0.057600px;}
.lsc_c00429{letter-spacing:0.064800px;}
.lsb_c00429{letter-spacing:0.079200px;}
.ls4_c00429{letter-spacing:0.086400px;}
.lsa_c00429{letter-spacing:0.100800px;}
.ls7_c00429{letter-spacing:0.115200px;}
.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;}
}
.ws1_c00429{word-spacing:0.000000px;}
.ws0_c00429{word-spacing:0.138276px;}
._2_c00429{margin-left:-3.168000px;}
._1_c00429{margin-left:-1.857600px;}
._0_c00429{width:1.440000px;}
._4_c00429{width:3.240000px;}
._5_c00429{width:4.773600px;}
._6_c00429{width:5.868000px;}
._8_c00429{width:7.228800px;}
._9_c00429{width:9.684000px;}
._7_c00429{width:16.516800px;}
._3_c00429{width:20.109600px;}
.fc0_c00429{color:rgb(0,0,0);}
.fs0_c00429{font-size:60.120000px;}
.fs1_c00429{font-size:72.000000px;}
.y0_c00429{bottom:0.000000px;}
.y6_c00429{bottom:57.360450px;}
.y5_c00429{bottom:78.060450px;}
.y24_c00429{bottom:115.860450px;}
.y23_c00429{bottom:158.970450px;}
.y22_c00429{bottom:201.990450px;}
.y21_c00429{bottom:245.010450px;}
.y20_c00429{bottom:288.030450px;}
.y1f_c00429{bottom:331.140450px;}
.y1e_c00429{bottom:362.280450px;}
.y1d_c00429{bottom:393.330450px;}
.y1c_c00429{bottom:424.380450px;}
.y1b_c00429{bottom:455.430450px;}
.y1a_c00429{bottom:486.480450px;}
.y19_c00429{bottom:517.530450px;}
.y18_c00429{bottom:560.460450px;}
.y17_c00429{bottom:591.600450px;}
.y16_c00429{bottom:622.650450px;}
.y15_c00429{bottom:653.700450px;}
.y14_c00429{bottom:684.750450px;}
.y13_c00429{bottom:727.680450px;}
.y12_c00429{bottom:758.820450px;}
.y11_c00429{bottom:789.870450px;}
.y10_c00429{bottom:820.920450px;}
.yf_c00429{bottom:851.970450px;}
.ye_c00429{bottom:883.020450px;}
.yd_c00429{bottom:914.070450px;}
.yc_c00429{bottom:957.000450px;}
.yb_c00429{bottom:988.140450px;}
.ya_c00429{bottom:1019.190450px;}
.y9_c00429{bottom:1062.120450px;}
.y8_c00429{bottom:1093.260450px;}
.y7_c00429{bottom:1124.310450px;}
.y4_c00429{bottom:1144.380657px;}
.y3_c00429{bottom:1161.660648px;}
.y2_c00429{bottom:1178.850459px;}
.y1_c00429{bottom:1196.130450px;}
.h1_c00429{height:52.898555px;}
.h2_c00429{height:63.175781px;}
.h0_c00429{height:1263.000000px;}
.w1_c00429{width:892.500000px;}
.w0_c00429{width:892.830000px;}
.x0_c00429{left:0.000000px;}
.x4_c00429{left:127.620000px;}
.x1_c00429{left:649.620000px;}
.x3_c00429{left:738.450000px;}
.x2_c00429{left:765.450198px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls14_c00429{letter-spacing:-0.160000pt;}
.ls11_c00429{letter-spacing:-0.051200pt;}
.ls10_c00429{letter-spacing:-0.044800pt;}
.lsd_c00429{letter-spacing:-0.042752pt;}
.ls15_c00429{letter-spacing:-0.032000pt;}
.ls12_c00429{letter-spacing:-0.019200pt;}
.lsf_c00429{letter-spacing:-0.012800pt;}
.ls13_c00429{letter-spacing:-0.006400pt;}
.lse_c00429{letter-spacing:0.000000pt;}
.ls8_c00429{letter-spacing:0.006400pt;}
.ls0_c00429{letter-spacing:0.012800pt;}
.ls3_c00429{letter-spacing:0.019200pt;}
.ls5_c00429{letter-spacing:0.025600pt;}
.ls9_c00429{letter-spacing:0.032000pt;}
.ls2_c00429{letter-spacing:0.038400pt;}
.ls6_c00429{letter-spacing:0.044800pt;}
.ls1_c00429{letter-spacing:0.051200pt;}
.lsc_c00429{letter-spacing:0.057600pt;}
.lsb_c00429{letter-spacing:0.070400pt;}
.ls4_c00429{letter-spacing:0.076800pt;}
.lsa_c00429{letter-spacing:0.089600pt;}
.ls7_c00429{letter-spacing:0.102400pt;}
.ws1_c00429{word-spacing:0.000000pt;}
.ws0_c00429{word-spacing:0.122912pt;}
._2_c00429{margin-left:-2.816000pt;}
._1_c00429{margin-left:-1.651200pt;}
._0_c00429{width:1.280000pt;}
._4_c00429{width:2.880000pt;}
._5_c00429{width:4.243200pt;}
._6_c00429{width:5.216000pt;}
._8_c00429{width:6.425600pt;}
._9_c00429{width:8.608000pt;}
._7_c00429{width:14.681600pt;}
._3_c00429{width:17.875200pt;}
.fs0_c00429{font-size:53.440000pt;}
.fs1_c00429{font-size:64.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y6_c00429{bottom:50.987067pt;}
.y5_c00429{bottom:69.387067pt;}
.y24_c00429{bottom:102.987067pt;}
.y23_c00429{bottom:141.307067pt;}
.y22_c00429{bottom:179.547067pt;}
.y21_c00429{bottom:217.787067pt;}
.y20_c00429{bottom:256.027067pt;}
.y1f_c00429{bottom:294.347067pt;}
.y1e_c00429{bottom:322.027067pt;}
.y1d_c00429{bottom:349.627067pt;}
.y1c_c00429{bottom:377.227067pt;}
.y1b_c00429{bottom:404.827067pt;}
.y1a_c00429{bottom:432.427067pt;}
.y19_c00429{bottom:460.027067pt;}
.y18_c00429{bottom:498.187067pt;}
.y17_c00429{bottom:525.867067pt;}
.y16_c00429{bottom:553.467067pt;}
.y15_c00429{bottom:581.067067pt;}
.y14_c00429{bottom:608.667067pt;}
.y13_c00429{bottom:646.827067pt;}
.y12_c00429{bottom:674.507067pt;}
.y11_c00429{bottom:702.107067pt;}
.y10_c00429{bottom:729.707067pt;}
.yf_c00429{bottom:757.307067pt;}
.ye_c00429{bottom:784.907067pt;}
.yd_c00429{bottom:812.507067pt;}
.yc_c00429{bottom:850.667067pt;}
.yb_c00429{bottom:878.347067pt;}
.ya_c00429{bottom:905.947067pt;}
.y9_c00429{bottom:944.107067pt;}
.y8_c00429{bottom:971.787067pt;}
.y7_c00429{bottom:999.387067pt;}
.y4_c00429{bottom:1017.227251pt;}
.y3_c00429{bottom:1032.587243pt;}
.y2_c00429{bottom:1047.867075pt;}
.y1_c00429{bottom:1063.227067pt;}
.h1_c00429{height:47.020937pt;}
.h2_c00429{height:56.156250pt;}
.h0_c00429{height:1122.666667pt;}
.w1_c00429{width:793.333333pt;}
.w0_c00429{width:793.626667pt;}
.x0_c00429{left:0.000000pt;}
.x4_c00429{left:113.440000pt;}
.x1_c00429{left:577.440000pt;}
.x3_c00429{left:656.400000pt;}
.x2_c00429{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d1b40f5309b72ce736d37f25.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.095703;font-style:normal;font-weight:normal;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_2c1b0e6967b58865a5c6806d.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:1.093262;font-style:normal;font-weight:normal;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_f558f3e0247672e014c359c2.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:1.104004;font-style: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;}
.ls16_c00430{letter-spacing:-0.360000px;}
.ls14_c00430{letter-spacing:-0.201600px;}
.ls13_c00430{letter-spacing:-0.180000px;}
.lse_c00430{letter-spacing:-0.102204px;}
.ls17_c00430{letter-spacing:-0.050400px;}
.ls11_c00430{letter-spacing:-0.028800px;}
.ls15_c00430{letter-spacing:-0.021600px;}
.ls12_c00430{letter-spacing:-0.014400px;}
.ls10_c00430{letter-spacing:-0.007200px;}
.lsf_c00430{letter-spacing:0.000000px;}
.ls6_c00430{letter-spacing:0.007200px;}
.lsa_c00430{letter-spacing:0.014400px;}
.ls2_c00430{letter-spacing:0.021600px;}
.ls0_c00430{letter-spacing:0.025164px;}
.ls5_c00430{letter-spacing:0.028800px;}
.ls3_c00430{letter-spacing:0.036000px;}
.ls1_c00430{letter-spacing:0.043200px;}
.lsb_c00430{letter-spacing:0.050400px;}
.ls7_c00430{letter-spacing:0.057600px;}
.ls4_c00430{letter-spacing:0.064800px;}
.lsc_c00430{letter-spacing:0.072000px;}
.ls8_c00430{letter-spacing:0.093600px;}
.ls9_c00430{letter-spacing:0.108000px;}
.lsd_c00430{letter-spacing:0.115200px;}
.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;}
}
.ws7_c00430{word-spacing:-18.093600px;}
.ws5_c00430{word-spacing:-18.064800px;}
.ws8_c00430{word-spacing:-18.043200px;}
.ws6_c00430{word-spacing:-18.036000px;}
.ws3_c00430{word-spacing:-18.028800px;}
.ws2_c00430{word-spacing:-18.021600px;}
.ws9_c00430{word-spacing:-18.014400px;}
.ws4_c00430{word-spacing:-18.007200px;}
.ws0_c00430{word-spacing:-18.000000px;}
.ws1_c00430{word-spacing:-17.992800px;}
.wsb_c00430{word-spacing:0.000000px;}
.wsa_c00430{word-spacing:0.192384px;}
._4_c00430{margin-left:-1.116000px;}
._0_c00430{width:1.034064px;}
._6_c00430{width:6.429600px;}
._1_c00430{width:15.796800px;}
._9_c00430{width:29.901600px;}
._3_c00430{width:30.902400px;}
._7_c00430{width:37.728000px;}
._2_c00430{width:57.204000px;}
._5_c00430{width:120.441600px;}
._8_c00430{width:223.171200px;}
.fc2_c00430{color:rgb(5,99,193);}
.fc1_c00430{color:rgb(0,0,0);}
.fc0_c00430{color:rgb(32,31,30);}
.fs0_c00430{font-size:60.120000px;}
.fs1_c00430{font-size:72.000000px;}
.fs3_c00430{font-size:83.880000px;}
.fs2_c00430{font-size:108.000000px;}
.y0_c00430{bottom:0.000000px;}
.y5_c00430{bottom:57.360450px;}
.y4_c00430{bottom:78.060450px;}
.y21_c00430{bottom:118.110450px;}
.y20_c00430{bottom:149.250450px;}
.y1f_c00430{bottom:192.180450px;}
.y1e_c00430{bottom:235.290600px;}
.y1d_c00430{bottom:278.310450px;}
.y1c_c00430{bottom:309.450450px;}
.y1b_c00430{bottom:352.380450px;}
.y1a_c00430{bottom:383.520450px;}
.y19_c00430{bottom:426.540600px;}
.y18_c00430{bottom:469.560450px;}
.y17_c00430{bottom:500.700600px;}
.y16_c00430{bottom:543.630450px;}
.y15_c00430{bottom:586.650450px;}
.y14_c00430{bottom:629.760450px;}
.y13_c00430{bottom:672.780450px;}
.y12_c00430{bottom:715.800450px;}
.y11_c00430{bottom:746.940450px;}
.y10_c00430{bottom:789.960450px;}
.yf_c00430{bottom:821.100450px;}
.ye_c00430{bottom:852.150450px;}
.yd_c00430{bottom:883.200450px;}
.yc_c00430{bottom:914.250450px;}
.yb_c00430{bottom:945.210450px;}
.ya_c00430{bottom:976.260450px;}
.y9_c00430{bottom:1007.310450px;}
.y8_c00430{bottom:1040.790450px;}
.y7_c00430{bottom:1077.780450px;}
.y6_c00430{bottom:1102.800450px;}
.y3_c00430{bottom:1132.140450px;}
.y2_c00430{bottom:1165.441023px;}
.y1_c00430{bottom:1196.040600px;}
.h1_c00430{height:52.898555px;}
.h2_c00430{height:63.175781px;}
.h5_c00430{height:63.351562px;}
.h4_c00430{height:73.599785px;}
.h3_c00430{height:95.923828px;}
.h0_c00430{height:1263.000000px;}
.w1_c00430{width:892.500000px;}
.w0_c00430{width:892.830000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:127.620000px;}
.x2_c00430{left:738.450000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls16_c00430{letter-spacing:-0.320000pt;}
.ls14_c00430{letter-spacing:-0.179200pt;}
.ls13_c00430{letter-spacing:-0.160000pt;}
.lse_c00430{letter-spacing:-0.090848pt;}
.ls17_c00430{letter-spacing:-0.044800pt;}
.ls11_c00430{letter-spacing:-0.025600pt;}
.ls15_c00430{letter-spacing:-0.019200pt;}
.ls12_c00430{letter-spacing:-0.012800pt;}
.ls10_c00430{letter-spacing:-0.006400pt;}
.lsf_c00430{letter-spacing:0.000000pt;}
.ls6_c00430{letter-spacing:0.006400pt;}
.lsa_c00430{letter-spacing:0.012800pt;}
.ls2_c00430{letter-spacing:0.019200pt;}
.ls0_c00430{letter-spacing:0.022368pt;}
.ls5_c00430{letter-spacing:0.025600pt;}
.ls3_c00430{letter-spacing:0.032000pt;}
.ls1_c00430{letter-spacing:0.038400pt;}
.lsb_c00430{letter-spacing:0.044800pt;}
.ls7_c00430{letter-spacing:0.051200pt;}
.ls4_c00430{letter-spacing:0.057600pt;}
.lsc_c00430{letter-spacing:0.064000pt;}
.ls8_c00430{letter-spacing:0.083200pt;}
.ls9_c00430{letter-spacing:0.096000pt;}
.lsd_c00430{letter-spacing:0.102400pt;}
.ws7_c00430{word-spacing:-16.083200pt;}
.ws5_c00430{word-spacing:-16.057600pt;}
.ws8_c00430{word-spacing:-16.038400pt;}
.ws6_c00430{word-spacing:-16.032000pt;}
.ws3_c00430{word-spacing:-16.025600pt;}
.ws2_c00430{word-spacing:-16.019200pt;}
.ws9_c00430{word-spacing:-16.012800pt;}
.ws4_c00430{word-spacing:-16.006400pt;}
.ws0_c00430{word-spacing:-16.000000pt;}
.ws1_c00430{word-spacing:-15.993600pt;}
.wsb_c00430{word-spacing:0.000000pt;}
.wsa_c00430{word-spacing:0.171008pt;}
._4_c00430{margin-left:-0.992000pt;}
._0_c00430{width:0.919168pt;}
._6_c00430{width:5.715200pt;}
._1_c00430{width:14.041600pt;}
._9_c00430{width:26.579200pt;}
._3_c00430{width:27.468800pt;}
._7_c00430{width:33.536000pt;}
._2_c00430{width:50.848000pt;}
._5_c00430{width:107.059200pt;}
._8_c00430{width:198.374400pt;}
.fs0_c00430{font-size:53.440000pt;}
.fs1_c00430{font-size:64.000000pt;}
.fs3_c00430{font-size:74.560000pt;}
.fs2_c00430{font-size:96.000000pt;}
.y0_c00430{bottom:0.000000pt;}
.y5_c00430{bottom:50.987067pt;}
.y4_c00430{bottom:69.387067pt;}
.y21_c00430{bottom:104.987067pt;}
.y20_c00430{bottom:132.667067pt;}
.y1f_c00430{bottom:170.827067pt;}
.y1e_c00430{bottom:209.147200pt;}
.y1d_c00430{bottom:247.387067pt;}
.y1c_c00430{bottom:275.067067pt;}
.y1b_c00430{bottom:313.227067pt;}
.y1a_c00430{bottom:340.907067pt;}
.y19_c00430{bottom:379.147200pt;}
.y18_c00430{bottom:417.387067pt;}
.y17_c00430{bottom:445.067200pt;}
.y16_c00430{bottom:483.227067pt;}
.y15_c00430{bottom:521.467067pt;}
.y14_c00430{bottom:559.787067pt;}
.y13_c00430{bottom:598.027067pt;}
.y12_c00430{bottom:636.267067pt;}
.y11_c00430{bottom:663.947067pt;}
.y10_c00430{bottom:702.187067pt;}
.yf_c00430{bottom:729.867067pt;}
.ye_c00430{bottom:757.467067pt;}
.yd_c00430{bottom:785.067067pt;}
.yc_c00430{bottom:812.667067pt;}
.yb_c00430{bottom:840.187067pt;}
.ya_c00430{bottom:867.787067pt;}
.y9_c00430{bottom:895.387067pt;}
.y8_c00430{bottom:925.147067pt;}
.y7_c00430{bottom:958.027067pt;}
.y6_c00430{bottom:980.267067pt;}
.y3_c00430{bottom:1006.347067pt;}
.y2_c00430{bottom:1035.947576pt;}
.y1_c00430{bottom:1063.147200pt;}
.h1_c00430{height:47.020937pt;}
.h2_c00430{height:56.156250pt;}
.h5_c00430{height:56.312500pt;}
.h4_c00430{height:65.422031pt;}
.h3_c00430{height:85.265625pt;}
.h0_c00430{height:1122.666667pt;}
.w1_c00430{width:793.333333pt;}
.w0_c00430{width:793.626667pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:113.440000pt;}
.x2_c00430{left:656.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_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_65298bdbfd23667f64449ad1.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.095703;font-style:normal;font-weight:normal;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_23a21469481744d8c405ba2c.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.093262;font-style:normal;font-weight:normal;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_c9129ea3b712915db278a49f.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00431;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff4_c00431{font-family:ff4_c00431;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_c00431;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff5_c00431{font-family:ff5_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;}
.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;}
.ls16_c00431{letter-spacing:-0.360000px;}
.ls14_c00431{letter-spacing:-0.201600px;}
.ls11_c00431{letter-spacing:-0.100800px;}
.lsd_c00431{letter-spacing:-0.048096px;}
.lsf_c00431{letter-spacing:-0.036000px;}
.ls17_c00431{letter-spacing:-0.028800px;}
.ls15_c00431{letter-spacing:-0.021600px;}
.ls10_c00431{letter-spacing:-0.014400px;}
.ls13_c00431{letter-spacing:-0.007200px;}
.lse_c00431{letter-spacing:0.000000px;}
.ls2_c00431{letter-spacing:0.007200px;}
.ls6_c00431{letter-spacing:0.014400px;}
.ls0_c00431{letter-spacing:0.021600px;}
.ls8_c00431{letter-spacing:0.025164px;}
.ls1_c00431{letter-spacing:0.028800px;}
.ls3_c00431{letter-spacing:0.033552px;}
.ls7_c00431{letter-spacing:0.036000px;}
.lsa_c00431{letter-spacing:0.043200px;}
.ls4_c00431{letter-spacing:0.050400px;}
.ls5_c00431{letter-spacing:0.057600px;}
.lsc_c00431{letter-spacing:0.100800px;}
.ls12_c00431{letter-spacing:0.158400px;}
.lsb_c00431{letter-spacing:0.360000px;}
.ls9_c00431{letter-spacing:54.864000px;}
.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;}
}
.wsa_c00431{word-spacing:-72.000000px;}
.ws7_c00431{word-spacing:-18.050400px;}
.ws8_c00431{word-spacing:-18.036000px;}
.ws3_c00431{word-spacing:-18.028800px;}
.ws1_c00431{word-spacing:-18.021600px;}
.wsb_c00431{word-spacing:-18.014400px;}
.ws5_c00431{word-spacing:-18.007200px;}
.ws2_c00431{word-spacing:-18.000000px;}
.ws6_c00431{word-spacing:-17.992800px;}
.ws9_c00431{word-spacing:-17.971200px;}
.ws0_c00431{word-spacing:-17.964000px;}
.ws4_c00431{word-spacing:-17.899200px;}
.ws12_c00431{word-spacing:-0.136800px;}
.wsf_c00431{word-spacing:-0.050400px;}
.ws11_c00431{word-spacing:-0.021600px;}
.wse_c00431{word-spacing:-0.007200px;}
.wsd_c00431{word-spacing:0.000000px;}
.wsc_c00431{word-spacing:0.138276px;}
.ws15_c00431{word-spacing:1.051200px;}
.ws16_c00431{word-spacing:3.153600px;}
.ws17_c00431{word-spacing:3.254400px;}
.ws13_c00431{word-spacing:43.941600px;}
.ws10_c00431{word-spacing:64.648800px;}
.ws14_c00431{word-spacing:207.396000px;}
._0_c00431{margin-left:-1.123200px;}
._3_c00431{width:1.165932px;}
._5_c00431{width:3.232800px;}
._2_c00431{width:43.840800px;}
._1_c00431{width:64.202400px;}
._4_c00431{width:98.668800px;}
.fc1_c00431{color:rgb(5,99,193);}
.fc0_c00431{color:rgb(0,0,0);}
.fs0_c00431{font-size:60.120000px;}
.fs1_c00431{font-size:72.000000px;}
.fs2_c00431{font-size:83.880000px;}
.y0_c00431{bottom:0.000000px;}
.y6_c00431{bottom:57.360450px;}
.y5_c00431{bottom:78.060450px;}
.y22_c00431{bottom:139.800450px;}
.y21_c00431{bottom:170.850450px;}
.y20_c00431{bottom:203.250450px;}
.y1f_c00431{bottom:234.300450px;}
.y1e_c00431{bottom:265.260450px;}
.y1d_c00431{bottom:297.660450px;}
.y1c_c00431{bottom:328.710450px;}
.y1b_c00431{bottom:359.760450px;}
.y1a_c00431{bottom:390.720450px;}
.y19_c00431{bottom:425.280450px;}
.y18_c00431{bottom:471.090600px;}
.y17_c00431{bottom:514.290450px;}
.y16_c00431{bottom:545.340450px;}
.y15_c00431{bottom:588.450450px;}
.y14_c00431{bottom:619.590450px;}
.y13_c00431{bottom:662.520450px;}
.y12_c00431{bottom:705.540450px;}
.y11_c00431{bottom:748.650450px;}
.y10_c00431{bottom:791.670450px;}
.yf_c00431{bottom:834.690450px;}
.ye_c00431{bottom:865.830450px;}
.yd_c00431{bottom:908.760450px;}
.yc_c00431{bottom:951.870450px;}
.yb_c00431{bottom:985.080450px;}
.ya_c00431{bottom:1031.070450px;}
.y9_c00431{bottom:1062.210450px;}
.y8_c00431{bottom:1093.260450px;}
.y7_c00431{bottom:1124.310450px;}
.y4_c00431{bottom:1144.380657px;}
.y3_c00431{bottom:1161.660648px;}
.y2_c00431{bottom:1178.850459px;}
.y1_c00431{bottom:1196.130450px;}
.h1_c00431{height:52.898555px;}
.h2_c00431{height:63.175781px;}
.h4_c00431{height:63.351562px;}
.h5_c00431{height:63.949219px;}
.h6_c00431{height:64.546875px;}
.h3_c00431{height:74.500840px;}
.h0_c00431{height:1263.000000px;}
.w1_c00431{width:892.500000px;}
.w0_c00431{width:892.830000px;}
.x0_c00431{left:0.000000px;}
.x4_c00431{left:127.620000px;}
.x5_c00431{left:154.620000px;}
.x6_c00431{left:181.620000px;}
.x1_c00431{left:649.620000px;}
.x3_c00431{left:738.450000px;}
.x2_c00431{left:765.450198px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls16_c00431{letter-spacing:-0.320000pt;}
.ls14_c00431{letter-spacing:-0.179200pt;}
.ls11_c00431{letter-spacing:-0.089600pt;}
.lsd_c00431{letter-spacing:-0.042752pt;}
.lsf_c00431{letter-spacing:-0.032000pt;}
.ls17_c00431{letter-spacing:-0.025600pt;}
.ls15_c00431{letter-spacing:-0.019200pt;}
.ls10_c00431{letter-spacing:-0.012800pt;}
.ls13_c00431{letter-spacing:-0.006400pt;}
.lse_c00431{letter-spacing:0.000000pt;}
.ls2_c00431{letter-spacing:0.006400pt;}
.ls6_c00431{letter-spacing:0.012800pt;}
.ls0_c00431{letter-spacing:0.019200pt;}
.ls8_c00431{letter-spacing:0.022368pt;}
.ls1_c00431{letter-spacing:0.025600pt;}
.ls3_c00431{letter-spacing:0.029824pt;}
.ls7_c00431{letter-spacing:0.032000pt;}
.lsa_c00431{letter-spacing:0.038400pt;}
.ls4_c00431{letter-spacing:0.044800pt;}
.ls5_c00431{letter-spacing:0.051200pt;}
.lsc_c00431{letter-spacing:0.089600pt;}
.ls12_c00431{letter-spacing:0.140800pt;}
.lsb_c00431{letter-spacing:0.320000pt;}
.ls9_c00431{letter-spacing:48.768000pt;}
.wsa_c00431{word-spacing:-64.000000pt;}
.ws7_c00431{word-spacing:-16.044800pt;}
.ws8_c00431{word-spacing:-16.032000pt;}
.ws3_c00431{word-spacing:-16.025600pt;}
.ws1_c00431{word-spacing:-16.019200pt;}
.wsb_c00431{word-spacing:-16.012800pt;}
.ws5_c00431{word-spacing:-16.006400pt;}
.ws2_c00431{word-spacing:-16.000000pt;}
.ws6_c00431{word-spacing:-15.993600pt;}
.ws9_c00431{word-spacing:-15.974400pt;}
.ws0_c00431{word-spacing:-15.968000pt;}
.ws4_c00431{word-spacing:-15.910400pt;}
.ws12_c00431{word-spacing:-0.121600pt;}
.wsf_c00431{word-spacing:-0.044800pt;}
.ws11_c00431{word-spacing:-0.019200pt;}
.wse_c00431{word-spacing:-0.006400pt;}
.wsd_c00431{word-spacing:0.000000pt;}
.wsc_c00431{word-spacing:0.122912pt;}
.ws15_c00431{word-spacing:0.934400pt;}
.ws16_c00431{word-spacing:2.803200pt;}
.ws17_c00431{word-spacing:2.892800pt;}
.ws13_c00431{word-spacing:39.059200pt;}
.ws10_c00431{word-spacing:57.465600pt;}
.ws14_c00431{word-spacing:184.352000pt;}
._0_c00431{margin-left:-0.998400pt;}
._3_c00431{width:1.036384pt;}
._5_c00431{width:2.873600pt;}
._2_c00431{width:38.969600pt;}
._1_c00431{width:57.068800pt;}
._4_c00431{width:87.705600pt;}
.fs0_c00431{font-size:53.440000pt;}
.fs1_c00431{font-size:64.000000pt;}
.fs2_c00431{font-size:74.560000pt;}
.y0_c00431{bottom:0.000000pt;}
.y6_c00431{bottom:50.987067pt;}
.y5_c00431{bottom:69.387067pt;}
.y22_c00431{bottom:124.267067pt;}
.y21_c00431{bottom:151.867067pt;}
.y20_c00431{bottom:180.667067pt;}
.y1f_c00431{bottom:208.267067pt;}
.y1e_c00431{bottom:235.787067pt;}
.y1d_c00431{bottom:264.587067pt;}
.y1c_c00431{bottom:292.187067pt;}
.y1b_c00431{bottom:319.787067pt;}
.y1a_c00431{bottom:347.307067pt;}
.y19_c00431{bottom:378.027067pt;}
.y18_c00431{bottom:418.747200pt;}
.y17_c00431{bottom:457.147067pt;}
.y16_c00431{bottom:484.747067pt;}
.y15_c00431{bottom:523.067067pt;}
.y14_c00431{bottom:550.747067pt;}
.y13_c00431{bottom:588.907067pt;}
.y12_c00431{bottom:627.147067pt;}
.y11_c00431{bottom:665.467067pt;}
.y10_c00431{bottom:703.707067pt;}
.yf_c00431{bottom:741.947067pt;}
.ye_c00431{bottom:769.627067pt;}
.yd_c00431{bottom:807.787067pt;}
.yc_c00431{bottom:846.107067pt;}
.yb_c00431{bottom:875.627067pt;}
.ya_c00431{bottom:916.507067pt;}
.y9_c00431{bottom:944.187067pt;}
.y8_c00431{bottom:971.787067pt;}
.y7_c00431{bottom:999.387067pt;}
.y4_c00431{bottom:1017.227251pt;}
.y3_c00431{bottom:1032.587243pt;}
.y2_c00431{bottom:1047.867075pt;}
.y1_c00431{bottom:1063.227067pt;}
.h1_c00431{height:47.020937pt;}
.h2_c00431{height:56.156250pt;}
.h4_c00431{height:56.312500pt;}
.h5_c00431{height:56.843750pt;}
.h6_c00431{height:57.375000pt;}
.h3_c00431{height:66.222969pt;}
.h0_c00431{height:1122.666667pt;}
.w1_c00431{width:793.333333pt;}
.w0_c00431{width:793.626667pt;}
.x0_c00431{left:0.000000pt;}
.x4_c00431{left:113.440000pt;}
.x5_c00431{left:137.440000pt;}
.x6_c00431{left:161.440000pt;}
.x1_c00431{left:577.440000pt;}
.x3_c00431{left:656.400000pt;}
.x2_c00431{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cda12fa4600f77438f1a02cb.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.095703;font-style:normal;font-weight:normal;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_d7cf58c47537fe8a4e2d7dc2.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;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_c00432;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff4_c00432{font-family:ff4_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;}
.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;}
.ls15_c00432{letter-spacing:-0.180000px;}
.ls10_c00432{letter-spacing:-0.165600px;}
.lsc_c00432{letter-spacing:-0.102204px;}
.ls14_c00432{letter-spacing:-0.050400px;}
.ls12_c00432{letter-spacing:-0.028800px;}
.ls11_c00432{letter-spacing:-0.021600px;}
.lse_c00432{letter-spacing:-0.014400px;}
.lsf_c00432{letter-spacing:-0.007200px;}
.lsd_c00432{letter-spacing:0.000000px;}
.ls1_c00432{letter-spacing:0.007200px;}
.ls4_c00432{letter-spacing:0.014400px;}
.ls9_c00432{letter-spacing:0.021600px;}
.ls7_c00432{letter-spacing:0.028800px;}
.ls2_c00432{letter-spacing:0.036000px;}
.ls5_c00432{letter-spacing:0.043200px;}
.ls3_c00432{letter-spacing:0.050400px;}
.ls8_c00432{letter-spacing:0.057600px;}
.ls6_c00432{letter-spacing:0.072000px;}
.lsa_c00432{letter-spacing:0.144000px;}
.ls13_c00432{letter-spacing:0.158400px;}
.ls0_c00432{letter-spacing:54.864000px;}
.lsb_c00432{letter-spacing:108.360000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00432{word-spacing:-72.000000px;}
.ws8_c00432{word-spacing:-18.158400px;}
.ws3_c00432{word-spacing:-18.050400px;}
.ws5_c00432{word-spacing:-18.043200px;}
.ws2_c00432{word-spacing:-18.036000px;}
.ws7_c00432{word-spacing:-18.028800px;}
.ws9_c00432{word-spacing:-18.021600px;}
.ws4_c00432{word-spacing:-18.014400px;}
.ws1_c00432{word-spacing:-18.007200px;}
.ws6_c00432{word-spacing:-18.000000px;}
.wsa_c00432{word-spacing:-17.992800px;}
.ws1c_c00432{word-spacing:-0.057600px;}
.wsc_c00432{word-spacing:0.000000px;}
.ws15_c00432{word-spacing:0.007200px;}
.wsb_c00432{word-spacing:0.192384px;}
.ws11_c00432{word-spacing:2.671200px;}
.ws10_c00432{word-spacing:2.901600px;}
.wse_c00432{word-spacing:4.644000px;}
.ws18_c00432{word-spacing:5.032800px;}
.ws14_c00432{word-spacing:5.364000px;}
.ws13_c00432{word-spacing:8.496000px;}
.ws12_c00432{word-spacing:8.647200px;}
.ws1a_c00432{word-spacing:10.281600px;}
.ws1b_c00432{word-spacing:10.490400px;}
.ws16_c00432{word-spacing:18.338400px;}
.wsd_c00432{word-spacing:21.225600px;}
.ws17_c00432{word-spacing:28.108800px;}
.wsf_c00432{word-spacing:206.236800px;}
.ws19_c00432{word-spacing:370.800000px;}
._1_c00432{margin-left:-1.274400px;}
._0_c00432{width:1.034064px;}
._4_c00432{width:2.260800px;}
._3_c00432{width:4.665600px;}
._7_c00432{width:5.697936px;}
._6_c00432{width:8.625600px;}
._a_c00432{width:10.058400px;}
._2_c00432{width:21.232800px;}
._9_c00432{width:27.712800px;}
._8_c00432{width:108.345600px;}
._5_c00432{width:1887.487200px;}
.fc2_c00432{color:rgb(5,99,193);}
.fc1_c00432{color:rgb(0,0,0);}
.fc0_c00432{color:rgb(32,31,30);}
.fs0_c00432{font-size:60.120000px;}
.fs1_c00432{font-size:72.000000px;}
.y0_c00432{bottom:0.000000px;}
.y5_c00432{bottom:57.360450px;}
.y4_c00432{bottom:78.060450px;}
.y24_c00432{bottom:165.810450px;}
.y23_c00432{bottom:196.770450px;}
.y22_c00432{bottom:229.170450px;}
.y21_c00432{bottom:260.220450px;}
.y20_c00432{bottom:291.270450px;}
.y1f_c00432{bottom:322.320450px;}
.y1e_c00432{bottom:353.280450px;}
.y1d_c00432{bottom:385.680450px;}
.y1c_c00432{bottom:416.730450px;}
.y1b_c00432{bottom:449.040600px;}
.y1a_c00432{bottom:480.090600px;}
.y19_c00432{bottom:512.490450px;}
.y18_c00432{bottom:543.540450px;}
.y17_c00432{bottom:574.500450px;}
.y16_c00432{bottom:606.900450px;}
.y15_c00432{bottom:637.860450px;}
.y14_c00432{bottom:670.260450px;}
.y13_c00432{bottom:701.310450px;}
.y12_c00432{bottom:732.360450px;}
.y11_c00432{bottom:763.410450px;}
.y10_c00432{bottom:795.810450px;}
.yf_c00432{bottom:826.860450px;}
.ye_c00432{bottom:857.910450px;}
.yd_c00432{bottom:888.870450px;}
.yc_c00432{bottom:921.270450px;}
.yb_c00432{bottom:952.320450px;}
.ya_c00432{bottom:983.280450px;}
.y9_c00432{bottom:1015.680450px;}
.y8_c00432{bottom:1046.640450px;}
.y7_c00432{bottom:1079.040450px;}
.y6_c00432{bottom:1110.090450px;}
.y3_c00432{bottom:1132.140450px;}
.y2_c00432{bottom:1165.441023px;}
.y1_c00432{bottom:1196.040600px;}
.h1_c00432{height:52.898555px;}
.h2_c00432{height:63.175781px;}
.h4_c00432{height:63.351562px;}
.h3_c00432{height:64.546875px;}
.h0_c00432{height:1263.000000px;}
.w1_c00432{width:892.500000px;}
.w0_c00432{width:892.830000px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:127.620000px;}
.x3_c00432{left:154.620000px;}
.x4_c00432{left:181.620000px;}
.x2_c00432{left:738.450000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls15_c00432{letter-spacing:-0.160000pt;}
.ls10_c00432{letter-spacing:-0.147200pt;}
.lsc_c00432{letter-spacing:-0.090848pt;}
.ls14_c00432{letter-spacing:-0.044800pt;}
.ls12_c00432{letter-spacing:-0.025600pt;}
.ls11_c00432{letter-spacing:-0.019200pt;}
.lse_c00432{letter-spacing:-0.012800pt;}
.lsf_c00432{letter-spacing:-0.006400pt;}
.lsd_c00432{letter-spacing:0.000000pt;}
.ls1_c00432{letter-spacing:0.006400pt;}
.ls4_c00432{letter-spacing:0.012800pt;}
.ls9_c00432{letter-spacing:0.019200pt;}
.ls7_c00432{letter-spacing:0.025600pt;}
.ls2_c00432{letter-spacing:0.032000pt;}
.ls5_c00432{letter-spacing:0.038400pt;}
.ls3_c00432{letter-spacing:0.044800pt;}
.ls8_c00432{letter-spacing:0.051200pt;}
.ls6_c00432{letter-spacing:0.064000pt;}
.lsa_c00432{letter-spacing:0.128000pt;}
.ls13_c00432{letter-spacing:0.140800pt;}
.ls0_c00432{letter-spacing:48.768000pt;}
.lsb_c00432{letter-spacing:96.320000pt;}
.ws0_c00432{word-spacing:-64.000000pt;}
.ws8_c00432{word-spacing:-16.140800pt;}
.ws3_c00432{word-spacing:-16.044800pt;}
.ws5_c00432{word-spacing:-16.038400pt;}
.ws2_c00432{word-spacing:-16.032000pt;}
.ws7_c00432{word-spacing:-16.025600pt;}
.ws9_c00432{word-spacing:-16.019200pt;}
.ws4_c00432{word-spacing:-16.012800pt;}
.ws1_c00432{word-spacing:-16.006400pt;}
.ws6_c00432{word-spacing:-16.000000pt;}
.wsa_c00432{word-spacing:-15.993600pt;}
.ws1c_c00432{word-spacing:-0.051200pt;}
.wsc_c00432{word-spacing:0.000000pt;}
.ws15_c00432{word-spacing:0.006400pt;}
.wsb_c00432{word-spacing:0.171008pt;}
.ws11_c00432{word-spacing:2.374400pt;}
.ws10_c00432{word-spacing:2.579200pt;}
.wse_c00432{word-spacing:4.128000pt;}
.ws18_c00432{word-spacing:4.473600pt;}
.ws14_c00432{word-spacing:4.768000pt;}
.ws13_c00432{word-spacing:7.552000pt;}
.ws12_c00432{word-spacing:7.686400pt;}
.ws1a_c00432{word-spacing:9.139200pt;}
.ws1b_c00432{word-spacing:9.324800pt;}
.ws16_c00432{word-spacing:16.300800pt;}
.wsd_c00432{word-spacing:18.867200pt;}
.ws17_c00432{word-spacing:24.985600pt;}
.wsf_c00432{word-spacing:183.321600pt;}
.ws19_c00432{word-spacing:329.600000pt;}
._1_c00432{margin-left:-1.132800pt;}
._0_c00432{width:0.919168pt;}
._4_c00432{width:2.009600pt;}
._3_c00432{width:4.147200pt;}
._7_c00432{width:5.064832pt;}
._6_c00432{width:7.667200pt;}
._a_c00432{width:8.940800pt;}
._2_c00432{width:18.873600pt;}
._9_c00432{width:24.633600pt;}
._8_c00432{width:96.307200pt;}
._5_c00432{width:1677.766400pt;}
.fs0_c00432{font-size:53.440000pt;}
.fs1_c00432{font-size:64.000000pt;}
.y0_c00432{bottom:0.000000pt;}
.y5_c00432{bottom:50.987067pt;}
.y4_c00432{bottom:69.387067pt;}
.y24_c00432{bottom:147.387067pt;}
.y23_c00432{bottom:174.907067pt;}
.y22_c00432{bottom:203.707067pt;}
.y21_c00432{bottom:231.307067pt;}
.y20_c00432{bottom:258.907067pt;}
.y1f_c00432{bottom:286.507067pt;}
.y1e_c00432{bottom:314.027067pt;}
.y1d_c00432{bottom:342.827067pt;}
.y1c_c00432{bottom:370.427067pt;}
.y1b_c00432{bottom:399.147200pt;}
.y1a_c00432{bottom:426.747200pt;}
.y19_c00432{bottom:455.547067pt;}
.y18_c00432{bottom:483.147067pt;}
.y17_c00432{bottom:510.667067pt;}
.y16_c00432{bottom:539.467067pt;}
.y15_c00432{bottom:566.987067pt;}
.y14_c00432{bottom:595.787067pt;}
.y13_c00432{bottom:623.387067pt;}
.y12_c00432{bottom:650.987067pt;}
.y11_c00432{bottom:678.587067pt;}
.y10_c00432{bottom:707.387067pt;}
.yf_c00432{bottom:734.987067pt;}
.ye_c00432{bottom:762.587067pt;}
.yd_c00432{bottom:790.107067pt;}
.yc_c00432{bottom:818.907067pt;}
.yb_c00432{bottom:846.507067pt;}
.ya_c00432{bottom:874.027067pt;}
.y9_c00432{bottom:902.827067pt;}
.y8_c00432{bottom:930.347067pt;}
.y7_c00432{bottom:959.147067pt;}
.y6_c00432{bottom:986.747067pt;}
.y3_c00432{bottom:1006.347067pt;}
.y2_c00432{bottom:1035.947576pt;}
.y1_c00432{bottom:1063.147200pt;}
.h1_c00432{height:47.020937pt;}
.h2_c00432{height:56.156250pt;}
.h4_c00432{height:56.312500pt;}
.h3_c00432{height:57.375000pt;}
.h0_c00432{height:1122.666667pt;}
.w1_c00432{width:793.333333pt;}
.w0_c00432{width:793.626667pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:113.440000pt;}
.x3_c00432{left:137.440000pt;}
.x4_c00432{left:161.440000pt;}
.x2_c00432{left:656.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_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_a11ce65ffc7265771d9606dd.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.095703;font-style:normal;font-weight:normal;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_dc289e27a99f4ca944f52ef5.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;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_c00433;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff5_c00433{font-family:ff5_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;}
.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;}
.ls12_c00433{letter-spacing:-0.360000px;}
.ls17_c00433{letter-spacing:-0.057600px;}
.lsf_c00433{letter-spacing:-0.048096px;}
.ls11_c00433{letter-spacing:-0.043200px;}
.ls15_c00433{letter-spacing:-0.036000px;}
.ls18_c00433{letter-spacing:-0.021600px;}
.ls13_c00433{letter-spacing:-0.014400px;}
.ls14_c00433{letter-spacing:-0.007200px;}
.ls10_c00433{letter-spacing:0.000000px;}
.ls1_c00433{letter-spacing:0.007200px;}
.ls6_c00433{letter-spacing:0.014400px;}
.ls5_c00433{letter-spacing:0.021600px;}
.ls0_c00433{letter-spacing:0.028800px;}
.ls4_c00433{letter-spacing:0.036000px;}
.ls3_c00433{letter-spacing:0.043200px;}
.lsd_c00433{letter-spacing:0.050400px;}
.ls9_c00433{letter-spacing:0.057600px;}
.lsa_c00433{letter-spacing:0.072000px;}
.ls16_c00433{letter-spacing:0.079200px;}
.lsb_c00433{letter-spacing:0.100800px;}
.ls8_c00433{letter-spacing:0.108000px;}
.ls19_c00433{letter-spacing:0.158400px;}
.lse_c00433{letter-spacing:0.338400px;}
.ls7_c00433{letter-spacing:0.360000px;}
.lsc_c00433{letter-spacing:0.518400px;}
.ls2_c00433{letter-spacing:54.864000px;}
.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;}
}
.ws2_c00433{word-spacing:-72.000000px;}
.wsa_c00433{word-spacing:-18.158400px;}
.ws6_c00433{word-spacing:-18.108000px;}
.ws8_c00433{word-spacing:-18.100800px;}
.ws9_c00433{word-spacing:-18.079200px;}
.ws7_c00433{word-spacing:-18.072000px;}
.ws4_c00433{word-spacing:-18.036000px;}
.ws0_c00433{word-spacing:-18.028800px;}
.ws5_c00433{word-spacing:-18.014400px;}
.ws1_c00433{word-spacing:-18.007200px;}
.ws3_c00433{word-spacing:-18.000000px;}
.ws1c_c00433{word-spacing:-3.578400px;}
.ws1b_c00433{word-spacing:-3.564000px;}
.wse_c00433{word-spacing:-3.261600px;}
.ws1a_c00433{word-spacing:-2.282400px;}
.ws19_c00433{word-spacing:-2.196000px;}
.ws10_c00433{word-spacing:-1.188000px;}
.ws11_c00433{word-spacing:-1.144800px;}
.ws18_c00433{word-spacing:-0.302400px;}
.wsc_c00433{word-spacing:0.000000px;}
.wsb_c00433{word-spacing:0.138276px;}
.wsd_c00433{word-spacing:0.691200px;}
.ws17_c00433{word-spacing:5.990400px;}
.ws16_c00433{word-spacing:6.789600px;}
.ws13_c00433{word-spacing:10.022400px;}
.ws12_c00433{word-spacing:10.094400px;}
.ws1e_c00433{word-spacing:13.075200px;}
.ws1d_c00433{word-spacing:13.341600px;}
.ws14_c00433{word-spacing:13.788000px;}
.ws15_c00433{word-spacing:27.036000px;}
.wsf_c00433{word-spacing:28.684800px;}
._9_c00433{margin-left:-4.413600px;}
._2_c00433{margin-left:-3.276000px;}
._0_c00433{margin-left:-1.123200px;}
._1_c00433{width:1.166400px;}
._8_c00433{width:5.284800px;}
._7_c00433{width:6.825600px;}
._4_c00433{width:10.094400px;}
._a_c00433{width:12.556800px;}
._5_c00433{width:13.752000px;}
._6_c00433{width:26.985600px;}
._3_c00433{width:29.044800px;}
.fc1_c00433{color:rgb(5,99,193);}
.fc0_c00433{color:rgb(0,0,0);}
.fs0_c00433{font-size:60.120000px;}
.fs1_c00433{font-size:72.000000px;}
.y0_c00433{bottom:0.000000px;}
.y6_c00433{bottom:57.360450px;}
.y5_c00433{bottom:78.060450px;}
.y27_c00433{bottom:117.930450px;}
.y26_c00433{bottom:148.890450px;}
.y25_c00433{bottom:181.290450px;}
.y24_c00433{bottom:212.340450px;}
.y23_c00433{bottom:243.300450px;}
.y22_c00433{bottom:275.700450px;}
.y21_c00433{bottom:306.750450px;}
.y20_c00433{bottom:337.800450px;}
.y1f_c00433{bottom:370.200600px;}
.y1e_c00433{bottom:401.250600px;}
.y1d_c00433{bottom:432.210600px;}
.y1c_c00433{bottom:464.610600px;}
.y1b_c00433{bottom:495.660450px;}
.y1a_c00433{bottom:526.710450px;}
.y19_c00433{bottom:557.670450px;}
.y18_c00433{bottom:590.070450px;}
.y17_c00433{bottom:621.120450px;}
.y16_c00433{bottom:652.080450px;}
.y15_c00433{bottom:684.480450px;}
.y14_c00433{bottom:715.530450px;}
.y13_c00433{bottom:746.580450px;}
.y12_c00433{bottom:778.980450px;}
.y11_c00433{bottom:810.030450px;}
.y10_c00433{bottom:840.990450px;}
.yf_c00433{bottom:873.390450px;}
.ye_c00433{bottom:904.440450px;}
.yd_c00433{bottom:935.400450px;}
.yc_c00433{bottom:967.800450px;}
.yb_c00433{bottom:998.850450px;}
.ya_c00433{bottom:1029.900450px;}
.y9_c00433{bottom:1060.860450px;}
.y8_c00433{bottom:1093.260450px;}
.y7_c00433{bottom:1124.310450px;}
.y4_c00433{bottom:1144.380657px;}
.y3_c00433{bottom:1161.660648px;}
.y2_c00433{bottom:1178.850459px;}
.y1_c00433{bottom:1196.130450px;}
.h1_c00433{height:52.898555px;}
.h2_c00433{height:63.175781px;}
.h5_c00433{height:63.351562px;}
.h3_c00433{height:63.949219px;}
.h4_c00433{height:64.546875px;}
.h0_c00433{height:1263.000000px;}
.w1_c00433{width:892.500000px;}
.w0_c00433{width:892.830000px;}
.x0_c00433{left:0.000000px;}
.x4_c00433{left:127.620000px;}
.x6_c00433{left:154.620000px;}
.x5_c00433{left:181.620000px;}
.x1_c00433{left:649.620000px;}
.x3_c00433{left:738.450000px;}
.x2_c00433{left:765.450198px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls12_c00433{letter-spacing:-0.320000pt;}
.ls17_c00433{letter-spacing:-0.051200pt;}
.lsf_c00433{letter-spacing:-0.042752pt;}
.ls11_c00433{letter-spacing:-0.038400pt;}
.ls15_c00433{letter-spacing:-0.032000pt;}
.ls18_c00433{letter-spacing:-0.019200pt;}
.ls13_c00433{letter-spacing:-0.012800pt;}
.ls14_c00433{letter-spacing:-0.006400pt;}
.ls10_c00433{letter-spacing:0.000000pt;}
.ls1_c00433{letter-spacing:0.006400pt;}
.ls6_c00433{letter-spacing:0.012800pt;}
.ls5_c00433{letter-spacing:0.019200pt;}
.ls0_c00433{letter-spacing:0.025600pt;}
.ls4_c00433{letter-spacing:0.032000pt;}
.ls3_c00433{letter-spacing:0.038400pt;}
.lsd_c00433{letter-spacing:0.044800pt;}
.ls9_c00433{letter-spacing:0.051200pt;}
.lsa_c00433{letter-spacing:0.064000pt;}
.ls16_c00433{letter-spacing:0.070400pt;}
.lsb_c00433{letter-spacing:0.089600pt;}
.ls8_c00433{letter-spacing:0.096000pt;}
.ls19_c00433{letter-spacing:0.140800pt;}
.lse_c00433{letter-spacing:0.300800pt;}
.ls7_c00433{letter-spacing:0.320000pt;}
.lsc_c00433{letter-spacing:0.460800pt;}
.ls2_c00433{letter-spacing:48.768000pt;}
.ws2_c00433{word-spacing:-64.000000pt;}
.wsa_c00433{word-spacing:-16.140800pt;}
.ws6_c00433{word-spacing:-16.096000pt;}
.ws8_c00433{word-spacing:-16.089600pt;}
.ws9_c00433{word-spacing:-16.070400pt;}
.ws7_c00433{word-spacing:-16.064000pt;}
.ws4_c00433{word-spacing:-16.032000pt;}
.ws0_c00433{word-spacing:-16.025600pt;}
.ws5_c00433{word-spacing:-16.012800pt;}
.ws1_c00433{word-spacing:-16.006400pt;}
.ws3_c00433{word-spacing:-16.000000pt;}
.ws1c_c00433{word-spacing:-3.180800pt;}
.ws1b_c00433{word-spacing:-3.168000pt;}
.wse_c00433{word-spacing:-2.899200pt;}
.ws1a_c00433{word-spacing:-2.028800pt;}
.ws19_c00433{word-spacing:-1.952000pt;}
.ws10_c00433{word-spacing:-1.056000pt;}
.ws11_c00433{word-spacing:-1.017600pt;}
.ws18_c00433{word-spacing:-0.268800pt;}
.wsc_c00433{word-spacing:0.000000pt;}
.wsb_c00433{word-spacing:0.122912pt;}
.wsd_c00433{word-spacing:0.614400pt;}
.ws17_c00433{word-spacing:5.324800pt;}
.ws16_c00433{word-spacing:6.035200pt;}
.ws13_c00433{word-spacing:8.908800pt;}
.ws12_c00433{word-spacing:8.972800pt;}
.ws1e_c00433{word-spacing:11.622400pt;}
.ws1d_c00433{word-spacing:11.859200pt;}
.ws14_c00433{word-spacing:12.256000pt;}
.ws15_c00433{word-spacing:24.032000pt;}
.wsf_c00433{word-spacing:25.497600pt;}
._9_c00433{margin-left:-3.923200pt;}
._2_c00433{margin-left:-2.912000pt;}
._0_c00433{margin-left:-0.998400pt;}
._1_c00433{width:1.036800pt;}
._8_c00433{width:4.697600pt;}
._7_c00433{width:6.067200pt;}
._4_c00433{width:8.972800pt;}
._a_c00433{width:11.161600pt;}
._5_c00433{width:12.224000pt;}
._6_c00433{width:23.987200pt;}
._3_c00433{width:25.817600pt;}
.fs0_c00433{font-size:53.440000pt;}
.fs1_c00433{font-size:64.000000pt;}
.y0_c00433{bottom:0.000000pt;}
.y6_c00433{bottom:50.987067pt;}
.y5_c00433{bottom:69.387067pt;}
.y27_c00433{bottom:104.827067pt;}
.y26_c00433{bottom:132.347067pt;}
.y25_c00433{bottom:161.147067pt;}
.y24_c00433{bottom:188.747067pt;}
.y23_c00433{bottom:216.267067pt;}
.y22_c00433{bottom:245.067067pt;}
.y21_c00433{bottom:272.667067pt;}
.y20_c00433{bottom:300.267067pt;}
.y1f_c00433{bottom:329.067200pt;}
.y1e_c00433{bottom:356.667200pt;}
.y1d_c00433{bottom:384.187200pt;}
.y1c_c00433{bottom:412.987200pt;}
.y1b_c00433{bottom:440.587067pt;}
.y1a_c00433{bottom:468.187067pt;}
.y19_c00433{bottom:495.707067pt;}
.y18_c00433{bottom:524.507067pt;}
.y17_c00433{bottom:552.107067pt;}
.y16_c00433{bottom:579.627067pt;}
.y15_c00433{bottom:608.427067pt;}
.y14_c00433{bottom:636.027067pt;}
.y13_c00433{bottom:663.627067pt;}
.y12_c00433{bottom:692.427067pt;}
.y11_c00433{bottom:720.027067pt;}
.y10_c00433{bottom:747.547067pt;}
.yf_c00433{bottom:776.347067pt;}
.ye_c00433{bottom:803.947067pt;}
.yd_c00433{bottom:831.467067pt;}
.yc_c00433{bottom:860.267067pt;}
.yb_c00433{bottom:887.867067pt;}
.ya_c00433{bottom:915.467067pt;}
.y9_c00433{bottom:942.987067pt;}
.y8_c00433{bottom:971.787067pt;}
.y7_c00433{bottom:999.387067pt;}
.y4_c00433{bottom:1017.227251pt;}
.y3_c00433{bottom:1032.587243pt;}
.y2_c00433{bottom:1047.867075pt;}
.y1_c00433{bottom:1063.227067pt;}
.h1_c00433{height:47.020937pt;}
.h2_c00433{height:56.156250pt;}
.h5_c00433{height:56.312500pt;}
.h3_c00433{height:56.843750pt;}
.h4_c00433{height:57.375000pt;}
.h0_c00433{height:1122.666667pt;}
.w1_c00433{width:793.333333pt;}
.w0_c00433{width:793.626667pt;}
.x0_c00433{left:0.000000pt;}
.x4_c00433{left:113.440000pt;}
.x6_c00433{left:137.440000pt;}
.x5_c00433{left:161.440000pt;}
.x1_c00433{left:577.440000pt;}
.x3_c00433{left:656.400000pt;}
.x2_c00433{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f687818b0911e0c6eae1848.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.095703;font-style:normal;font-weight:normal;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_6674eb1b4fdb1c854822dd4b.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00434;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff3_c00434{font-family:ff3_c00434;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_c00434;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff4_c00434{font-family:ff4_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:ff5_c00434;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff5_c00434{font-family:ff5_c00434;line-height:1.104004;font-style: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;}
.ls10_c00434{letter-spacing:-0.360000px;}
.lsd_c00434{letter-spacing:-0.102204px;}
.ls16_c00434{letter-spacing:-0.079200px;}
.ls14_c00434{letter-spacing:-0.036000px;}
.ls15_c00434{letter-spacing:-0.028800px;}
.ls13_c00434{letter-spacing:-0.021600px;}
.lsf_c00434{letter-spacing:-0.014400px;}
.ls12_c00434{letter-spacing:-0.007200px;}
.lse_c00434{letter-spacing:0.000000px;}
.ls5_c00434{letter-spacing:0.007200px;}
.ls1_c00434{letter-spacing:0.014400px;}
.ls4_c00434{letter-spacing:0.021600px;}
.lsb_c00434{letter-spacing:0.028800px;}
.ls8_c00434{letter-spacing:0.036000px;}
.ls3_c00434{letter-spacing:0.043200px;}
.lsa_c00434{letter-spacing:0.050400px;}
.ls6_c00434{letter-spacing:0.057600px;}
.ls0_c00434{letter-spacing:0.064800px;}
.lsc_c00434{letter-spacing:0.072000px;}
.ls9_c00434{letter-spacing:0.100800px;}
.ls11_c00434{letter-spacing:0.158400px;}
.ls7_c00434{letter-spacing:0.360000px;}
.ls2_c00434{letter-spacing:54.864000px;}
.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;}
}
.ws3_c00434{word-spacing:-72.000000px;}
.ws8_c00434{word-spacing:-18.158400px;}
.ws0_c00434{word-spacing:-18.064800px;}
.ws6_c00434{word-spacing:-18.057600px;}
.wsd_c00434{word-spacing:-18.050400px;}
.wsc_c00434{word-spacing:-18.043200px;}
.ws9_c00434{word-spacing:-18.036000px;}
.wsa_c00434{word-spacing:-18.028800px;}
.ws4_c00434{word-spacing:-18.021600px;}
.ws1_c00434{word-spacing:-18.014400px;}
.ws5_c00434{word-spacing:-18.007200px;}
.ws7_c00434{word-spacing:-18.000000px;}
.ws2_c00434{word-spacing:-17.985600px;}
.wsb_c00434{word-spacing:-17.971200px;}
.wse_c00434{word-spacing:-17.920800px;}
.ws19_c00434{word-spacing:-2.541600px;}
.ws15_c00434{word-spacing:-1.814400px;}
.ws10_c00434{word-spacing:0.000000px;}
.ws1a_c00434{word-spacing:0.007200px;}
.wsf_c00434{word-spacing:0.192384px;}
.ws17_c00434{word-spacing:1.008000px;}
.ws16_c00434{word-spacing:1.065600px;}
.ws11_c00434{word-spacing:2.829600px;}
.ws18_c00434{word-spacing:7.502400px;}
.ws14_c00434{word-spacing:20.916000px;}
.ws1b_c00434{word-spacing:21.873600px;}
.ws13_c00434{word-spacing:24.487200px;}
.ws12_c00434{word-spacing:154.756800px;}
._5_c00434{margin-left:-2.368800px;}
._1_c00434{margin-left:-1.231200px;}
._0_c00434{width:1.034064px;}
._2_c00434{width:2.865600px;}
._6_c00434{width:7.164000px;}
._4_c00434{width:20.887200px;}
._7_c00434{width:21.938400px;}
._3_c00434{width:24.084000px;}
._8_c00434{width:830.498400px;}
.fc2_c00434{color:rgb(5,99,193);}
.fc1_c00434{color:rgb(0,0,0);}
.fc0_c00434{color:rgb(32,31,30);}
.fs0_c00434{font-size:60.120000px;}
.fs1_c00434{font-size:72.000000px;}
.y0_c00434{bottom:0.000000px;}
.y5_c00434{bottom:57.360450px;}
.y4_c00434{bottom:78.060450px;}
.y25_c00434{bottom:137.280450px;}
.y24_c00434{bottom:168.330450px;}
.y23_c00434{bottom:199.380450px;}
.y22_c00434{bottom:230.430450px;}
.y21_c00434{bottom:262.830450px;}
.y20_c00434{bottom:293.790450px;}
.y1f_c00434{bottom:326.190450px;}
.y1e_c00434{bottom:357.240600px;}
.y1d_c00434{bottom:388.200600px;}
.y1c_c00434{bottom:419.250600px;}
.y1b_c00434{bottom:451.650450px;}
.y1a_c00434{bottom:482.700600px;}
.y19_c00434{bottom:513.750450px;}
.y18_c00434{bottom:544.710450px;}
.y17_c00434{bottom:577.110450px;}
.y16_c00434{bottom:608.160450px;}
.y15_c00434{bottom:639.210450px;}
.y14_c00434{bottom:670.260450px;}
.y13_c00434{bottom:702.660450px;}
.y12_c00434{bottom:733.710450px;}
.y11_c00434{bottom:764.760450px;}
.y10_c00434{bottom:795.720450px;}
.yf_c00434{bottom:828.120450px;}
.ye_c00434{bottom:859.080450px;}
.yd_c00434{bottom:891.480450px;}
.yc_c00434{bottom:922.530450px;}
.yb_c00434{bottom:953.490450px;}
.ya_c00434{bottom:985.890450px;}
.y9_c00434{bottom:1016.940450px;}
.y8_c00434{bottom:1047.990450px;}
.y7_c00434{bottom:1079.040450px;}
.y6_c00434{bottom:1111.440450px;}
.y3_c00434{bottom:1132.140450px;}
.y2_c00434{bottom:1165.441023px;}
.y1_c00434{bottom:1196.040600px;}
.h1_c00434{height:52.898555px;}
.h2_c00434{height:63.175781px;}
.h4_c00434{height:63.351562px;}
.h5_c00434{height:63.949219px;}
.h3_c00434{height:64.546875px;}
.h0_c00434{height:1263.000000px;}
.w1_c00434{width:892.500000px;}
.w0_c00434{width:892.830000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:127.620000px;}
.x4_c00434{left:154.620000px;}
.x3_c00434{left:181.620000px;}
.x2_c00434{left:738.450000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls10_c00434{letter-spacing:-0.320000pt;}
.lsd_c00434{letter-spacing:-0.090848pt;}
.ls16_c00434{letter-spacing:-0.070400pt;}
.ls14_c00434{letter-spacing:-0.032000pt;}
.ls15_c00434{letter-spacing:-0.025600pt;}
.ls13_c00434{letter-spacing:-0.019200pt;}
.lsf_c00434{letter-spacing:-0.012800pt;}
.ls12_c00434{letter-spacing:-0.006400pt;}
.lse_c00434{letter-spacing:0.000000pt;}
.ls5_c00434{letter-spacing:0.006400pt;}
.ls1_c00434{letter-spacing:0.012800pt;}
.ls4_c00434{letter-spacing:0.019200pt;}
.lsb_c00434{letter-spacing:0.025600pt;}
.ls8_c00434{letter-spacing:0.032000pt;}
.ls3_c00434{letter-spacing:0.038400pt;}
.lsa_c00434{letter-spacing:0.044800pt;}
.ls6_c00434{letter-spacing:0.051200pt;}
.ls0_c00434{letter-spacing:0.057600pt;}
.lsc_c00434{letter-spacing:0.064000pt;}
.ls9_c00434{letter-spacing:0.089600pt;}
.ls11_c00434{letter-spacing:0.140800pt;}
.ls7_c00434{letter-spacing:0.320000pt;}
.ls2_c00434{letter-spacing:48.768000pt;}
.ws3_c00434{word-spacing:-64.000000pt;}
.ws8_c00434{word-spacing:-16.140800pt;}
.ws0_c00434{word-spacing:-16.057600pt;}
.ws6_c00434{word-spacing:-16.051200pt;}
.wsd_c00434{word-spacing:-16.044800pt;}
.wsc_c00434{word-spacing:-16.038400pt;}
.ws9_c00434{word-spacing:-16.032000pt;}
.wsa_c00434{word-spacing:-16.025600pt;}
.ws4_c00434{word-spacing:-16.019200pt;}
.ws1_c00434{word-spacing:-16.012800pt;}
.ws5_c00434{word-spacing:-16.006400pt;}
.ws7_c00434{word-spacing:-16.000000pt;}
.ws2_c00434{word-spacing:-15.987200pt;}
.wsb_c00434{word-spacing:-15.974400pt;}
.wse_c00434{word-spacing:-15.929600pt;}
.ws19_c00434{word-spacing:-2.259200pt;}
.ws15_c00434{word-spacing:-1.612800pt;}
.ws10_c00434{word-spacing:0.000000pt;}
.ws1a_c00434{word-spacing:0.006400pt;}
.wsf_c00434{word-spacing:0.171008pt;}
.ws17_c00434{word-spacing:0.896000pt;}
.ws16_c00434{word-spacing:0.947200pt;}
.ws11_c00434{word-spacing:2.515200pt;}
.ws18_c00434{word-spacing:6.668800pt;}
.ws14_c00434{word-spacing:18.592000pt;}
.ws1b_c00434{word-spacing:19.443200pt;}
.ws13_c00434{word-spacing:21.766400pt;}
.ws12_c00434{word-spacing:137.561600pt;}
._5_c00434{margin-left:-2.105600pt;}
._1_c00434{margin-left:-1.094400pt;}
._0_c00434{width:0.919168pt;}
._2_c00434{width:2.547200pt;}
._6_c00434{width:6.368000pt;}
._4_c00434{width:18.566400pt;}
._7_c00434{width:19.500800pt;}
._3_c00434{width:21.408000pt;}
._8_c00434{width:738.220800pt;}
.fs0_c00434{font-size:53.440000pt;}
.fs1_c00434{font-size:64.000000pt;}
.y0_c00434{bottom:0.000000pt;}
.y5_c00434{bottom:50.987067pt;}
.y4_c00434{bottom:69.387067pt;}
.y25_c00434{bottom:122.027067pt;}
.y24_c00434{bottom:149.627067pt;}
.y23_c00434{bottom:177.227067pt;}
.y22_c00434{bottom:204.827067pt;}
.y21_c00434{bottom:233.627067pt;}
.y20_c00434{bottom:261.147067pt;}
.y1f_c00434{bottom:289.947067pt;}
.y1e_c00434{bottom:317.547200pt;}
.y1d_c00434{bottom:345.067200pt;}
.y1c_c00434{bottom:372.667200pt;}
.y1b_c00434{bottom:401.467067pt;}
.y1a_c00434{bottom:429.067200pt;}
.y19_c00434{bottom:456.667067pt;}
.y18_c00434{bottom:484.187067pt;}
.y17_c00434{bottom:512.987067pt;}
.y16_c00434{bottom:540.587067pt;}
.y15_c00434{bottom:568.187067pt;}
.y14_c00434{bottom:595.787067pt;}
.y13_c00434{bottom:624.587067pt;}
.y12_c00434{bottom:652.187067pt;}
.y11_c00434{bottom:679.787067pt;}
.y10_c00434{bottom:707.307067pt;}
.yf_c00434{bottom:736.107067pt;}
.ye_c00434{bottom:763.627067pt;}
.yd_c00434{bottom:792.427067pt;}
.yc_c00434{bottom:820.027067pt;}
.yb_c00434{bottom:847.547067pt;}
.ya_c00434{bottom:876.347067pt;}
.y9_c00434{bottom:903.947067pt;}
.y8_c00434{bottom:931.547067pt;}
.y7_c00434{bottom:959.147067pt;}
.y6_c00434{bottom:987.947067pt;}
.y3_c00434{bottom:1006.347067pt;}
.y2_c00434{bottom:1035.947576pt;}
.y1_c00434{bottom:1063.147200pt;}
.h1_c00434{height:47.020937pt;}
.h2_c00434{height:56.156250pt;}
.h4_c00434{height:56.312500pt;}
.h5_c00434{height:56.843750pt;}
.h3_c00434{height:57.375000pt;}
.h0_c00434{height:1122.666667pt;}
.w1_c00434{width:793.333333pt;}
.w0_c00434{width:793.626667pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:113.440000pt;}
.x4_c00434{left:137.440000pt;}
.x3_c00434{left:161.440000pt;}
.x2_c00434{left:656.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_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_3334f125df6ffb376e4ccea9.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.095703;font-style:normal;font-weight:normal;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_d6a3e900a93b1c151c75f5b9.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;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_c00435;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff4_c00435{font-family:ff4_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;}
.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;}
.ls13_c00435{letter-spacing:-0.561600px;}
.ls12_c00435{letter-spacing:-0.360000px;}
.lsd_c00435{letter-spacing:-0.048096px;}
.lsf_c00435{letter-spacing:-0.021600px;}
.ls10_c00435{letter-spacing:-0.014400px;}
.ls11_c00435{letter-spacing:-0.007200px;}
.lse_c00435{letter-spacing:0.000000px;}
.ls1_c00435{letter-spacing:0.007200px;}
.ls4_c00435{letter-spacing:0.014400px;}
.ls9_c00435{letter-spacing:0.021600px;}
.ls3_c00435{letter-spacing:0.028800px;}
.ls5_c00435{letter-spacing:0.036000px;}
.ls2_c00435{letter-spacing:0.050400px;}
.lsa_c00435{letter-spacing:0.064800px;}
.lsc_c00435{letter-spacing:0.072000px;}
.ls7_c00435{letter-spacing:0.079200px;}
.ls8_c00435{letter-spacing:0.100800px;}
.ls6_c00435{letter-spacing:0.360000px;}
.lsb_c00435{letter-spacing:54.144000px;}
.ls0_c00435{letter-spacing:54.864000px;}
.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:-72.000000px;}
.ws7_c00435{word-spacing:-18.100800px;}
.wsb_c00435{word-spacing:-18.050400px;}
.ws3_c00435{word-spacing:-18.036000px;}
.ws6_c00435{word-spacing:-18.028800px;}
.ws8_c00435{word-spacing:-18.021600px;}
.ws1_c00435{word-spacing:-18.014400px;}
.ws9_c00435{word-spacing:-18.007200px;}
.ws5_c00435{word-spacing:-18.000000px;}
.ws4_c00435{word-spacing:-17.992800px;}
.ws2_c00435{word-spacing:-17.985600px;}
.wsa_c00435{word-spacing:-17.438400px;}
.ws11_c00435{word-spacing:-1.929600px;}
.ws16_c00435{word-spacing:-0.100800px;}
.ws14_c00435{word-spacing:-0.072000px;}
.ws18_c00435{word-spacing:-0.007200px;}
.wsd_c00435{word-spacing:0.000000px;}
.wsc_c00435{word-spacing:0.138276px;}
.wsf_c00435{word-spacing:3.571200px;}
.ws17_c00435{word-spacing:5.767200px;}
.wse_c00435{word-spacing:9.669600px;}
.ws15_c00435{word-spacing:10.764000px;}
.ws13_c00435{word-spacing:11.484000px;}
.ws19_c00435{word-spacing:20.498400px;}
.ws10_c00435{word-spacing:52.934400px;}
.ws12_c00435{word-spacing:65.174400px;}
._4_c00435{margin-left:-2.685600px;}
._1_c00435{margin-left:-1.202400px;}
._2_c00435{width:3.585600px;}
._7_c00435{width:5.371200px;}
._8_c00435{width:6.696000px;}
._0_c00435{width:9.223200px;}
._6_c00435{width:11.505600px;}
._a_c00435{width:20.491200px;}
._9_c00435{width:23.587200px;}
._3_c00435{width:52.207200px;}
._5_c00435{width:65.779200px;}
.fc1_c00435{color:rgb(5,99,193);}
.fc2_c00435{color:rgb(34,30,31);}
.fc0_c00435{color:rgb(0,0,0);}
.fs0_c00435{font-size:60.120000px;}
.fs1_c00435{font-size:72.000000px;}
.y0_c00435{bottom:0.000000px;}
.y6_c00435{bottom:57.360450px;}
.y5_c00435{bottom:78.060450px;}
.y27_c00435{bottom:119.190450px;}
.y26_c00435{bottom:150.150450px;}
.y25_c00435{bottom:182.550450px;}
.y24_c00435{bottom:213.600450px;}
.y23_c00435{bottom:244.650450px;}
.y22_c00435{bottom:275.700450px;}
.y21_c00435{bottom:306.750450px;}
.y20_c00435{bottom:339.150450px;}
.y1f_c00435{bottom:370.200450px;}
.y1e_c00435{bottom:401.160450px;}
.y1d_c00435{bottom:433.560450px;}
.y1c_c00435{bottom:464.610450px;}
.y1b_c00435{bottom:495.660450px;}
.y1a_c00435{bottom:526.620450px;}
.y19_c00435{bottom:559.020450px;}
.y18_c00435{bottom:590.070450px;}
.y17_c00435{bottom:621.120450px;}
.y16_c00435{bottom:652.080450px;}
.y15_c00435{bottom:684.480450px;}
.y14_c00435{bottom:715.530450px;}
.y13_c00435{bottom:746.580450px;}
.y12_c00435{bottom:778.980450px;}
.y11_c00435{bottom:810.030600px;}
.y10_c00435{bottom:841.080600px;}
.yf_c00435{bottom:872.040600px;}
.ye_c00435{bottom:904.440450px;}
.yd_c00435{bottom:935.490450px;}
.yc_c00435{bottom:966.540450px;}
.yb_c00435{bottom:997.500450px;}
.ya_c00435{bottom:1029.900450px;}
.y9_c00435{bottom:1060.950450px;}
.y8_c00435{bottom:1092.000450px;}
.y7_c00435{bottom:1122.960450px;}
.y4_c00435{bottom:1144.380657px;}
.y3_c00435{bottom:1161.660648px;}
.y2_c00435{bottom:1178.850459px;}
.y1_c00435{bottom:1196.130450px;}
.h1_c00435{height:52.898555px;}
.h2_c00435{height:63.175781px;}
.h4_c00435{height:63.351562px;}
.h3_c00435{height:64.546875px;}
.h0_c00435{height:1263.000000px;}
.w1_c00435{width:892.500000px;}
.w0_c00435{width:892.830000px;}
.x0_c00435{left:0.000000px;}
.x4_c00435{left:127.620000px;}
.x5_c00435{left:154.620000px;}
.x6_c00435{left:181.620000px;}
.x1_c00435{left:649.620000px;}
.x3_c00435{left:738.450000px;}
.x2_c00435{left:765.450198px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls13_c00435{letter-spacing:-0.499200pt;}
.ls12_c00435{letter-spacing:-0.320000pt;}
.lsd_c00435{letter-spacing:-0.042752pt;}
.lsf_c00435{letter-spacing:-0.019200pt;}
.ls10_c00435{letter-spacing:-0.012800pt;}
.ls11_c00435{letter-spacing:-0.006400pt;}
.lse_c00435{letter-spacing:0.000000pt;}
.ls1_c00435{letter-spacing:0.006400pt;}
.ls4_c00435{letter-spacing:0.012800pt;}
.ls9_c00435{letter-spacing:0.019200pt;}
.ls3_c00435{letter-spacing:0.025600pt;}
.ls5_c00435{letter-spacing:0.032000pt;}
.ls2_c00435{letter-spacing:0.044800pt;}
.lsa_c00435{letter-spacing:0.057600pt;}
.lsc_c00435{letter-spacing:0.064000pt;}
.ls7_c00435{letter-spacing:0.070400pt;}
.ls8_c00435{letter-spacing:0.089600pt;}
.ls6_c00435{letter-spacing:0.320000pt;}
.lsb_c00435{letter-spacing:48.128000pt;}
.ls0_c00435{letter-spacing:48.768000pt;}
.ws0_c00435{word-spacing:-64.000000pt;}
.ws7_c00435{word-spacing:-16.089600pt;}
.wsb_c00435{word-spacing:-16.044800pt;}
.ws3_c00435{word-spacing:-16.032000pt;}
.ws6_c00435{word-spacing:-16.025600pt;}
.ws8_c00435{word-spacing:-16.019200pt;}
.ws1_c00435{word-spacing:-16.012800pt;}
.ws9_c00435{word-spacing:-16.006400pt;}
.ws5_c00435{word-spacing:-16.000000pt;}
.ws4_c00435{word-spacing:-15.993600pt;}
.ws2_c00435{word-spacing:-15.987200pt;}
.wsa_c00435{word-spacing:-15.500800pt;}
.ws11_c00435{word-spacing:-1.715200pt;}
.ws16_c00435{word-spacing:-0.089600pt;}
.ws14_c00435{word-spacing:-0.064000pt;}
.ws18_c00435{word-spacing:-0.006400pt;}
.wsd_c00435{word-spacing:0.000000pt;}
.wsc_c00435{word-spacing:0.122912pt;}
.wsf_c00435{word-spacing:3.174400pt;}
.ws17_c00435{word-spacing:5.126400pt;}
.wse_c00435{word-spacing:8.595200pt;}
.ws15_c00435{word-spacing:9.568000pt;}
.ws13_c00435{word-spacing:10.208000pt;}
.ws19_c00435{word-spacing:18.220800pt;}
.ws10_c00435{word-spacing:47.052800pt;}
.ws12_c00435{word-spacing:57.932800pt;}
._4_c00435{margin-left:-2.387200pt;}
._1_c00435{margin-left:-1.068800pt;}
._2_c00435{width:3.187200pt;}
._7_c00435{width:4.774400pt;}
._8_c00435{width:5.952000pt;}
._0_c00435{width:8.198400pt;}
._6_c00435{width:10.227200pt;}
._a_c00435{width:18.214400pt;}
._9_c00435{width:20.966400pt;}
._3_c00435{width:46.406400pt;}
._5_c00435{width:58.470400pt;}
.fs0_c00435{font-size:53.440000pt;}
.fs1_c00435{font-size:64.000000pt;}
.y0_c00435{bottom:0.000000pt;}
.y6_c00435{bottom:50.987067pt;}
.y5_c00435{bottom:69.387067pt;}
.y27_c00435{bottom:105.947067pt;}
.y26_c00435{bottom:133.467067pt;}
.y25_c00435{bottom:162.267067pt;}
.y24_c00435{bottom:189.867067pt;}
.y23_c00435{bottom:217.467067pt;}
.y22_c00435{bottom:245.067067pt;}
.y21_c00435{bottom:272.667067pt;}
.y20_c00435{bottom:301.467067pt;}
.y1f_c00435{bottom:329.067067pt;}
.y1e_c00435{bottom:356.587067pt;}
.y1d_c00435{bottom:385.387067pt;}
.y1c_c00435{bottom:412.987067pt;}
.y1b_c00435{bottom:440.587067pt;}
.y1a_c00435{bottom:468.107067pt;}
.y19_c00435{bottom:496.907067pt;}
.y18_c00435{bottom:524.507067pt;}
.y17_c00435{bottom:552.107067pt;}
.y16_c00435{bottom:579.627067pt;}
.y15_c00435{bottom:608.427067pt;}
.y14_c00435{bottom:636.027067pt;}
.y13_c00435{bottom:663.627067pt;}
.y12_c00435{bottom:692.427067pt;}
.y11_c00435{bottom:720.027200pt;}
.y10_c00435{bottom:747.627200pt;}
.yf_c00435{bottom:775.147200pt;}
.ye_c00435{bottom:803.947067pt;}
.yd_c00435{bottom:831.547067pt;}
.yc_c00435{bottom:859.147067pt;}
.yb_c00435{bottom:886.667067pt;}
.ya_c00435{bottom:915.467067pt;}
.y9_c00435{bottom:943.067067pt;}
.y8_c00435{bottom:970.667067pt;}
.y7_c00435{bottom:998.187067pt;}
.y4_c00435{bottom:1017.227251pt;}
.y3_c00435{bottom:1032.587243pt;}
.y2_c00435{bottom:1047.867075pt;}
.y1_c00435{bottom:1063.227067pt;}
.h1_c00435{height:47.020937pt;}
.h2_c00435{height:56.156250pt;}
.h4_c00435{height:56.312500pt;}
.h3_c00435{height:57.375000pt;}
.h0_c00435{height:1122.666667pt;}
.w1_c00435{width:793.333333pt;}
.w0_c00435{width:793.626667pt;}
.x0_c00435{left:0.000000pt;}
.x4_c00435{left:113.440000pt;}
.x5_c00435{left:137.440000pt;}
.x6_c00435{left:161.440000pt;}
.x1_c00435{left:577.440000pt;}
.x3_c00435{left:656.400000pt;}
.x2_c00435{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_19570fbb881cc39f94387459.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.095703;font-style:normal;font-weight:normal;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_e5c5d8555e9ecfd6cb893460.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:1.093262;font-style:normal;font-weight:normal;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_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff3_c00436{font-family:ff3_c00436;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_c00436;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff4_c00436{font-family:ff4_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:ff5_c00436;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff5_c00436{font-family:ff5_c00436;line-height:1.104004;font-style: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;}
.ls16_c00436{letter-spacing:-0.360000px;}
.ls12_c00436{letter-spacing:-0.201600px;}
.ls14_c00436{letter-spacing:-0.180000px;}
.ls13_c00436{letter-spacing:-0.158400px;}
.lsd_c00436{letter-spacing:-0.102204px;}
.ls15_c00436{letter-spacing:-0.043200px;}
.lsf_c00436{letter-spacing:-0.021600px;}
.ls10_c00436{letter-spacing:-0.014400px;}
.ls11_c00436{letter-spacing:-0.007200px;}
.lse_c00436{letter-spacing:0.000000px;}
.lsb_c00436{letter-spacing:0.007200px;}
.ls3_c00436{letter-spacing:0.014400px;}
.ls4_c00436{letter-spacing:0.021600px;}
.ls1_c00436{letter-spacing:0.028800px;}
.ls6_c00436{letter-spacing:0.036000px;}
.ls8_c00436{letter-spacing:0.043200px;}
.ls9_c00436{letter-spacing:0.057600px;}
.lsa_c00436{letter-spacing:0.064800px;}
.lsc_c00436{letter-spacing:0.072000px;}
.ls2_c00436{letter-spacing:0.115200px;}
.ls7_c00436{letter-spacing:0.360000px;}
.ls0_c00436{letter-spacing:54.864000px;}
.ls5_c00436{letter-spacing:64.800000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00436{word-spacing:-72.000000px;}
.ws8_c00436{word-spacing:-18.064800px;}
.ws6_c00436{word-spacing:-18.057600px;}
.ws4_c00436{word-spacing:-18.036000px;}
.ws3_c00436{word-spacing:-18.028800px;}
.ws2_c00436{word-spacing:-18.021600px;}
.ws5_c00436{word-spacing:-18.014400px;}
.ws9_c00436{word-spacing:-18.007200px;}
.ws7_c00436{word-spacing:-18.000000px;}
.wsb_c00436{word-spacing:-17.992800px;}
.ws1_c00436{word-spacing:-17.985600px;}
.wsa_c00436{word-spacing:-17.956800px;}
.ws1e_c00436{word-spacing:-2.995200px;}
.ws1d_c00436{word-spacing:-2.944800px;}
.ws19_c00436{word-spacing:-0.201600px;}
.wsd_c00436{word-spacing:0.000000px;}
.ws1a_c00436{word-spacing:0.007200px;}
.wsc_c00436{word-spacing:0.192384px;}
.wse_c00436{word-spacing:0.244800px;}
.wsf_c00436{word-spacing:0.345600px;}
.ws12_c00436{word-spacing:7.876800px;}
.ws11_c00436{word-spacing:9.612000px;}
.ws10_c00436{word-spacing:9.619200px;}
.ws1b_c00436{word-spacing:14.356800px;}
.ws1c_c00436{word-spacing:15.818400px;}
.ws18_c00436{word-spacing:15.832800px;}
.ws17_c00436{word-spacing:16.855200px;}
.ws15_c00436{word-spacing:21.398400px;}
.ws14_c00436{word-spacing:34.545600px;}
.ws13_c00436{word-spacing:64.771200px;}
.ws16_c00436{word-spacing:90.316800px;}
._a_c00436{margin-left:-2.894400px;}
._4_c00436{margin-left:-1.209600px;}
._0_c00436{width:1.034064px;}
._2_c00436{width:7.898400px;}
._1_c00436{width:9.568800px;}
._9_c00436{width:14.407200px;}
._8_c00436{width:15.811200px;}
._7_c00436{width:16.941600px;}
._5_c00436{width:21.247200px;}
._3_c00436{width:34.545600px;}
._b_c00436{width:63.698400px;}
._6_c00436{width:90.432000px;}
.fc3_c00436{color:rgb(0,0,255);}
.fc2_c00436{color:rgb(5,99,193);}
.fc1_c00436{color:rgb(0,0,0);}
.fc0_c00436{color:rgb(32,31,30);}
.fs0_c00436{font-size:60.120000px;}
.fs1_c00436{font-size:72.000000px;}
.y0_c00436{bottom:0.000000px;}
.y5_c00436{bottom:57.360450px;}
.y4_c00436{bottom:78.060450px;}
.y24_c00436{bottom:138.720450px;}
.y23_c00436{bottom:169.770450px;}
.y22_c00436{bottom:202.170450px;}
.y21_c00436{bottom:233.220450px;}
.y20_c00436{bottom:264.180450px;}
.y1f_c00436{bottom:304.050450px;}
.y1e_c00436{bottom:342.570450px;}
.y1d_c00436{bottom:386.940450px;}
.y1c_c00436{bottom:418.080450px;}
.y1b_c00436{bottom:449.040450px;}
.y1a_c00436{bottom:481.440450px;}
.y19_c00436{bottom:512.400450px;}
.y18_c00436{bottom:544.800450px;}
.y17_c00436{bottom:575.850450px;}
.y16_c00436{bottom:606.900450px;}
.y15_c00436{bottom:637.950450px;}
.y14_c00436{bottom:668.910450px;}
.y13_c00436{bottom:701.310450px;}
.y12_c00436{bottom:732.360450px;}
.y11_c00436{bottom:764.760450px;}
.y10_c00436{bottom:795.810450px;}
.yf_c00436{bottom:826.770450px;}
.ye_c00436{bottom:859.170450px;}
.yd_c00436{bottom:890.220450px;}
.yc_c00436{bottom:921.180450px;}
.yb_c00436{bottom:953.580450px;}
.ya_c00436{bottom:984.630450px;}
.y9_c00436{bottom:1015.590450px;}
.y8_c00436{bottom:1047.990450px;}
.y7_c00436{bottom:1079.040450px;}
.y6_c00436{bottom:1110.090450px;}
.y3_c00436{bottom:1132.140450px;}
.y2_c00436{bottom:1165.441023px;}
.y1_c00436{bottom:1196.040600px;}
.h1_c00436{height:52.898555px;}
.h2_c00436{height:63.175781px;}
.h4_c00436{height:63.351562px;}
.h5_c00436{height:63.949219px;}
.h3_c00436{height:64.546875px;}
.h0_c00436{height:1263.000000px;}
.w1_c00436{width:892.500000px;}
.w0_c00436{width:892.830000px;}
.x0_c00436{left:0.000000px;}
.x1_c00436{left:127.620000px;}
.x3_c00436{left:154.620000px;}
.x4_c00436{left:181.620000px;}
.x2_c00436{left:738.450000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls16_c00436{letter-spacing:-0.320000pt;}
.ls12_c00436{letter-spacing:-0.179200pt;}
.ls14_c00436{letter-spacing:-0.160000pt;}
.ls13_c00436{letter-spacing:-0.140800pt;}
.lsd_c00436{letter-spacing:-0.090848pt;}
.ls15_c00436{letter-spacing:-0.038400pt;}
.lsf_c00436{letter-spacing:-0.019200pt;}
.ls10_c00436{letter-spacing:-0.012800pt;}
.ls11_c00436{letter-spacing:-0.006400pt;}
.lse_c00436{letter-spacing:0.000000pt;}
.lsb_c00436{letter-spacing:0.006400pt;}
.ls3_c00436{letter-spacing:0.012800pt;}
.ls4_c00436{letter-spacing:0.019200pt;}
.ls1_c00436{letter-spacing:0.025600pt;}
.ls6_c00436{letter-spacing:0.032000pt;}
.ls8_c00436{letter-spacing:0.038400pt;}
.ls9_c00436{letter-spacing:0.051200pt;}
.lsa_c00436{letter-spacing:0.057600pt;}
.lsc_c00436{letter-spacing:0.064000pt;}
.ls2_c00436{letter-spacing:0.102400pt;}
.ls7_c00436{letter-spacing:0.320000pt;}
.ls0_c00436{letter-spacing:48.768000pt;}
.ls5_c00436{letter-spacing:57.600000pt;}
.ws0_c00436{word-spacing:-64.000000pt;}
.ws8_c00436{word-spacing:-16.057600pt;}
.ws6_c00436{word-spacing:-16.051200pt;}
.ws4_c00436{word-spacing:-16.032000pt;}
.ws3_c00436{word-spacing:-16.025600pt;}
.ws2_c00436{word-spacing:-16.019200pt;}
.ws5_c00436{word-spacing:-16.012800pt;}
.ws9_c00436{word-spacing:-16.006400pt;}
.ws7_c00436{word-spacing:-16.000000pt;}
.wsb_c00436{word-spacing:-15.993600pt;}
.ws1_c00436{word-spacing:-15.987200pt;}
.wsa_c00436{word-spacing:-15.961600pt;}
.ws1e_c00436{word-spacing:-2.662400pt;}
.ws1d_c00436{word-spacing:-2.617600pt;}
.ws19_c00436{word-spacing:-0.179200pt;}
.wsd_c00436{word-spacing:0.000000pt;}
.ws1a_c00436{word-spacing:0.006400pt;}
.wsc_c00436{word-spacing:0.171008pt;}
.wse_c00436{word-spacing:0.217600pt;}
.wsf_c00436{word-spacing:0.307200pt;}
.ws12_c00436{word-spacing:7.001600pt;}
.ws11_c00436{word-spacing:8.544000pt;}
.ws10_c00436{word-spacing:8.550400pt;}
.ws1b_c00436{word-spacing:12.761600pt;}
.ws1c_c00436{word-spacing:14.060800pt;}
.ws18_c00436{word-spacing:14.073600pt;}
.ws17_c00436{word-spacing:14.982400pt;}
.ws15_c00436{word-spacing:19.020800pt;}
.ws14_c00436{word-spacing:30.707200pt;}
.ws13_c00436{word-spacing:57.574400pt;}
.ws16_c00436{word-spacing:80.281600pt;}
._a_c00436{margin-left:-2.572800pt;}
._4_c00436{margin-left:-1.075200pt;}
._0_c00436{width:0.919168pt;}
._2_c00436{width:7.020800pt;}
._1_c00436{width:8.505600pt;}
._9_c00436{width:12.806400pt;}
._8_c00436{width:14.054400pt;}
._7_c00436{width:15.059200pt;}
._5_c00436{width:18.886400pt;}
._3_c00436{width:30.707200pt;}
._b_c00436{width:56.620800pt;}
._6_c00436{width:80.384000pt;}
.fs0_c00436{font-size:53.440000pt;}
.fs1_c00436{font-size:64.000000pt;}
.y0_c00436{bottom:0.000000pt;}
.y5_c00436{bottom:50.987067pt;}
.y4_c00436{bottom:69.387067pt;}
.y24_c00436{bottom:123.307067pt;}
.y23_c00436{bottom:150.907067pt;}
.y22_c00436{bottom:179.707067pt;}
.y21_c00436{bottom:207.307067pt;}
.y20_c00436{bottom:234.827067pt;}
.y1f_c00436{bottom:270.267067pt;}
.y1e_c00436{bottom:304.507067pt;}
.y1d_c00436{bottom:343.947067pt;}
.y1c_c00436{bottom:371.627067pt;}
.y1b_c00436{bottom:399.147067pt;}
.y1a_c00436{bottom:427.947067pt;}
.y19_c00436{bottom:455.467067pt;}
.y18_c00436{bottom:484.267067pt;}
.y17_c00436{bottom:511.867067pt;}
.y16_c00436{bottom:539.467067pt;}
.y15_c00436{bottom:567.067067pt;}
.y14_c00436{bottom:594.587067pt;}
.y13_c00436{bottom:623.387067pt;}
.y12_c00436{bottom:650.987067pt;}
.y11_c00436{bottom:679.787067pt;}
.y10_c00436{bottom:707.387067pt;}
.yf_c00436{bottom:734.907067pt;}
.ye_c00436{bottom:763.707067pt;}
.yd_c00436{bottom:791.307067pt;}
.yc_c00436{bottom:818.827067pt;}
.yb_c00436{bottom:847.627067pt;}
.ya_c00436{bottom:875.227067pt;}
.y9_c00436{bottom:902.747067pt;}
.y8_c00436{bottom:931.547067pt;}
.y7_c00436{bottom:959.147067pt;}
.y6_c00436{bottom:986.747067pt;}
.y3_c00436{bottom:1006.347067pt;}
.y2_c00436{bottom:1035.947576pt;}
.y1_c00436{bottom:1063.147200pt;}
.h1_c00436{height:47.020937pt;}
.h2_c00436{height:56.156250pt;}
.h4_c00436{height:56.312500pt;}
.h5_c00436{height:56.843750pt;}
.h3_c00436{height:57.375000pt;}
.h0_c00436{height:1122.666667pt;}
.w1_c00436{width:793.333333pt;}
.w0_c00436{width:793.626667pt;}
.x0_c00436{left:0.000000pt;}
.x1_c00436{left:113.440000pt;}
.x3_c00436{left:137.440000pt;}
.x4_c00436{left:161.440000pt;}
.x2_c00436{left:656.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_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_4952b3c00cc9ecedf27ef798.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.095703;font-style:normal;font-weight:normal;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_ae1a7c57ab2bf004d6ed0950.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;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_c00437;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff4_c00437{font-family:ff4_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;}
.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;}
.ls13_c00437{letter-spacing:-0.561600px;}
.ls12_c00437{letter-spacing:-0.050400px;}
.lsd_c00437{letter-spacing:-0.048096px;}
.ls11_c00437{letter-spacing:-0.021600px;}
.ls10_c00437{letter-spacing:-0.014400px;}
.lsf_c00437{letter-spacing:-0.007200px;}
.lse_c00437{letter-spacing:0.000000px;}
.ls7_c00437{letter-spacing:0.007200px;}
.lsa_c00437{letter-spacing:0.014400px;}
.ls2_c00437{letter-spacing:0.021600px;}
.ls5_c00437{letter-spacing:0.028800px;}
.ls9_c00437{letter-spacing:0.036000px;}
.ls6_c00437{letter-spacing:0.043200px;}
.ls4_c00437{letter-spacing:0.050400px;}
.ls3_c00437{letter-spacing:0.057600px;}
.ls8_c00437{letter-spacing:0.079200px;}
.lsb_c00437{letter-spacing:0.086400px;}
.ls1_c00437{letter-spacing:0.158400px;}
.lsc_c00437{letter-spacing:0.360000px;}
.ls0_c00437{letter-spacing:54.864000px;}
.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:-72.000000px;}
.wsa_c00437{word-spacing:-18.086400px;}
.ws6_c00437{word-spacing:-18.079200px;}
.ws2_c00437{word-spacing:-18.057600px;}
.ws3_c00437{word-spacing:-18.050400px;}
.ws4_c00437{word-spacing:-18.043200px;}
.ws1_c00437{word-spacing:-18.021600px;}
.ws8_c00437{word-spacing:-18.014400px;}
.ws5_c00437{word-spacing:-18.007200px;}
.ws9_c00437{word-spacing:-18.000000px;}
.ws7_c00437{word-spacing:-17.985600px;}
.wsb_c00437{word-spacing:-17.438400px;}
.wse_c00437{word-spacing:-2.556000px;}
.ws12_c00437{word-spacing:-0.813600px;}
.ws13_c00437{word-spacing:-0.741600px;}
.wsd_c00437{word-spacing:0.000000px;}
.wsc_c00437{word-spacing:0.138276px;}
.ws10_c00437{word-spacing:2.044800px;}
.ws11_c00437{word-spacing:2.073600px;}
.ws17_c00437{word-spacing:12.448800px;}
.ws15_c00437{word-spacing:23.702400px;}
.ws16_c00437{word-spacing:48.225600px;}
.ws14_c00437{word-spacing:143.402400px;}
.wsf_c00437{word-spacing:299.887200px;}
._0_c00437{margin-left:-2.520000px;}
._1_c00437{margin-left:-1.188000px;}
._2_c00437{width:2.167200px;}
._7_c00437{width:12.578400px;}
._5_c00437{width:23.745600px;}
._6_c00437{width:47.534400px;}
._3_c00437{width:143.013600px;}
._4_c00437{width:144.064800px;}
.fc1_c00437{color:rgb(5,99,193);}
.fc0_c00437{color:rgb(0,0,0);}
.fs0_c00437{font-size:60.120000px;}
.fs1_c00437{font-size:72.000000px;}
.y0_c00437{bottom:0.000000px;}
.y6_c00437{bottom:57.360450px;}
.y5_c00437{bottom:78.060450px;}
.y24_c00437{bottom:205.410450px;}
.y23_c00437{bottom:236.550450px;}
.y22_c00437{bottom:267.600450px;}
.y21_c00437{bottom:298.650450px;}
.y20_c00437{bottom:329.700450px;}
.y1f_c00437{bottom:360.750450px;}
.y1e_c00437{bottom:391.800450px;}
.y1d_c00437{bottom:422.850450px;}
.y1c_c00437{bottom:453.900450px;}
.y1b_c00437{bottom:484.950450px;}
.y1a_c00437{bottom:516.000450px;}
.y19_c00437{bottom:547.050450px;}
.y18_c00437{bottom:578.100450px;}
.y17_c00437{bottom:609.060450px;}
.y16_c00437{bottom:653.340450px;}
.y15_c00437{bottom:684.480450px;}
.y14_c00437{bottom:715.530450px;}
.y13_c00437{bottom:746.580450px;}
.y12_c00437{bottom:778.980450px;}
.y11_c00437{bottom:810.030600px;}
.y10_c00437{bottom:841.080600px;}
.yf_c00437{bottom:872.040600px;}
.ye_c00437{bottom:904.440450px;}
.yd_c00437{bottom:935.490450px;}
.yc_c00437{bottom:966.540450px;}
.yb_c00437{bottom:997.500450px;}
.ya_c00437{bottom:1029.900450px;}
.y9_c00437{bottom:1060.950450px;}
.y8_c00437{bottom:1092.000450px;}
.y7_c00437{bottom:1122.960450px;}
.y4_c00437{bottom:1144.380657px;}
.y3_c00437{bottom:1161.660648px;}
.y2_c00437{bottom:1178.850459px;}
.y1_c00437{bottom:1196.130450px;}
.h1_c00437{height:52.898555px;}
.h2_c00437{height:63.175781px;}
.h4_c00437{height:63.351562px;}
.h3_c00437{height:64.546875px;}
.h0_c00437{height:1263.000000px;}
.w1_c00437{width:892.500000px;}
.w0_c00437{width:892.830000px;}
.x0_c00437{left:0.000000px;}
.x4_c00437{left:127.620000px;}
.x5_c00437{left:154.620000px;}
.x6_c00437{left:181.620000px;}
.x1_c00437{left:649.620000px;}
.x3_c00437{left:738.450000px;}
.x2_c00437{left:765.450198px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls13_c00437{letter-spacing:-0.499200pt;}
.ls12_c00437{letter-spacing:-0.044800pt;}
.lsd_c00437{letter-spacing:-0.042752pt;}
.ls11_c00437{letter-spacing:-0.019200pt;}
.ls10_c00437{letter-spacing:-0.012800pt;}
.lsf_c00437{letter-spacing:-0.006400pt;}
.lse_c00437{letter-spacing:0.000000pt;}
.ls7_c00437{letter-spacing:0.006400pt;}
.lsa_c00437{letter-spacing:0.012800pt;}
.ls2_c00437{letter-spacing:0.019200pt;}
.ls5_c00437{letter-spacing:0.025600pt;}
.ls9_c00437{letter-spacing:0.032000pt;}
.ls6_c00437{letter-spacing:0.038400pt;}
.ls4_c00437{letter-spacing:0.044800pt;}
.ls3_c00437{letter-spacing:0.051200pt;}
.ls8_c00437{letter-spacing:0.070400pt;}
.lsb_c00437{letter-spacing:0.076800pt;}
.ls1_c00437{letter-spacing:0.140800pt;}
.lsc_c00437{letter-spacing:0.320000pt;}
.ls0_c00437{letter-spacing:48.768000pt;}
.ws0_c00437{word-spacing:-64.000000pt;}
.wsa_c00437{word-spacing:-16.076800pt;}
.ws6_c00437{word-spacing:-16.070400pt;}
.ws2_c00437{word-spacing:-16.051200pt;}
.ws3_c00437{word-spacing:-16.044800pt;}
.ws4_c00437{word-spacing:-16.038400pt;}
.ws1_c00437{word-spacing:-16.019200pt;}
.ws8_c00437{word-spacing:-16.012800pt;}
.ws5_c00437{word-spacing:-16.006400pt;}
.ws9_c00437{word-spacing:-16.000000pt;}
.ws7_c00437{word-spacing:-15.987200pt;}
.wsb_c00437{word-spacing:-15.500800pt;}
.wse_c00437{word-spacing:-2.272000pt;}
.ws12_c00437{word-spacing:-0.723200pt;}
.ws13_c00437{word-spacing:-0.659200pt;}
.wsd_c00437{word-spacing:0.000000pt;}
.wsc_c00437{word-spacing:0.122912pt;}
.ws10_c00437{word-spacing:1.817600pt;}
.ws11_c00437{word-spacing:1.843200pt;}
.ws17_c00437{word-spacing:11.065600pt;}
.ws15_c00437{word-spacing:21.068800pt;}
.ws16_c00437{word-spacing:42.867200pt;}
.ws14_c00437{word-spacing:127.468800pt;}
.wsf_c00437{word-spacing:266.566400pt;}
._0_c00437{margin-left:-2.240000pt;}
._1_c00437{margin-left:-1.056000pt;}
._2_c00437{width:1.926400pt;}
._7_c00437{width:11.180800pt;}
._5_c00437{width:21.107200pt;}
._6_c00437{width:42.252800pt;}
._3_c00437{width:127.123200pt;}
._4_c00437{width:128.057600pt;}
.fs0_c00437{font-size:53.440000pt;}
.fs1_c00437{font-size:64.000000pt;}
.y0_c00437{bottom:0.000000pt;}
.y6_c00437{bottom:50.987067pt;}
.y5_c00437{bottom:69.387067pt;}
.y24_c00437{bottom:182.587067pt;}
.y23_c00437{bottom:210.267067pt;}
.y22_c00437{bottom:237.867067pt;}
.y21_c00437{bottom:265.467067pt;}
.y20_c00437{bottom:293.067067pt;}
.y1f_c00437{bottom:320.667067pt;}
.y1e_c00437{bottom:348.267067pt;}
.y1d_c00437{bottom:375.867067pt;}
.y1c_c00437{bottom:403.467067pt;}
.y1b_c00437{bottom:431.067067pt;}
.y1a_c00437{bottom:458.667067pt;}
.y19_c00437{bottom:486.267067pt;}
.y18_c00437{bottom:513.867067pt;}
.y17_c00437{bottom:541.387067pt;}
.y16_c00437{bottom:580.747067pt;}
.y15_c00437{bottom:608.427067pt;}
.y14_c00437{bottom:636.027067pt;}
.y13_c00437{bottom:663.627067pt;}
.y12_c00437{bottom:692.427067pt;}
.y11_c00437{bottom:720.027200pt;}
.y10_c00437{bottom:747.627200pt;}
.yf_c00437{bottom:775.147200pt;}
.ye_c00437{bottom:803.947067pt;}
.yd_c00437{bottom:831.547067pt;}
.yc_c00437{bottom:859.147067pt;}
.yb_c00437{bottom:886.667067pt;}
.ya_c00437{bottom:915.467067pt;}
.y9_c00437{bottom:943.067067pt;}
.y8_c00437{bottom:970.667067pt;}
.y7_c00437{bottom:998.187067pt;}
.y4_c00437{bottom:1017.227251pt;}
.y3_c00437{bottom:1032.587243pt;}
.y2_c00437{bottom:1047.867075pt;}
.y1_c00437{bottom:1063.227067pt;}
.h1_c00437{height:47.020937pt;}
.h2_c00437{height:56.156250pt;}
.h4_c00437{height:56.312500pt;}
.h3_c00437{height:57.375000pt;}
.h0_c00437{height:1122.666667pt;}
.w1_c00437{width:793.333333pt;}
.w0_c00437{width:793.626667pt;}
.x0_c00437{left:0.000000pt;}
.x4_c00437{left:113.440000pt;}
.x5_c00437{left:137.440000pt;}
.x6_c00437{left:161.440000pt;}
.x1_c00437{left:577.440000pt;}
.x3_c00437{left:656.400000pt;}
.x2_c00437{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e84afb4789541788512d448b.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.095703;font-style:normal;font-weight:normal;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_0749695f345f5a59acc230c5.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:1.093262;font-style:normal;font-weight:normal;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_a0ac27df07e791c41750bdc9.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00438;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff4_c00438{font-family:ff4_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;}
.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;}
.ls15_c00438{letter-spacing:-0.360000px;}
.lsb_c00438{letter-spacing:-0.102204px;}
.ls17_c00438{letter-spacing:-0.072000px;}
.ls16_c00438{letter-spacing:-0.050400px;}
.ls13_c00438{letter-spacing:-0.043200px;}
.ls10_c00438{letter-spacing:-0.036000px;}
.ls14_c00438{letter-spacing:-0.028800px;}
.ls12_c00438{letter-spacing:-0.021600px;}
.lsd_c00438{letter-spacing:-0.016776px;}
.lsf_c00438{letter-spacing:-0.014400px;}
.lse_c00438{letter-spacing:-0.007200px;}
.lsc_c00438{letter-spacing:0.000000px;}
.ls1_c00438{letter-spacing:0.007200px;}
.ls2_c00438{letter-spacing:0.014400px;}
.ls5_c00438{letter-spacing:0.021600px;}
.ls7_c00438{letter-spacing:0.028800px;}
.ls4_c00438{letter-spacing:0.036000px;}
.ls8_c00438{letter-spacing:0.043200px;}
.ls6_c00438{letter-spacing:0.050400px;}
.lsa_c00438{letter-spacing:0.057600px;}
.ls3_c00438{letter-spacing:0.072000px;}
.ls9_c00438{letter-spacing:0.086400px;}
.ls11_c00438{letter-spacing:2.520000px;}
.ls0_c00438{letter-spacing:62.784000px;}
.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;}
}
.ws1_c00438{word-spacing:-18.050400px;}
.ws2_c00438{word-spacing:-18.036000px;}
.ws0_c00438{word-spacing:-18.000000px;}
.ws3_c00438{word-spacing:-17.985600px;}
.ws9_c00438{word-spacing:-3.960000px;}
.wsa_c00438{word-spacing:-3.945600px;}
.ws11_c00438{word-spacing:-3.304800px;}
.ws18_c00438{word-spacing:-2.851200px;}
.ws16_c00438{word-spacing:-2.275200px;}
.wsf_c00438{word-spacing:-1.288800px;}
.ws10_c00438{word-spacing:-1.094400px;}
.wse_c00438{word-spacing:-0.007200px;}
.ws5_c00438{word-spacing:0.000000px;}
.ws8_c00438{word-spacing:0.007200px;}
.ws4_c00438{word-spacing:0.192384px;}
.wsc_c00438{word-spacing:2.289600px;}
.wsd_c00438{word-spacing:2.512800px;}
.ws1a_c00438{word-spacing:2.858400px;}
.ws1b_c00438{word-spacing:2.887200px;}
.ws7_c00438{word-spacing:9.223200px;}
.ws6_c00438{word-spacing:10.152000px;}
.ws1c_c00438{word-spacing:10.756800px;}
.ws1d_c00438{word-spacing:10.785600px;}
.wsb_c00438{word-spacing:11.174400px;}
.ws19_c00438{word-spacing:12.945600px;}
.ws15_c00438{word-spacing:17.661600px;}
.ws14_c00438{word-spacing:17.683200px;}
.ws13_c00438{word-spacing:20.836800px;}
.ws12_c00438{word-spacing:20.901600px;}
.ws17_c00438{word-spacing:25.207200px;}
._4_c00438{margin-left:-3.981600px;}
._6_c00438{margin-left:-2.944800px;}
._3_c00438{margin-left:-1.296000px;}
._0_c00438{width:1.034064px;}
._c_c00438{width:2.836800px;}
._9_c00438{width:6.076800px;}
._2_c00438{width:9.324000px;}
._1_c00438{width:10.432800px;}
._5_c00438{width:11.887200px;}
._b_c00438{width:12.916800px;}
._a_c00438{width:25.120800px;}
._8_c00438{width:52.516800px;}
._7_c00438{width:60.796800px;}
.fc2_c00438{color:rgb(5,99,193);}
.fc1_c00438{color:rgb(0,0,0);}
.fc0_c00438{color:rgb(32,31,30);}
.fs0_c00438{font-size:60.120000px;}
.fs1_c00438{font-size:72.000000px;}
.fs2_c00438{font-size:83.880000px;}
.y0_c00438{bottom:0.000000px;}
.y5_c00438{bottom:57.360450px;}
.y4_c00438{bottom:78.060450px;}
.y26_c00438{bottom:112.710450px;}
.y25_c00438{bottom:143.760450px;}
.y24_c00438{bottom:174.810450px;}
.y23_c00438{bottom:205.860450px;}
.y22_c00438{bottom:236.910450px;}
.y21_c00438{bottom:267.960450px;}
.y20_c00438{bottom:299.010450px;}
.y1f_c00438{bottom:330.060450px;}
.y1e_c00438{bottom:361.110450px;}
.y1d_c00438{bottom:392.160450px;}
.y1c_c00438{bottom:423.210450px;}
.y1b_c00438{bottom:454.260450px;}
.y1a_c00438{bottom:485.310450px;}
.y19_c00438{bottom:516.360600px;}
.y18_c00438{bottom:547.410450px;}
.y17_c00438{bottom:578.370450px;}
.y16_c00438{bottom:609.510450px;}
.y15_c00438{bottom:640.560450px;}
.y14_c00438{bottom:671.610450px;}
.y13_c00438{bottom:702.660450px;}
.y12_c00438{bottom:733.710450px;}
.y11_c00438{bottom:764.670450px;}
.y10_c00438{bottom:795.810450px;}
.yf_c00438{bottom:826.770450px;}
.ye_c00438{bottom:857.820450px;}
.yd_c00438{bottom:888.870450px;}
.yc_c00438{bottom:919.920450px;}
.yb_c00438{bottom:950.970450px;}
.ya_c00438{bottom:982.020450px;}
.y9_c00438{bottom:1013.070450px;}
.y8_c00438{bottom:1044.120450px;}
.y7_c00438{bottom:1075.170450px;}
.y6_c00438{bottom:1108.380450px;}
.y3_c00438{bottom:1132.140450px;}
.y2_c00438{bottom:1165.441023px;}
.y1_c00438{bottom:1196.040600px;}
.h1_c00438{height:52.898555px;}
.h2_c00438{height:63.175781px;}
.h5_c00438{height:63.351562px;}
.h4_c00438{height:64.546875px;}
.h3_c00438{height:74.500840px;}
.h0_c00438{height:1263.000000px;}
.w1_c00438{width:892.500000px;}
.w0_c00438{width:892.830000px;}
.x0_c00438{left:0.000000px;}
.x1_c00438{left:127.620000px;}
.x3_c00438{left:154.620000px;}
.x4_c00438{left:181.620000px;}
.x2_c00438{left:738.450000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls15_c00438{letter-spacing:-0.320000pt;}
.lsb_c00438{letter-spacing:-0.090848pt;}
.ls17_c00438{letter-spacing:-0.064000pt;}
.ls16_c00438{letter-spacing:-0.044800pt;}
.ls13_c00438{letter-spacing:-0.038400pt;}
.ls10_c00438{letter-spacing:-0.032000pt;}
.ls14_c00438{letter-spacing:-0.025600pt;}
.ls12_c00438{letter-spacing:-0.019200pt;}
.lsd_c00438{letter-spacing:-0.014912pt;}
.lsf_c00438{letter-spacing:-0.012800pt;}
.lse_c00438{letter-spacing:-0.006400pt;}
.lsc_c00438{letter-spacing:0.000000pt;}
.ls1_c00438{letter-spacing:0.006400pt;}
.ls2_c00438{letter-spacing:0.012800pt;}
.ls5_c00438{letter-spacing:0.019200pt;}
.ls7_c00438{letter-spacing:0.025600pt;}
.ls4_c00438{letter-spacing:0.032000pt;}
.ls8_c00438{letter-spacing:0.038400pt;}
.ls6_c00438{letter-spacing:0.044800pt;}
.lsa_c00438{letter-spacing:0.051200pt;}
.ls3_c00438{letter-spacing:0.064000pt;}
.ls9_c00438{letter-spacing:0.076800pt;}
.ls11_c00438{letter-spacing:2.240000pt;}
.ls0_c00438{letter-spacing:55.808000pt;}
.ws1_c00438{word-spacing:-16.044800pt;}
.ws2_c00438{word-spacing:-16.032000pt;}
.ws0_c00438{word-spacing:-16.000000pt;}
.ws3_c00438{word-spacing:-15.987200pt;}
.ws9_c00438{word-spacing:-3.520000pt;}
.wsa_c00438{word-spacing:-3.507200pt;}
.ws11_c00438{word-spacing:-2.937600pt;}
.ws18_c00438{word-spacing:-2.534400pt;}
.ws16_c00438{word-spacing:-2.022400pt;}
.wsf_c00438{word-spacing:-1.145600pt;}
.ws10_c00438{word-spacing:-0.972800pt;}
.wse_c00438{word-spacing:-0.006400pt;}
.ws5_c00438{word-spacing:0.000000pt;}
.ws8_c00438{word-spacing:0.006400pt;}
.ws4_c00438{word-spacing:0.171008pt;}
.wsc_c00438{word-spacing:2.035200pt;}
.wsd_c00438{word-spacing:2.233600pt;}
.ws1a_c00438{word-spacing:2.540800pt;}
.ws1b_c00438{word-spacing:2.566400pt;}
.ws7_c00438{word-spacing:8.198400pt;}
.ws6_c00438{word-spacing:9.024000pt;}
.ws1c_c00438{word-spacing:9.561600pt;}
.ws1d_c00438{word-spacing:9.587200pt;}
.wsb_c00438{word-spacing:9.932800pt;}
.ws19_c00438{word-spacing:11.507200pt;}
.ws15_c00438{word-spacing:15.699200pt;}
.ws14_c00438{word-spacing:15.718400pt;}
.ws13_c00438{word-spacing:18.521600pt;}
.ws12_c00438{word-spacing:18.579200pt;}
.ws17_c00438{word-spacing:22.406400pt;}
._4_c00438{margin-left:-3.539200pt;}
._6_c00438{margin-left:-2.617600pt;}
._3_c00438{margin-left:-1.152000pt;}
._0_c00438{width:0.919168pt;}
._c_c00438{width:2.521600pt;}
._9_c00438{width:5.401600pt;}
._2_c00438{width:8.288000pt;}
._1_c00438{width:9.273600pt;}
._5_c00438{width:10.566400pt;}
._b_c00438{width:11.481600pt;}
._a_c00438{width:22.329600pt;}
._8_c00438{width:46.681600pt;}
._7_c00438{width:54.041600pt;}
.fs0_c00438{font-size:53.440000pt;}
.fs1_c00438{font-size:64.000000pt;}
.fs2_c00438{font-size:74.560000pt;}
.y0_c00438{bottom:0.000000pt;}
.y5_c00438{bottom:50.987067pt;}
.y4_c00438{bottom:69.387067pt;}
.y26_c00438{bottom:100.187067pt;}
.y25_c00438{bottom:127.787067pt;}
.y24_c00438{bottom:155.387067pt;}
.y23_c00438{bottom:182.987067pt;}
.y22_c00438{bottom:210.587067pt;}
.y21_c00438{bottom:238.187067pt;}
.y20_c00438{bottom:265.787067pt;}
.y1f_c00438{bottom:293.387067pt;}
.y1e_c00438{bottom:320.987067pt;}
.y1d_c00438{bottom:348.587067pt;}
.y1c_c00438{bottom:376.187067pt;}
.y1b_c00438{bottom:403.787067pt;}
.y1a_c00438{bottom:431.387067pt;}
.y19_c00438{bottom:458.987200pt;}
.y18_c00438{bottom:486.587067pt;}
.y17_c00438{bottom:514.107067pt;}
.y16_c00438{bottom:541.787067pt;}
.y15_c00438{bottom:569.387067pt;}
.y14_c00438{bottom:596.987067pt;}
.y13_c00438{bottom:624.587067pt;}
.y12_c00438{bottom:652.187067pt;}
.y11_c00438{bottom:679.707067pt;}
.y10_c00438{bottom:707.387067pt;}
.yf_c00438{bottom:734.907067pt;}
.ye_c00438{bottom:762.507067pt;}
.yd_c00438{bottom:790.107067pt;}
.yc_c00438{bottom:817.707067pt;}
.yb_c00438{bottom:845.307067pt;}
.ya_c00438{bottom:872.907067pt;}
.y9_c00438{bottom:900.507067pt;}
.y8_c00438{bottom:928.107067pt;}
.y7_c00438{bottom:955.707067pt;}
.y6_c00438{bottom:985.227067pt;}
.y3_c00438{bottom:1006.347067pt;}
.y2_c00438{bottom:1035.947576pt;}
.y1_c00438{bottom:1063.147200pt;}
.h1_c00438{height:47.020937pt;}
.h2_c00438{height:56.156250pt;}
.h5_c00438{height:56.312500pt;}
.h4_c00438{height:57.375000pt;}
.h3_c00438{height:66.222969pt;}
.h0_c00438{height:1122.666667pt;}
.w1_c00438{width:793.333333pt;}
.w0_c00438{width:793.626667pt;}
.x0_c00438{left:0.000000pt;}
.x1_c00438{left:113.440000pt;}
.x3_c00438{left:137.440000pt;}
.x4_c00438{left:161.440000pt;}
.x2_c00438{left:656.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_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_f5069ec333905fa5ffbfc1f7.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.095703;font-style:normal;font-weight:normal;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_21d6c999c4f91d043655668e.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00439{font-family:ff3_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;}
.m0_c00439{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls11_c00439{letter-spacing:-0.720000px;}
.lsc_c00439{letter-spacing:-0.048096px;}
.ls14_c00439{letter-spacing:-0.043200px;}
.lse_c00439{letter-spacing:-0.036000px;}
.ls13_c00439{letter-spacing:-0.028800px;}
.ls12_c00439{letter-spacing:-0.021600px;}
.ls10_c00439{letter-spacing:-0.014400px;}
.lsf_c00439{letter-spacing:-0.007200px;}
.lsd_c00439{letter-spacing:0.000000px;}
.ls6_c00439{letter-spacing:0.007200px;}
.ls1_c00439{letter-spacing:0.014400px;}
.ls4_c00439{letter-spacing:0.021600px;}
.ls5_c00439{letter-spacing:0.028800px;}
.ls3_c00439{letter-spacing:0.036000px;}
.ls9_c00439{letter-spacing:0.043200px;}
.ls2_c00439{letter-spacing:0.050400px;}
.lsb_c00439{letter-spacing:0.064800px;}
.ls7_c00439{letter-spacing:0.072000px;}
.ls8_c00439{letter-spacing:0.079200px;}
.lsa_c00439{letter-spacing:0.108000px;}
.ls0_c00439{letter-spacing:62.784000px;}
.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:-18.000000px;}
.ws6_c00439{word-spacing:-4.420800px;}
.ws5_c00439{word-spacing:-4.312800px;}
.ws9_c00439{word-spacing:-2.152800px;}
.ws12_c00439{word-spacing:-1.036800px;}
.ws7_c00439{word-spacing:-0.748800px;}
.wsf_c00439{word-spacing:-0.468000px;}
.ws10_c00439{word-spacing:-0.331200px;}
.wsa_c00439{word-spacing:-0.079200px;}
.ws3_c00439{word-spacing:-0.014400px;}
.ws2_c00439{word-spacing:0.000000px;}
.ws1_c00439{word-spacing:0.138276px;}
.ws18_c00439{word-spacing:1.670400px;}
.ws8_c00439{word-spacing:1.728000px;}
.ws17_c00439{word-spacing:1.764000px;}
.ws1a_c00439{word-spacing:3.060000px;}
.ws19_c00439{word-spacing:3.218400px;}
.ws13_c00439{word-spacing:3.960000px;}
.ws15_c00439{word-spacing:4.219200px;}
.ws14_c00439{word-spacing:4.348800px;}
.ws4_c00439{word-spacing:5.040000px;}
.wsd_c00439{word-spacing:7.178400px;}
.wsc_c00439{word-spacing:7.214400px;}
.ws16_c00439{word-spacing:13.939200px;}
.wsb_c00439{word-spacing:16.574400px;}
.ws11_c00439{word-spacing:24.775200px;}
.wse_c00439{word-spacing:82.281600px;}
._3_c00439{margin-left:-4.341600px;}
._5_c00439{margin-left:-2.354400px;}
._1_c00439{margin-left:-1.080000px;}
._2_c00439{width:1.044000px;}
._4_c00439{width:2.232000px;}
._a_c00439{width:3.484800px;}
._0_c00439{width:4.989600px;}
._7_c00439{width:7.207200px;}
._b_c00439{width:13.665600px;}
._6_c00439{width:16.567200px;}
._9_c00439{width:24.631200px;}
._8_c00439{width:82.202400px;}
.fc0_c00439{color:rgb(0,0,0);}
.fs0_c00439{font-size:60.120000px;}
.fs1_c00439{font-size:72.000000px;}
.y0_c00439{bottom:0.000000px;}
.y6_c00439{bottom:57.360450px;}
.y5_c00439{bottom:78.060450px;}
.y27_c00439{bottom:130.800450px;}
.y26_c00439{bottom:161.850450px;}
.y25_c00439{bottom:192.900450px;}
.y24_c00439{bottom:223.950450px;}
.y23_c00439{bottom:255.000450px;}
.y22_c00439{bottom:286.050450px;}
.y21_c00439{bottom:317.100450px;}
.y20_c00439{bottom:348.150450px;}
.y1f_c00439{bottom:379.200450px;}
.y1e_c00439{bottom:410.250450px;}
.y1d_c00439{bottom:441.300450px;}
.y1c_c00439{bottom:472.350450px;}
.y1b_c00439{bottom:503.400450px;}
.y1a_c00439{bottom:534.450450px;}
.y19_c00439{bottom:565.500450px;}
.y18_c00439{bottom:596.550450px;}
.y17_c00439{bottom:627.600450px;}
.y16_c00439{bottom:658.650450px;}
.y15_c00439{bottom:689.700450px;}
.y14_c00439{bottom:720.750450px;}
.y13_c00439{bottom:751.800450px;}
.y12_c00439{bottom:782.850450px;}
.y11_c00439{bottom:813.900450px;}
.y10_c00439{bottom:844.950450px;}
.yf_c00439{bottom:876.000450px;}
.ye_c00439{bottom:907.050450px;}
.yd_c00439{bottom:938.100450px;}
.yc_c00439{bottom:969.150450px;}
.yb_c00439{bottom:1000.200450px;}
.ya_c00439{bottom:1031.160450px;}
.y9_c00439{bottom:1062.210450px;}
.y8_c00439{bottom:1093.260450px;}
.y7_c00439{bottom:1124.310450px;}
.y4_c00439{bottom:1144.380657px;}
.y3_c00439{bottom:1161.660648px;}
.y2_c00439{bottom:1178.850459px;}
.y1_c00439{bottom:1196.130450px;}
.h1_c00439{height:52.898555px;}
.h2_c00439{height:63.175781px;}
.h4_c00439{height:63.351562px;}
.h3_c00439{height:64.546875px;}
.h0_c00439{height:1263.000000px;}
.w1_c00439{width:892.500000px;}
.w0_c00439{width:892.830000px;}
.x0_c00439{left:0.000000px;}
.x4_c00439{left:127.620000px;}
.x5_c00439{left:154.620000px;}
.x6_c00439{left:181.620000px;}
.x1_c00439{left:649.620000px;}
.x3_c00439{left:738.450000px;}
.x2_c00439{left:765.450198px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls11_c00439{letter-spacing:-0.640000pt;}
.lsc_c00439{letter-spacing:-0.042752pt;}
.ls14_c00439{letter-spacing:-0.038400pt;}
.lse_c00439{letter-spacing:-0.032000pt;}
.ls13_c00439{letter-spacing:-0.025600pt;}
.ls12_c00439{letter-spacing:-0.019200pt;}
.ls10_c00439{letter-spacing:-0.012800pt;}
.lsf_c00439{letter-spacing:-0.006400pt;}
.lsd_c00439{letter-spacing:0.000000pt;}
.ls6_c00439{letter-spacing:0.006400pt;}
.ls1_c00439{letter-spacing:0.012800pt;}
.ls4_c00439{letter-spacing:0.019200pt;}
.ls5_c00439{letter-spacing:0.025600pt;}
.ls3_c00439{letter-spacing:0.032000pt;}
.ls9_c00439{letter-spacing:0.038400pt;}
.ls2_c00439{letter-spacing:0.044800pt;}
.lsb_c00439{letter-spacing:0.057600pt;}
.ls7_c00439{letter-spacing:0.064000pt;}
.ls8_c00439{letter-spacing:0.070400pt;}
.lsa_c00439{letter-spacing:0.096000pt;}
.ls0_c00439{letter-spacing:55.808000pt;}
.ws0_c00439{word-spacing:-16.000000pt;}
.ws6_c00439{word-spacing:-3.929600pt;}
.ws5_c00439{word-spacing:-3.833600pt;}
.ws9_c00439{word-spacing:-1.913600pt;}
.ws12_c00439{word-spacing:-0.921600pt;}
.ws7_c00439{word-spacing:-0.665600pt;}
.wsf_c00439{word-spacing:-0.416000pt;}
.ws10_c00439{word-spacing:-0.294400pt;}
.wsa_c00439{word-spacing:-0.070400pt;}
.ws3_c00439{word-spacing:-0.012800pt;}
.ws2_c00439{word-spacing:0.000000pt;}
.ws1_c00439{word-spacing:0.122912pt;}
.ws18_c00439{word-spacing:1.484800pt;}
.ws8_c00439{word-spacing:1.536000pt;}
.ws17_c00439{word-spacing:1.568000pt;}
.ws1a_c00439{word-spacing:2.720000pt;}
.ws19_c00439{word-spacing:2.860800pt;}
.ws13_c00439{word-spacing:3.520000pt;}
.ws15_c00439{word-spacing:3.750400pt;}
.ws14_c00439{word-spacing:3.865600pt;}
.ws4_c00439{word-spacing:4.480000pt;}
.wsd_c00439{word-spacing:6.380800pt;}
.wsc_c00439{word-spacing:6.412800pt;}
.ws16_c00439{word-spacing:12.390400pt;}
.wsb_c00439{word-spacing:14.732800pt;}
.ws11_c00439{word-spacing:22.022400pt;}
.wse_c00439{word-spacing:73.139200pt;}
._3_c00439{margin-left:-3.859200pt;}
._5_c00439{margin-left:-2.092800pt;}
._1_c00439{margin-left:-0.960000pt;}
._2_c00439{width:0.928000pt;}
._4_c00439{width:1.984000pt;}
._a_c00439{width:3.097600pt;}
._0_c00439{width:4.435200pt;}
._7_c00439{width:6.406400pt;}
._b_c00439{width:12.147200pt;}
._6_c00439{width:14.726400pt;}
._9_c00439{width:21.894400pt;}
._8_c00439{width:73.068800pt;}
.fs0_c00439{font-size:53.440000pt;}
.fs1_c00439{font-size:64.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.y6_c00439{bottom:50.987067pt;}
.y5_c00439{bottom:69.387067pt;}
.y27_c00439{bottom:116.267067pt;}
.y26_c00439{bottom:143.867067pt;}
.y25_c00439{bottom:171.467067pt;}
.y24_c00439{bottom:199.067067pt;}
.y23_c00439{bottom:226.667067pt;}
.y22_c00439{bottom:254.267067pt;}
.y21_c00439{bottom:281.867067pt;}
.y20_c00439{bottom:309.467067pt;}
.y1f_c00439{bottom:337.067067pt;}
.y1e_c00439{bottom:364.667067pt;}
.y1d_c00439{bottom:392.267067pt;}
.y1c_c00439{bottom:419.867067pt;}
.y1b_c00439{bottom:447.467067pt;}
.y1a_c00439{bottom:475.067067pt;}
.y19_c00439{bottom:502.667067pt;}
.y18_c00439{bottom:530.267067pt;}
.y17_c00439{bottom:557.867067pt;}
.y16_c00439{bottom:585.467067pt;}
.y15_c00439{bottom:613.067067pt;}
.y14_c00439{bottom:640.667067pt;}
.y13_c00439{bottom:668.267067pt;}
.y12_c00439{bottom:695.867067pt;}
.y11_c00439{bottom:723.467067pt;}
.y10_c00439{bottom:751.067067pt;}
.yf_c00439{bottom:778.667067pt;}
.ye_c00439{bottom:806.267067pt;}
.yd_c00439{bottom:833.867067pt;}
.yc_c00439{bottom:861.467067pt;}
.yb_c00439{bottom:889.067067pt;}
.ya_c00439{bottom:916.587067pt;}
.y9_c00439{bottom:944.187067pt;}
.y8_c00439{bottom:971.787067pt;}
.y7_c00439{bottom:999.387067pt;}
.y4_c00439{bottom:1017.227251pt;}
.y3_c00439{bottom:1032.587243pt;}
.y2_c00439{bottom:1047.867075pt;}
.y1_c00439{bottom:1063.227067pt;}
.h1_c00439{height:47.020937pt;}
.h2_c00439{height:56.156250pt;}
.h4_c00439{height:56.312500pt;}
.h3_c00439{height:57.375000pt;}
.h0_c00439{height:1122.666667pt;}
.w1_c00439{width:793.333333pt;}
.w0_c00439{width:793.626667pt;}
.x0_c00439{left:0.000000pt;}
.x4_c00439{left:113.440000pt;}
.x5_c00439{left:137.440000pt;}
.x6_c00439{left:161.440000pt;}
.x1_c00439{left:577.440000pt;}
.x3_c00439{left:656.400000pt;}
.x2_c00439{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6708252e4f645c01e07240e8.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.095703;font-style:normal;font-weight:normal;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_2a9adbb1541d08eb6fbf732b.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00440{font-family:ff3_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;}
.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;}
.ls11_c00440{letter-spacing:-0.360000px;}
.lsb_c00440{letter-spacing:-0.102204px;}
.ls10_c00440{letter-spacing:-0.036000px;}
.ls12_c00440{letter-spacing:-0.028800px;}
.lsf_c00440{letter-spacing:-0.021600px;}
.lse_c00440{letter-spacing:-0.014400px;}
.lsd_c00440{letter-spacing:-0.007200px;}
.lsc_c00440{letter-spacing:0.000000px;}
.ls9_c00440{letter-spacing:0.007200px;}
.ls8_c00440{letter-spacing:0.014400px;}
.ls5_c00440{letter-spacing:0.021600px;}
.ls4_c00440{letter-spacing:0.028800px;}
.ls1_c00440{letter-spacing:0.036000px;}
.ls6_c00440{letter-spacing:0.043200px;}
.lsa_c00440{letter-spacing:0.050400px;}
.ls7_c00440{letter-spacing:0.057600px;}
.ls2_c00440{letter-spacing:0.064800px;}
.ls3_c00440{letter-spacing:0.108000px;}
.ls0_c00440{letter-spacing:62.784000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00440{word-spacing:-18.000000px;}
.ws3_c00440{word-spacing:-2.628000px;}
.ws4_c00440{word-spacing:-2.505600px;}
.ws5_c00440{word-spacing:-2.498400px;}
.ws15_c00440{word-spacing:-2.268000px;}
.ws14_c00440{word-spacing:-2.167200px;}
.ws6_c00440{word-spacing:-0.352800px;}
.ws18_c00440{word-spacing:-0.165600px;}
.ws19_c00440{word-spacing:-0.014400px;}
.ws2_c00440{word-spacing:0.000000px;}
.ws1_c00440{word-spacing:0.192384px;}
.wsc_c00440{word-spacing:0.302400px;}
.ws13_c00440{word-spacing:0.705600px;}
.wsa_c00440{word-spacing:1.332000px;}
.ws9_c00440{word-spacing:1.461600px;}
.ws12_c00440{word-spacing:2.894400px;}
.wsd_c00440{word-spacing:3.146400px;}
.wsf_c00440{word-spacing:3.225600px;}
.wsb_c00440{word-spacing:3.240000px;}
.ws8_c00440{word-spacing:5.256000px;}
.ws11_c00440{word-spacing:5.400000px;}
.ws7_c00440{word-spacing:5.414400px;}
.ws10_c00440{word-spacing:10.764000px;}
.ws16_c00440{word-spacing:10.785600px;}
.ws17_c00440{word-spacing:37.072800px;}
.wse_c00440{word-spacing:38.152800px;}
._7_c00440{margin-left:-2.160000px;}
._2_c00440{margin-left:-1.116000px;}
._0_c00440{width:1.034064px;}
._3_c00440{width:2.707200px;}
._4_c00440{width:4.003200px;}
._1_c00440{width:5.364000px;}
._a_c00440{width:8.992800px;}
._8_c00440{width:10.512000px;}
._9_c00440{width:11.606400px;}
._6_c00440{width:36.590400px;}
._5_c00440{width:38.102400px;}
.fc1_c00440{color:rgb(0,0,0);}
.fc0_c00440{color:rgb(32,31,30);}
.fs0_c00440{font-size:60.120000px;}
.fs1_c00440{font-size:72.000000px;}
.y0_c00440{bottom:0.000000px;}
.y5_c00440{bottom:57.360450px;}
.y4_c00440{bottom:78.060450px;}
.y23_c00440{bottom:169.050450px;}
.y22_c00440{bottom:200.100450px;}
.y21_c00440{bottom:231.150450px;}
.y20_c00440{bottom:262.200450px;}
.y1f_c00440{bottom:293.250450px;}
.y1e_c00440{bottom:324.300450px;}
.y1d_c00440{bottom:355.350450px;}
.y1c_c00440{bottom:393.780450px;}
.y1b_c00440{bottom:424.920450px;}
.y1a_c00440{bottom:455.970450px;}
.y19_c00440{bottom:494.400450px;}
.y18_c00440{bottom:525.540450px;}
.y17_c00440{bottom:568.560450px;}
.y16_c00440{bottom:599.700450px;}
.y15_c00440{bottom:630.660450px;}
.y14_c00440{bottom:669.180450px;}
.y13_c00440{bottom:700.320450px;}
.y12_c00440{bottom:731.280450px;}
.y11_c00440{bottom:762.330450px;}
.y10_c00440{bottom:800.940450px;}
.yf_c00440{bottom:831.990450px;}
.ye_c00440{bottom:863.040450px;}
.yd_c00440{bottom:894.090450px;}
.yc_c00440{bottom:925.140450px;}
.yb_c00440{bottom:956.100450px;}
.ya_c00440{bottom:987.240450px;}
.y9_c00440{bottom:1018.290450px;}
.y8_c00440{bottom:1049.340450px;}
.y7_c00440{bottom:1080.300450px;}
.y6_c00440{bottom:1111.440450px;}
.y3_c00440{bottom:1132.140450px;}
.y2_c00440{bottom:1165.441023px;}
.y1_c00440{bottom:1196.040600px;}
.h1_c00440{height:52.898555px;}
.h2_c00440{height:63.175781px;}
.h4_c00440{height:63.351562px;}
.h3_c00440{height:64.546875px;}
.h0_c00440{height:1263.000000px;}
.w1_c00440{width:892.500000px;}
.w0_c00440{width:892.830000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:127.620000px;}
.x3_c00440{left:154.620000px;}
.x4_c00440{left:181.620000px;}
.x2_c00440{left:738.450000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls11_c00440{letter-spacing:-0.320000pt;}
.lsb_c00440{letter-spacing:-0.090848pt;}
.ls10_c00440{letter-spacing:-0.032000pt;}
.ls12_c00440{letter-spacing:-0.025600pt;}
.lsf_c00440{letter-spacing:-0.019200pt;}
.lse_c00440{letter-spacing:-0.012800pt;}
.lsd_c00440{letter-spacing:-0.006400pt;}
.lsc_c00440{letter-spacing:0.000000pt;}
.ls9_c00440{letter-spacing:0.006400pt;}
.ls8_c00440{letter-spacing:0.012800pt;}
.ls5_c00440{letter-spacing:0.019200pt;}
.ls4_c00440{letter-spacing:0.025600pt;}
.ls1_c00440{letter-spacing:0.032000pt;}
.ls6_c00440{letter-spacing:0.038400pt;}
.lsa_c00440{letter-spacing:0.044800pt;}
.ls7_c00440{letter-spacing:0.051200pt;}
.ls2_c00440{letter-spacing:0.057600pt;}
.ls3_c00440{letter-spacing:0.096000pt;}
.ls0_c00440{letter-spacing:55.808000pt;}
.ws0_c00440{word-spacing:-16.000000pt;}
.ws3_c00440{word-spacing:-2.336000pt;}
.ws4_c00440{word-spacing:-2.227200pt;}
.ws5_c00440{word-spacing:-2.220800pt;}
.ws15_c00440{word-spacing:-2.016000pt;}
.ws14_c00440{word-spacing:-1.926400pt;}
.ws6_c00440{word-spacing:-0.313600pt;}
.ws18_c00440{word-spacing:-0.147200pt;}
.ws19_c00440{word-spacing:-0.012800pt;}
.ws2_c00440{word-spacing:0.000000pt;}
.ws1_c00440{word-spacing:0.171008pt;}
.wsc_c00440{word-spacing:0.268800pt;}
.ws13_c00440{word-spacing:0.627200pt;}
.wsa_c00440{word-spacing:1.184000pt;}
.ws9_c00440{word-spacing:1.299200pt;}
.ws12_c00440{word-spacing:2.572800pt;}
.wsd_c00440{word-spacing:2.796800pt;}
.wsf_c00440{word-spacing:2.867200pt;}
.wsb_c00440{word-spacing:2.880000pt;}
.ws8_c00440{word-spacing:4.672000pt;}
.ws11_c00440{word-spacing:4.800000pt;}
.ws7_c00440{word-spacing:4.812800pt;}
.ws10_c00440{word-spacing:9.568000pt;}
.ws16_c00440{word-spacing:9.587200pt;}
.ws17_c00440{word-spacing:32.953600pt;}
.wse_c00440{word-spacing:33.913600pt;}
._7_c00440{margin-left:-1.920000pt;}
._2_c00440{margin-left:-0.992000pt;}
._0_c00440{width:0.919168pt;}
._3_c00440{width:2.406400pt;}
._4_c00440{width:3.558400pt;}
._1_c00440{width:4.768000pt;}
._a_c00440{width:7.993600pt;}
._8_c00440{width:9.344000pt;}
._9_c00440{width:10.316800pt;}
._6_c00440{width:32.524800pt;}
._5_c00440{width:33.868800pt;}
.fs0_c00440{font-size:53.440000pt;}
.fs1_c00440{font-size:64.000000pt;}
.y0_c00440{bottom:0.000000pt;}
.y5_c00440{bottom:50.987067pt;}
.y4_c00440{bottom:69.387067pt;}
.y23_c00440{bottom:150.267067pt;}
.y22_c00440{bottom:177.867067pt;}
.y21_c00440{bottom:205.467067pt;}
.y20_c00440{bottom:233.067067pt;}
.y1f_c00440{bottom:260.667067pt;}
.y1e_c00440{bottom:288.267067pt;}
.y1d_c00440{bottom:315.867067pt;}
.y1c_c00440{bottom:350.027067pt;}
.y1b_c00440{bottom:377.707067pt;}
.y1a_c00440{bottom:405.307067pt;}
.y19_c00440{bottom:439.467067pt;}
.y18_c00440{bottom:467.147067pt;}
.y17_c00440{bottom:505.387067pt;}
.y16_c00440{bottom:533.067067pt;}
.y15_c00440{bottom:560.587067pt;}
.y14_c00440{bottom:594.827067pt;}
.y13_c00440{bottom:622.507067pt;}
.y12_c00440{bottom:650.027067pt;}
.y11_c00440{bottom:677.627067pt;}
.y10_c00440{bottom:711.947067pt;}
.yf_c00440{bottom:739.547067pt;}
.ye_c00440{bottom:767.147067pt;}
.yd_c00440{bottom:794.747067pt;}
.yc_c00440{bottom:822.347067pt;}
.yb_c00440{bottom:849.867067pt;}
.ya_c00440{bottom:877.547067pt;}
.y9_c00440{bottom:905.147067pt;}
.y8_c00440{bottom:932.747067pt;}
.y7_c00440{bottom:960.267067pt;}
.y6_c00440{bottom:987.947067pt;}
.y3_c00440{bottom:1006.347067pt;}
.y2_c00440{bottom:1035.947576pt;}
.y1_c00440{bottom:1063.147200pt;}
.h1_c00440{height:47.020937pt;}
.h2_c00440{height:56.156250pt;}
.h4_c00440{height:56.312500pt;}
.h3_c00440{height:57.375000pt;}
.h0_c00440{height:1122.666667pt;}
.w1_c00440{width:793.333333pt;}
.w0_c00440{width:793.626667pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:113.440000pt;}
.x3_c00440{left:137.440000pt;}
.x4_c00440{left:161.440000pt;}
.x2_c00440{left:656.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_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_2b14c582a841a63cecc0114f.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.095703;font-style:normal;font-weight:normal;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_e78f05f0b93e4fdba5a38dc1.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00441{font-family:ff3_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:ff4_c00441;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff4_c00441{font-family:ff4_c00441;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_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;}
.ls14_c00441{letter-spacing:-0.050400px;}
.lsd_c00441{letter-spacing:-0.048096px;}
.ls13_c00441{letter-spacing:-0.043200px;}
.ls15_c00441{letter-spacing:-0.036000px;}
.lsf_c00441{letter-spacing:-0.028800px;}
.ls12_c00441{letter-spacing:-0.021600px;}
.ls11_c00441{letter-spacing:-0.014400px;}
.ls10_c00441{letter-spacing:-0.007200px;}
.lse_c00441{letter-spacing:0.000000px;}
.ls6_c00441{letter-spacing:0.007200px;}
.ls1_c00441{letter-spacing:0.014400px;}
.ls8_c00441{letter-spacing:0.021600px;}
.ls2_c00441{letter-spacing:0.028800px;}
.ls5_c00441{letter-spacing:0.036000px;}
.ls4_c00441{letter-spacing:0.043200px;}
.ls9_c00441{letter-spacing:0.050400px;}
.lsa_c00441{letter-spacing:0.064800px;}
.ls3_c00441{letter-spacing:0.079200px;}
.ls7_c00441{letter-spacing:0.086400px;}
.lsc_c00441{letter-spacing:54.864000px;}
.lsb_c00441{letter-spacing:62.064000px;}
.ls0_c00441{letter-spacing:62.784000px;}
.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;}
}
.ws4_c00441{word-spacing:-72.000000px;}
.ws1_c00441{word-spacing:-18.043200px;}
.ws2_c00441{word-spacing:-18.021600px;}
.ws0_c00441{word-spacing:-18.000000px;}
.ws3_c00441{word-spacing:-17.964000px;}
.wse_c00441{word-spacing:-1.929600px;}
.wsc_c00441{word-spacing:-1.598400px;}
.ws18_c00441{word-spacing:-1.476000px;}
.ws13_c00441{word-spacing:-1.432800px;}
.wsb_c00441{word-spacing:-0.727200px;}
.wsd_c00441{word-spacing:-0.007200px;}
.ws6_c00441{word-spacing:0.000000px;}
.ws5_c00441{word-spacing:0.138276px;}
.ws8_c00441{word-spacing:3.247200px;}
.ws9_c00441{word-spacing:3.254400px;}
.ws12_c00441{word-spacing:4.622400px;}
.ws11_c00441{word-spacing:4.629600px;}
.ws15_c00441{word-spacing:5.709600px;}
.ws16_c00441{word-spacing:8.107200px;}
.ws17_c00441{word-spacing:8.244000px;}
.ws14_c00441{word-spacing:13.975200px;}
.wsf_c00441{word-spacing:16.272000px;}
.ws10_c00441{word-spacing:16.459200px;}
.wsa_c00441{word-spacing:16.488000px;}
.ws19_c00441{word-spacing:20.829600px;}
.ws7_c00441{word-spacing:29.491200px;}
._8_c00441{margin-left:-3.535200px;}
._5_c00441{margin-left:-2.282400px;}
._1_c00441{margin-left:-1.188000px;}
._4_c00441{width:2.008800px;}
._2_c00441{width:3.268800px;}
._6_c00441{width:4.334400px;}
._a_c00441{width:5.774400px;}
._7_c00441{width:8.229600px;}
._9_c00441{width:13.363200px;}
._3_c00441{width:16.545600px;}
._b_c00441{width:20.858400px;}
._0_c00441{width:29.505600px;}
.fc1_c00441{color:rgb(5,99,193);}
.fc0_c00441{color:rgb(0,0,0);}
.fs0_c00441{font-size:60.120000px;}
.fs1_c00441{font-size:72.000000px;}
.y0_c00441{bottom:0.000000px;}
.y6_c00441{bottom:57.360450px;}
.y5_c00441{bottom:78.060450px;}
.y25_c00441{bottom:191.640600px;}
.y24_c00441{bottom:222.600600px;}
.y23_c00441{bottom:255.000600px;}
.y22_c00441{bottom:286.050600px;}
.y21_c00441{bottom:317.100600px;}
.y20_c00441{bottom:348.150600px;}
.y1f_c00441{bottom:379.200600px;}
.y1e_c00441{bottom:410.250600px;}
.y1d_c00441{bottom:441.300450px;}
.y1c_c00441{bottom:472.350450px;}
.y1b_c00441{bottom:503.400450px;}
.y1a_c00441{bottom:534.450450px;}
.y19_c00441{bottom:565.500450px;}
.y18_c00441{bottom:596.550450px;}
.y17_c00441{bottom:627.600450px;}
.y16_c00441{bottom:658.650450px;}
.y15_c00441{bottom:689.700450px;}
.y14_c00441{bottom:720.750450px;}
.y13_c00441{bottom:751.800450px;}
.y12_c00441{bottom:782.850450px;}
.y11_c00441{bottom:813.900450px;}
.y10_c00441{bottom:844.950450px;}
.yf_c00441{bottom:876.000450px;}
.ye_c00441{bottom:907.050450px;}
.yd_c00441{bottom:938.100450px;}
.yc_c00441{bottom:969.150450px;}
.yb_c00441{bottom:1000.200450px;}
.ya_c00441{bottom:1031.160450px;}
.y9_c00441{bottom:1062.210450px;}
.y8_c00441{bottom:1093.260450px;}
.y7_c00441{bottom:1124.310450px;}
.y4_c00441{bottom:1144.380657px;}
.y3_c00441{bottom:1161.660648px;}
.y2_c00441{bottom:1178.850459px;}
.y1_c00441{bottom:1196.130450px;}
.h1_c00441{height:52.898555px;}
.h2_c00441{height:63.175781px;}
.h4_c00441{height:63.351562px;}
.h3_c00441{height:64.546875px;}
.h0_c00441{height:1263.000000px;}
.w1_c00441{width:892.500000px;}
.w0_c00441{width:892.830000px;}
.x0_c00441{left:0.000000px;}
.x4_c00441{left:127.620000px;}
.x5_c00441{left:154.620000px;}
.x6_c00441{left:181.620000px;}
.x1_c00441{left:649.620000px;}
.x3_c00441{left:738.450000px;}
.x2_c00441{left:765.450198px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls14_c00441{letter-spacing:-0.044800pt;}
.lsd_c00441{letter-spacing:-0.042752pt;}
.ls13_c00441{letter-spacing:-0.038400pt;}
.ls15_c00441{letter-spacing:-0.032000pt;}
.lsf_c00441{letter-spacing:-0.025600pt;}
.ls12_c00441{letter-spacing:-0.019200pt;}
.ls11_c00441{letter-spacing:-0.012800pt;}
.ls10_c00441{letter-spacing:-0.006400pt;}
.lse_c00441{letter-spacing:0.000000pt;}
.ls6_c00441{letter-spacing:0.006400pt;}
.ls1_c00441{letter-spacing:0.012800pt;}
.ls8_c00441{letter-spacing:0.019200pt;}
.ls2_c00441{letter-spacing:0.025600pt;}
.ls5_c00441{letter-spacing:0.032000pt;}
.ls4_c00441{letter-spacing:0.038400pt;}
.ls9_c00441{letter-spacing:0.044800pt;}
.lsa_c00441{letter-spacing:0.057600pt;}
.ls3_c00441{letter-spacing:0.070400pt;}
.ls7_c00441{letter-spacing:0.076800pt;}
.lsc_c00441{letter-spacing:48.768000pt;}
.lsb_c00441{letter-spacing:55.168000pt;}
.ls0_c00441{letter-spacing:55.808000pt;}
.ws4_c00441{word-spacing:-64.000000pt;}
.ws1_c00441{word-spacing:-16.038400pt;}
.ws2_c00441{word-spacing:-16.019200pt;}
.ws0_c00441{word-spacing:-16.000000pt;}
.ws3_c00441{word-spacing:-15.968000pt;}
.wse_c00441{word-spacing:-1.715200pt;}
.wsc_c00441{word-spacing:-1.420800pt;}
.ws18_c00441{word-spacing:-1.312000pt;}
.ws13_c00441{word-spacing:-1.273600pt;}
.wsb_c00441{word-spacing:-0.646400pt;}
.wsd_c00441{word-spacing:-0.006400pt;}
.ws6_c00441{word-spacing:0.000000pt;}
.ws5_c00441{word-spacing:0.122912pt;}
.ws8_c00441{word-spacing:2.886400pt;}
.ws9_c00441{word-spacing:2.892800pt;}
.ws12_c00441{word-spacing:4.108800pt;}
.ws11_c00441{word-spacing:4.115200pt;}
.ws15_c00441{word-spacing:5.075200pt;}
.ws16_c00441{word-spacing:7.206400pt;}
.ws17_c00441{word-spacing:7.328000pt;}
.ws14_c00441{word-spacing:12.422400pt;}
.wsf_c00441{word-spacing:14.464000pt;}
.ws10_c00441{word-spacing:14.630400pt;}
.wsa_c00441{word-spacing:14.656000pt;}
.ws19_c00441{word-spacing:18.515200pt;}
.ws7_c00441{word-spacing:26.214400pt;}
._8_c00441{margin-left:-3.142400pt;}
._5_c00441{margin-left:-2.028800pt;}
._1_c00441{margin-left:-1.056000pt;}
._4_c00441{width:1.785600pt;}
._2_c00441{width:2.905600pt;}
._6_c00441{width:3.852800pt;}
._a_c00441{width:5.132800pt;}
._7_c00441{width:7.315200pt;}
._9_c00441{width:11.878400pt;}
._3_c00441{width:14.707200pt;}
._b_c00441{width:18.540800pt;}
._0_c00441{width:26.227200pt;}
.fs0_c00441{font-size:53.440000pt;}
.fs1_c00441{font-size:64.000000pt;}
.y0_c00441{bottom:0.000000pt;}
.y6_c00441{bottom:50.987067pt;}
.y5_c00441{bottom:69.387067pt;}
.y25_c00441{bottom:170.347200pt;}
.y24_c00441{bottom:197.867200pt;}
.y23_c00441{bottom:226.667200pt;}
.y22_c00441{bottom:254.267200pt;}
.y21_c00441{bottom:281.867200pt;}
.y20_c00441{bottom:309.467200pt;}
.y1f_c00441{bottom:337.067200pt;}
.y1e_c00441{bottom:364.667200pt;}
.y1d_c00441{bottom:392.267067pt;}
.y1c_c00441{bottom:419.867067pt;}
.y1b_c00441{bottom:447.467067pt;}
.y1a_c00441{bottom:475.067067pt;}
.y19_c00441{bottom:502.667067pt;}
.y18_c00441{bottom:530.267067pt;}
.y17_c00441{bottom:557.867067pt;}
.y16_c00441{bottom:585.467067pt;}
.y15_c00441{bottom:613.067067pt;}
.y14_c00441{bottom:640.667067pt;}
.y13_c00441{bottom:668.267067pt;}
.y12_c00441{bottom:695.867067pt;}
.y11_c00441{bottom:723.467067pt;}
.y10_c00441{bottom:751.067067pt;}
.yf_c00441{bottom:778.667067pt;}
.ye_c00441{bottom:806.267067pt;}
.yd_c00441{bottom:833.867067pt;}
.yc_c00441{bottom:861.467067pt;}
.yb_c00441{bottom:889.067067pt;}
.ya_c00441{bottom:916.587067pt;}
.y9_c00441{bottom:944.187067pt;}
.y8_c00441{bottom:971.787067pt;}
.y7_c00441{bottom:999.387067pt;}
.y4_c00441{bottom:1017.227251pt;}
.y3_c00441{bottom:1032.587243pt;}
.y2_c00441{bottom:1047.867075pt;}
.y1_c00441{bottom:1063.227067pt;}
.h1_c00441{height:47.020937pt;}
.h2_c00441{height:56.156250pt;}
.h4_c00441{height:56.312500pt;}
.h3_c00441{height:57.375000pt;}
.h0_c00441{height:1122.666667pt;}
.w1_c00441{width:793.333333pt;}
.w0_c00441{width:793.626667pt;}
.x0_c00441{left:0.000000pt;}
.x4_c00441{left:113.440000pt;}
.x5_c00441{left:137.440000pt;}
.x6_c00441{left:161.440000pt;}
.x1_c00441{left:577.440000pt;}
.x3_c00441{left:656.400000pt;}
.x2_c00441{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f0eaf3ca260c66f271ab7a42.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.095703;font-style:normal;font-weight:normal;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_aa7399941cb5c8d7910d442c.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:1.093262;font-style:normal;font-weight:normal;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_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff3_c00442{font-family:ff3_c00442;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_c00442;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff4_c00442{font-family:ff4_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;}
.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;}
.lsc_c00442{letter-spacing:-0.102204px;}
.lsf_c00442{letter-spacing:-0.043200px;}
.ls11_c00442{letter-spacing:-0.036000px;}
.ls13_c00442{letter-spacing:-0.028800px;}
.ls10_c00442{letter-spacing:-0.021600px;}
.ls12_c00442{letter-spacing:-0.014400px;}
.lse_c00442{letter-spacing:-0.007200px;}
.lsd_c00442{letter-spacing:0.000000px;}
.ls6_c00442{letter-spacing:0.007200px;}
.ls4_c00442{letter-spacing:0.014400px;}
.ls1_c00442{letter-spacing:0.021600px;}
.ls7_c00442{letter-spacing:0.028800px;}
.ls8_c00442{letter-spacing:0.036000px;}
.lsa_c00442{letter-spacing:0.043200px;}
.ls3_c00442{letter-spacing:0.050400px;}
.ls2_c00442{letter-spacing:0.057600px;}
.lsb_c00442{letter-spacing:0.064800px;}
.ls9_c00442{letter-spacing:0.072000px;}
.ls14_c00442{letter-spacing:26.640000px;}
.ls0_c00442{letter-spacing:54.864000px;}
.ls5_c00442{letter-spacing:62.784000px;}
.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:-72.000000px;}
.ws2_c00442{word-spacing:-18.050400px;}
.ws4_c00442{word-spacing:-18.021600px;}
.ws1_c00442{word-spacing:-18.014400px;}
.ws3_c00442{word-spacing:-18.000000px;}
.ws1c_c00442{word-spacing:-4.442400px;}
.ws1d_c00442{word-spacing:-4.312800px;}
.ws20_c00442{word-spacing:-2.534400px;}
.ws1e_c00442{word-spacing:-0.129600px;}
.ws1f_c00442{word-spacing:-0.115200px;}
.ws6_c00442{word-spacing:0.000000px;}
.ws5_c00442{word-spacing:0.192384px;}
.ws17_c00442{word-spacing:2.642400px;}
.ws18_c00442{word-spacing:2.800800px;}
.wsa_c00442{word-spacing:2.851200px;}
.ws7_c00442{word-spacing:3.204000px;}
.ws19_c00442{word-spacing:4.665600px;}
.ws8_c00442{word-spacing:5.767200px;}
.ws9_c00442{word-spacing:5.803200px;}
.wsd_c00442{word-spacing:7.524000px;}
.wsb_c00442{word-spacing:8.582400px;}
.wse_c00442{word-spacing:11.052000px;}
.wsf_c00442{word-spacing:11.181600px;}
.ws1a_c00442{word-spacing:15.868800px;}
.ws1b_c00442{word-spacing:15.876000px;}
.ws10_c00442{word-spacing:16.502400px;}
.ws11_c00442{word-spacing:17.582400px;}
.ws15_c00442{word-spacing:19.684800px;}
.ws13_c00442{word-spacing:19.800000px;}
.ws14_c00442{word-spacing:19.821600px;}
.wsc_c00442{word-spacing:21.225600px;}
.ws16_c00442{word-spacing:24.120000px;}
.ws12_c00442{word-spacing:40.284000px;}
._13_c00442{margin-left:-26.611200px;}
._10_c00442{margin-left:-4.831200px;}
._11_c00442{margin-left:-3.492000px;}
._6_c00442{margin-left:-1.432800px;}
._0_c00442{width:1.034064px;}
._3_c00442{width:2.052000px;}
._1_c00442{width:3.060000px;}
._e_c00442{width:4.132800px;}
._2_c00442{width:5.666400px;}
._4_c00442{width:7.768800px;}
._5_c00442{width:9.324000px;}
._8_c00442{width:10.900800px;}
._f_c00442{width:15.285600px;}
._9_c00442{width:16.538400px;}
._7_c00442{width:21.225600px;}
._c_c00442{width:23.472000px;}
._d_c00442{width:24.631200px;}
._12_c00442{width:26.604000px;}
._b_c00442{width:40.291200px;}
._a_c00442{width:43.459200px;}
.fc1_c00442{color:rgb(0,0,0);}
.fc0_c00442{color:rgb(32,31,30);}
.fs0_c00442{font-size:60.120000px;}
.fs1_c00442{font-size:72.000000px;}
.y0_c00442{bottom:0.000000px;}
.y5_c00442{bottom:57.360450px;}
.y4_c00442{bottom:78.060450px;}
.y23_c00442{bottom:156.360450px;}
.y22_c00442{bottom:187.410450px;}
.y21_c00442{bottom:218.460450px;}
.y20_c00442{bottom:256.800450px;}
.y1f_c00442{bottom:288.030450px;}
.y1e_c00442{bottom:319.080450px;}
.y1d_c00442{bottom:357.600450px;}
.y1c_c00442{bottom:388.740450px;}
.y1b_c00442{bottom:419.790450px;}
.y1a_c00442{bottom:458.220450px;}
.y19_c00442{bottom:489.360450px;}
.y18_c00442{bottom:527.790450px;}
.y17_c00442{bottom:558.930450px;}
.y16_c00442{bottom:589.890450px;}
.y15_c00442{bottom:621.030450px;}
.y14_c00442{bottom:659.460450px;}
.y13_c00442{bottom:690.600450px;}
.y12_c00442{bottom:721.650450px;}
.y11_c00442{bottom:764.670450px;}
.y10_c00442{bottom:795.720450px;}
.yf_c00442{bottom:828.120450px;}
.ye_c00442{bottom:859.170450px;}
.yd_c00442{bottom:890.130450px;}
.yc_c00442{bottom:921.180450px;}
.yb_c00442{bottom:953.580450px;}
.ya_c00442{bottom:984.630450px;}
.y9_c00442{bottom:1015.590450px;}
.y8_c00442{bottom:1047.990450px;}
.y7_c00442{bottom:1079.040450px;}
.y6_c00442{bottom:1110.090450px;}
.y3_c00442{bottom:1132.140450px;}
.y2_c00442{bottom:1165.441023px;}
.y1_c00442{bottom:1196.040600px;}
.h1_c00442{height:52.898555px;}
.h2_c00442{height:63.175781px;}
.h4_c00442{height:63.351562px;}
.h3_c00442{height:64.546875px;}
.h0_c00442{height:1263.000000px;}
.w1_c00442{width:892.500000px;}
.w0_c00442{width:892.830000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:127.620000px;}
.x3_c00442{left:154.620000px;}
.x4_c00442{left:181.620000px;}
.x2_c00442{left:738.450000px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.lsc_c00442{letter-spacing:-0.090848pt;}
.lsf_c00442{letter-spacing:-0.038400pt;}
.ls11_c00442{letter-spacing:-0.032000pt;}
.ls13_c00442{letter-spacing:-0.025600pt;}
.ls10_c00442{letter-spacing:-0.019200pt;}
.ls12_c00442{letter-spacing:-0.012800pt;}
.lse_c00442{letter-spacing:-0.006400pt;}
.lsd_c00442{letter-spacing:0.000000pt;}
.ls6_c00442{letter-spacing:0.006400pt;}
.ls4_c00442{letter-spacing:0.012800pt;}
.ls1_c00442{letter-spacing:0.019200pt;}
.ls7_c00442{letter-spacing:0.025600pt;}
.ls8_c00442{letter-spacing:0.032000pt;}
.lsa_c00442{letter-spacing:0.038400pt;}
.ls3_c00442{letter-spacing:0.044800pt;}
.ls2_c00442{letter-spacing:0.051200pt;}
.lsb_c00442{letter-spacing:0.057600pt;}
.ls9_c00442{letter-spacing:0.064000pt;}
.ls14_c00442{letter-spacing:23.680000pt;}
.ls0_c00442{letter-spacing:48.768000pt;}
.ls5_c00442{letter-spacing:55.808000pt;}
.ws0_c00442{word-spacing:-64.000000pt;}
.ws2_c00442{word-spacing:-16.044800pt;}
.ws4_c00442{word-spacing:-16.019200pt;}
.ws1_c00442{word-spacing:-16.012800pt;}
.ws3_c00442{word-spacing:-16.000000pt;}
.ws1c_c00442{word-spacing:-3.948800pt;}
.ws1d_c00442{word-spacing:-3.833600pt;}
.ws20_c00442{word-spacing:-2.252800pt;}
.ws1e_c00442{word-spacing:-0.115200pt;}
.ws1f_c00442{word-spacing:-0.102400pt;}
.ws6_c00442{word-spacing:0.000000pt;}
.ws5_c00442{word-spacing:0.171008pt;}
.ws17_c00442{word-spacing:2.348800pt;}
.ws18_c00442{word-spacing:2.489600pt;}
.wsa_c00442{word-spacing:2.534400pt;}
.ws7_c00442{word-spacing:2.848000pt;}
.ws19_c00442{word-spacing:4.147200pt;}
.ws8_c00442{word-spacing:5.126400pt;}
.ws9_c00442{word-spacing:5.158400pt;}
.wsd_c00442{word-spacing:6.688000pt;}
.wsb_c00442{word-spacing:7.628800pt;}
.wse_c00442{word-spacing:9.824000pt;}
.wsf_c00442{word-spacing:9.939200pt;}
.ws1a_c00442{word-spacing:14.105600pt;}
.ws1b_c00442{word-spacing:14.112000pt;}
.ws10_c00442{word-spacing:14.668800pt;}
.ws11_c00442{word-spacing:15.628800pt;}
.ws15_c00442{word-spacing:17.497600pt;}
.ws13_c00442{word-spacing:17.600000pt;}
.ws14_c00442{word-spacing:17.619200pt;}
.wsc_c00442{word-spacing:18.867200pt;}
.ws16_c00442{word-spacing:21.440000pt;}
.ws12_c00442{word-spacing:35.808000pt;}
._13_c00442{margin-left:-23.654400pt;}
._10_c00442{margin-left:-4.294400pt;}
._11_c00442{margin-left:-3.104000pt;}
._6_c00442{margin-left:-1.273600pt;}
._0_c00442{width:0.919168pt;}
._3_c00442{width:1.824000pt;}
._1_c00442{width:2.720000pt;}
._e_c00442{width:3.673600pt;}
._2_c00442{width:5.036800pt;}
._4_c00442{width:6.905600pt;}
._5_c00442{width:8.288000pt;}
._8_c00442{width:9.689600pt;}
._f_c00442{width:13.587200pt;}
._9_c00442{width:14.700800pt;}
._7_c00442{width:18.867200pt;}
._c_c00442{width:20.864000pt;}
._d_c00442{width:21.894400pt;}
._12_c00442{width:23.648000pt;}
._b_c00442{width:35.814400pt;}
._a_c00442{width:38.630400pt;}
.fs0_c00442{font-size:53.440000pt;}
.fs1_c00442{font-size:64.000000pt;}
.y0_c00442{bottom:0.000000pt;}
.y5_c00442{bottom:50.987067pt;}
.y4_c00442{bottom:69.387067pt;}
.y23_c00442{bottom:138.987067pt;}
.y22_c00442{bottom:166.587067pt;}
.y21_c00442{bottom:194.187067pt;}
.y20_c00442{bottom:228.267067pt;}
.y1f_c00442{bottom:256.027067pt;}
.y1e_c00442{bottom:283.627067pt;}
.y1d_c00442{bottom:317.867067pt;}
.y1c_c00442{bottom:345.547067pt;}
.y1b_c00442{bottom:373.147067pt;}
.y1a_c00442{bottom:407.307067pt;}
.y19_c00442{bottom:434.987067pt;}
.y18_c00442{bottom:469.147067pt;}
.y17_c00442{bottom:496.827067pt;}
.y16_c00442{bottom:524.347067pt;}
.y15_c00442{bottom:552.027067pt;}
.y14_c00442{bottom:586.187067pt;}
.y13_c00442{bottom:613.867067pt;}
.y12_c00442{bottom:641.467067pt;}
.y11_c00442{bottom:679.707067pt;}
.y10_c00442{bottom:707.307067pt;}
.yf_c00442{bottom:736.107067pt;}
.ye_c00442{bottom:763.707067pt;}
.yd_c00442{bottom:791.227067pt;}
.yc_c00442{bottom:818.827067pt;}
.yb_c00442{bottom:847.627067pt;}
.ya_c00442{bottom:875.227067pt;}
.y9_c00442{bottom:902.747067pt;}
.y8_c00442{bottom:931.547067pt;}
.y7_c00442{bottom:959.147067pt;}
.y6_c00442{bottom:986.747067pt;}
.y3_c00442{bottom:1006.347067pt;}
.y2_c00442{bottom:1035.947576pt;}
.y1_c00442{bottom:1063.147200pt;}
.h1_c00442{height:47.020937pt;}
.h2_c00442{height:56.156250pt;}
.h4_c00442{height:56.312500pt;}
.h3_c00442{height:57.375000pt;}
.h0_c00442{height:1122.666667pt;}
.w1_c00442{width:793.333333pt;}
.w0_c00442{width:793.626667pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:113.440000pt;}
.x3_c00442{left:137.440000pt;}
.x4_c00442{left:161.440000pt;}
.x2_c00442{left:656.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_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_b98ea000ab1fb715b2b3cb3e.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.095703;font-style:normal;font-weight:normal;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_a4373b2d9b7aef64e5630a29.woff2')format("woff");}.ff2_c00443{font-family:ff2_c00443;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00443{font-family:ff3_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;}
.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;}
.ls10_c00443{letter-spacing:-0.064800px;}
.ls11_c00443{letter-spacing:-0.057600px;}
.lsa_c00443{letter-spacing:-0.048096px;}
.ls13_c00443{letter-spacing:-0.043200px;}
.lsf_c00443{letter-spacing:-0.036000px;}
.lse_c00443{letter-spacing:-0.028800px;}
.ls12_c00443{letter-spacing:-0.021600px;}
.lsd_c00443{letter-spacing:-0.014400px;}
.lsc_c00443{letter-spacing:-0.007200px;}
.lsb_c00443{letter-spacing:0.000000px;}
.ls2_c00443{letter-spacing:0.007200px;}
.ls1_c00443{letter-spacing:0.014400px;}
.ls3_c00443{letter-spacing:0.021600px;}
.ls6_c00443{letter-spacing:0.028800px;}
.ls8_c00443{letter-spacing:0.036000px;}
.ls5_c00443{letter-spacing:0.043200px;}
.ls7_c00443{letter-spacing:0.057600px;}
.ls4_c00443{letter-spacing:0.079200px;}
.ls9_c00443{letter-spacing:0.115200px;}
.ls0_c00443{letter-spacing:62.784000px;}
.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:-18.057600px;}
.ws1_c00443{word-spacing:-18.043200px;}
.ws0_c00443{word-spacing:-18.000000px;}
.ws12_c00443{word-spacing:-3.412800px;}
.ws11_c00443{word-spacing:-3.204000px;}
.ws13_c00443{word-spacing:-0.352800px;}
.wsd_c00443{word-spacing:-0.266400px;}
.ws14_c00443{word-spacing:-0.244800px;}
.ws19_c00443{word-spacing:-0.187200px;}
.ws1a_c00443{word-spacing:-0.158400px;}
.wsb_c00443{word-spacing:-0.108000px;}
.ws7_c00443{word-spacing:-0.014400px;}
.ws4_c00443{word-spacing:0.000000px;}
.ws6_c00443{word-spacing:0.007200px;}
.ws3_c00443{word-spacing:0.138276px;}
.ws5_c00443{word-spacing:1.720800px;}
.wse_c00443{word-spacing:2.124000px;}
.ws10_c00443{word-spacing:3.268800px;}
.ws8_c00443{word-spacing:6.825600px;}
.ws17_c00443{word-spacing:7.783200px;}
.ws18_c00443{word-spacing:7.941600px;}
.wsc_c00443{word-spacing:9.360000px;}
.ws1b_c00443{word-spacing:9.633600px;}
.ws16_c00443{word-spacing:9.756000px;}
.wsf_c00443{word-spacing:11.131200px;}
.ws15_c00443{word-spacing:11.944800px;}
.ws9_c00443{word-spacing:31.320000px;}
.wsa_c00443{word-spacing:31.334400px;}
._9_c00443{margin-left:-4.068000px;}
._2_c00443{margin-left:-1.274400px;}
._1_c00443{width:1.792800px;}
._7_c00443{width:3.038400px;}
._a_c00443{width:4.356000px;}
._4_c00443{width:6.825600px;}
._6_c00443{width:9.324000px;}
._8_c00443{width:11.145600px;}
._b_c00443{width:12.456000px;}
._3_c00443{width:14.738400px;}
._0_c00443{width:24.465600px;}
._5_c00443{width:31.305600px;}
.fc0_c00443{color:rgb(0,0,0);}
.fs0_c00443{font-size:60.120000px;}
.fs1_c00443{font-size:72.000000px;}
.y0_c00443{bottom:0.000000px;}
.y6_c00443{bottom:57.360450px;}
.y5_c00443{bottom:78.060450px;}
.y27_c00443{bottom:130.710450px;}
.y26_c00443{bottom:161.850450px;}
.y25_c00443{bottom:192.900450px;}
.y24_c00443{bottom:223.860450px;}
.y23_c00443{bottom:255.000450px;}
.y22_c00443{bottom:286.050450px;}
.y21_c00443{bottom:317.100450px;}
.y20_c00443{bottom:348.150450px;}
.y1f_c00443{bottom:379.200450px;}
.y1e_c00443{bottom:410.250450px;}
.y1d_c00443{bottom:441.300450px;}
.y1c_c00443{bottom:472.350450px;}
.y1b_c00443{bottom:503.400450px;}
.y1a_c00443{bottom:534.450450px;}
.y19_c00443{bottom:565.500450px;}
.y18_c00443{bottom:596.550450px;}
.y17_c00443{bottom:627.600450px;}
.y16_c00443{bottom:658.650450px;}
.y15_c00443{bottom:689.700450px;}
.y14_c00443{bottom:720.750450px;}
.y13_c00443{bottom:751.800450px;}
.y12_c00443{bottom:782.850450px;}
.y11_c00443{bottom:813.900450px;}
.y10_c00443{bottom:844.950450px;}
.yf_c00443{bottom:876.000450px;}
.ye_c00443{bottom:907.050450px;}
.yd_c00443{bottom:938.100450px;}
.yc_c00443{bottom:969.150450px;}
.yb_c00443{bottom:1000.200450px;}
.ya_c00443{bottom:1031.070450px;}
.y9_c00443{bottom:1062.210450px;}
.y8_c00443{bottom:1093.260450px;}
.y7_c00443{bottom:1124.310450px;}
.y4_c00443{bottom:1144.380657px;}
.y3_c00443{bottom:1161.660648px;}
.y2_c00443{bottom:1178.850459px;}
.y1_c00443{bottom:1196.130450px;}
.h1_c00443{height:52.898555px;}
.h2_c00443{height:63.175781px;}
.h4_c00443{height:63.351562px;}
.h3_c00443{height:64.546875px;}
.h0_c00443{height:1263.000000px;}
.w1_c00443{width:892.500000px;}
.w0_c00443{width:892.830000px;}
.x0_c00443{left:0.000000px;}
.x4_c00443{left:127.620000px;}
.x5_c00443{left:154.620000px;}
.x6_c00443{left:181.620000px;}
.x1_c00443{left:649.620000px;}
.x3_c00443{left:738.450000px;}
.x2_c00443{left:765.450198px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls10_c00443{letter-spacing:-0.057600pt;}
.ls11_c00443{letter-spacing:-0.051200pt;}
.lsa_c00443{letter-spacing:-0.042752pt;}
.ls13_c00443{letter-spacing:-0.038400pt;}
.lsf_c00443{letter-spacing:-0.032000pt;}
.lse_c00443{letter-spacing:-0.025600pt;}
.ls12_c00443{letter-spacing:-0.019200pt;}
.lsd_c00443{letter-spacing:-0.012800pt;}
.lsc_c00443{letter-spacing:-0.006400pt;}
.lsb_c00443{letter-spacing:0.000000pt;}
.ls2_c00443{letter-spacing:0.006400pt;}
.ls1_c00443{letter-spacing:0.012800pt;}
.ls3_c00443{letter-spacing:0.019200pt;}
.ls6_c00443{letter-spacing:0.025600pt;}
.ls8_c00443{letter-spacing:0.032000pt;}
.ls5_c00443{letter-spacing:0.038400pt;}
.ls7_c00443{letter-spacing:0.051200pt;}
.ls4_c00443{letter-spacing:0.070400pt;}
.ls9_c00443{letter-spacing:0.102400pt;}
.ls0_c00443{letter-spacing:55.808000pt;}
.ws2_c00443{word-spacing:-16.051200pt;}
.ws1_c00443{word-spacing:-16.038400pt;}
.ws0_c00443{word-spacing:-16.000000pt;}
.ws12_c00443{word-spacing:-3.033600pt;}
.ws11_c00443{word-spacing:-2.848000pt;}
.ws13_c00443{word-spacing:-0.313600pt;}
.wsd_c00443{word-spacing:-0.236800pt;}
.ws14_c00443{word-spacing:-0.217600pt;}
.ws19_c00443{word-spacing:-0.166400pt;}
.ws1a_c00443{word-spacing:-0.140800pt;}
.wsb_c00443{word-spacing:-0.096000pt;}
.ws7_c00443{word-spacing:-0.012800pt;}
.ws4_c00443{word-spacing:0.000000pt;}
.ws6_c00443{word-spacing:0.006400pt;}
.ws3_c00443{word-spacing:0.122912pt;}
.ws5_c00443{word-spacing:1.529600pt;}
.wse_c00443{word-spacing:1.888000pt;}
.ws10_c00443{word-spacing:2.905600pt;}
.ws8_c00443{word-spacing:6.067200pt;}
.ws17_c00443{word-spacing:6.918400pt;}
.ws18_c00443{word-spacing:7.059200pt;}
.wsc_c00443{word-spacing:8.320000pt;}
.ws1b_c00443{word-spacing:8.563200pt;}
.ws16_c00443{word-spacing:8.672000pt;}
.wsf_c00443{word-spacing:9.894400pt;}
.ws15_c00443{word-spacing:10.617600pt;}
.ws9_c00443{word-spacing:27.840000pt;}
.wsa_c00443{word-spacing:27.852800pt;}
._9_c00443{margin-left:-3.616000pt;}
._2_c00443{margin-left:-1.132800pt;}
._1_c00443{width:1.593600pt;}
._7_c00443{width:2.700800pt;}
._a_c00443{width:3.872000pt;}
._4_c00443{width:6.067200pt;}
._6_c00443{width:8.288000pt;}
._8_c00443{width:9.907200pt;}
._b_c00443{width:11.072000pt;}
._3_c00443{width:13.100800pt;}
._0_c00443{width:21.747200pt;}
._5_c00443{width:27.827200pt;}
.fs0_c00443{font-size:53.440000pt;}
.fs1_c00443{font-size:64.000000pt;}
.y0_c00443{bottom:0.000000pt;}
.y6_c00443{bottom:50.987067pt;}
.y5_c00443{bottom:69.387067pt;}
.y27_c00443{bottom:116.187067pt;}
.y26_c00443{bottom:143.867067pt;}
.y25_c00443{bottom:171.467067pt;}
.y24_c00443{bottom:198.987067pt;}
.y23_c00443{bottom:226.667067pt;}
.y22_c00443{bottom:254.267067pt;}
.y21_c00443{bottom:281.867067pt;}
.y20_c00443{bottom:309.467067pt;}
.y1f_c00443{bottom:337.067067pt;}
.y1e_c00443{bottom:364.667067pt;}
.y1d_c00443{bottom:392.267067pt;}
.y1c_c00443{bottom:419.867067pt;}
.y1b_c00443{bottom:447.467067pt;}
.y1a_c00443{bottom:475.067067pt;}
.y19_c00443{bottom:502.667067pt;}
.y18_c00443{bottom:530.267067pt;}
.y17_c00443{bottom:557.867067pt;}
.y16_c00443{bottom:585.467067pt;}
.y15_c00443{bottom:613.067067pt;}
.y14_c00443{bottom:640.667067pt;}
.y13_c00443{bottom:668.267067pt;}
.y12_c00443{bottom:695.867067pt;}
.y11_c00443{bottom:723.467067pt;}
.y10_c00443{bottom:751.067067pt;}
.yf_c00443{bottom:778.667067pt;}
.ye_c00443{bottom:806.267067pt;}
.yd_c00443{bottom:833.867067pt;}
.yc_c00443{bottom:861.467067pt;}
.yb_c00443{bottom:889.067067pt;}
.ya_c00443{bottom:916.507067pt;}
.y9_c00443{bottom:944.187067pt;}
.y8_c00443{bottom:971.787067pt;}
.y7_c00443{bottom:999.387067pt;}
.y4_c00443{bottom:1017.227251pt;}
.y3_c00443{bottom:1032.587243pt;}
.y2_c00443{bottom:1047.867075pt;}
.y1_c00443{bottom:1063.227067pt;}
.h1_c00443{height:47.020937pt;}
.h2_c00443{height:56.156250pt;}
.h4_c00443{height:56.312500pt;}
.h3_c00443{height:57.375000pt;}
.h0_c00443{height:1122.666667pt;}
.w1_c00443{width:793.333333pt;}
.w0_c00443{width:793.626667pt;}
.x0_c00443{left:0.000000pt;}
.x4_c00443{left:113.440000pt;}
.x5_c00443{left:137.440000pt;}
.x6_c00443{left:161.440000pt;}
.x1_c00443{left:577.440000pt;}
.x3_c00443{left:656.400000pt;}
.x2_c00443{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba726ed50ad9dff8c08f0641.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.095703;font-style:normal;font-weight:normal;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_2fb73b20306f41760be7432a.woff2')format("woff");}.ff2_c00444{font-family:ff2_c00444;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00444{font-family:ff3_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;}
.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;}
.lse_c00444{letter-spacing:-0.151200px;}
.lsb_c00444{letter-spacing:-0.102204px;}
.ls13_c00444{letter-spacing:-0.050400px;}
.ls14_c00444{letter-spacing:-0.043200px;}
.ls10_c00444{letter-spacing:-0.028800px;}
.lsd_c00444{letter-spacing:-0.021600px;}
.lsf_c00444{letter-spacing:-0.014400px;}
.ls11_c00444{letter-spacing:-0.007200px;}
.lsc_c00444{letter-spacing:0.000000px;}
.ls0_c00444{letter-spacing:0.007200px;}
.ls3_c00444{letter-spacing:0.014400px;}
.ls5_c00444{letter-spacing:0.021600px;}
.ls1_c00444{letter-spacing:0.028800px;}
.ls8_c00444{letter-spacing:0.036000px;}
.ls6_c00444{letter-spacing:0.050400px;}
.ls7_c00444{letter-spacing:0.057600px;}
.ls9_c00444{letter-spacing:0.064800px;}
.ls4_c00444{letter-spacing:0.072000px;}
.lsa_c00444{letter-spacing:4.680000px;}
.ls12_c00444{letter-spacing:5.040000px;}
.ls2_c00444{letter-spacing:62.784000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00444{word-spacing:-18.050400px;}
.ws0_c00444{word-spacing:-18.000000px;}
.wsd_c00444{word-spacing:-2.541600px;}
.ws7_c00444{word-spacing:-2.160000px;}
.ws5_c00444{word-spacing:-1.224000px;}
.ws4_c00444{word-spacing:-1.166400px;}
.ws19_c00444{word-spacing:-1.130400px;}
.ws15_c00444{word-spacing:-0.698400px;}
.ws17_c00444{word-spacing:-0.165600px;}
.ws10_c00444{word-spacing:-0.136800px;}
.wsa_c00444{word-spacing:-0.093600px;}
.wse_c00444{word-spacing:-0.007200px;}
.ws3_c00444{word-spacing:0.000000px;}
.ws12_c00444{word-spacing:0.007200px;}
.ws2_c00444{word-spacing:0.192384px;}
.ws8_c00444{word-spacing:0.216000px;}
.ws9_c00444{word-spacing:0.230400px;}
.ws14_c00444{word-spacing:2.469600px;}
.ws1a_c00444{word-spacing:4.543200px;}
.ws18_c00444{word-spacing:4.680000px;}
.ws1b_c00444{word-spacing:4.723200px;}
.ws13_c00444{word-spacing:8.301600px;}
.wsf_c00444{word-spacing:11.347200px;}
.ws11_c00444{word-spacing:11.505600px;}
.ws16_c00444{word-spacing:16.192800px;}
.wsb_c00444{word-spacing:22.348800px;}
.ws6_c00444{word-spacing:37.821600px;}
.wsc_c00444{word-spacing:41.997600px;}
._c_c00444{margin-left:-4.996800px;}
._3_c00444{margin-left:-2.332800px;}
._1_c00444{margin-left:-1.029600px;}
._0_c00444{width:1.034064px;}
._f_c00444{width:2.498400px;}
._a_c00444{width:4.449600px;}
._b_c00444{width:5.601600px;}
._d_c00444{width:7.689600px;}
._e_c00444{width:8.841600px;}
._9_c00444{width:10.440000px;}
._8_c00444{width:11.469600px;}
._10_c00444{width:16.027200px;}
._5_c00444{width:21.715200px;}
._6_c00444{width:22.968000px;}
._4_c00444{width:27.734400px;}
._2_c00444{width:37.792800px;}
._7_c00444{width:41.997600px;}
.fc1_c00444{color:rgb(0,0,0);}
.fc0_c00444{color:rgb(32,31,30);}
.fs0_c00444{font-size:60.120000px;}
.fs1_c00444{font-size:72.000000px;}
.y0_c00444{bottom:0.000000px;}
.y5_c00444{bottom:57.360450px;}
.y4_c00444{bottom:78.060450px;}
.y26_c00444{bottom:117.930450px;}
.y25_c00444{bottom:148.980450px;}
.y24_c00444{bottom:180.030450px;}
.y23_c00444{bottom:211.080450px;}
.y22_c00444{bottom:242.130450px;}
.y21_c00444{bottom:273.090450px;}
.y20_c00444{bottom:304.140450px;}
.y1f_c00444{bottom:335.190450px;}
.y1e_c00444{bottom:366.240450px;}
.y1d_c00444{bottom:397.290450px;}
.y1c_c00444{bottom:428.340450px;}
.y1b_c00444{bottom:459.390450px;}
.y1a_c00444{bottom:490.440450px;}
.y19_c00444{bottom:521.490450px;}
.y18_c00444{bottom:552.540450px;}
.y17_c00444{bottom:583.590450px;}
.y16_c00444{bottom:614.640450px;}
.y15_c00444{bottom:645.690450px;}
.y14_c00444{bottom:676.740450px;}
.y13_c00444{bottom:707.790450px;}
.y12_c00444{bottom:738.840450px;}
.y11_c00444{bottom:769.890450px;}
.y10_c00444{bottom:800.940450px;}
.yf_c00444{bottom:831.990450px;}
.ye_c00444{bottom:863.040450px;}
.yd_c00444{bottom:894.090450px;}
.yc_c00444{bottom:925.140450px;}
.yb_c00444{bottom:956.190450px;}
.ya_c00444{bottom:987.240450px;}
.y9_c00444{bottom:1018.290450px;}
.y8_c00444{bottom:1049.340450px;}
.y7_c00444{bottom:1080.390450px;}
.y6_c00444{bottom:1111.440450px;}
.y3_c00444{bottom:1132.140450px;}
.y2_c00444{bottom:1165.441023px;}
.y1_c00444{bottom:1196.040600px;}
.h1_c00444{height:52.898555px;}
.h2_c00444{height:63.175781px;}
.h3_c00444{height:63.351562px;}
.h4_c00444{height:64.546875px;}
.h0_c00444{height:1263.000000px;}
.w1_c00444{width:892.500000px;}
.w0_c00444{width:892.830000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:127.620000px;}
.x4_c00444{left:154.620000px;}
.x3_c00444{left:181.620000px;}
.x2_c00444{left:738.450000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.lse_c00444{letter-spacing:-0.134400pt;}
.lsb_c00444{letter-spacing:-0.090848pt;}
.ls13_c00444{letter-spacing:-0.044800pt;}
.ls14_c00444{letter-spacing:-0.038400pt;}
.ls10_c00444{letter-spacing:-0.025600pt;}
.lsd_c00444{letter-spacing:-0.019200pt;}
.lsf_c00444{letter-spacing:-0.012800pt;}
.ls11_c00444{letter-spacing:-0.006400pt;}
.lsc_c00444{letter-spacing:0.000000pt;}
.ls0_c00444{letter-spacing:0.006400pt;}
.ls3_c00444{letter-spacing:0.012800pt;}
.ls5_c00444{letter-spacing:0.019200pt;}
.ls1_c00444{letter-spacing:0.025600pt;}
.ls8_c00444{letter-spacing:0.032000pt;}
.ls6_c00444{letter-spacing:0.044800pt;}
.ls7_c00444{letter-spacing:0.051200pt;}
.ls9_c00444{letter-spacing:0.057600pt;}
.ls4_c00444{letter-spacing:0.064000pt;}
.lsa_c00444{letter-spacing:4.160000pt;}
.ls12_c00444{letter-spacing:4.480000pt;}
.ls2_c00444{letter-spacing:55.808000pt;}
.ws1_c00444{word-spacing:-16.044800pt;}
.ws0_c00444{word-spacing:-16.000000pt;}
.wsd_c00444{word-spacing:-2.259200pt;}
.ws7_c00444{word-spacing:-1.920000pt;}
.ws5_c00444{word-spacing:-1.088000pt;}
.ws4_c00444{word-spacing:-1.036800pt;}
.ws19_c00444{word-spacing:-1.004800pt;}
.ws15_c00444{word-spacing:-0.620800pt;}
.ws17_c00444{word-spacing:-0.147200pt;}
.ws10_c00444{word-spacing:-0.121600pt;}
.wsa_c00444{word-spacing:-0.083200pt;}
.wse_c00444{word-spacing:-0.006400pt;}
.ws3_c00444{word-spacing:0.000000pt;}
.ws12_c00444{word-spacing:0.006400pt;}
.ws2_c00444{word-spacing:0.171008pt;}
.ws8_c00444{word-spacing:0.192000pt;}
.ws9_c00444{word-spacing:0.204800pt;}
.ws14_c00444{word-spacing:2.195200pt;}
.ws1a_c00444{word-spacing:4.038400pt;}
.ws18_c00444{word-spacing:4.160000pt;}
.ws1b_c00444{word-spacing:4.198400pt;}
.ws13_c00444{word-spacing:7.379200pt;}
.wsf_c00444{word-spacing:10.086400pt;}
.ws11_c00444{word-spacing:10.227200pt;}
.ws16_c00444{word-spacing:14.393600pt;}
.wsb_c00444{word-spacing:19.865600pt;}
.ws6_c00444{word-spacing:33.619200pt;}
.wsc_c00444{word-spacing:37.331200pt;}
._c_c00444{margin-left:-4.441600pt;}
._3_c00444{margin-left:-2.073600pt;}
._1_c00444{margin-left:-0.915200pt;}
._0_c00444{width:0.919168pt;}
._f_c00444{width:2.220800pt;}
._a_c00444{width:3.955200pt;}
._b_c00444{width:4.979200pt;}
._d_c00444{width:6.835200pt;}
._e_c00444{width:7.859200pt;}
._9_c00444{width:9.280000pt;}
._8_c00444{width:10.195200pt;}
._10_c00444{width:14.246400pt;}
._5_c00444{width:19.302400pt;}
._6_c00444{width:20.416000pt;}
._4_c00444{width:24.652800pt;}
._2_c00444{width:33.593600pt;}
._7_c00444{width:37.331200pt;}
.fs0_c00444{font-size:53.440000pt;}
.fs1_c00444{font-size:64.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.y5_c00444{bottom:50.987067pt;}
.y4_c00444{bottom:69.387067pt;}
.y26_c00444{bottom:104.827067pt;}
.y25_c00444{bottom:132.427067pt;}
.y24_c00444{bottom:160.027067pt;}
.y23_c00444{bottom:187.627067pt;}
.y22_c00444{bottom:215.227067pt;}
.y21_c00444{bottom:242.747067pt;}
.y20_c00444{bottom:270.347067pt;}
.y1f_c00444{bottom:297.947067pt;}
.y1e_c00444{bottom:325.547067pt;}
.y1d_c00444{bottom:353.147067pt;}
.y1c_c00444{bottom:380.747067pt;}
.y1b_c00444{bottom:408.347067pt;}
.y1a_c00444{bottom:435.947067pt;}
.y19_c00444{bottom:463.547067pt;}
.y18_c00444{bottom:491.147067pt;}
.y17_c00444{bottom:518.747067pt;}
.y16_c00444{bottom:546.347067pt;}
.y15_c00444{bottom:573.947067pt;}
.y14_c00444{bottom:601.547067pt;}
.y13_c00444{bottom:629.147067pt;}
.y12_c00444{bottom:656.747067pt;}
.y11_c00444{bottom:684.347067pt;}
.y10_c00444{bottom:711.947067pt;}
.yf_c00444{bottom:739.547067pt;}
.ye_c00444{bottom:767.147067pt;}
.yd_c00444{bottom:794.747067pt;}
.yc_c00444{bottom:822.347067pt;}
.yb_c00444{bottom:849.947067pt;}
.ya_c00444{bottom:877.547067pt;}
.y9_c00444{bottom:905.147067pt;}
.y8_c00444{bottom:932.747067pt;}
.y7_c00444{bottom:960.347067pt;}
.y6_c00444{bottom:987.947067pt;}
.y3_c00444{bottom:1006.347067pt;}
.y2_c00444{bottom:1035.947576pt;}
.y1_c00444{bottom:1063.147200pt;}
.h1_c00444{height:47.020937pt;}
.h2_c00444{height:56.156250pt;}
.h3_c00444{height:56.312500pt;}
.h4_c00444{height:57.375000pt;}
.h0_c00444{height:1122.666667pt;}
.w1_c00444{width:793.333333pt;}
.w0_c00444{width:793.626667pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:113.440000pt;}
.x4_c00444{left:137.440000pt;}
.x3_c00444{left:161.440000pt;}
.x2_c00444{left:656.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_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_1447629a1535ea3f986ac1c2.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.095703;font-style:normal;font-weight:normal;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_996bc70e8f5627c114dda7a0.woff2')format("woff");}.ff2_c00445{font-family:ff2_c00445;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00445;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00445{font-family:ff3_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:ff4_c00445;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff4_c00445{font-family:ff4_c00445;line-height:1.104004;font-style: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;}
.ls13_c00445{letter-spacing:-0.108000px;}
.lse_c00445{letter-spacing:-0.079200px;}
.ls16_c00445{letter-spacing:-0.072000px;}
.ls14_c00445{letter-spacing:-0.050400px;}
.lsc_c00445{letter-spacing:-0.048096px;}
.lsf_c00445{letter-spacing:-0.028800px;}
.ls12_c00445{letter-spacing:-0.021600px;}
.ls10_c00445{letter-spacing:-0.014400px;}
.ls11_c00445{letter-spacing:-0.007200px;}
.lsd_c00445{letter-spacing:0.000000px;}
.ls1_c00445{letter-spacing:0.007200px;}
.ls2_c00445{letter-spacing:0.014400px;}
.ls0_c00445{letter-spacing:0.021600px;}
.ls4_c00445{letter-spacing:0.028800px;}
.ls5_c00445{letter-spacing:0.036000px;}
.ls7_c00445{letter-spacing:0.043200px;}
.lsa_c00445{letter-spacing:0.050400px;}
.ls9_c00445{letter-spacing:0.057600px;}
.ls8_c00445{letter-spacing:0.064800px;}
.lsb_c00445{letter-spacing:0.072000px;}
.ls6_c00445{letter-spacing:0.100800px;}
.ls15_c00445{letter-spacing:0.158400px;}
.ls3_c00445{letter-spacing:62.784000px;}
.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;}
}
.ws2_c00445{word-spacing:-18.057600px;}
.ws3_c00445{word-spacing:-18.036000px;}
.ws1_c00445{word-spacing:-18.014400px;}
.ws0_c00445{word-spacing:-18.000000px;}
.wse_c00445{word-spacing:-2.887200px;}
.ws20_c00445{word-spacing:-2.865600px;}
.ws15_c00445{word-spacing:-2.498400px;}
.wsf_c00445{word-spacing:-0.151200px;}
.ws14_c00445{word-spacing:-0.050400px;}
.ws19_c00445{word-spacing:-0.028800px;}
.ws13_c00445{word-spacing:-0.021600px;}
.ws5_c00445{word-spacing:0.000000px;}
.ws10_c00445{word-spacing:0.014400px;}
.ws4_c00445{word-spacing:0.138276px;}
.ws18_c00445{word-spacing:2.808000px;}
.ws1d_c00445{word-spacing:3.132000px;}
.ws1e_c00445{word-spacing:3.153600px;}
.ws1f_c00445{word-spacing:3.945600px;}
.ws1c_c00445{word-spacing:6.141600px;}
.ws1b_c00445{word-spacing:6.170400px;}
.ws1a_c00445{word-spacing:7.552800px;}
.ws11_c00445{word-spacing:9.928800px;}
.ws12_c00445{word-spacing:10.094400px;}
.ws9_c00445{word-spacing:11.008800px;}
.ws8_c00445{word-spacing:11.174400px;}
.ws7_c00445{word-spacing:11.808000px;}
.ws6_c00445{word-spacing:11.908800px;}
.wsb_c00445{word-spacing:15.379200px;}
.wsa_c00445{word-spacing:22.636800px;}
.wsd_c00445{word-spacing:27.475200px;}
.wsc_c00445{word-spacing:27.568800px;}
.ws17_c00445{word-spacing:38.397600px;}
.ws16_c00445{word-spacing:38.512800px;}
._8_c00445{margin-left:-2.872800px;}
._1_c00445{margin-left:-1.548000px;}
._b_c00445{width:2.887200px;}
._e_c00445{width:3.931200px;}
._c_c00445{width:6.393600px;}
._0_c00445{width:7.898400px;}
._9_c00445{width:9.684000px;}
._3_c00445{width:10.778400px;}
._2_c00445{width:11.851200px;}
._6_c00445{width:21.801600px;}
._f_c00445{width:23.025600px;}
._7_c00445{width:27.381600px;}
._4_c00445{width:35.841600px;}
._5_c00445{width:36.849600px;}
._a_c00445{width:37.857600px;}
._d_c00445{width:93.564000px;}
.fc3_c00445{color:rgb(5,99,193);}
.fc1_c00445{color:rgb(0,0,255);}
.fc2_c00445{color:rgb(34,34,34);}
.fc0_c00445{color:rgb(0,0,0);}
.fs0_c00445{font-size:60.120000px;}
.fs1_c00445{font-size:72.000000px;}
.y0_c00445{bottom:0.000000px;}
.y6_c00445{bottom:57.360450px;}
.y5_c00445{bottom:78.060450px;}
.y25_c00445{bottom:128.460600px;}
.y24_c00445{bottom:159.510450px;}
.y23_c00445{bottom:190.560450px;}
.y22_c00445{bottom:228.990450px;}
.y21_c00445{bottom:260.130450px;}
.y20_c00445{bottom:291.180450px;}
.y1f_c00445{bottom:329.610450px;}
.y1e_c00445{bottom:360.750600px;}
.y1d_c00445{bottom:399.180600px;}
.y1c_c00445{bottom:430.320450px;}
.y1b_c00445{bottom:461.370600px;}
.y1a_c00445{bottom:499.890450px;}
.y19_c00445{bottom:531.030450px;}
.y18_c00445{bottom:573.960450px;}
.y17_c00445{bottom:605.100450px;}
.y16_c00445{bottom:636.150450px;}
.y15_c00445{bottom:674.580450px;}
.y14_c00445{bottom:705.720450px;}
.y13_c00445{bottom:744.150450px;}
.y12_c00445{bottom:775.290450px;}
.y11_c00445{bottom:813.900450px;}
.y10_c00445{bottom:844.950450px;}
.yf_c00445{bottom:875.910450px;}
.ye_c00445{bottom:907.050450px;}
.yd_c00445{bottom:938.100450px;}
.yc_c00445{bottom:969.150450px;}
.yb_c00445{bottom:1000.200450px;}
.ya_c00445{bottom:1031.160450px;}
.y9_c00445{bottom:1062.210450px;}
.y8_c00445{bottom:1093.260450px;}
.y7_c00445{bottom:1124.310450px;}
.y4_c00445{bottom:1144.380657px;}
.y3_c00445{bottom:1161.660648px;}
.y2_c00445{bottom:1178.850459px;}
.y1_c00445{bottom:1196.130450px;}
.h1_c00445{height:52.898555px;}
.h2_c00445{height:63.175781px;}
.h3_c00445{height:63.351562px;}
.h5_c00445{height:63.949219px;}
.h4_c00445{height:64.546875px;}
.h0_c00445{height:1263.000000px;}
.w1_c00445{width:892.500000px;}
.w0_c00445{width:892.830000px;}
.x0_c00445{left:0.000000px;}
.x4_c00445{left:127.620000px;}
.x6_c00445{left:154.620000px;}
.x5_c00445{left:181.620000px;}
.x1_c00445{left:649.620000px;}
.x3_c00445{left:738.450000px;}
.x2_c00445{left:765.450198px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls13_c00445{letter-spacing:-0.096000pt;}
.lse_c00445{letter-spacing:-0.070400pt;}
.ls16_c00445{letter-spacing:-0.064000pt;}
.ls14_c00445{letter-spacing:-0.044800pt;}
.lsc_c00445{letter-spacing:-0.042752pt;}
.lsf_c00445{letter-spacing:-0.025600pt;}
.ls12_c00445{letter-spacing:-0.019200pt;}
.ls10_c00445{letter-spacing:-0.012800pt;}
.ls11_c00445{letter-spacing:-0.006400pt;}
.lsd_c00445{letter-spacing:0.000000pt;}
.ls1_c00445{letter-spacing:0.006400pt;}
.ls2_c00445{letter-spacing:0.012800pt;}
.ls0_c00445{letter-spacing:0.019200pt;}
.ls4_c00445{letter-spacing:0.025600pt;}
.ls5_c00445{letter-spacing:0.032000pt;}
.ls7_c00445{letter-spacing:0.038400pt;}
.lsa_c00445{letter-spacing:0.044800pt;}
.ls9_c00445{letter-spacing:0.051200pt;}
.ls8_c00445{letter-spacing:0.057600pt;}
.lsb_c00445{letter-spacing:0.064000pt;}
.ls6_c00445{letter-spacing:0.089600pt;}
.ls15_c00445{letter-spacing:0.140800pt;}
.ls3_c00445{letter-spacing:55.808000pt;}
.ws2_c00445{word-spacing:-16.051200pt;}
.ws3_c00445{word-spacing:-16.032000pt;}
.ws1_c00445{word-spacing:-16.012800pt;}
.ws0_c00445{word-spacing:-16.000000pt;}
.wse_c00445{word-spacing:-2.566400pt;}
.ws20_c00445{word-spacing:-2.547200pt;}
.ws15_c00445{word-spacing:-2.220800pt;}
.wsf_c00445{word-spacing:-0.134400pt;}
.ws14_c00445{word-spacing:-0.044800pt;}
.ws19_c00445{word-spacing:-0.025600pt;}
.ws13_c00445{word-spacing:-0.019200pt;}
.ws5_c00445{word-spacing:0.000000pt;}
.ws10_c00445{word-spacing:0.012800pt;}
.ws4_c00445{word-spacing:0.122912pt;}
.ws18_c00445{word-spacing:2.496000pt;}
.ws1d_c00445{word-spacing:2.784000pt;}
.ws1e_c00445{word-spacing:2.803200pt;}
.ws1f_c00445{word-spacing:3.507200pt;}
.ws1c_c00445{word-spacing:5.459200pt;}
.ws1b_c00445{word-spacing:5.484800pt;}
.ws1a_c00445{word-spacing:6.713600pt;}
.ws11_c00445{word-spacing:8.825600pt;}
.ws12_c00445{word-spacing:8.972800pt;}
.ws9_c00445{word-spacing:9.785600pt;}
.ws8_c00445{word-spacing:9.932800pt;}
.ws7_c00445{word-spacing:10.496000pt;}
.ws6_c00445{word-spacing:10.585600pt;}
.wsb_c00445{word-spacing:13.670400pt;}
.wsa_c00445{word-spacing:20.121600pt;}
.wsd_c00445{word-spacing:24.422400pt;}
.wsc_c00445{word-spacing:24.505600pt;}
.ws17_c00445{word-spacing:34.131200pt;}
.ws16_c00445{word-spacing:34.233600pt;}
._8_c00445{margin-left:-2.553600pt;}
._1_c00445{margin-left:-1.376000pt;}
._b_c00445{width:2.566400pt;}
._e_c00445{width:3.494400pt;}
._c_c00445{width:5.683200pt;}
._0_c00445{width:7.020800pt;}
._9_c00445{width:8.608000pt;}
._3_c00445{width:9.580800pt;}
._2_c00445{width:10.534400pt;}
._6_c00445{width:19.379200pt;}
._f_c00445{width:20.467200pt;}
._7_c00445{width:24.339200pt;}
._4_c00445{width:31.859200pt;}
._5_c00445{width:32.755200pt;}
._a_c00445{width:33.651200pt;}
._d_c00445{width:83.168000pt;}
.fs0_c00445{font-size:53.440000pt;}
.fs1_c00445{font-size:64.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y6_c00445{bottom:50.987067pt;}
.y5_c00445{bottom:69.387067pt;}
.y25_c00445{bottom:114.187200pt;}
.y24_c00445{bottom:141.787067pt;}
.y23_c00445{bottom:169.387067pt;}
.y22_c00445{bottom:203.547067pt;}
.y21_c00445{bottom:231.227067pt;}
.y20_c00445{bottom:258.827067pt;}
.y1f_c00445{bottom:292.987067pt;}
.y1e_c00445{bottom:320.667200pt;}
.y1d_c00445{bottom:354.827200pt;}
.y1c_c00445{bottom:382.507067pt;}
.y1b_c00445{bottom:410.107200pt;}
.y1a_c00445{bottom:444.347067pt;}
.y19_c00445{bottom:472.027067pt;}
.y18_c00445{bottom:510.187067pt;}
.y17_c00445{bottom:537.867067pt;}
.y16_c00445{bottom:565.467067pt;}
.y15_c00445{bottom:599.627067pt;}
.y14_c00445{bottom:627.307067pt;}
.y13_c00445{bottom:661.467067pt;}
.y12_c00445{bottom:689.147067pt;}
.y11_c00445{bottom:723.467067pt;}
.y10_c00445{bottom:751.067067pt;}
.yf_c00445{bottom:778.587067pt;}
.ye_c00445{bottom:806.267067pt;}
.yd_c00445{bottom:833.867067pt;}
.yc_c00445{bottom:861.467067pt;}
.yb_c00445{bottom:889.067067pt;}
.ya_c00445{bottom:916.587067pt;}
.y9_c00445{bottom:944.187067pt;}
.y8_c00445{bottom:971.787067pt;}
.y7_c00445{bottom:999.387067pt;}
.y4_c00445{bottom:1017.227251pt;}
.y3_c00445{bottom:1032.587243pt;}
.y2_c00445{bottom:1047.867075pt;}
.y1_c00445{bottom:1063.227067pt;}
.h1_c00445{height:47.020937pt;}
.h2_c00445{height:56.156250pt;}
.h3_c00445{height:56.312500pt;}
.h5_c00445{height:56.843750pt;}
.h4_c00445{height:57.375000pt;}
.h0_c00445{height:1122.666667pt;}
.w1_c00445{width:793.333333pt;}
.w0_c00445{width:793.626667pt;}
.x0_c00445{left:0.000000pt;}
.x4_c00445{left:113.440000pt;}
.x6_c00445{left:137.440000pt;}
.x5_c00445{left:161.440000pt;}
.x1_c00445{left:577.440000pt;}
.x3_c00445{left:656.400000pt;}
.x2_c00445{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95f8da19b5c983f4d88e3408.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.095703;font-style:normal;font-weight:normal;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_465674b454919b9372aef72d.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00446{font-family:ff3_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;}
.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;}
.lsc_c00446{letter-spacing:-0.102204px;}
.lse_c00446{letter-spacing:-0.028800px;}
.lsf_c00446{letter-spacing:-0.014400px;}
.ls10_c00446{letter-spacing:-0.007200px;}
.lsd_c00446{letter-spacing:0.000000px;}
.ls3_c00446{letter-spacing:0.007200px;}
.ls4_c00446{letter-spacing:0.014400px;}
.ls2_c00446{letter-spacing:0.021600px;}
.ls5_c00446{letter-spacing:0.028800px;}
.lsa_c00446{letter-spacing:0.036000px;}
.ls8_c00446{letter-spacing:0.043200px;}
.ls9_c00446{letter-spacing:0.050400px;}
.ls0_c00446{letter-spacing:0.064800px;}
.lsb_c00446{letter-spacing:0.072000px;}
.ls7_c00446{letter-spacing:0.079200px;}
.ls6_c00446{letter-spacing:0.086400px;}
.ls1_c00446{letter-spacing:62.784000px;}
.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:-18.064800px;}
.ws1_c00446{word-spacing:-18.000000px;}
.ws13_c00446{word-spacing:-4.334400px;}
.ws16_c00446{word-spacing:-2.181600px;}
.ws7_c00446{word-spacing:-1.497600px;}
.ws6_c00446{word-spacing:-1.483200px;}
.ws4_c00446{word-spacing:-0.748800px;}
.ws19_c00446{word-spacing:-0.129600px;}
.ws15_c00446{word-spacing:-0.014400px;}
.ws3_c00446{word-spacing:0.000000px;}
.wsb_c00446{word-spacing:0.007200px;}
.ws12_c00446{word-spacing:0.014400px;}
.ws2_c00446{word-spacing:0.192384px;}
.wsd_c00446{word-spacing:1.432800px;}
.wse_c00446{word-spacing:1.447200px;}
.ws11_c00446{word-spacing:3.160800px;}
.ws10_c00446{word-spacing:3.254400px;}
.ws14_c00446{word-spacing:6.127200px;}
.wsc_c00446{word-spacing:11.095200px;}
.ws18_c00446{word-spacing:12.182400px;}
.ws17_c00446{word-spacing:15.091200px;}
.ws8_c00446{word-spacing:16.891200px;}
.ws9_c00446{word-spacing:16.905600px;}
.ws5_c00446{word-spacing:17.193600px;}
.wsa_c00446{word-spacing:18.712800px;}
.wsf_c00446{word-spacing:33.091200px;}
._7_c00446{margin-left:-4.334400px;}
._b_c00446{margin-left:-2.700000px;}
._1_c00446{margin-left:-1.648800px;}
._0_c00446{width:1.034064px;}
._6_c00446{width:3.204000px;}
._a_c00446{width:6.105600px;}
._9_c00446{width:7.581600px;}
._8_c00446{width:8.611200px;}
._4_c00446{width:11.145600px;}
._c_c00446{width:15.098400px;}
._2_c00446{width:16.812000px;}
._3_c00446{width:19.461600px;}
._5_c00446{width:33.120000px;}
.fc3_c00446{color:rgb(5,99,193);}
.fc2_c00446{color:rgb(34,34,34);}
.fc1_c00446{color:rgb(0,0,0);}
.fc0_c00446{color:rgb(32,31,30);}
.fs0_c00446{font-size:60.120000px;}
.fs1_c00446{font-size:72.000000px;}
.y0_c00446{bottom:0.000000px;}
.y5_c00446{bottom:57.360450px;}
.y4_c00446{bottom:78.060450px;}
.y22_c00446{bottom:144.480450px;}
.y21_c00446{bottom:175.530450px;}
.y20_c00446{bottom:206.670450px;}
.y1f_c00446{bottom:245.100450px;}
.y1e_c00446{bottom:276.240450px;}
.y1d_c00446{bottom:314.760450px;}
.y1c_c00446{bottom:345.900450px;}
.y1b_c00446{bottom:384.330450px;}
.y1a_c00446{bottom:415.470450px;}
.y19_c00446{bottom:446.520450px;}
.y18_c00446{bottom:484.950450px;}
.y17_c00446{bottom:523.560450px;}
.y16_c00446{bottom:554.700450px;}
.y15_c00446{bottom:593.130450px;}
.y14_c00446{bottom:624.270450px;}
.y13_c00446{bottom:655.320450px;}
.y12_c00446{bottom:693.750450px;}
.y11_c00446{bottom:724.890450px;}
.y10_c00446{bottom:763.320450px;}
.yf_c00446{bottom:801.930450px;}
.ye_c00446{bottom:832.980450px;}
.yd_c00446{bottom:871.590450px;}
.yc_c00446{bottom:902.640450px;}
.yb_c00446{bottom:933.690450px;}
.ya_c00446{bottom:972.120450px;}
.y9_c00446{bottom:1003.260450px;}
.y8_c00446{bottom:1041.690450px;}
.y7_c00446{bottom:1072.830450px;}
.y6_c00446{bottom:1111.350450px;}
.y3_c00446{bottom:1132.140450px;}
.y2_c00446{bottom:1165.441023px;}
.y1_c00446{bottom:1196.040600px;}
.h1_c00446{height:52.898555px;}
.h2_c00446{height:63.175781px;}
.h3_c00446{height:63.351562px;}
.h4_c00446{height:64.546875px;}
.h0_c00446{height:1263.000000px;}
.w1_c00446{width:892.500000px;}
.w0_c00446{width:892.830000px;}
.x0_c00446{left:0.000000px;}
.x1_c00446{left:127.620000px;}
.x4_c00446{left:154.620000px;}
.x3_c00446{left:181.620000px;}
.x2_c00446{left:738.450000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.lsc_c00446{letter-spacing:-0.090848pt;}
.lse_c00446{letter-spacing:-0.025600pt;}
.lsf_c00446{letter-spacing:-0.012800pt;}
.ls10_c00446{letter-spacing:-0.006400pt;}
.lsd_c00446{letter-spacing:0.000000pt;}
.ls3_c00446{letter-spacing:0.006400pt;}
.ls4_c00446{letter-spacing:0.012800pt;}
.ls2_c00446{letter-spacing:0.019200pt;}
.ls5_c00446{letter-spacing:0.025600pt;}
.lsa_c00446{letter-spacing:0.032000pt;}
.ls8_c00446{letter-spacing:0.038400pt;}
.ls9_c00446{letter-spacing:0.044800pt;}
.ls0_c00446{letter-spacing:0.057600pt;}
.lsb_c00446{letter-spacing:0.064000pt;}
.ls7_c00446{letter-spacing:0.070400pt;}
.ls6_c00446{letter-spacing:0.076800pt;}
.ls1_c00446{letter-spacing:55.808000pt;}
.ws0_c00446{word-spacing:-16.057600pt;}
.ws1_c00446{word-spacing:-16.000000pt;}
.ws13_c00446{word-spacing:-3.852800pt;}
.ws16_c00446{word-spacing:-1.939200pt;}
.ws7_c00446{word-spacing:-1.331200pt;}
.ws6_c00446{word-spacing:-1.318400pt;}
.ws4_c00446{word-spacing:-0.665600pt;}
.ws19_c00446{word-spacing:-0.115200pt;}
.ws15_c00446{word-spacing:-0.012800pt;}
.ws3_c00446{word-spacing:0.000000pt;}
.wsb_c00446{word-spacing:0.006400pt;}
.ws12_c00446{word-spacing:0.012800pt;}
.ws2_c00446{word-spacing:0.171008pt;}
.wsd_c00446{word-spacing:1.273600pt;}
.wse_c00446{word-spacing:1.286400pt;}
.ws11_c00446{word-spacing:2.809600pt;}
.ws10_c00446{word-spacing:2.892800pt;}
.ws14_c00446{word-spacing:5.446400pt;}
.wsc_c00446{word-spacing:9.862400pt;}
.ws18_c00446{word-spacing:10.828800pt;}
.ws17_c00446{word-spacing:13.414400pt;}
.ws8_c00446{word-spacing:15.014400pt;}
.ws9_c00446{word-spacing:15.027200pt;}
.ws5_c00446{word-spacing:15.283200pt;}
.wsa_c00446{word-spacing:16.633600pt;}
.wsf_c00446{word-spacing:29.414400pt;}
._7_c00446{margin-left:-3.852800pt;}
._b_c00446{margin-left:-2.400000pt;}
._1_c00446{margin-left:-1.465600pt;}
._0_c00446{width:0.919168pt;}
._6_c00446{width:2.848000pt;}
._a_c00446{width:5.427200pt;}
._9_c00446{width:6.739200pt;}
._8_c00446{width:7.654400pt;}
._4_c00446{width:9.907200pt;}
._c_c00446{width:13.420800pt;}
._2_c00446{width:14.944000pt;}
._3_c00446{width:17.299200pt;}
._5_c00446{width:29.440000pt;}
.fs0_c00446{font-size:53.440000pt;}
.fs1_c00446{font-size:64.000000pt;}
.y0_c00446{bottom:0.000000pt;}
.y5_c00446{bottom:50.987067pt;}
.y4_c00446{bottom:69.387067pt;}
.y22_c00446{bottom:128.427067pt;}
.y21_c00446{bottom:156.027067pt;}
.y20_c00446{bottom:183.707067pt;}
.y1f_c00446{bottom:217.867067pt;}
.y1e_c00446{bottom:245.547067pt;}
.y1d_c00446{bottom:279.787067pt;}
.y1c_c00446{bottom:307.467067pt;}
.y1b_c00446{bottom:341.627067pt;}
.y1a_c00446{bottom:369.307067pt;}
.y19_c00446{bottom:396.907067pt;}
.y18_c00446{bottom:431.067067pt;}
.y17_c00446{bottom:465.387067pt;}
.y16_c00446{bottom:493.067067pt;}
.y15_c00446{bottom:527.227067pt;}
.y14_c00446{bottom:554.907067pt;}
.y13_c00446{bottom:582.507067pt;}
.y12_c00446{bottom:616.667067pt;}
.y11_c00446{bottom:644.347067pt;}
.y10_c00446{bottom:678.507067pt;}
.yf_c00446{bottom:712.827067pt;}
.ye_c00446{bottom:740.427067pt;}
.yd_c00446{bottom:774.747067pt;}
.yc_c00446{bottom:802.347067pt;}
.yb_c00446{bottom:829.947067pt;}
.ya_c00446{bottom:864.107067pt;}
.y9_c00446{bottom:891.787067pt;}
.y8_c00446{bottom:925.947067pt;}
.y7_c00446{bottom:953.627067pt;}
.y6_c00446{bottom:987.867067pt;}
.y3_c00446{bottom:1006.347067pt;}
.y2_c00446{bottom:1035.947576pt;}
.y1_c00446{bottom:1063.147200pt;}
.h1_c00446{height:47.020937pt;}
.h2_c00446{height:56.156250pt;}
.h3_c00446{height:56.312500pt;}
.h4_c00446{height:57.375000pt;}
.h0_c00446{height:1122.666667pt;}
.w1_c00446{width:793.333333pt;}
.w0_c00446{width:793.626667pt;}
.x0_c00446{left:0.000000pt;}
.x1_c00446{left:113.440000pt;}
.x4_c00446{left:137.440000pt;}
.x3_c00446{left:161.440000pt;}
.x2_c00446{left:656.400000pt;}
}





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

.ir_c00447:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00447;src:url('chunks/assets/font_9c2fdf3735499e86d62b4f95.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.095703;font-style:normal;font-weight:normal;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_e168fd8c47654dad6d14719b.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00447;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00447{font-family:ff3_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;}
.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;}
.ls11_c00447{letter-spacing:-0.360000px;}
.lsb_c00447{letter-spacing:-0.048096px;}
.lsf_c00447{letter-spacing:-0.028800px;}
.lsd_c00447{letter-spacing:-0.021600px;}
.ls10_c00447{letter-spacing:-0.014400px;}
.lse_c00447{letter-spacing:-0.007200px;}
.lsc_c00447{letter-spacing:0.000000px;}
.ls6_c00447{letter-spacing:0.007200px;}
.ls1_c00447{letter-spacing:0.014400px;}
.ls2_c00447{letter-spacing:0.021600px;}
.ls4_c00447{letter-spacing:0.028800px;}
.ls3_c00447{letter-spacing:0.036000px;}
.ls8_c00447{letter-spacing:0.043200px;}
.ls9_c00447{letter-spacing:0.057600px;}
.ls7_c00447{letter-spacing:0.064800px;}
.lsa_c00447{letter-spacing:0.079200px;}
.ls5_c00447{letter-spacing:0.360000px;}
.ls0_c00447{letter-spacing:62.784000px;}
.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;}
}
.ws3_c00447{word-spacing:-18.036000px;}
.ws2_c00447{word-spacing:-18.021600px;}
.ws1_c00447{word-spacing:-18.014400px;}
.ws0_c00447{word-spacing:-18.000000px;}
.ws1b_c00447{word-spacing:-1.173600px;}
.ws12_c00447{word-spacing:-0.504000px;}
.wsa_c00447{word-spacing:-0.424800px;}
.wsb_c00447{word-spacing:-0.367200px;}
.ws13_c00447{word-spacing:-0.345600px;}
.ws5_c00447{word-spacing:0.000000px;}
.ws18_c00447{word-spacing:0.021600px;}
.ws4_c00447{word-spacing:0.138276px;}
.ws1a_c00447{word-spacing:0.280800px;}
.ws19_c00447{word-spacing:0.316800px;}
.wsc_c00447{word-spacing:3.808800px;}
.wsd_c00447{word-spacing:3.952800px;}
.ws9_c00447{word-spacing:6.717600px;}
.ws1c_c00447{word-spacing:12.470400px;}
.ws14_c00447{word-spacing:13.298400px;}
.ws15_c00447{word-spacing:16.552800px;}
.ws16_c00447{word-spacing:16.912800px;}
.ws6_c00447{word-spacing:17.575200px;}
.ws10_c00447{word-spacing:18.000000px;}
.ws1d_c00447{word-spacing:21.564000px;}
.wsf_c00447{word-spacing:22.118400px;}
.wse_c00447{word-spacing:22.341600px;}
.ws7_c00447{word-spacing:28.965600px;}
.ws8_c00447{word-spacing:29.037600px;}
.ws17_c00447{word-spacing:37.440000px;}
.ws11_c00447{word-spacing:38.484000px;}
._2_c00447{margin-left:-2.606400px;}
._1_c00447{margin-left:-1.555200px;}
._c_c00447{width:1.130400px;}
._4_c00447{width:6.516000px;}
._5_c00447{width:7.581600px;}
._e_c00447{width:12.196800px;}
._9_c00447{width:13.298400px;}
._a_c00447{width:15.616800px;}
._0_c00447{width:16.689600px;}
._f_c00447{width:21.081600px;}
._6_c00447{width:22.312800px;}
._3_c00447{width:29.160000px;}
._d_c00447{width:37.432800px;}
._7_c00447{width:38.512800px;}
._b_c00447{width:57.592800px;}
._8_c00447{width:87.847200px;}
.fc2_c00447{color:rgb(0,0,255);}
.fc1_c00447{color:rgb(5,99,193);}
.fc0_c00447{color:rgb(0,0,0);}
.fs0_c00447{font-size:60.120000px;}
.fs1_c00447{font-size:72.000000px;}
.y0_c00447{bottom:0.000000px;}
.y6_c00447{bottom:57.360450px;}
.y5_c00447{bottom:78.060450px;}
.y26_c00447{bottom:131.880450px;}
.y25_c00447{bottom:162.930450px;}
.y24_c00447{bottom:193.980450px;}
.y23_c00447{bottom:225.030450px;}
.y22_c00447{bottom:256.080450px;}
.y21_c00447{bottom:287.130450px;}
.y20_c00447{bottom:318.180450px;}
.y1f_c00447{bottom:349.230450px;}
.y1e_c00447{bottom:380.280450px;}
.y1d_c00447{bottom:411.330450px;}
.y1c_c00447{bottom:442.380450px;}
.y1b_c00447{bottom:473.430450px;}
.y1a_c00447{bottom:504.480450px;}
.y19_c00447{bottom:535.530450px;}
.y18_c00447{bottom:566.580450px;}
.y17_c00447{bottom:597.630450px;}
.y16_c00447{bottom:628.680450px;}
.y15_c00447{bottom:659.640450px;}
.y14_c00447{bottom:690.690450px;}
.y13_c00447{bottom:721.740450px;}
.y12_c00447{bottom:760.260450px;}
.y11_c00447{bottom:791.400450px;}
.y10_c00447{bottom:822.450450px;}
.yf_c00447{bottom:860.880450px;}
.ye_c00447{bottom:892.020450px;}
.yd_c00447{bottom:923.070450px;}
.yc_c00447{bottom:961.500450px;}
.yb_c00447{bottom:992.640450px;}
.ya_c00447{bottom:1023.690450px;}
.y9_c00447{bottom:1062.120450px;}
.y8_c00447{bottom:1093.260450px;}
.y7_c00447{bottom:1124.310450px;}
.y4_c00447{bottom:1144.380657px;}
.y3_c00447{bottom:1161.660648px;}
.y2_c00447{bottom:1178.850459px;}
.y1_c00447{bottom:1196.130450px;}
.h1_c00447{height:52.898555px;}
.h2_c00447{height:63.175781px;}
.h4_c00447{height:63.351562px;}
.h3_c00447{height:64.546875px;}
.h0_c00447{height:1263.000000px;}
.w1_c00447{width:892.500000px;}
.w0_c00447{width:892.830000px;}
.x0_c00447{left:0.000000px;}
.x4_c00447{left:127.620000px;}
.x5_c00447{left:154.620000px;}
.x6_c00447{left:181.620000px;}
.x1_c00447{left:649.620000px;}
.x3_c00447{left:738.450000px;}
.x2_c00447{left:765.450198px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls11_c00447{letter-spacing:-0.320000pt;}
.lsb_c00447{letter-spacing:-0.042752pt;}
.lsf_c00447{letter-spacing:-0.025600pt;}
.lsd_c00447{letter-spacing:-0.019200pt;}
.ls10_c00447{letter-spacing:-0.012800pt;}
.lse_c00447{letter-spacing:-0.006400pt;}
.lsc_c00447{letter-spacing:0.000000pt;}
.ls6_c00447{letter-spacing:0.006400pt;}
.ls1_c00447{letter-spacing:0.012800pt;}
.ls2_c00447{letter-spacing:0.019200pt;}
.ls4_c00447{letter-spacing:0.025600pt;}
.ls3_c00447{letter-spacing:0.032000pt;}
.ls8_c00447{letter-spacing:0.038400pt;}
.ls9_c00447{letter-spacing:0.051200pt;}
.ls7_c00447{letter-spacing:0.057600pt;}
.lsa_c00447{letter-spacing:0.070400pt;}
.ls5_c00447{letter-spacing:0.320000pt;}
.ls0_c00447{letter-spacing:55.808000pt;}
.ws3_c00447{word-spacing:-16.032000pt;}
.ws2_c00447{word-spacing:-16.019200pt;}
.ws1_c00447{word-spacing:-16.012800pt;}
.ws0_c00447{word-spacing:-16.000000pt;}
.ws1b_c00447{word-spacing:-1.043200pt;}
.ws12_c00447{word-spacing:-0.448000pt;}
.wsa_c00447{word-spacing:-0.377600pt;}
.wsb_c00447{word-spacing:-0.326400pt;}
.ws13_c00447{word-spacing:-0.307200pt;}
.ws5_c00447{word-spacing:0.000000pt;}
.ws18_c00447{word-spacing:0.019200pt;}
.ws4_c00447{word-spacing:0.122912pt;}
.ws1a_c00447{word-spacing:0.249600pt;}
.ws19_c00447{word-spacing:0.281600pt;}
.wsc_c00447{word-spacing:3.385600pt;}
.wsd_c00447{word-spacing:3.513600pt;}
.ws9_c00447{word-spacing:5.971200pt;}
.ws1c_c00447{word-spacing:11.084800pt;}
.ws14_c00447{word-spacing:11.820800pt;}
.ws15_c00447{word-spacing:14.713600pt;}
.ws16_c00447{word-spacing:15.033600pt;}
.ws6_c00447{word-spacing:15.622400pt;}
.ws10_c00447{word-spacing:16.000000pt;}
.ws1d_c00447{word-spacing:19.168000pt;}
.wsf_c00447{word-spacing:19.660800pt;}
.wse_c00447{word-spacing:19.859200pt;}
.ws7_c00447{word-spacing:25.747200pt;}
.ws8_c00447{word-spacing:25.811200pt;}
.ws17_c00447{word-spacing:33.280000pt;}
.ws11_c00447{word-spacing:34.208000pt;}
._2_c00447{margin-left:-2.316800pt;}
._1_c00447{margin-left:-1.382400pt;}
._c_c00447{width:1.004800pt;}
._4_c00447{width:5.792000pt;}
._5_c00447{width:6.739200pt;}
._e_c00447{width:10.841600pt;}
._9_c00447{width:11.820800pt;}
._a_c00447{width:13.881600pt;}
._0_c00447{width:14.835200pt;}
._f_c00447{width:18.739200pt;}
._6_c00447{width:19.833600pt;}
._3_c00447{width:25.920000pt;}
._d_c00447{width:33.273600pt;}
._7_c00447{width:34.233600pt;}
._b_c00447{width:51.193600pt;}
._8_c00447{width:78.086400pt;}
.fs0_c00447{font-size:53.440000pt;}
.fs1_c00447{font-size:64.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y6_c00447{bottom:50.987067pt;}
.y5_c00447{bottom:69.387067pt;}
.y26_c00447{bottom:117.227067pt;}
.y25_c00447{bottom:144.827067pt;}
.y24_c00447{bottom:172.427067pt;}
.y23_c00447{bottom:200.027067pt;}
.y22_c00447{bottom:227.627067pt;}
.y21_c00447{bottom:255.227067pt;}
.y20_c00447{bottom:282.827067pt;}
.y1f_c00447{bottom:310.427067pt;}
.y1e_c00447{bottom:338.027067pt;}
.y1d_c00447{bottom:365.627067pt;}
.y1c_c00447{bottom:393.227067pt;}
.y1b_c00447{bottom:420.827067pt;}
.y1a_c00447{bottom:448.427067pt;}
.y19_c00447{bottom:476.027067pt;}
.y18_c00447{bottom:503.627067pt;}
.y17_c00447{bottom:531.227067pt;}
.y16_c00447{bottom:558.827067pt;}
.y15_c00447{bottom:586.347067pt;}
.y14_c00447{bottom:613.947067pt;}
.y13_c00447{bottom:641.547067pt;}
.y12_c00447{bottom:675.787067pt;}
.y11_c00447{bottom:703.467067pt;}
.y10_c00447{bottom:731.067067pt;}
.yf_c00447{bottom:765.227067pt;}
.ye_c00447{bottom:792.907067pt;}
.yd_c00447{bottom:820.507067pt;}
.yc_c00447{bottom:854.667067pt;}
.yb_c00447{bottom:882.347067pt;}
.ya_c00447{bottom:909.947067pt;}
.y9_c00447{bottom:944.107067pt;}
.y8_c00447{bottom:971.787067pt;}
.y7_c00447{bottom:999.387067pt;}
.y4_c00447{bottom:1017.227251pt;}
.y3_c00447{bottom:1032.587243pt;}
.y2_c00447{bottom:1047.867075pt;}
.y1_c00447{bottom:1063.227067pt;}
.h1_c00447{height:47.020937pt;}
.h2_c00447{height:56.156250pt;}
.h4_c00447{height:56.312500pt;}
.h3_c00447{height:57.375000pt;}
.h0_c00447{height:1122.666667pt;}
.w1_c00447{width:793.333333pt;}
.w0_c00447{width:793.626667pt;}
.x0_c00447{left:0.000000pt;}
.x4_c00447{left:113.440000pt;}
.x5_c00447{left:137.440000pt;}
.x6_c00447{left:161.440000pt;}
.x1_c00447{left:577.440000pt;}
.x3_c00447{left:656.400000pt;}
.x2_c00447{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f0385a8ceaaeb78490a411e.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.095703;font-style:normal;font-weight:normal;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_303e3604d0f25326c9777e90.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00448{font-family:ff3_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;}
.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;}
.ls11_c00448{letter-spacing:-0.360000px;}
.lsc_c00448{letter-spacing:-0.102204px;}
.ls13_c00448{letter-spacing:-0.036000px;}
.lse_c00448{letter-spacing:-0.028800px;}
.ls12_c00448{letter-spacing:-0.021600px;}
.lsf_c00448{letter-spacing:-0.014400px;}
.ls10_c00448{letter-spacing:-0.007200px;}
.lsd_c00448{letter-spacing:0.000000px;}
.ls1_c00448{letter-spacing:0.007200px;}
.ls3_c00448{letter-spacing:0.014400px;}
.ls5_c00448{letter-spacing:0.021600px;}
.ls8_c00448{letter-spacing:0.028800px;}
.ls7_c00448{letter-spacing:0.036000px;}
.ls6_c00448{letter-spacing:0.043200px;}
.ls4_c00448{letter-spacing:0.050400px;}
.ls9_c00448{letter-spacing:0.057600px;}
.ls2_c00448{letter-spacing:0.072000px;}
.lsa_c00448{letter-spacing:0.086400px;}
.lsb_c00448{letter-spacing:62.064000px;}
.ls0_c00448{letter-spacing:62.784000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00448{word-spacing:-18.007200px;}
.ws0_c00448{word-spacing:-18.000000px;}
.ws13_c00448{word-spacing:-3.268800px;}
.ws7_c00448{word-spacing:-2.541600px;}
.wsa_c00448{word-spacing:-0.086400px;}
.wse_c00448{word-spacing:-0.057600px;}
.ws6_c00448{word-spacing:-0.021600px;}
.ws19_c00448{word-spacing:-0.007200px;}
.ws3_c00448{word-spacing:0.000000px;}
.ws2_c00448{word-spacing:0.192384px;}
.ws4_c00448{word-spacing:1.735200px;}
.ws11_c00448{word-spacing:1.778400px;}
.ws5_c00448{word-spacing:1.828800px;}
.ws12_c00448{word-spacing:2.145600px;}
.ws8_c00448{word-spacing:3.996000px;}
.wsd_c00448{word-spacing:4.960800px;}
.wsb_c00448{word-spacing:7.178400px;}
.ws15_c00448{word-spacing:8.085600px;}
.ws14_c00448{word-spacing:8.150400px;}
.ws18_c00448{word-spacing:8.654400px;}
.ws17_c00448{word-spacing:8.676000px;}
.wsf_c00448{word-spacing:10.432800px;}
.ws10_c00448{word-spacing:10.454400px;}
.ws9_c00448{word-spacing:13.629600px;}
.wsc_c00448{word-spacing:19.785600px;}
.ws16_c00448{word-spacing:20.167200px;}
._3_c00448{margin-left:-3.168000px;}
._4_c00448{margin-left:-2.145600px;}
._2_c00448{margin-left:-1.108800px;}
._0_c00448{width:1.034064px;}
._1_c00448{width:2.575872px;}
._5_c00448{width:4.897728px;}
._8_c00448{width:6.818400px;}
._9_c00448{width:7.898400px;}
._e_c00448{width:8.899200px;}
._d_c00448{width:10.432800px;}
._6_c00448{width:13.046400px;}
._7_c00448{width:14.241600px;}
._a_c00448{width:19.828800px;}
._f_c00448{width:28.101600px;}
._c_c00448{width:32.961600px;}
._b_c00448{width:34.192800px;}
.fc2_c00448{color:rgb(5,99,193);}
.fc1_c00448{color:rgb(0,0,0);}
.fc0_c00448{color:rgb(32,31,30);}
.fs0_c00448{font-size:60.120000px;}
.fs1_c00448{font-size:72.000000px;}
.y0_c00448{bottom:0.000000px;}
.y5_c00448{bottom:57.360450px;}
.y4_c00448{bottom:78.060450px;}
.y26_c00448{bottom:135.750450px;}
.y25_c00448{bottom:166.890450px;}
.y24_c00448{bottom:188.850450px;}
.y23_c00448{bottom:219.990450px;}
.y22_c00448{bottom:251.040450px;}
.y21_c00448{bottom:282.090450px;}
.y20_c00448{bottom:313.140450px;}
.y1f_c00448{bottom:335.010450px;}
.y1e_c00448{bottom:366.240450px;}
.y1d_c00448{bottom:397.290450px;}
.y1c_c00448{bottom:428.340450px;}
.y1b_c00448{bottom:459.300450px;}
.y1a_c00448{bottom:490.440450px;}
.y19_c00448{bottom:521.490450px;}
.y18_c00448{bottom:552.540450px;}
.y17_c00448{bottom:583.590450px;}
.y16_c00448{bottom:614.640450px;}
.y15_c00448{bottom:645.690450px;}
.y14_c00448{bottom:676.650450px;}
.y13_c00448{bottom:707.790450px;}
.y12_c00448{bottom:738.840450px;}
.y11_c00448{bottom:769.890450px;}
.y10_c00448{bottom:800.940450px;}
.yf_c00448{bottom:831.990450px;}
.ye_c00448{bottom:863.040450px;}
.yd_c00448{bottom:894.090450px;}
.yc_c00448{bottom:925.140450px;}
.yb_c00448{bottom:956.190450px;}
.ya_c00448{bottom:987.240450px;}
.y9_c00448{bottom:1018.290450px;}
.y8_c00448{bottom:1049.340450px;}
.y7_c00448{bottom:1080.390450px;}
.y6_c00448{bottom:1111.440450px;}
.y3_c00448{bottom:1132.140450px;}
.y2_c00448{bottom:1165.441023px;}
.y1_c00448{bottom:1196.040600px;}
.h1_c00448{height:52.898555px;}
.h2_c00448{height:63.175781px;}
.h4_c00448{height:63.351562px;}
.h3_c00448{height:64.546875px;}
.h0_c00448{height:1263.000000px;}
.w1_c00448{width:892.500000px;}
.w0_c00448{width:892.830000px;}
.x0_c00448{left:0.000000px;}
.x1_c00448{left:127.620000px;}
.x3_c00448{left:154.620000px;}
.x4_c00448{left:181.620000px;}
.x2_c00448{left:738.450000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls11_c00448{letter-spacing:-0.320000pt;}
.lsc_c00448{letter-spacing:-0.090848pt;}
.ls13_c00448{letter-spacing:-0.032000pt;}
.lse_c00448{letter-spacing:-0.025600pt;}
.ls12_c00448{letter-spacing:-0.019200pt;}
.lsf_c00448{letter-spacing:-0.012800pt;}
.ls10_c00448{letter-spacing:-0.006400pt;}
.lsd_c00448{letter-spacing:0.000000pt;}
.ls1_c00448{letter-spacing:0.006400pt;}
.ls3_c00448{letter-spacing:0.012800pt;}
.ls5_c00448{letter-spacing:0.019200pt;}
.ls8_c00448{letter-spacing:0.025600pt;}
.ls7_c00448{letter-spacing:0.032000pt;}
.ls6_c00448{letter-spacing:0.038400pt;}
.ls4_c00448{letter-spacing:0.044800pt;}
.ls9_c00448{letter-spacing:0.051200pt;}
.ls2_c00448{letter-spacing:0.064000pt;}
.lsa_c00448{letter-spacing:0.076800pt;}
.lsb_c00448{letter-spacing:55.168000pt;}
.ls0_c00448{letter-spacing:55.808000pt;}
.ws1_c00448{word-spacing:-16.006400pt;}
.ws0_c00448{word-spacing:-16.000000pt;}
.ws13_c00448{word-spacing:-2.905600pt;}
.ws7_c00448{word-spacing:-2.259200pt;}
.wsa_c00448{word-spacing:-0.076800pt;}
.wse_c00448{word-spacing:-0.051200pt;}
.ws6_c00448{word-spacing:-0.019200pt;}
.ws19_c00448{word-spacing:-0.006400pt;}
.ws3_c00448{word-spacing:0.000000pt;}
.ws2_c00448{word-spacing:0.171008pt;}
.ws4_c00448{word-spacing:1.542400pt;}
.ws11_c00448{word-spacing:1.580800pt;}
.ws5_c00448{word-spacing:1.625600pt;}
.ws12_c00448{word-spacing:1.907200pt;}
.ws8_c00448{word-spacing:3.552000pt;}
.wsd_c00448{word-spacing:4.409600pt;}
.wsb_c00448{word-spacing:6.380800pt;}
.ws15_c00448{word-spacing:7.187200pt;}
.ws14_c00448{word-spacing:7.244800pt;}
.ws18_c00448{word-spacing:7.692800pt;}
.ws17_c00448{word-spacing:7.712000pt;}
.wsf_c00448{word-spacing:9.273600pt;}
.ws10_c00448{word-spacing:9.292800pt;}
.ws9_c00448{word-spacing:12.115200pt;}
.wsc_c00448{word-spacing:17.587200pt;}
.ws16_c00448{word-spacing:17.926400pt;}
._3_c00448{margin-left:-2.816000pt;}
._4_c00448{margin-left:-1.907200pt;}
._2_c00448{margin-left:-0.985600pt;}
._0_c00448{width:0.919168pt;}
._1_c00448{width:2.289664pt;}
._5_c00448{width:4.353536pt;}
._8_c00448{width:6.060800pt;}
._9_c00448{width:7.020800pt;}
._e_c00448{width:7.910400pt;}
._d_c00448{width:9.273600pt;}
._6_c00448{width:11.596800pt;}
._7_c00448{width:12.659200pt;}
._a_c00448{width:17.625600pt;}
._f_c00448{width:24.979200pt;}
._c_c00448{width:29.299200pt;}
._b_c00448{width:30.393600pt;}
.fs0_c00448{font-size:53.440000pt;}
.fs1_c00448{font-size:64.000000pt;}
.y0_c00448{bottom:0.000000pt;}
.y5_c00448{bottom:50.987067pt;}
.y4_c00448{bottom:69.387067pt;}
.y26_c00448{bottom:120.667067pt;}
.y25_c00448{bottom:148.347067pt;}
.y24_c00448{bottom:167.867067pt;}
.y23_c00448{bottom:195.547067pt;}
.y22_c00448{bottom:223.147067pt;}
.y21_c00448{bottom:250.747067pt;}
.y20_c00448{bottom:278.347067pt;}
.y1f_c00448{bottom:297.787067pt;}
.y1e_c00448{bottom:325.547067pt;}
.y1d_c00448{bottom:353.147067pt;}
.y1c_c00448{bottom:380.747067pt;}
.y1b_c00448{bottom:408.267067pt;}
.y1a_c00448{bottom:435.947067pt;}
.y19_c00448{bottom:463.547067pt;}
.y18_c00448{bottom:491.147067pt;}
.y17_c00448{bottom:518.747067pt;}
.y16_c00448{bottom:546.347067pt;}
.y15_c00448{bottom:573.947067pt;}
.y14_c00448{bottom:601.467067pt;}
.y13_c00448{bottom:629.147067pt;}
.y12_c00448{bottom:656.747067pt;}
.y11_c00448{bottom:684.347067pt;}
.y10_c00448{bottom:711.947067pt;}
.yf_c00448{bottom:739.547067pt;}
.ye_c00448{bottom:767.147067pt;}
.yd_c00448{bottom:794.747067pt;}
.yc_c00448{bottom:822.347067pt;}
.yb_c00448{bottom:849.947067pt;}
.ya_c00448{bottom:877.547067pt;}
.y9_c00448{bottom:905.147067pt;}
.y8_c00448{bottom:932.747067pt;}
.y7_c00448{bottom:960.347067pt;}
.y6_c00448{bottom:987.947067pt;}
.y3_c00448{bottom:1006.347067pt;}
.y2_c00448{bottom:1035.947576pt;}
.y1_c00448{bottom:1063.147200pt;}
.h1_c00448{height:47.020937pt;}
.h2_c00448{height:56.156250pt;}
.h4_c00448{height:56.312500pt;}
.h3_c00448{height:57.375000pt;}
.h0_c00448{height:1122.666667pt;}
.w1_c00448{width:793.333333pt;}
.w0_c00448{width:793.626667pt;}
.x0_c00448{left:0.000000pt;}
.x1_c00448{left:113.440000pt;}
.x3_c00448{left:137.440000pt;}
.x4_c00448{left:161.440000pt;}
.x2_c00448{left:656.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_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_00d4aeef50855af44821f37b.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.095703;font-style:normal;font-weight:normal;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_ec17eb2fb745d43c89469ea3.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00449{font-family:ff3_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:ff4_c00449;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff4_c00449{font-family:ff4_c00449;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_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;}
.ls12_c00449{letter-spacing:-0.360000px;}
.ls16_c00449{letter-spacing:-0.055296px;}
.ls1a_c00449{letter-spacing:-0.050400px;}
.ls15_c00449{letter-spacing:-0.048384px;}
.lsf_c00449{letter-spacing:-0.048096px;}
.ls11_c00449{letter-spacing:-0.036000px;}
.ls19_c00449{letter-spacing:-0.028800px;}
.ls14_c00449{letter-spacing:-0.027648px;}
.ls18_c00449{letter-spacing:-0.021600px;}
.ls13_c00449{letter-spacing:-0.014400px;}
.ls17_c00449{letter-spacing:-0.007200px;}
.ls10_c00449{letter-spacing:0.000000px;}
.ls1_c00449{letter-spacing:0.007200px;}
.ls6_c00449{letter-spacing:0.014400px;}
.ls4_c00449{letter-spacing:0.021600px;}
.ls7_c00449{letter-spacing:0.028800px;}
.ls5_c00449{letter-spacing:0.036000px;}
.lsd_c00449{letter-spacing:0.043200px;}
.ls2_c00449{letter-spacing:0.050400px;}
.ls8_c00449{letter-spacing:0.057600px;}
.ls9_c00449{letter-spacing:0.100800px;}
.lsb_c00449{letter-spacing:0.115200px;}
.lsc_c00449{letter-spacing:0.359424px;}
.lse_c00449{letter-spacing:54.864000px;}
.ls0_c00449{letter-spacing:62.064000px;}
.ls3_c00449{letter-spacing:62.784000px;}
.lsa_c00449{letter-spacing:64.661760px;}
.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;}
}
.ws4_c00449{word-spacing:-72.000000px;}
.ws3_c00449{word-spacing:-18.115200px;}
.ws1_c00449{word-spacing:-18.100800px;}
.ws5_c00449{word-spacing:-18.028800px;}
.ws0_c00449{word-spacing:-18.000000px;}
.ws2_c00449{word-spacing:-17.280000px;}
.ws10_c00449{word-spacing:-4.370400px;}
.wsf_c00449{word-spacing:-0.144000px;}
.ws18_c00449{word-spacing:-0.129600px;}
.ws21_c00449{word-spacing:-0.007200px;}
.ws7_c00449{word-spacing:0.000000px;}
.ws19_c00449{word-spacing:0.007200px;}
.ws6_c00449{word-spacing:0.138276px;}
.wsb_c00449{word-spacing:2.390400px;}
.wsa_c00449{word-spacing:2.426400px;}
.ws13_c00449{word-spacing:3.405600px;}
.ws1a_c00449{word-spacing:5.378400px;}
.ws9_c00449{word-spacing:7.056000px;}
.ws8_c00449{word-spacing:7.236000px;}
.ws20_c00449{word-spacing:8.265600px;}
.ws1f_c00449{word-spacing:10.497600px;}
.wsc_c00449{word-spacing:10.972800px;}
.ws14_c00449{word-spacing:11.073600px;}
.ws15_c00449{word-spacing:11.152800px;}
.ws17_c00449{word-spacing:23.086080px;}
.ws1e_c00449{word-spacing:26.798400px;}
.ws11_c00449{word-spacing:26.877600px;}
.ws12_c00449{word-spacing:26.964000px;}
.ws1c_c00449{word-spacing:27.028800px;}
.ws1d_c00449{word-spacing:27.050400px;}
.ws22_c00449{word-spacing:29.102400px;}
.wsd_c00449{word-spacing:29.390400px;}
.wse_c00449{word-spacing:29.534400px;}
.ws16_c00449{word-spacing:33.350400px;}
.ws1b_c00449{word-spacing:74.138400px;}
._5_c00449{margin-left:-4.312800px;}
._6_c00449{margin-left:-3.117600px;}
._1_c00449{margin-left:-1.144800px;}
._10_c00449{width:1.000800px;}
._3_c00449{width:2.563200px;}
._8_c00449{width:3.578400px;}
._d_c00449{width:5.385600px;}
._0_c00449{width:7.192800px;}
._11_c00449{width:8.265600px;}
._f_c00449{width:9.626400px;}
._2_c00449{width:11.160000px;}
._b_c00449{width:22.405824px;}
._c_c00449{width:23.496768px;}
._7_c00449{width:27.000000px;}
._12_c00449{width:28.389600px;}
._4_c00449{width:29.412000px;}
._a_c00449{width:32.709600px;}
._9_c00449{width:34.084800px;}
._e_c00449{width:73.778400px;}
.fc0_c00449{color:rgb(0,0,0);}
.fs0_c00449{font-size:60.120000px;}
.fs2_c00449{font-size:69.120000px;}
.fs1_c00449{font-size:72.000000px;}
.y0_c00449{bottom:0.000000px;}
.y6_c00449{bottom:57.360450px;}
.y5_c00449{bottom:78.060450px;}
.y25_c00449{bottom:120.630450px;}
.y24_c00449{bottom:159.060450px;}
.y23_c00449{bottom:197.670450px;}
.y22_c00449{bottom:228.720450px;}
.y21_c00449{bottom:268.500450px;}
.y20_c00449{bottom:299.640450px;}
.y1f_c00449{bottom:330.600450px;}
.y1e_c00449{bottom:361.740450px;}
.y1d_c00449{bottom:400.170450px;}
.y1c_c00449{bottom:431.310450px;}
.y1b_c00449{bottom:465.330450px;}
.y1a_c00449{bottom:486.120450px;}
.y19_c00449{bottom:506.820450px;}
.y18_c00449{bottom:544.710738px;}
.y17_c00449{bottom:575.130450px;}
.y16_c00449{bottom:613.560450px;}
.y15_c00449{bottom:644.700450px;}
.y14_c00449{bottom:675.660450px;}
.y13_c00449{bottom:706.800450px;}
.y12_c00449{bottom:745.230450px;}
.y11_c00449{bottom:776.370450px;}
.y10_c00449{bottom:814.800450px;}
.yf_c00449{bottom:853.410450px;}
.ye_c00449{bottom:891.930450px;}
.yd_c00449{bottom:923.070450px;}
.yc_c00449{bottom:954.120450px;}
.yb_c00449{bottom:992.550450px;}
.ya_c00449{bottom:1023.690450px;}
.y9_c00449{bottom:1054.740450px;}
.y8_c00449{bottom:1093.170450px;}
.y7_c00449{bottom:1124.310450px;}
.y4_c00449{bottom:1144.380657px;}
.y3_c00449{bottom:1161.660648px;}
.y2_c00449{bottom:1178.850459px;}
.y1_c00449{bottom:1196.130450px;}
.h1_c00449{height:52.898555px;}
.h5_c00449{height:60.648750px;}
.h2_c00449{height:63.175781px;}
.h4_c00449{height:63.351562px;}
.h3_c00449{height:64.546875px;}
.h0_c00449{height:1263.000000px;}
.w1_c00449{width:892.500000px;}
.w0_c00449{width:892.830000px;}
.x0_c00449{left:0.000000px;}
.x4_c00449{left:127.620000px;}
.x5_c00449{left:154.350000px;}
.x6_c00449{left:181.170000px;}
.x1_c00449{left:649.620000px;}
.x3_c00449{left:738.450000px;}
.x2_c00449{left:765.450198px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls12_c00449{letter-spacing:-0.320000pt;}
.ls16_c00449{letter-spacing:-0.049152pt;}
.ls1a_c00449{letter-spacing:-0.044800pt;}
.ls15_c00449{letter-spacing:-0.043008pt;}
.lsf_c00449{letter-spacing:-0.042752pt;}
.ls11_c00449{letter-spacing:-0.032000pt;}
.ls19_c00449{letter-spacing:-0.025600pt;}
.ls14_c00449{letter-spacing:-0.024576pt;}
.ls18_c00449{letter-spacing:-0.019200pt;}
.ls13_c00449{letter-spacing:-0.012800pt;}
.ls17_c00449{letter-spacing:-0.006400pt;}
.ls10_c00449{letter-spacing:0.000000pt;}
.ls1_c00449{letter-spacing:0.006400pt;}
.ls6_c00449{letter-spacing:0.012800pt;}
.ls4_c00449{letter-spacing:0.019200pt;}
.ls7_c00449{letter-spacing:0.025600pt;}
.ls5_c00449{letter-spacing:0.032000pt;}
.lsd_c00449{letter-spacing:0.038400pt;}
.ls2_c00449{letter-spacing:0.044800pt;}
.ls8_c00449{letter-spacing:0.051200pt;}
.ls9_c00449{letter-spacing:0.089600pt;}
.lsb_c00449{letter-spacing:0.102400pt;}
.lsc_c00449{letter-spacing:0.319488pt;}
.lse_c00449{letter-spacing:48.768000pt;}
.ls0_c00449{letter-spacing:55.168000pt;}
.ls3_c00449{letter-spacing:55.808000pt;}
.lsa_c00449{letter-spacing:57.477120pt;}
.ws4_c00449{word-spacing:-64.000000pt;}
.ws3_c00449{word-spacing:-16.102400pt;}
.ws1_c00449{word-spacing:-16.089600pt;}
.ws5_c00449{word-spacing:-16.025600pt;}
.ws0_c00449{word-spacing:-16.000000pt;}
.ws2_c00449{word-spacing:-15.360000pt;}
.ws10_c00449{word-spacing:-3.884800pt;}
.wsf_c00449{word-spacing:-0.128000pt;}
.ws18_c00449{word-spacing:-0.115200pt;}
.ws21_c00449{word-spacing:-0.006400pt;}
.ws7_c00449{word-spacing:0.000000pt;}
.ws19_c00449{word-spacing:0.006400pt;}
.ws6_c00449{word-spacing:0.122912pt;}
.wsb_c00449{word-spacing:2.124800pt;}
.wsa_c00449{word-spacing:2.156800pt;}
.ws13_c00449{word-spacing:3.027200pt;}
.ws1a_c00449{word-spacing:4.780800pt;}
.ws9_c00449{word-spacing:6.272000pt;}
.ws8_c00449{word-spacing:6.432000pt;}
.ws20_c00449{word-spacing:7.347200pt;}
.ws1f_c00449{word-spacing:9.331200pt;}
.wsc_c00449{word-spacing:9.753600pt;}
.ws14_c00449{word-spacing:9.843200pt;}
.ws15_c00449{word-spacing:9.913600pt;}
.ws17_c00449{word-spacing:20.520960pt;}
.ws1e_c00449{word-spacing:23.820800pt;}
.ws11_c00449{word-spacing:23.891200pt;}
.ws12_c00449{word-spacing:23.968000pt;}
.ws1c_c00449{word-spacing:24.025600pt;}
.ws1d_c00449{word-spacing:24.044800pt;}
.ws22_c00449{word-spacing:25.868800pt;}
.wsd_c00449{word-spacing:26.124800pt;}
.wse_c00449{word-spacing:26.252800pt;}
.ws16_c00449{word-spacing:29.644800pt;}
.ws1b_c00449{word-spacing:65.900800pt;}
._5_c00449{margin-left:-3.833600pt;}
._6_c00449{margin-left:-2.771200pt;}
._1_c00449{margin-left:-1.017600pt;}
._10_c00449{width:0.889600pt;}
._3_c00449{width:2.278400pt;}
._8_c00449{width:3.180800pt;}
._d_c00449{width:4.787200pt;}
._0_c00449{width:6.393600pt;}
._11_c00449{width:7.347200pt;}
._f_c00449{width:8.556800pt;}
._2_c00449{width:9.920000pt;}
._b_c00449{width:19.916288pt;}
._c_c00449{width:20.886016pt;}
._7_c00449{width:24.000000pt;}
._12_c00449{width:25.235200pt;}
._4_c00449{width:26.144000pt;}
._a_c00449{width:29.075200pt;}
._9_c00449{width:30.297600pt;}
._e_c00449{width:65.580800pt;}
.fs0_c00449{font-size:53.440000pt;}
.fs2_c00449{font-size:61.440000pt;}
.fs1_c00449{font-size:64.000000pt;}
.y0_c00449{bottom:0.000000pt;}
.y6_c00449{bottom:50.987067pt;}
.y5_c00449{bottom:69.387067pt;}
.y25_c00449{bottom:107.227067pt;}
.y24_c00449{bottom:141.387067pt;}
.y23_c00449{bottom:175.707067pt;}
.y22_c00449{bottom:203.307067pt;}
.y21_c00449{bottom:238.667067pt;}
.y20_c00449{bottom:266.347067pt;}
.y1f_c00449{bottom:293.867067pt;}
.y1e_c00449{bottom:321.547067pt;}
.y1d_c00449{bottom:355.707067pt;}
.y1c_c00449{bottom:383.387067pt;}
.y1b_c00449{bottom:413.627067pt;}
.y1a_c00449{bottom:432.107067pt;}
.y19_c00449{bottom:450.507067pt;}
.y18_c00449{bottom:484.187323pt;}
.y17_c00449{bottom:511.227067pt;}
.y16_c00449{bottom:545.387067pt;}
.y15_c00449{bottom:573.067067pt;}
.y14_c00449{bottom:600.587067pt;}
.y13_c00449{bottom:628.267067pt;}
.y12_c00449{bottom:662.427067pt;}
.y11_c00449{bottom:690.107067pt;}
.y10_c00449{bottom:724.267067pt;}
.yf_c00449{bottom:758.587067pt;}
.ye_c00449{bottom:792.827067pt;}
.yd_c00449{bottom:820.507067pt;}
.yc_c00449{bottom:848.107067pt;}
.yb_c00449{bottom:882.267067pt;}
.ya_c00449{bottom:909.947067pt;}
.y9_c00449{bottom:937.547067pt;}
.y8_c00449{bottom:971.707067pt;}
.y7_c00449{bottom:999.387067pt;}
.y4_c00449{bottom:1017.227251pt;}
.y3_c00449{bottom:1032.587243pt;}
.y2_c00449{bottom:1047.867075pt;}
.y1_c00449{bottom:1063.227067pt;}
.h1_c00449{height:47.020937pt;}
.h5_c00449{height:53.910000pt;}
.h2_c00449{height:56.156250pt;}
.h4_c00449{height:56.312500pt;}
.h3_c00449{height:57.375000pt;}
.h0_c00449{height:1122.666667pt;}
.w1_c00449{width:793.333333pt;}
.w0_c00449{width:793.626667pt;}
.x0_c00449{left:0.000000pt;}
.x4_c00449{left:113.440000pt;}
.x5_c00449{left:137.200000pt;}
.x6_c00449{left:161.040000pt;}
.x1_c00449{left:577.440000pt;}
.x3_c00449{left:656.400000pt;}
.x2_c00449{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_834422d9a1f906cf7cc29f94.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.095703;font-style:normal;font-weight:normal;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_a0629819b9a846029430c833.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00450{font-family:ff3_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;}
.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;}
.lsf_c00450{letter-spacing:-0.194400px;}
.lsc_c00450{letter-spacing:-0.102204px;}
.ls13_c00450{letter-spacing:-0.036000px;}
.ls10_c00450{letter-spacing:-0.028800px;}
.ls12_c00450{letter-spacing:-0.021600px;}
.ls11_c00450{letter-spacing:-0.014400px;}
.lse_c00450{letter-spacing:-0.007200px;}
.lsd_c00450{letter-spacing:0.000000px;}
.ls0_c00450{letter-spacing:0.007200px;}
.ls2_c00450{letter-spacing:0.014400px;}
.ls5_c00450{letter-spacing:0.021600px;}
.ls3_c00450{letter-spacing:0.028800px;}
.ls4_c00450{letter-spacing:0.036000px;}
.lsa_c00450{letter-spacing:0.043200px;}
.ls7_c00450{letter-spacing:0.050400px;}
.ls8_c00450{letter-spacing:0.064800px;}
.lsb_c00450{letter-spacing:0.072000px;}
.ls6_c00450{letter-spacing:0.093600px;}
.ls9_c00450{letter-spacing:0.360000px;}
.ls1_c00450{letter-spacing:62.784000px;}
.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;}
}
.ws3_c00450{word-spacing:-18.028800px;}
.ws2_c00450{word-spacing:-18.007200px;}
.ws0_c00450{word-spacing:-18.000000px;}
.ws1_c00450{word-spacing:-17.992800px;}
.ws7_c00450{word-spacing:-3.974400px;}
.ws11_c00450{word-spacing:-2.563200px;}
.ws9_c00450{word-spacing:-1.893600px;}
.wsa_c00450{word-spacing:-1.821600px;}
.ws10_c00450{word-spacing:-0.828000px;}
.ws18_c00450{word-spacing:-0.396000px;}
.ws5_c00450{word-spacing:0.000000px;}
.ws4_c00450{word-spacing:0.192384px;}
.wsf_c00450{word-spacing:0.950400px;}
.wse_c00450{word-spacing:1.000800px;}
.ws6_c00450{word-spacing:3.175200px;}
.ws12_c00450{word-spacing:3.218400px;}
.wsb_c00450{word-spacing:6.717600px;}
.wsc_c00450{word-spacing:6.854400px;}
.ws16_c00450{word-spacing:8.503200px;}
.ws17_c00450{word-spacing:8.676000px;}
.ws8_c00450{word-spacing:9.338400px;}
.wsd_c00450{word-spacing:12.535200px;}
.ws15_c00450{word-spacing:15.012000px;}
.ws13_c00450{word-spacing:15.084000px;}
.ws14_c00450{word-spacing:19.440000px;}
._2_c00450{margin-left:-4.017600px;}
._5_c00450{margin-left:-2.138400px;}
._3_c00450{margin-left:-1.000800px;}
._0_c00450{width:1.034064px;}
._1_c00450{width:3.232800px;}
._6_c00450{width:6.033600px;}
._7_c00450{width:7.797600px;}
._4_c00450{width:9.338400px;}
._8_c00450{width:12.578400px;}
._9_c00450{width:15.112800px;}
._a_c00450{width:19.432800px;}
.fc2_c00450{color:rgb(5,99,193);}
.fc1_c00450{color:rgb(0,0,0);}
.fc0_c00450{color:rgb(32,31,30);}
.fs0_c00450{font-size:60.120000px;}
.fs1_c00450{font-size:72.000000px;}
.y0_c00450{bottom:0.000000px;}
.y5_c00450{bottom:57.360450px;}
.y4_c00450{bottom:78.060450px;}
.y22_c00450{bottom:162.570450px;}
.y21_c00450{bottom:193.620450px;}
.y20_c00450{bottom:224.670450px;}
.y1f_c00450{bottom:255.720450px;}
.y1e_c00450{bottom:286.770450px;}
.y1d_c00450{bottom:317.820450px;}
.y1c_c00450{bottom:348.870450px;}
.y1b_c00450{bottom:379.920450px;}
.y1a_c00450{bottom:410.970450px;}
.y19_c00450{bottom:449.400450px;}
.y18_c00450{bottom:480.540450px;}
.y17_c00450{bottom:519.060450px;}
.y16_c00450{bottom:557.580450px;}
.y15_c00450{bottom:588.720450px;}
.y14_c00450{bottom:627.150450px;}
.y13_c00450{bottom:658.290450px;}
.y12_c00450{bottom:689.340450px;}
.y11_c00450{bottom:727.770450px;}
.y10_c00450{bottom:758.910450px;}
.yf_c00450{bottom:789.960450px;}
.ye_c00450{bottom:828.480450px;}
.yd_c00450{bottom:859.620450px;}
.yc_c00450{bottom:898.050450px;}
.yb_c00450{bottom:929.190450px;}
.ya_c00450{bottom:967.620450px;}
.y9_c00450{bottom:998.760450px;}
.y8_c00450{bottom:1029.810450px;}
.y7_c00450{bottom:1072.740450px;}
.y6_c00450{bottom:1111.350450px;}
.y3_c00450{bottom:1132.140450px;}
.y2_c00450{bottom:1165.441023px;}
.y1_c00450{bottom:1196.040600px;}
.h1_c00450{height:52.898555px;}
.h2_c00450{height:63.175781px;}
.h4_c00450{height:63.351562px;}
.h3_c00450{height:64.546875px;}
.h0_c00450{height:1263.000000px;}
.w1_c00450{width:892.500000px;}
.w0_c00450{width:892.830000px;}
.x0_c00450{left:0.000000px;}
.x1_c00450{left:127.620000px;}
.x4_c00450{left:154.620000px;}
.x3_c00450{left:181.620000px;}
.x2_c00450{left:738.450000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.lsf_c00450{letter-spacing:-0.172800pt;}
.lsc_c00450{letter-spacing:-0.090848pt;}
.ls13_c00450{letter-spacing:-0.032000pt;}
.ls10_c00450{letter-spacing:-0.025600pt;}
.ls12_c00450{letter-spacing:-0.019200pt;}
.ls11_c00450{letter-spacing:-0.012800pt;}
.lse_c00450{letter-spacing:-0.006400pt;}
.lsd_c00450{letter-spacing:0.000000pt;}
.ls0_c00450{letter-spacing:0.006400pt;}
.ls2_c00450{letter-spacing:0.012800pt;}
.ls5_c00450{letter-spacing:0.019200pt;}
.ls3_c00450{letter-spacing:0.025600pt;}
.ls4_c00450{letter-spacing:0.032000pt;}
.lsa_c00450{letter-spacing:0.038400pt;}
.ls7_c00450{letter-spacing:0.044800pt;}
.ls8_c00450{letter-spacing:0.057600pt;}
.lsb_c00450{letter-spacing:0.064000pt;}
.ls6_c00450{letter-spacing:0.083200pt;}
.ls9_c00450{letter-spacing:0.320000pt;}
.ls1_c00450{letter-spacing:55.808000pt;}
.ws3_c00450{word-spacing:-16.025600pt;}
.ws2_c00450{word-spacing:-16.006400pt;}
.ws0_c00450{word-spacing:-16.000000pt;}
.ws1_c00450{word-spacing:-15.993600pt;}
.ws7_c00450{word-spacing:-3.532800pt;}
.ws11_c00450{word-spacing:-2.278400pt;}
.ws9_c00450{word-spacing:-1.683200pt;}
.wsa_c00450{word-spacing:-1.619200pt;}
.ws10_c00450{word-spacing:-0.736000pt;}
.ws18_c00450{word-spacing:-0.352000pt;}
.ws5_c00450{word-spacing:0.000000pt;}
.ws4_c00450{word-spacing:0.171008pt;}
.wsf_c00450{word-spacing:0.844800pt;}
.wse_c00450{word-spacing:0.889600pt;}
.ws6_c00450{word-spacing:2.822400pt;}
.ws12_c00450{word-spacing:2.860800pt;}
.wsb_c00450{word-spacing:5.971200pt;}
.wsc_c00450{word-spacing:6.092800pt;}
.ws16_c00450{word-spacing:7.558400pt;}
.ws17_c00450{word-spacing:7.712000pt;}
.ws8_c00450{word-spacing:8.300800pt;}
.wsd_c00450{word-spacing:11.142400pt;}
.ws15_c00450{word-spacing:13.344000pt;}
.ws13_c00450{word-spacing:13.408000pt;}
.ws14_c00450{word-spacing:17.280000pt;}
._2_c00450{margin-left:-3.571200pt;}
._5_c00450{margin-left:-1.900800pt;}
._3_c00450{margin-left:-0.889600pt;}
._0_c00450{width:0.919168pt;}
._1_c00450{width:2.873600pt;}
._6_c00450{width:5.363200pt;}
._7_c00450{width:6.931200pt;}
._4_c00450{width:8.300800pt;}
._8_c00450{width:11.180800pt;}
._9_c00450{width:13.433600pt;}
._a_c00450{width:17.273600pt;}
.fs0_c00450{font-size:53.440000pt;}
.fs1_c00450{font-size:64.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y5_c00450{bottom:50.987067pt;}
.y4_c00450{bottom:69.387067pt;}
.y22_c00450{bottom:144.507067pt;}
.y21_c00450{bottom:172.107067pt;}
.y20_c00450{bottom:199.707067pt;}
.y1f_c00450{bottom:227.307067pt;}
.y1e_c00450{bottom:254.907067pt;}
.y1d_c00450{bottom:282.507067pt;}
.y1c_c00450{bottom:310.107067pt;}
.y1b_c00450{bottom:337.707067pt;}
.y1a_c00450{bottom:365.307067pt;}
.y19_c00450{bottom:399.467067pt;}
.y18_c00450{bottom:427.147067pt;}
.y17_c00450{bottom:461.387067pt;}
.y16_c00450{bottom:495.627067pt;}
.y15_c00450{bottom:523.307067pt;}
.y14_c00450{bottom:557.467067pt;}
.y13_c00450{bottom:585.147067pt;}
.y12_c00450{bottom:612.747067pt;}
.y11_c00450{bottom:646.907067pt;}
.y10_c00450{bottom:674.587067pt;}
.yf_c00450{bottom:702.187067pt;}
.ye_c00450{bottom:736.427067pt;}
.yd_c00450{bottom:764.107067pt;}
.yc_c00450{bottom:798.267067pt;}
.yb_c00450{bottom:825.947067pt;}
.ya_c00450{bottom:860.107067pt;}
.y9_c00450{bottom:887.787067pt;}
.y8_c00450{bottom:915.387067pt;}
.y7_c00450{bottom:953.547067pt;}
.y6_c00450{bottom:987.867067pt;}
.y3_c00450{bottom:1006.347067pt;}
.y2_c00450{bottom:1035.947576pt;}
.y1_c00450{bottom:1063.147200pt;}
.h1_c00450{height:47.020937pt;}
.h2_c00450{height:56.156250pt;}
.h4_c00450{height:56.312500pt;}
.h3_c00450{height:57.375000pt;}
.h0_c00450{height:1122.666667pt;}
.w1_c00450{width:793.333333pt;}
.w0_c00450{width:793.626667pt;}
.x0_c00450{left:0.000000pt;}
.x1_c00450{left:113.440000pt;}
.x4_c00450{left:137.440000pt;}
.x3_c00450{left:161.440000pt;}
.x2_c00450{left:656.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_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_0fd2b24d57816f68cf3ca495.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.095703;font-style:normal;font-weight:normal;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_a8e3161c014c04f78bf6d206.woff2')format("woff");}.ff2_c00451{font-family:ff2_c00451;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00451{font-family:ff3_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:ff4_c00451;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff4_c00451{font-family:ff4_c00451;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_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;}
.ls10_c00451{letter-spacing:-0.048096px;}
.ls16_c00451{letter-spacing:-0.036000px;}
.ls15_c00451{letter-spacing:-0.028800px;}
.ls14_c00451{letter-spacing:-0.021600px;}
.ls12_c00451{letter-spacing:-0.014400px;}
.ls13_c00451{letter-spacing:-0.007200px;}
.ls11_c00451{letter-spacing:0.000000px;}
.ls3_c00451{letter-spacing:0.007200px;}
.ls1_c00451{letter-spacing:0.014400px;}
.ls2_c00451{letter-spacing:0.021600px;}
.ls7_c00451{letter-spacing:0.028800px;}
.ls9_c00451{letter-spacing:0.036000px;}
.lsd_c00451{letter-spacing:0.043200px;}
.ls5_c00451{letter-spacing:0.050400px;}
.ls8_c00451{letter-spacing:0.057600px;}
.ls6_c00451{letter-spacing:0.064800px;}
.ls4_c00451{letter-spacing:0.072000px;}
.lse_c00451{letter-spacing:0.079200px;}
.lsb_c00451{letter-spacing:0.129600px;}
.lsc_c00451{letter-spacing:0.144000px;}
.lsf_c00451{letter-spacing:54.864000px;}
.lsa_c00451{letter-spacing:62.064000px;}
.ls0_c00451{letter-spacing:62.784000px;}
.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;}
}
.ws1_c00451{word-spacing:-72.000000px;}
.ws0_c00451{word-spacing:-18.000000px;}
.ws20_c00451{word-spacing:-4.399200px;}
.ws13_c00451{word-spacing:-2.988000px;}
.ws1c_c00451{word-spacing:-2.174400px;}
.ws11_c00451{word-spacing:-1.202400px;}
.wsd_c00451{word-spacing:-0.194400px;}
.ws1d_c00451{word-spacing:-0.187200px;}
.ws24_c00451{word-spacing:-0.115200px;}
.ws17_c00451{word-spacing:-0.043200px;}
.ws1e_c00451{word-spacing:-0.028800px;}
.ws23_c00451{word-spacing:-0.014400px;}
.ws9_c00451{word-spacing:-0.007200px;}
.ws3_c00451{word-spacing:0.000000px;}
.ws27_c00451{word-spacing:0.036000px;}
.ws2_c00451{word-spacing:0.138276px;}
.ws15_c00451{word-spacing:0.302400px;}
.ws16_c00451{word-spacing:0.309600px;}
.ws6_c00451{word-spacing:0.576000px;}
.ws7_c00451{word-spacing:0.604800px;}
.ws8_c00451{word-spacing:0.712800px;}
.wsb_c00451{word-spacing:0.828000px;}
.wsa_c00451{word-spacing:1.000800px;}
.ws10_c00451{word-spacing:4.168800px;}
.ws12_c00451{word-spacing:7.754400px;}
.ws21_c00451{word-spacing:9.194400px;}
.ws22_c00451{word-spacing:9.360000px;}
.ws25_c00451{word-spacing:9.979200px;}
.ws26_c00451{word-spacing:10.778400px;}
.ws18_c00451{word-spacing:10.807200px;}
.ws19_c00451{word-spacing:11.340000px;}
.ws14_c00451{word-spacing:13.586400px;}
.ws5_c00451{word-spacing:21.103200px;}
.ws4_c00451{word-spacing:21.225600px;}
.ws1a_c00451{word-spacing:22.917600px;}
.ws1f_c00451{word-spacing:22.982400px;}
.ws1b_c00451{word-spacing:23.054400px;}
.wsf_c00451{word-spacing:28.324800px;}
.wse_c00451{word-spacing:28.432800px;}
.wsc_c00451{word-spacing:38.044800px;}
._f_c00451{margin-left:-5.306400px;}
._a_c00451{margin-left:-3.232800px;}
._2_c00451{margin-left:-1.116000px;}
._1_c00451{width:1.094400px;}
._5_c00451{width:4.291200px;}
._9_c00451{width:6.753600px;}
._8_c00451{width:7.934400px;}
._10_c00451{width:9.360000px;}
._c_c00451{width:10.785600px;}
._d_c00451{width:11.865600px;}
._b_c00451{width:13.665600px;}
._0_c00451{width:21.254400px;}
._e_c00451{width:23.032800px;}
._4_c00451{width:27.878400px;}
._6_c00451{width:30.355200px;}
._7_c00451{width:31.521600px;}
._3_c00451{width:37.584000px;}
.fc0_c00451{color:rgb(0,0,0);}
.fs0_c00451{font-size:60.120000px;}
.fs1_c00451{font-size:72.000000px;}
.y0_c00451{bottom:0.000000px;}
.y6_c00451{bottom:57.360450px;}
.y5_c00451{bottom:78.060450px;}
.y27_c00451{bottom:129.540450px;}
.y26_c00451{bottom:160.590450px;}
.y25_c00451{bottom:191.640450px;}
.y24_c00451{bottom:222.690450px;}
.y23_c00451{bottom:253.650450px;}
.y22_c00451{bottom:284.700450px;}
.y21_c00451{bottom:317.100450px;}
.y20_c00451{bottom:348.150450px;}
.y1f_c00451{bottom:379.200450px;}
.y1e_c00451{bottom:410.160450px;}
.y1d_c00451{bottom:441.300450px;}
.y1c_c00451{bottom:472.350450px;}
.y1b_c00451{bottom:503.400450px;}
.y1a_c00451{bottom:534.450450px;}
.y19_c00451{bottom:565.500450px;}
.y18_c00451{bottom:596.550450px;}
.y17_c00451{bottom:627.600450px;}
.y16_c00451{bottom:658.650450px;}
.y15_c00451{bottom:689.700450px;}
.y14_c00451{bottom:720.750450px;}
.y13_c00451{bottom:751.800450px;}
.y12_c00451{bottom:782.850450px;}
.y11_c00451{bottom:813.900450px;}
.y10_c00451{bottom:844.950450px;}
.yf_c00451{bottom:876.000450px;}
.ye_c00451{bottom:907.050450px;}
.yd_c00451{bottom:938.100450px;}
.yc_c00451{bottom:969.150450px;}
.yb_c00451{bottom:1000.200450px;}
.ya_c00451{bottom:1031.160450px;}
.y9_c00451{bottom:1062.210450px;}
.y8_c00451{bottom:1093.170450px;}
.y7_c00451{bottom:1124.310450px;}
.y4_c00451{bottom:1144.380657px;}
.y3_c00451{bottom:1161.660648px;}
.y2_c00451{bottom:1178.850459px;}
.y1_c00451{bottom:1196.130450px;}
.h1_c00451{height:52.898555px;}
.h2_c00451{height:63.175781px;}
.h4_c00451{height:63.351562px;}
.h3_c00451{height:64.546875px;}
.h0_c00451{height:1263.000000px;}
.w1_c00451{width:892.500000px;}
.w0_c00451{width:892.830000px;}
.x0_c00451{left:0.000000px;}
.x4_c00451{left:127.620000px;}
.x5_c00451{left:154.620000px;}
.x6_c00451{left:181.620000px;}
.x1_c00451{left:649.620000px;}
.x3_c00451{left:738.450000px;}
.x2_c00451{left:765.450198px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls10_c00451{letter-spacing:-0.042752pt;}
.ls16_c00451{letter-spacing:-0.032000pt;}
.ls15_c00451{letter-spacing:-0.025600pt;}
.ls14_c00451{letter-spacing:-0.019200pt;}
.ls12_c00451{letter-spacing:-0.012800pt;}
.ls13_c00451{letter-spacing:-0.006400pt;}
.ls11_c00451{letter-spacing:0.000000pt;}
.ls3_c00451{letter-spacing:0.006400pt;}
.ls1_c00451{letter-spacing:0.012800pt;}
.ls2_c00451{letter-spacing:0.019200pt;}
.ls7_c00451{letter-spacing:0.025600pt;}
.ls9_c00451{letter-spacing:0.032000pt;}
.lsd_c00451{letter-spacing:0.038400pt;}
.ls5_c00451{letter-spacing:0.044800pt;}
.ls8_c00451{letter-spacing:0.051200pt;}
.ls6_c00451{letter-spacing:0.057600pt;}
.ls4_c00451{letter-spacing:0.064000pt;}
.lse_c00451{letter-spacing:0.070400pt;}
.lsb_c00451{letter-spacing:0.115200pt;}
.lsc_c00451{letter-spacing:0.128000pt;}
.lsf_c00451{letter-spacing:48.768000pt;}
.lsa_c00451{letter-spacing:55.168000pt;}
.ls0_c00451{letter-spacing:55.808000pt;}
.ws1_c00451{word-spacing:-64.000000pt;}
.ws0_c00451{word-spacing:-16.000000pt;}
.ws20_c00451{word-spacing:-3.910400pt;}
.ws13_c00451{word-spacing:-2.656000pt;}
.ws1c_c00451{word-spacing:-1.932800pt;}
.ws11_c00451{word-spacing:-1.068800pt;}
.wsd_c00451{word-spacing:-0.172800pt;}
.ws1d_c00451{word-spacing:-0.166400pt;}
.ws24_c00451{word-spacing:-0.102400pt;}
.ws17_c00451{word-spacing:-0.038400pt;}
.ws1e_c00451{word-spacing:-0.025600pt;}
.ws23_c00451{word-spacing:-0.012800pt;}
.ws9_c00451{word-spacing:-0.006400pt;}
.ws3_c00451{word-spacing:0.000000pt;}
.ws27_c00451{word-spacing:0.032000pt;}
.ws2_c00451{word-spacing:0.122912pt;}
.ws15_c00451{word-spacing:0.268800pt;}
.ws16_c00451{word-spacing:0.275200pt;}
.ws6_c00451{word-spacing:0.512000pt;}
.ws7_c00451{word-spacing:0.537600pt;}
.ws8_c00451{word-spacing:0.633600pt;}
.wsb_c00451{word-spacing:0.736000pt;}
.wsa_c00451{word-spacing:0.889600pt;}
.ws10_c00451{word-spacing:3.705600pt;}
.ws12_c00451{word-spacing:6.892800pt;}
.ws21_c00451{word-spacing:8.172800pt;}
.ws22_c00451{word-spacing:8.320000pt;}
.ws25_c00451{word-spacing:8.870400pt;}
.ws26_c00451{word-spacing:9.580800pt;}
.ws18_c00451{word-spacing:9.606400pt;}
.ws19_c00451{word-spacing:10.080000pt;}
.ws14_c00451{word-spacing:12.076800pt;}
.ws5_c00451{word-spacing:18.758400pt;}
.ws4_c00451{word-spacing:18.867200pt;}
.ws1a_c00451{word-spacing:20.371200pt;}
.ws1f_c00451{word-spacing:20.428800pt;}
.ws1b_c00451{word-spacing:20.492800pt;}
.wsf_c00451{word-spacing:25.177600pt;}
.wse_c00451{word-spacing:25.273600pt;}
.wsc_c00451{word-spacing:33.817600pt;}
._f_c00451{margin-left:-4.716800pt;}
._a_c00451{margin-left:-2.873600pt;}
._2_c00451{margin-left:-0.992000pt;}
._1_c00451{width:0.972800pt;}
._5_c00451{width:3.814400pt;}
._9_c00451{width:6.003200pt;}
._8_c00451{width:7.052800pt;}
._10_c00451{width:8.320000pt;}
._c_c00451{width:9.587200pt;}
._d_c00451{width:10.547200pt;}
._b_c00451{width:12.147200pt;}
._0_c00451{width:18.892800pt;}
._e_c00451{width:20.473600pt;}
._4_c00451{width:24.780800pt;}
._6_c00451{width:26.982400pt;}
._7_c00451{width:28.019200pt;}
._3_c00451{width:33.408000pt;}
.fs0_c00451{font-size:53.440000pt;}
.fs1_c00451{font-size:64.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y6_c00451{bottom:50.987067pt;}
.y5_c00451{bottom:69.387067pt;}
.y27_c00451{bottom:115.147067pt;}
.y26_c00451{bottom:142.747067pt;}
.y25_c00451{bottom:170.347067pt;}
.y24_c00451{bottom:197.947067pt;}
.y23_c00451{bottom:225.467067pt;}
.y22_c00451{bottom:253.067067pt;}
.y21_c00451{bottom:281.867067pt;}
.y20_c00451{bottom:309.467067pt;}
.y1f_c00451{bottom:337.067067pt;}
.y1e_c00451{bottom:364.587067pt;}
.y1d_c00451{bottom:392.267067pt;}
.y1c_c00451{bottom:419.867067pt;}
.y1b_c00451{bottom:447.467067pt;}
.y1a_c00451{bottom:475.067067pt;}
.y19_c00451{bottom:502.667067pt;}
.y18_c00451{bottom:530.267067pt;}
.y17_c00451{bottom:557.867067pt;}
.y16_c00451{bottom:585.467067pt;}
.y15_c00451{bottom:613.067067pt;}
.y14_c00451{bottom:640.667067pt;}
.y13_c00451{bottom:668.267067pt;}
.y12_c00451{bottom:695.867067pt;}
.y11_c00451{bottom:723.467067pt;}
.y10_c00451{bottom:751.067067pt;}
.yf_c00451{bottom:778.667067pt;}
.ye_c00451{bottom:806.267067pt;}
.yd_c00451{bottom:833.867067pt;}
.yc_c00451{bottom:861.467067pt;}
.yb_c00451{bottom:889.067067pt;}
.ya_c00451{bottom:916.587067pt;}
.y9_c00451{bottom:944.187067pt;}
.y8_c00451{bottom:971.707067pt;}
.y7_c00451{bottom:999.387067pt;}
.y4_c00451{bottom:1017.227251pt;}
.y3_c00451{bottom:1032.587243pt;}
.y2_c00451{bottom:1047.867075pt;}
.y1_c00451{bottom:1063.227067pt;}
.h1_c00451{height:47.020937pt;}
.h2_c00451{height:56.156250pt;}
.h4_c00451{height:56.312500pt;}
.h3_c00451{height:57.375000pt;}
.h0_c00451{height:1122.666667pt;}
.w1_c00451{width:793.333333pt;}
.w0_c00451{width:793.626667pt;}
.x0_c00451{left:0.000000pt;}
.x4_c00451{left:113.440000pt;}
.x5_c00451{left:137.440000pt;}
.x6_c00451{left:161.440000pt;}
.x1_c00451{left:577.440000pt;}
.x3_c00451{left:656.400000pt;}
.x2_c00451{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d1371a731afa92ba6316084.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.095703;font-style:normal;font-weight:normal;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_f93e5223c8833dcf08b5ccc6.woff2')format("woff");}.ff2_c00452{font-family:ff2_c00452;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00452{font-family:ff3_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:ff4_c00452;src:url('chunks/assets/font_b7679bec567d8b17a8868541.woff2')format("woff");}.ff4_c00452{font-family:ff4_c00452;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.lse_c00452{letter-spacing:-0.102204px;}
.ls14_c00452{letter-spacing:-0.050400px;}
.ls11_c00452{letter-spacing:-0.036000px;}
.ls13_c00452{letter-spacing:-0.021600px;}
.ls12_c00452{letter-spacing:-0.014400px;}
.ls10_c00452{letter-spacing:-0.007200px;}
.lsf_c00452{letter-spacing:0.000000px;}
.ls1_c00452{letter-spacing:0.007200px;}
.ls3_c00452{letter-spacing:0.014400px;}
.ls5_c00452{letter-spacing:0.021600px;}
.ls8_c00452{letter-spacing:0.028800px;}
.ls9_c00452{letter-spacing:0.036000px;}
.ls0_c00452{letter-spacing:0.043200px;}
.ls6_c00452{letter-spacing:0.050400px;}
.ls7_c00452{letter-spacing:0.057600px;}
.ls4_c00452{letter-spacing:0.064800px;}
.lsc_c00452{letter-spacing:0.072000px;}
.lsd_c00452{letter-spacing:0.165600px;}
.ls15_c00452{letter-spacing:0.180000px;}
.lsb_c00452{letter-spacing:9.360000px;}
.ls2_c00452{letter-spacing:62.064000px;}
.lsa_c00452{letter-spacing:62.784000px;}
.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;}
}
.ws2_c00452{word-spacing:-18.007200px;}
.ws0_c00452{word-spacing:-18.000000px;}
.ws1_c00452{word-spacing:-17.992800px;}
.wsc_c00452{word-spacing:-4.082400px;}
.wsd_c00452{word-spacing:-2.880000px;}
.ws1b_c00452{word-spacing:-1.893600px;}
.wse_c00452{word-spacing:-1.108800px;}
.ws12_c00452{word-spacing:-0.518400px;}
.ws13_c00452{word-spacing:-0.331200px;}
.ws11_c00452{word-spacing:-0.136800px;}
.wsa_c00452{word-spacing:-0.014400px;}
.ws14_c00452{word-spacing:-0.007200px;}
.ws4_c00452{word-spacing:0.000000px;}
.wsb_c00452{word-spacing:0.007200px;}
.ws3_c00452{word-spacing:0.192384px;}
.ws1d_c00452{word-spacing:2.138400px;}
.ws15_c00452{word-spacing:2.332800px;}
.ws1c_c00452{word-spacing:5.608800px;}
.ws9_c00452{word-spacing:9.381600px;}
.ws1a_c00452{word-spacing:10.720800px;}
.ws19_c00452{word-spacing:10.735200px;}
.ws6_c00452{word-spacing:11.455200px;}
.ws5_c00452{word-spacing:12.996000px;}
.ws16_c00452{word-spacing:15.112800px;}
.ws17_c00452{word-spacing:15.134400px;}
.ws10_c00452{word-spacing:19.022400px;}
.wsf_c00452{word-spacing:19.130400px;}
.ws18_c00452{word-spacing:19.800000px;}
.ws8_c00452{word-spacing:23.004000px;}
.ws7_c00452{word-spacing:41.198400px;}
._8_c00452{margin-left:-3.960000px;}
._9_c00452{margin-left:-2.952000px;}
._1_c00452{margin-left:-1.224000px;}
._0_c00452{width:1.034064px;}
._d_c00452{width:2.520000px;}
._10_c00452{width:5.140800px;}
._11_c00452{width:6.753600px;}
._7_c00452{width:9.331200px;}
._3_c00452{width:11.001600px;}
._2_c00452{width:12.945600px;}
._b_c00452{width:15.386400px;}
._a_c00452{width:16.531200px;}
._c_c00452{width:19.080000px;}
._f_c00452{width:20.592000px;}
._6_c00452{width:23.011200px;}
._4_c00452{width:40.579200px;}
._5_c00452{width:41.853600px;}
._e_c00452{width:752.774400px;}
.fc1_c00452{color:rgb(0,0,0);}
.fc0_c00452{color:rgb(32,31,30);}
.fs0_c00452{font-size:60.120000px;}
.fs1_c00452{font-size:72.000000px;}
.y0_c00452{bottom:0.000000px;}
.y5_c00452{bottom:57.360450px;}
.y4_c00452{bottom:78.060450px;}
.y25_c00452{bottom:150.060450px;}
.y24_c00452{bottom:181.020450px;}
.y23_c00452{bottom:212.160450px;}
.y22_c00452{bottom:243.120450px;}
.y21_c00452{bottom:274.170450px;}
.y20_c00452{bottom:305.130450px;}
.y1f_c00452{bottom:336.270450px;}
.y1e_c00452{bottom:367.320450px;}
.y1d_c00452{bottom:398.370450px;}
.y1c_c00452{bottom:429.420450px;}
.y1b_c00452{bottom:460.470450px;}
.y1a_c00452{bottom:491.520450px;}
.y19_c00452{bottom:522.570450px;}
.y18_c00452{bottom:553.530450px;}
.y17_c00452{bottom:584.670450px;}
.y16_c00452{bottom:615.720450px;}
.y15_c00452{bottom:646.770450px;}
.y14_c00452{bottom:677.820450px;}
.y13_c00452{bottom:708.870450px;}
.y12_c00452{bottom:739.920450px;}
.y11_c00452{bottom:778.350450px;}
.y10_c00452{bottom:809.490450px;}
.yf_c00452{bottom:848.100450px;}
.ye_c00452{bottom:879.150450px;}
.yd_c00452{bottom:900.300450px;}
.yc_c00452{bottom:934.140450px;}
.yb_c00452{bottom:965.190450px;}
.ya_c00452{bottom:996.150450px;}
.y9_c00452{bottom:1027.200450px;}
.y8_c00452{bottom:1058.250450px;}
.y7_c00452{bottom:1080.300450px;}
.y6_c00452{bottom:1111.440450px;}
.y3_c00452{bottom:1132.140450px;}
.y2_c00452{bottom:1165.441023px;}
.y1_c00452{bottom:1196.040600px;}
.h5_c00452{height:49.148438px;}
.h1_c00452{height:52.898555px;}
.h2_c00452{height:63.175781px;}
.h4_c00452{height:63.351562px;}
.h3_c00452{height:64.546875px;}
.h0_c00452{height:1263.000000px;}
.w1_c00452{width:892.500000px;}
.w0_c00452{width:892.830000px;}
.x0_c00452{left:0.000000px;}
.x1_c00452{left:127.620000px;}
.x4_c00452{left:154.350000px;}
.x3_c00452{left:181.170000px;}
.x2_c00452{left:738.450000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.lse_c00452{letter-spacing:-0.090848pt;}
.ls14_c00452{letter-spacing:-0.044800pt;}
.ls11_c00452{letter-spacing:-0.032000pt;}
.ls13_c00452{letter-spacing:-0.019200pt;}
.ls12_c00452{letter-spacing:-0.012800pt;}
.ls10_c00452{letter-spacing:-0.006400pt;}
.lsf_c00452{letter-spacing:0.000000pt;}
.ls1_c00452{letter-spacing:0.006400pt;}
.ls3_c00452{letter-spacing:0.012800pt;}
.ls5_c00452{letter-spacing:0.019200pt;}
.ls8_c00452{letter-spacing:0.025600pt;}
.ls9_c00452{letter-spacing:0.032000pt;}
.ls0_c00452{letter-spacing:0.038400pt;}
.ls6_c00452{letter-spacing:0.044800pt;}
.ls7_c00452{letter-spacing:0.051200pt;}
.ls4_c00452{letter-spacing:0.057600pt;}
.lsc_c00452{letter-spacing:0.064000pt;}
.lsd_c00452{letter-spacing:0.147200pt;}
.ls15_c00452{letter-spacing:0.160000pt;}
.lsb_c00452{letter-spacing:8.320000pt;}
.ls2_c00452{letter-spacing:55.168000pt;}
.lsa_c00452{letter-spacing:55.808000pt;}
.ws2_c00452{word-spacing:-16.006400pt;}
.ws0_c00452{word-spacing:-16.000000pt;}
.ws1_c00452{word-spacing:-15.993600pt;}
.wsc_c00452{word-spacing:-3.628800pt;}
.wsd_c00452{word-spacing:-2.560000pt;}
.ws1b_c00452{word-spacing:-1.683200pt;}
.wse_c00452{word-spacing:-0.985600pt;}
.ws12_c00452{word-spacing:-0.460800pt;}
.ws13_c00452{word-spacing:-0.294400pt;}
.ws11_c00452{word-spacing:-0.121600pt;}
.wsa_c00452{word-spacing:-0.012800pt;}
.ws14_c00452{word-spacing:-0.006400pt;}
.ws4_c00452{word-spacing:0.000000pt;}
.wsb_c00452{word-spacing:0.006400pt;}
.ws3_c00452{word-spacing:0.171008pt;}
.ws1d_c00452{word-spacing:1.900800pt;}
.ws15_c00452{word-spacing:2.073600pt;}
.ws1c_c00452{word-spacing:4.985600pt;}
.ws9_c00452{word-spacing:8.339200pt;}
.ws1a_c00452{word-spacing:9.529600pt;}
.ws19_c00452{word-spacing:9.542400pt;}
.ws6_c00452{word-spacing:10.182400pt;}
.ws5_c00452{word-spacing:11.552000pt;}
.ws16_c00452{word-spacing:13.433600pt;}
.ws17_c00452{word-spacing:13.452800pt;}
.ws10_c00452{word-spacing:16.908800pt;}
.wsf_c00452{word-spacing:17.004800pt;}
.ws18_c00452{word-spacing:17.600000pt;}
.ws8_c00452{word-spacing:20.448000pt;}
.ws7_c00452{word-spacing:36.620800pt;}
._8_c00452{margin-left:-3.520000pt;}
._9_c00452{margin-left:-2.624000pt;}
._1_c00452{margin-left:-1.088000pt;}
._0_c00452{width:0.919168pt;}
._d_c00452{width:2.240000pt;}
._10_c00452{width:4.569600pt;}
._11_c00452{width:6.003200pt;}
._7_c00452{width:8.294400pt;}
._3_c00452{width:9.779200pt;}
._2_c00452{width:11.507200pt;}
._b_c00452{width:13.676800pt;}
._a_c00452{width:14.694400pt;}
._c_c00452{width:16.960000pt;}
._f_c00452{width:18.304000pt;}
._6_c00452{width:20.454400pt;}
._4_c00452{width:36.070400pt;}
._5_c00452{width:37.203200pt;}
._e_c00452{width:669.132800pt;}
.fs0_c00452{font-size:53.440000pt;}
.fs1_c00452{font-size:64.000000pt;}
.y0_c00452{bottom:0.000000pt;}
.y5_c00452{bottom:50.987067pt;}
.y4_c00452{bottom:69.387067pt;}
.y25_c00452{bottom:133.387067pt;}
.y24_c00452{bottom:160.907067pt;}
.y23_c00452{bottom:188.587067pt;}
.y22_c00452{bottom:216.107067pt;}
.y21_c00452{bottom:243.707067pt;}
.y20_c00452{bottom:271.227067pt;}
.y1f_c00452{bottom:298.907067pt;}
.y1e_c00452{bottom:326.507067pt;}
.y1d_c00452{bottom:354.107067pt;}
.y1c_c00452{bottom:381.707067pt;}
.y1b_c00452{bottom:409.307067pt;}
.y1a_c00452{bottom:436.907067pt;}
.y19_c00452{bottom:464.507067pt;}
.y18_c00452{bottom:492.027067pt;}
.y17_c00452{bottom:519.707067pt;}
.y16_c00452{bottom:547.307067pt;}
.y15_c00452{bottom:574.907067pt;}
.y14_c00452{bottom:602.507067pt;}
.y13_c00452{bottom:630.107067pt;}
.y12_c00452{bottom:657.707067pt;}
.y11_c00452{bottom:691.867067pt;}
.y10_c00452{bottom:719.547067pt;}
.yf_c00452{bottom:753.867067pt;}
.ye_c00452{bottom:781.467067pt;}
.yd_c00452{bottom:800.267067pt;}
.yc_c00452{bottom:830.347067pt;}
.yb_c00452{bottom:857.947067pt;}
.ya_c00452{bottom:885.467067pt;}
.y9_c00452{bottom:913.067067pt;}
.y8_c00452{bottom:940.667067pt;}
.y7_c00452{bottom:960.267067pt;}
.y6_c00452{bottom:987.947067pt;}
.y3_c00452{bottom:1006.347067pt;}
.y2_c00452{bottom:1035.947576pt;}
.y1_c00452{bottom:1063.147200pt;}
.h5_c00452{height:43.687500pt;}
.h1_c00452{height:47.020937pt;}
.h2_c00452{height:56.156250pt;}
.h4_c00452{height:56.312500pt;}
.h3_c00452{height:57.375000pt;}
.h0_c00452{height:1122.666667pt;}
.w1_c00452{width:793.333333pt;}
.w0_c00452{width:793.626667pt;}
.x0_c00452{left:0.000000pt;}
.x1_c00452{left:113.440000pt;}
.x4_c00452{left:137.200000pt;}
.x3_c00452{left:161.040000pt;}
.x2_c00452{left:656.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_ea46c92206449e0b70868427.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.095703;font-style:normal;font-weight:normal;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_01b557878034174dbc890d9a.woff2')format("woff");}.ff2_c00453{font-family:ff2_c00453;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00453{font-family:ff3_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;}
.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;}
.lse_c00453{letter-spacing:-0.388800px;}
.ls12_c00453{letter-spacing:-0.064800px;}
.ls14_c00453{letter-spacing:-0.050400px;}
.lsb_c00453{letter-spacing:-0.048096px;}
.ls11_c00453{letter-spacing:-0.028800px;}
.lsf_c00453{letter-spacing:-0.021600px;}
.ls13_c00453{letter-spacing:-0.014400px;}
.ls10_c00453{letter-spacing:-0.007200px;}
.lsc_c00453{letter-spacing:0.000000px;}
.ls7_c00453{letter-spacing:0.007200px;}
.ls4_c00453{letter-spacing:0.014400px;}
.ls2_c00453{letter-spacing:0.021600px;}
.ls1_c00453{letter-spacing:0.028800px;}
.ls8_c00453{letter-spacing:0.036000px;}
.ls9_c00453{letter-spacing:0.043200px;}
.ls6_c00453{letter-spacing:0.050400px;}
.ls3_c00453{letter-spacing:0.057600px;}
.lsa_c00453{letter-spacing:0.072000px;}
.lsd_c00453{letter-spacing:0.180000px;}
.ls15_c00453{letter-spacing:8.640000px;}
.ls5_c00453{letter-spacing:62.064000px;}
.ls0_c00453{letter-spacing:62.784000px;}
.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;}
}
.ws2_c00453{word-spacing:-18.043200px;}
.ws1_c00453{word-spacing:-18.028800px;}
.ws0_c00453{word-spacing:-18.000000px;}
.ws9_c00453{word-spacing:-3.333600px;}
.ws8_c00453{word-spacing:-3.254400px;}
.wsf_c00453{word-spacing:-2.671200px;}
.ws10_c00453{word-spacing:-2.455200px;}
.ws17_c00453{word-spacing:-1.144800px;}
.ws11_c00453{word-spacing:-0.093600px;}
.ws1b_c00453{word-spacing:-0.021600px;}
.wsb_c00453{word-spacing:-0.014400px;}
.ws4_c00453{word-spacing:0.000000px;}
.ws3_c00453{word-spacing:0.138276px;}
.ws1f_c00453{word-spacing:1.800000px;}
.ws6_c00453{word-spacing:2.138400px;}
.wse_c00453{word-spacing:2.433600px;}
.ws1e_c00453{word-spacing:2.448000px;}
.ws18_c00453{word-spacing:3.247200px;}
.ws1a_c00453{word-spacing:3.261600px;}
.ws19_c00453{word-spacing:3.290400px;}
.wsd_c00453{word-spacing:3.470400px;}
.wsc_c00453{word-spacing:3.600000px;}
.ws5_c00453{word-spacing:5.608800px;}
.ws16_c00453{word-spacing:8.863200px;}
.ws20_c00453{word-spacing:12.268800px;}
.ws13_c00453{word-spacing:12.355200px;}
.ws14_c00453{word-spacing:12.578400px;}
.ws1c_c00453{word-spacing:14.054400px;}
.wsa_c00453{word-spacing:20.808000px;}
.ws12_c00453{word-spacing:24.854400px;}
.ws15_c00453{word-spacing:29.872800px;}
.ws1d_c00453{word-spacing:38.851200px;}
.ws7_c00453{word-spacing:51.472800px;}
._12_c00453{margin-left:-8.596800px;}
._2_c00453{margin-left:-3.816000px;}
._3_c00453{margin-left:-2.678400px;}
._a_c00453{margin-left:-1.440000px;}
._4_c00453{width:1.123200px;}
._9_c00453{width:2.152800px;}
._8_c00453{width:3.240000px;}
._0_c00453{width:5.140800px;}
._1_c00453{width:6.753600px;}
._e_c00453{width:8.697600px;}
._13_c00453{width:11.023200px;}
._10_c00453{width:12.866400px;}
._f_c00453{width:14.018400px;}
._7_c00453{width:20.858400px;}
._b_c00453{width:24.451200px;}
._c_c00453{width:25.675200px;}
._d_c00453{width:29.484000px;}
._11_c00453{width:38.851200px;}
._6_c00453{width:50.356800px;}
._5_c00453{width:51.451200px;}
.fc0_c00453{color:rgb(0,0,0);}
.fs0_c00453{font-size:60.120000px;}
.fs1_c00453{font-size:72.000000px;}
.y0_c00453{bottom:0.000000px;}
.y6_c00453{bottom:57.360450px;}
.y5_c00453{bottom:78.060450px;}
.y27_c00453{bottom:130.800450px;}
.y26_c00453{bottom:161.850450px;}
.y25_c00453{bottom:192.900450px;}
.y24_c00453{bottom:223.950450px;}
.y23_c00453{bottom:254.910450px;}
.y22_c00453{bottom:286.050450px;}
.y21_c00453{bottom:317.100450px;}
.y20_c00453{bottom:348.150450px;}
.y1f_c00453{bottom:379.200450px;}
.y1e_c00453{bottom:410.250450px;}
.y1d_c00453{bottom:441.300450px;}
.y1c_c00453{bottom:472.260450px;}
.y1b_c00453{bottom:503.400450px;}
.y1a_c00453{bottom:534.450450px;}
.y19_c00453{bottom:565.500450px;}
.y18_c00453{bottom:596.550450px;}
.y17_c00453{bottom:627.600450px;}
.y16_c00453{bottom:658.560450px;}
.y15_c00453{bottom:689.700450px;}
.y14_c00453{bottom:720.750450px;}
.y13_c00453{bottom:751.800450px;}
.y12_c00453{bottom:782.850450px;}
.y11_c00453{bottom:813.900450px;}
.y10_c00453{bottom:844.950450px;}
.yf_c00453{bottom:876.000450px;}
.ye_c00453{bottom:907.050450px;}
.yd_c00453{bottom:938.100450px;}
.yc_c00453{bottom:969.150450px;}
.yb_c00453{bottom:1000.200450px;}
.ya_c00453{bottom:1031.160450px;}
.y9_c00453{bottom:1062.210450px;}
.y8_c00453{bottom:1093.170450px;}
.y7_c00453{bottom:1124.310450px;}
.y4_c00453{bottom:1144.380657px;}
.y3_c00453{bottom:1161.660648px;}
.y2_c00453{bottom:1178.850459px;}
.y1_c00453{bottom:1196.130450px;}
.h1_c00453{height:52.898555px;}
.h2_c00453{height:63.175781px;}
.h4_c00453{height:63.351562px;}
.h3_c00453{height:64.546875px;}
.h0_c00453{height:1263.000000px;}
.w1_c00453{width:892.500000px;}
.w0_c00453{width:892.830000px;}
.x0_c00453{left:0.000000px;}
.x4_c00453{left:127.620000px;}
.x5_c00453{left:154.620000px;}
.x6_c00453{left:181.620000px;}
.x1_c00453{left:649.620000px;}
.x3_c00453{left:738.450000px;}
.x2_c00453{left:765.450198px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.lse_c00453{letter-spacing:-0.345600pt;}
.ls12_c00453{letter-spacing:-0.057600pt;}
.ls14_c00453{letter-spacing:-0.044800pt;}
.lsb_c00453{letter-spacing:-0.042752pt;}
.ls11_c00453{letter-spacing:-0.025600pt;}
.lsf_c00453{letter-spacing:-0.019200pt;}
.ls13_c00453{letter-spacing:-0.012800pt;}
.ls10_c00453{letter-spacing:-0.006400pt;}
.lsc_c00453{letter-spacing:0.000000pt;}
.ls7_c00453{letter-spacing:0.006400pt;}
.ls4_c00453{letter-spacing:0.012800pt;}
.ls2_c00453{letter-spacing:0.019200pt;}
.ls1_c00453{letter-spacing:0.025600pt;}
.ls8_c00453{letter-spacing:0.032000pt;}
.ls9_c00453{letter-spacing:0.038400pt;}
.ls6_c00453{letter-spacing:0.044800pt;}
.ls3_c00453{letter-spacing:0.051200pt;}
.lsa_c00453{letter-spacing:0.064000pt;}
.lsd_c00453{letter-spacing:0.160000pt;}
.ls15_c00453{letter-spacing:7.680000pt;}
.ls5_c00453{letter-spacing:55.168000pt;}
.ls0_c00453{letter-spacing:55.808000pt;}
.ws2_c00453{word-spacing:-16.038400pt;}
.ws1_c00453{word-spacing:-16.025600pt;}
.ws0_c00453{word-spacing:-16.000000pt;}
.ws9_c00453{word-spacing:-2.963200pt;}
.ws8_c00453{word-spacing:-2.892800pt;}
.wsf_c00453{word-spacing:-2.374400pt;}
.ws10_c00453{word-spacing:-2.182400pt;}
.ws17_c00453{word-spacing:-1.017600pt;}
.ws11_c00453{word-spacing:-0.083200pt;}
.ws1b_c00453{word-spacing:-0.019200pt;}
.wsb_c00453{word-spacing:-0.012800pt;}
.ws4_c00453{word-spacing:0.000000pt;}
.ws3_c00453{word-spacing:0.122912pt;}
.ws1f_c00453{word-spacing:1.600000pt;}
.ws6_c00453{word-spacing:1.900800pt;}
.wse_c00453{word-spacing:2.163200pt;}
.ws1e_c00453{word-spacing:2.176000pt;}
.ws18_c00453{word-spacing:2.886400pt;}
.ws1a_c00453{word-spacing:2.899200pt;}
.ws19_c00453{word-spacing:2.924800pt;}
.wsd_c00453{word-spacing:3.084800pt;}
.wsc_c00453{word-spacing:3.200000pt;}
.ws5_c00453{word-spacing:4.985600pt;}
.ws16_c00453{word-spacing:7.878400pt;}
.ws20_c00453{word-spacing:10.905600pt;}
.ws13_c00453{word-spacing:10.982400pt;}
.ws14_c00453{word-spacing:11.180800pt;}
.ws1c_c00453{word-spacing:12.492800pt;}
.wsa_c00453{word-spacing:18.496000pt;}
.ws12_c00453{word-spacing:22.092800pt;}
.ws15_c00453{word-spacing:26.553600pt;}
.ws1d_c00453{word-spacing:34.534400pt;}
.ws7_c00453{word-spacing:45.753600pt;}
._12_c00453{margin-left:-7.641600pt;}
._2_c00453{margin-left:-3.392000pt;}
._3_c00453{margin-left:-2.380800pt;}
._a_c00453{margin-left:-1.280000pt;}
._4_c00453{width:0.998400pt;}
._9_c00453{width:1.913600pt;}
._8_c00453{width:2.880000pt;}
._0_c00453{width:4.569600pt;}
._1_c00453{width:6.003200pt;}
._e_c00453{width:7.731200pt;}
._13_c00453{width:9.798400pt;}
._10_c00453{width:11.436800pt;}
._f_c00453{width:12.460800pt;}
._7_c00453{width:18.540800pt;}
._b_c00453{width:21.734400pt;}
._c_c00453{width:22.822400pt;}
._d_c00453{width:26.208000pt;}
._11_c00453{width:34.534400pt;}
._6_c00453{width:44.761600pt;}
._5_c00453{width:45.734400pt;}
.fs0_c00453{font-size:53.440000pt;}
.fs1_c00453{font-size:64.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y6_c00453{bottom:50.987067pt;}
.y5_c00453{bottom:69.387067pt;}
.y27_c00453{bottom:116.267067pt;}
.y26_c00453{bottom:143.867067pt;}
.y25_c00453{bottom:171.467067pt;}
.y24_c00453{bottom:199.067067pt;}
.y23_c00453{bottom:226.587067pt;}
.y22_c00453{bottom:254.267067pt;}
.y21_c00453{bottom:281.867067pt;}
.y20_c00453{bottom:309.467067pt;}
.y1f_c00453{bottom:337.067067pt;}
.y1e_c00453{bottom:364.667067pt;}
.y1d_c00453{bottom:392.267067pt;}
.y1c_c00453{bottom:419.787067pt;}
.y1b_c00453{bottom:447.467067pt;}
.y1a_c00453{bottom:475.067067pt;}
.y19_c00453{bottom:502.667067pt;}
.y18_c00453{bottom:530.267067pt;}
.y17_c00453{bottom:557.867067pt;}
.y16_c00453{bottom:585.387067pt;}
.y15_c00453{bottom:613.067067pt;}
.y14_c00453{bottom:640.667067pt;}
.y13_c00453{bottom:668.267067pt;}
.y12_c00453{bottom:695.867067pt;}
.y11_c00453{bottom:723.467067pt;}
.y10_c00453{bottom:751.067067pt;}
.yf_c00453{bottom:778.667067pt;}
.ye_c00453{bottom:806.267067pt;}
.yd_c00453{bottom:833.867067pt;}
.yc_c00453{bottom:861.467067pt;}
.yb_c00453{bottom:889.067067pt;}
.ya_c00453{bottom:916.587067pt;}
.y9_c00453{bottom:944.187067pt;}
.y8_c00453{bottom:971.707067pt;}
.y7_c00453{bottom:999.387067pt;}
.y4_c00453{bottom:1017.227251pt;}
.y3_c00453{bottom:1032.587243pt;}
.y2_c00453{bottom:1047.867075pt;}
.y1_c00453{bottom:1063.227067pt;}
.h1_c00453{height:47.020937pt;}
.h2_c00453{height:56.156250pt;}
.h4_c00453{height:56.312500pt;}
.h3_c00453{height:57.375000pt;}
.h0_c00453{height:1122.666667pt;}
.w1_c00453{width:793.333333pt;}
.w0_c00453{width:793.626667pt;}
.x0_c00453{left:0.000000pt;}
.x4_c00453{left:113.440000pt;}
.x5_c00453{left:137.440000pt;}
.x6_c00453{left:161.440000pt;}
.x1_c00453{left:577.440000pt;}
.x3_c00453{left:656.400000pt;}
.x2_c00453{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20aebaa77131eec3e2e80252.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.095703;font-style:normal;font-weight:normal;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_172a9aaca08677269c65be9f.woff2')format("woff");}.ff2_c00454{font-family:ff2_c00454;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00454;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00454{font-family:ff3_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:ff4_c00454;src:url('chunks/assets/font_bc59a314e19d7cbfa1f9290b.woff2')format("woff");}.ff4_c00454{font-family:ff4_c00454;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00454{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls11_c00454{letter-spacing:-0.102204px;}
.ls16_c00454{letter-spacing:-0.050400px;}
.ls18_c00454{letter-spacing:-0.036000px;}
.ls14_c00454{letter-spacing:-0.028800px;}
.ls13_c00454{letter-spacing:-0.021600px;}
.ls15_c00454{letter-spacing:-0.014400px;}
.ls17_c00454{letter-spacing:-0.007200px;}
.ls12_c00454{letter-spacing:0.000000px;}
.ls6_c00454{letter-spacing:0.007200px;}
.ls3_c00454{letter-spacing:0.014400px;}
.ls8_c00454{letter-spacing:0.021600px;}
.ls1_c00454{letter-spacing:0.028800px;}
.ls5_c00454{letter-spacing:0.036000px;}
.ls2_c00454{letter-spacing:0.043200px;}
.lsb_c00454{letter-spacing:0.050400px;}
.ls4_c00454{letter-spacing:0.064800px;}
.lsd_c00454{letter-spacing:0.072000px;}
.ls7_c00454{letter-spacing:0.079200px;}
.lsa_c00454{letter-spacing:0.086400px;}
.ls10_c00454{letter-spacing:0.093600px;}
.lsc_c00454{letter-spacing:0.098820px;}
.lsf_c00454{letter-spacing:0.100800px;}
.lse_c00454{letter-spacing:0.360000px;}
.ls0_c00454{letter-spacing:62.064000px;}
.ls9_c00454{letter-spacing:62.784000px;}
.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;}
}
.ws3_c00454{word-spacing:-18.079200px;}
.ws1_c00454{word-spacing:-18.036000px;}
.ws0_c00454{word-spacing:-18.000000px;}
.ws2_c00454{word-spacing:-16.568820px;}
.ws10_c00454{word-spacing:-4.053600px;}
.wsf_c00454{word-spacing:-3.909600px;}
.wsa_c00454{word-spacing:-2.944800px;}
.ws12_c00454{word-spacing:-2.246400px;}
.ws1e_c00454{word-spacing:-1.080000px;}
.ws1f_c00454{word-spacing:-1.065600px;}
.ws1d_c00454{word-spacing:-0.352800px;}
.ws13_c00454{word-spacing:-0.014400px;}
.ws5_c00454{word-spacing:0.000000px;}
.ws4_c00454{word-spacing:0.192384px;}
.ws19_c00454{word-spacing:0.324000px;}
.ws1a_c00454{word-spacing:0.374400px;}
.ws9_c00454{word-spacing:5.364000px;}
.wse_c00454{word-spacing:5.983200px;}
.ws8_c00454{word-spacing:7.063200px;}
.ws7_c00454{word-spacing:7.106400px;}
.ws18_c00454{word-spacing:12.830400px;}
.ws17_c00454{word-spacing:12.996000px;}
.ws16_c00454{word-spacing:14.688000px;}
.ws15_c00454{word-spacing:14.752800px;}
.ws6_c00454{word-spacing:15.760800px;}
.ws1b_c00454{word-spacing:16.891200px;}
.ws11_c00454{word-spacing:17.625600px;}
.wsc_c00454{word-spacing:18.597600px;}
.wsb_c00454{word-spacing:18.734400px;}
.ws14_c00454{word-spacing:18.928800px;}
.wsd_c00454{word-spacing:21.204000px;}
.ws1c_c00454{word-spacing:44.985600px;}
._8_c00454{margin-left:-3.960000px;}
._6_c00454{margin-left:-2.894400px;}
._4_c00454{margin-left:-1.065600px;}
._0_c00454{width:1.034064px;}
._5_c00454{width:4.262400px;}
._3_c00454{width:5.385600px;}
._2_c00454{width:7.200000px;}
._c_c00454{width:12.938400px;}
._b_c00454{width:14.594400px;}
._1_c00454{width:15.811200px;}
._9_c00454{width:16.862400px;}
._a_c00454{width:20.008800px;}
._7_c00454{width:21.189600px;}
.fc2_c00454{color:rgb(5,99,193);}
.fc1_c00454{color:rgb(0,0,0);}
.fc0_c00454{color:rgb(32,31,30);}
.fs0_c00454{font-size:60.120000px;}
.fs2_c00454{font-size:65.880000px;}
.fs1_c00454{font-size:72.000000px;}
.y0_c00454{bottom:0.000000px;}
.y5_c00454{bottom:57.360450px;}
.y4_c00454{bottom:78.060450px;}
.y24_c00454{bottom:111.000450px;}
.y23_c00454{bottom:142.050450px;}
.y22_c00454{bottom:184.980450px;}
.y21_c00454{bottom:216.120450px;}
.y20_c00454{bottom:247.170450px;}
.y1f_c00454{bottom:278.220450px;}
.y1e_c00454{bottom:309.270450px;}
.y1d_c00454{bottom:340.320450px;}
.y1c_c00454{bottom:378.750450px;}
.y1b_c00454{bottom:409.890450px;}
.y1a_c00454{bottom:440.940450px;}
.y19_c00454{bottom:479.460450px;}
.y18_c00454{bottom:510.600450px;}
.y17_c00454{bottom:549.030450px;}
.y16_c00454{bottom:580.170450px;}
.y15_c00454{bottom:618.600450px;}
.y14_c00454{bottom:649.740450px;}
.y13_c00454{bottom:688.170450px;}
.y12_c00454{bottom:719.310450px;}
.y11_c00454{bottom:750.360450px;}
.y10_c00454{bottom:788.880450px;}
.yf_c00454{bottom:820.020450px;}
.ye_c00454{bottom:851.070450px;}
.yd_c00454{bottom:894.000450px;}
.yc_c00454{bottom:925.140450px;}
.yb_c00454{bottom:956.190450px;}
.ya_c00454{bottom:987.240450px;}
.y9_c00454{bottom:1018.290450px;}
.y8_c00454{bottom:1049.340450px;}
.y7_c00454{bottom:1080.390450px;}
.y6_c00454{bottom:1111.440450px;}
.y3_c00454{bottom:1132.140450px;}
.y2_c00454{bottom:1165.441023px;}
.y1_c00454{bottom:1196.040600px;}
.h1_c00454{height:52.898555px;}
.h2_c00454{height:63.175781px;}
.h4_c00454{height:63.351562px;}
.h3_c00454{height:64.546875px;}
.h0_c00454{height:1263.000000px;}
.w1_c00454{width:892.500000px;}
.w0_c00454{width:892.830000px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:127.620000px;}
.x3_c00454{left:154.350000px;}
.x4_c00454{left:181.170000px;}
.x2_c00454{left:738.450000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls11_c00454{letter-spacing:-0.090848pt;}
.ls16_c00454{letter-spacing:-0.044800pt;}
.ls18_c00454{letter-spacing:-0.032000pt;}
.ls14_c00454{letter-spacing:-0.025600pt;}
.ls13_c00454{letter-spacing:-0.019200pt;}
.ls15_c00454{letter-spacing:-0.012800pt;}
.ls17_c00454{letter-spacing:-0.006400pt;}
.ls12_c00454{letter-spacing:0.000000pt;}
.ls6_c00454{letter-spacing:0.006400pt;}
.ls3_c00454{letter-spacing:0.012800pt;}
.ls8_c00454{letter-spacing:0.019200pt;}
.ls1_c00454{letter-spacing:0.025600pt;}
.ls5_c00454{letter-spacing:0.032000pt;}
.ls2_c00454{letter-spacing:0.038400pt;}
.lsb_c00454{letter-spacing:0.044800pt;}
.ls4_c00454{letter-spacing:0.057600pt;}
.lsd_c00454{letter-spacing:0.064000pt;}
.ls7_c00454{letter-spacing:0.070400pt;}
.lsa_c00454{letter-spacing:0.076800pt;}
.ls10_c00454{letter-spacing:0.083200pt;}
.lsc_c00454{letter-spacing:0.087840pt;}
.lsf_c00454{letter-spacing:0.089600pt;}
.lse_c00454{letter-spacing:0.320000pt;}
.ls0_c00454{letter-spacing:55.168000pt;}
.ls9_c00454{letter-spacing:55.808000pt;}
.ws3_c00454{word-spacing:-16.070400pt;}
.ws1_c00454{word-spacing:-16.032000pt;}
.ws0_c00454{word-spacing:-16.000000pt;}
.ws2_c00454{word-spacing:-14.727840pt;}
.ws10_c00454{word-spacing:-3.603200pt;}
.wsf_c00454{word-spacing:-3.475200pt;}
.wsa_c00454{word-spacing:-2.617600pt;}
.ws12_c00454{word-spacing:-1.996800pt;}
.ws1e_c00454{word-spacing:-0.960000pt;}
.ws1f_c00454{word-spacing:-0.947200pt;}
.ws1d_c00454{word-spacing:-0.313600pt;}
.ws13_c00454{word-spacing:-0.012800pt;}
.ws5_c00454{word-spacing:0.000000pt;}
.ws4_c00454{word-spacing:0.171008pt;}
.ws19_c00454{word-spacing:0.288000pt;}
.ws1a_c00454{word-spacing:0.332800pt;}
.ws9_c00454{word-spacing:4.768000pt;}
.wse_c00454{word-spacing:5.318400pt;}
.ws8_c00454{word-spacing:6.278400pt;}
.ws7_c00454{word-spacing:6.316800pt;}
.ws18_c00454{word-spacing:11.404800pt;}
.ws17_c00454{word-spacing:11.552000pt;}
.ws16_c00454{word-spacing:13.056000pt;}
.ws15_c00454{word-spacing:13.113600pt;}
.ws6_c00454{word-spacing:14.009600pt;}
.ws1b_c00454{word-spacing:15.014400pt;}
.ws11_c00454{word-spacing:15.667200pt;}
.wsc_c00454{word-spacing:16.531200pt;}
.wsb_c00454{word-spacing:16.652800pt;}
.ws14_c00454{word-spacing:16.825600pt;}
.wsd_c00454{word-spacing:18.848000pt;}
.ws1c_c00454{word-spacing:39.987200pt;}
._8_c00454{margin-left:-3.520000pt;}
._6_c00454{margin-left:-2.572800pt;}
._4_c00454{margin-left:-0.947200pt;}
._0_c00454{width:0.919168pt;}
._5_c00454{width:3.788800pt;}
._3_c00454{width:4.787200pt;}
._2_c00454{width:6.400000pt;}
._c_c00454{width:11.500800pt;}
._b_c00454{width:12.972800pt;}
._1_c00454{width:14.054400pt;}
._9_c00454{width:14.988800pt;}
._a_c00454{width:17.785600pt;}
._7_c00454{width:18.835200pt;}
.fs0_c00454{font-size:53.440000pt;}
.fs2_c00454{font-size:58.560000pt;}
.fs1_c00454{font-size:64.000000pt;}
.y0_c00454{bottom:0.000000pt;}
.y5_c00454{bottom:50.987067pt;}
.y4_c00454{bottom:69.387067pt;}
.y24_c00454{bottom:98.667067pt;}
.y23_c00454{bottom:126.267067pt;}
.y22_c00454{bottom:164.427067pt;}
.y21_c00454{bottom:192.107067pt;}
.y20_c00454{bottom:219.707067pt;}
.y1f_c00454{bottom:247.307067pt;}
.y1e_c00454{bottom:274.907067pt;}
.y1d_c00454{bottom:302.507067pt;}
.y1c_c00454{bottom:336.667067pt;}
.y1b_c00454{bottom:364.347067pt;}
.y1a_c00454{bottom:391.947067pt;}
.y19_c00454{bottom:426.187067pt;}
.y18_c00454{bottom:453.867067pt;}
.y17_c00454{bottom:488.027067pt;}
.y16_c00454{bottom:515.707067pt;}
.y15_c00454{bottom:549.867067pt;}
.y14_c00454{bottom:577.547067pt;}
.y13_c00454{bottom:611.707067pt;}
.y12_c00454{bottom:639.387067pt;}
.y11_c00454{bottom:666.987067pt;}
.y10_c00454{bottom:701.227067pt;}
.yf_c00454{bottom:728.907067pt;}
.ye_c00454{bottom:756.507067pt;}
.yd_c00454{bottom:794.667067pt;}
.yc_c00454{bottom:822.347067pt;}
.yb_c00454{bottom:849.947067pt;}
.ya_c00454{bottom:877.547067pt;}
.y9_c00454{bottom:905.147067pt;}
.y8_c00454{bottom:932.747067pt;}
.y7_c00454{bottom:960.347067pt;}
.y6_c00454{bottom:987.947067pt;}
.y3_c00454{bottom:1006.347067pt;}
.y2_c00454{bottom:1035.947576pt;}
.y1_c00454{bottom:1063.147200pt;}
.h1_c00454{height:47.020937pt;}
.h2_c00454{height:56.156250pt;}
.h4_c00454{height:56.312500pt;}
.h3_c00454{height:57.375000pt;}
.h0_c00454{height:1122.666667pt;}
.w1_c00454{width:793.333333pt;}
.w0_c00454{width:793.626667pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:113.440000pt;}
.x3_c00454{left:137.200000pt;}
.x4_c00454{left:161.040000pt;}
.x2_c00454{left:656.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_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_547c1e85073ea0e6bad209ee.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.095703;font-style:normal;font-weight:normal;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_1ff50995bcf257f9e06e0e4c.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00455{font-family:ff3_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:ff4_c00455;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff4_c00455{font-family:ff4_c00455;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00455;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff5_c00455{font-family:ff5_c00455;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls14_c00455{letter-spacing:-0.050400px;}
.lsf_c00455{letter-spacing:-0.048096px;}
.ls16_c00455{letter-spacing:-0.043200px;}
.ls15_c00455{letter-spacing:-0.028800px;}
.ls13_c00455{letter-spacing:-0.021600px;}
.ls11_c00455{letter-spacing:-0.014400px;}
.ls12_c00455{letter-spacing:-0.007200px;}
.ls10_c00455{letter-spacing:0.000000px;}
.ls1_c00455{letter-spacing:0.007200px;}
.ls3_c00455{letter-spacing:0.014400px;}
.ls2_c00455{letter-spacing:0.021600px;}
.ls5_c00455{letter-spacing:0.028800px;}
.ls9_c00455{letter-spacing:0.036000px;}
.lsc_c00455{letter-spacing:0.043200px;}
.lsa_c00455{letter-spacing:0.050400px;}
.ls7_c00455{letter-spacing:0.057600px;}
.lse_c00455{letter-spacing:0.064800px;}
.ls8_c00455{letter-spacing:0.072000px;}
.lsb_c00455{letter-spacing:0.079200px;}
.lsd_c00455{letter-spacing:0.108000px;}
.ls6_c00455{letter-spacing:54.864000px;}
.ls4_c00455{letter-spacing:62.064000px;}
.ls0_c00455{letter-spacing:62.784000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00455{word-spacing:-72.000000px;}
.ws2_c00455{word-spacing:-18.021600px;}
.ws0_c00455{word-spacing:-18.000000px;}
.ws8_c00455{word-spacing:-4.377600px;}
.ws11_c00455{word-spacing:-3.268800px;}
.wse_c00455{word-spacing:-1.461600px;}
.wsb_c00455{word-spacing:-0.756000px;}
.ws12_c00455{word-spacing:-0.172800px;}
.ws5_c00455{word-spacing:-0.021600px;}
.ws7_c00455{word-spacing:-0.007200px;}
.ws4_c00455{word-spacing:0.000000px;}
.ws3_c00455{word-spacing:0.138276px;}
.wsf_c00455{word-spacing:0.756000px;}
.ws13_c00455{word-spacing:1.036800px;}
.ws10_c00455{word-spacing:2.844000px;}
.ws18_c00455{word-spacing:7.948800px;}
.ws17_c00455{word-spacing:7.970400px;}
.ws6_c00455{word-spacing:10.432800px;}
.ws9_c00455{word-spacing:10.800000px;}
.ws14_c00455{word-spacing:12.218400px;}
.wsd_c00455{word-spacing:13.125600px;}
.wsc_c00455{word-spacing:13.284000px;}
.ws15_c00455{word-spacing:19.677600px;}
.ws16_c00455{word-spacing:19.821600px;}
.wsa_c00455{word-spacing:21.542400px;}
._2_c00455{margin-left:-4.334400px;}
._6_c00455{margin-left:-2.620800px;}
._0_c00455{margin-left:-1.483200px;}
._7_c00455{width:1.051200px;}
._8_c00455{width:2.844000px;}
._a_c00455{width:7.927200px;}
._b_c00455{width:9.050400px;}
._1_c00455{width:10.454400px;}
._3_c00455{width:11.462400px;}
._5_c00455{width:13.298400px;}
._9_c00455{width:19.792800px;}
._4_c00455{width:20.966400px;}
.fc1_c00455{color:rgb(0,0,255);}
.fc0_c00455{color:rgb(0,0,0);}
.fs0_c00455{font-size:60.120000px;}
.fs1_c00455{font-size:72.000000px;}
.y0_c00455{bottom:0.000000px;}
.y6_c00455{bottom:57.360450px;}
.y5_c00455{bottom:78.060450px;}
.y26_c00455{bottom:156.720450px;}
.y25_c00455{bottom:187.770450px;}
.y24_c00455{bottom:218.820450px;}
.y23_c00455{bottom:249.870450px;}
.y22_c00455{bottom:280.920450px;}
.y21_c00455{bottom:311.970450px;}
.y20_c00455{bottom:343.020450px;}
.y1f_c00455{bottom:374.070450px;}
.y1e_c00455{bottom:405.120450px;}
.y1d_c00455{bottom:436.170450px;}
.y1c_c00455{bottom:467.220450px;}
.y1b_c00455{bottom:498.270600px;}
.y1a_c00455{bottom:529.320450px;}
.y19_c00455{bottom:560.370450px;}
.y18_c00455{bottom:591.330450px;}
.y17_c00455{bottom:622.380450px;}
.y16_c00455{bottom:653.430450px;}
.y15_c00455{bottom:685.830450px;}
.y14_c00455{bottom:716.880450px;}
.y13_c00455{bottom:747.840450px;}
.y12_c00455{bottom:780.240450px;}
.y11_c00455{bottom:811.290450px;}
.y10_c00455{bottom:842.250450px;}
.yf_c00455{bottom:874.650450px;}
.ye_c00455{bottom:905.700450px;}
.yd_c00455{bottom:936.750450px;}
.yc_c00455{bottom:967.800450px;}
.yb_c00455{bottom:1000.200450px;}
.ya_c00455{bottom:1031.160450px;}
.y9_c00455{bottom:1062.210450px;}
.y8_c00455{bottom:1093.260450px;}
.y7_c00455{bottom:1124.310450px;}
.y4_c00455{bottom:1144.380657px;}
.y3_c00455{bottom:1161.660648px;}
.y2_c00455{bottom:1178.850459px;}
.y1_c00455{bottom:1196.130450px;}
.h1_c00455{height:52.898555px;}
.h2_c00455{height:63.175781px;}
.h4_c00455{height:63.351562px;}
.h5_c00455{height:63.949219px;}
.h3_c00455{height:64.546875px;}
.h0_c00455{height:1263.000000px;}
.w1_c00455{width:892.500000px;}
.w0_c00455{width:892.830000px;}
.x0_c00455{left:0.000000px;}
.x4_c00455{left:127.620000px;}
.x5_c00455{left:154.620000px;}
.x6_c00455{left:181.620000px;}
.x1_c00455{left:649.620000px;}
.x3_c00455{left:738.450000px;}
.x2_c00455{left:765.450198px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls14_c00455{letter-spacing:-0.044800pt;}
.lsf_c00455{letter-spacing:-0.042752pt;}
.ls16_c00455{letter-spacing:-0.038400pt;}
.ls15_c00455{letter-spacing:-0.025600pt;}
.ls13_c00455{letter-spacing:-0.019200pt;}
.ls11_c00455{letter-spacing:-0.012800pt;}
.ls12_c00455{letter-spacing:-0.006400pt;}
.ls10_c00455{letter-spacing:0.000000pt;}
.ls1_c00455{letter-spacing:0.006400pt;}
.ls3_c00455{letter-spacing:0.012800pt;}
.ls2_c00455{letter-spacing:0.019200pt;}
.ls5_c00455{letter-spacing:0.025600pt;}
.ls9_c00455{letter-spacing:0.032000pt;}
.lsc_c00455{letter-spacing:0.038400pt;}
.lsa_c00455{letter-spacing:0.044800pt;}
.ls7_c00455{letter-spacing:0.051200pt;}
.lse_c00455{letter-spacing:0.057600pt;}
.ls8_c00455{letter-spacing:0.064000pt;}
.lsb_c00455{letter-spacing:0.070400pt;}
.lsd_c00455{letter-spacing:0.096000pt;}
.ls6_c00455{letter-spacing:48.768000pt;}
.ls4_c00455{letter-spacing:55.168000pt;}
.ls0_c00455{letter-spacing:55.808000pt;}
.ws1_c00455{word-spacing:-64.000000pt;}
.ws2_c00455{word-spacing:-16.019200pt;}
.ws0_c00455{word-spacing:-16.000000pt;}
.ws8_c00455{word-spacing:-3.891200pt;}
.ws11_c00455{word-spacing:-2.905600pt;}
.wse_c00455{word-spacing:-1.299200pt;}
.wsb_c00455{word-spacing:-0.672000pt;}
.ws12_c00455{word-spacing:-0.153600pt;}
.ws5_c00455{word-spacing:-0.019200pt;}
.ws7_c00455{word-spacing:-0.006400pt;}
.ws4_c00455{word-spacing:0.000000pt;}
.ws3_c00455{word-spacing:0.122912pt;}
.wsf_c00455{word-spacing:0.672000pt;}
.ws13_c00455{word-spacing:0.921600pt;}
.ws10_c00455{word-spacing:2.528000pt;}
.ws18_c00455{word-spacing:7.065600pt;}
.ws17_c00455{word-spacing:7.084800pt;}
.ws6_c00455{word-spacing:9.273600pt;}
.ws9_c00455{word-spacing:9.600000pt;}
.ws14_c00455{word-spacing:10.860800pt;}
.wsd_c00455{word-spacing:11.667200pt;}
.wsc_c00455{word-spacing:11.808000pt;}
.ws15_c00455{word-spacing:17.491200pt;}
.ws16_c00455{word-spacing:17.619200pt;}
.wsa_c00455{word-spacing:19.148800pt;}
._2_c00455{margin-left:-3.852800pt;}
._6_c00455{margin-left:-2.329600pt;}
._0_c00455{margin-left:-1.318400pt;}
._7_c00455{width:0.934400pt;}
._8_c00455{width:2.528000pt;}
._a_c00455{width:7.046400pt;}
._b_c00455{width:8.044800pt;}
._1_c00455{width:9.292800pt;}
._3_c00455{width:10.188800pt;}
._5_c00455{width:11.820800pt;}
._9_c00455{width:17.593600pt;}
._4_c00455{width:18.636800pt;}
.fs0_c00455{font-size:53.440000pt;}
.fs1_c00455{font-size:64.000000pt;}
.y0_c00455{bottom:0.000000pt;}
.y6_c00455{bottom:50.987067pt;}
.y5_c00455{bottom:69.387067pt;}
.y26_c00455{bottom:139.307067pt;}
.y25_c00455{bottom:166.907067pt;}
.y24_c00455{bottom:194.507067pt;}
.y23_c00455{bottom:222.107067pt;}
.y22_c00455{bottom:249.707067pt;}
.y21_c00455{bottom:277.307067pt;}
.y20_c00455{bottom:304.907067pt;}
.y1f_c00455{bottom:332.507067pt;}
.y1e_c00455{bottom:360.107067pt;}
.y1d_c00455{bottom:387.707067pt;}
.y1c_c00455{bottom:415.307067pt;}
.y1b_c00455{bottom:442.907200pt;}
.y1a_c00455{bottom:470.507067pt;}
.y19_c00455{bottom:498.107067pt;}
.y18_c00455{bottom:525.627067pt;}
.y17_c00455{bottom:553.227067pt;}
.y16_c00455{bottom:580.827067pt;}
.y15_c00455{bottom:609.627067pt;}
.y14_c00455{bottom:637.227067pt;}
.y13_c00455{bottom:664.747067pt;}
.y12_c00455{bottom:693.547067pt;}
.y11_c00455{bottom:721.147067pt;}
.y10_c00455{bottom:748.667067pt;}
.yf_c00455{bottom:777.467067pt;}
.ye_c00455{bottom:805.067067pt;}
.yd_c00455{bottom:832.667067pt;}
.yc_c00455{bottom:860.267067pt;}
.yb_c00455{bottom:889.067067pt;}
.ya_c00455{bottom:916.587067pt;}
.y9_c00455{bottom:944.187067pt;}
.y8_c00455{bottom:971.787067pt;}
.y7_c00455{bottom:999.387067pt;}
.y4_c00455{bottom:1017.227251pt;}
.y3_c00455{bottom:1032.587243pt;}
.y2_c00455{bottom:1047.867075pt;}
.y1_c00455{bottom:1063.227067pt;}
.h1_c00455{height:47.020937pt;}
.h2_c00455{height:56.156250pt;}
.h4_c00455{height:56.312500pt;}
.h5_c00455{height:56.843750pt;}
.h3_c00455{height:57.375000pt;}
.h0_c00455{height:1122.666667pt;}
.w1_c00455{width:793.333333pt;}
.w0_c00455{width:793.626667pt;}
.x0_c00455{left:0.000000pt;}
.x4_c00455{left:113.440000pt;}
.x5_c00455{left:137.440000pt;}
.x6_c00455{left:161.440000pt;}
.x1_c00455{left:577.440000pt;}
.x3_c00455{left:656.400000pt;}
.x2_c00455{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7bc691d2f62bd1e755cd9b9b.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.095703;font-style:normal;font-weight:normal;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_e052c932ee67ecec9bff171d.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00456;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00456{font-family:ff3_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;}
.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;}
.ls12_c00456{letter-spacing:-0.180000px;}
.lsd_c00456{letter-spacing:-0.102204px;}
.ls11_c00456{letter-spacing:-0.050400px;}
.ls14_c00456{letter-spacing:-0.036000px;}
.ls13_c00456{letter-spacing:-0.021600px;}
.ls10_c00456{letter-spacing:-0.014400px;}
.lsf_c00456{letter-spacing:-0.007200px;}
.lse_c00456{letter-spacing:0.000000px;}
.ls4_c00456{letter-spacing:0.007200px;}
.ls6_c00456{letter-spacing:0.014400px;}
.ls7_c00456{letter-spacing:0.021600px;}
.ls3_c00456{letter-spacing:0.028800px;}
.ls1_c00456{letter-spacing:0.043200px;}
.lsa_c00456{letter-spacing:0.050400px;}
.lsb_c00456{letter-spacing:0.057600px;}
.ls2_c00456{letter-spacing:0.064800px;}
.lsc_c00456{letter-spacing:0.072000px;}
.ls9_c00456{letter-spacing:0.079200px;}
.ls8_c00456{letter-spacing:0.086400px;}
.ls0_c00456{letter-spacing:62.064000px;}
.ls5_c00456{letter-spacing:62.784000px;}
.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:-18.000000px;}
.ws1_c00456{word-spacing:-17.949600px;}
.ws22_c00456{word-spacing:-3.607200px;}
.ws21_c00456{word-spacing:-3.355200px;}
.ws13_c00456{word-spacing:-1.915200px;}
.ws12_c00456{word-spacing:-1.857600px;}
.ws14_c00456{word-spacing:-1.800000px;}
.ws17_c00456{word-spacing:-0.122400px;}
.ws1e_c00456{word-spacing:-0.050400px;}
.ws8_c00456{word-spacing:-0.028800px;}
.wsb_c00456{word-spacing:-0.014400px;}
.ws9_c00456{word-spacing:-0.007200px;}
.ws3_c00456{word-spacing:0.000000px;}
.ws2_c00456{word-spacing:0.192384px;}
.wsc_c00456{word-spacing:0.878400px;}
.wsd_c00456{word-spacing:1.008000px;}
.ws4_c00456{word-spacing:1.065600px;}
.ws1d_c00456{word-spacing:1.411200px;}
.wsa_c00456{word-spacing:2.433600px;}
.ws18_c00456{word-spacing:2.800800px;}
.wse_c00456{word-spacing:3.225600px;}
.ws1f_c00456{word-spacing:4.917600px;}
.ws20_c00456{word-spacing:5.090400px;}
.ws11_c00456{word-spacing:6.753600px;}
.ws7_c00456{word-spacing:9.972000px;}
.ws5_c00456{word-spacing:9.993600px;}
.ws6_c00456{word-spacing:10.015200px;}
.ws16_c00456{word-spacing:10.713600px;}
.ws1c_c00456{word-spacing:18.892800px;}
.ws1b_c00456{word-spacing:18.979200px;}
.ws1a_c00456{word-spacing:19.087200px;}
.ws10_c00456{word-spacing:21.571200px;}
.wsf_c00456{word-spacing:23.371200px;}
.ws19_c00456{word-spacing:51.472800px;}
.ws15_c00456{word-spacing:130.320000px;}
._c_c00456{margin-left:-3.938400px;}
._8_c00456{margin-left:-2.764800px;}
._1_c00456{margin-left:-1.353600px;}
._0_c00456{width:1.034064px;}
._2_c00456{width:2.505600px;}
._3_c00456{width:3.974400px;}
._b_c00456{width:5.032800px;}
._5_c00456{width:6.825600px;}
._9_c00456{width:8.632800px;}
._7_c00456{width:10.771200px;}
._4_c00456{width:23.378400px;}
._a_c00456{width:51.436800px;}
._6_c00456{width:130.140000px;}
.fc2_c00456{color:rgb(5,99,193);}
.fc1_c00456{color:rgb(0,0,0);}
.fc0_c00456{color:rgb(32,31,30);}
.fs0_c00456{font-size:60.120000px;}
.fs1_c00456{font-size:72.000000px;}
.y0_c00456{bottom:0.000000px;}
.y5_c00456{bottom:57.360450px;}
.y4_c00456{bottom:78.060450px;}
.y24_c00456{bottom:138.000600px;}
.y23_c00456{bottom:169.050600px;}
.y22_c00456{bottom:200.100600px;}
.y21_c00456{bottom:238.530600px;}
.y20_c00456{bottom:269.670600px;}
.y1f_c00456{bottom:312.600600px;}
.y1e_c00456{bottom:343.650600px;}
.y1d_c00456{bottom:374.790600px;}
.y1c_c00456{bottom:413.310450px;}
.y1b_c00456{bottom:444.450450px;}
.y1a_c00456{bottom:475.500450px;}
.y19_c00456{bottom:513.930450px;}
.y18_c00456{bottom:544.980450px;}
.y17_c00456{bottom:583.590450px;}
.y16_c00456{bottom:614.640450px;}
.y15_c00456{bottom:645.690450px;}
.y14_c00456{bottom:676.740450px;}
.y13_c00456{bottom:707.700450px;}
.y12_c00456{bottom:738.840450px;}
.y11_c00456{bottom:769.890450px;}
.y10_c00456{bottom:800.940450px;}
.yf_c00456{bottom:831.990450px;}
.ye_c00456{bottom:863.040450px;}
.yd_c00456{bottom:894.090450px;}
.yc_c00456{bottom:925.140450px;}
.yb_c00456{bottom:956.190450px;}
.ya_c00456{bottom:987.240450px;}
.y9_c00456{bottom:1018.290450px;}
.y8_c00456{bottom:1049.340450px;}
.y7_c00456{bottom:1080.300450px;}
.y6_c00456{bottom:1111.440450px;}
.y3_c00456{bottom:1132.140450px;}
.y2_c00456{bottom:1165.441023px;}
.y1_c00456{bottom:1196.040600px;}
.h1_c00456{height:52.898555px;}
.h2_c00456{height:63.175781px;}
.h4_c00456{height:63.351562px;}
.h3_c00456{height:64.546875px;}
.h0_c00456{height:1263.000000px;}
.w1_c00456{width:892.500000px;}
.w0_c00456{width:892.830000px;}
.x0_c00456{left:0.000000px;}
.x1_c00456{left:127.620000px;}
.x3_c00456{left:154.350000px;}
.x4_c00456{left:181.170000px;}
.x2_c00456{left:738.450000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls12_c00456{letter-spacing:-0.160000pt;}
.lsd_c00456{letter-spacing:-0.090848pt;}
.ls11_c00456{letter-spacing:-0.044800pt;}
.ls14_c00456{letter-spacing:-0.032000pt;}
.ls13_c00456{letter-spacing:-0.019200pt;}
.ls10_c00456{letter-spacing:-0.012800pt;}
.lsf_c00456{letter-spacing:-0.006400pt;}
.lse_c00456{letter-spacing:0.000000pt;}
.ls4_c00456{letter-spacing:0.006400pt;}
.ls6_c00456{letter-spacing:0.012800pt;}
.ls7_c00456{letter-spacing:0.019200pt;}
.ls3_c00456{letter-spacing:0.025600pt;}
.ls1_c00456{letter-spacing:0.038400pt;}
.lsa_c00456{letter-spacing:0.044800pt;}
.lsb_c00456{letter-spacing:0.051200pt;}
.ls2_c00456{letter-spacing:0.057600pt;}
.lsc_c00456{letter-spacing:0.064000pt;}
.ls9_c00456{letter-spacing:0.070400pt;}
.ls8_c00456{letter-spacing:0.076800pt;}
.ls0_c00456{letter-spacing:55.168000pt;}
.ls5_c00456{letter-spacing:55.808000pt;}
.ws0_c00456{word-spacing:-16.000000pt;}
.ws1_c00456{word-spacing:-15.955200pt;}
.ws22_c00456{word-spacing:-3.206400pt;}
.ws21_c00456{word-spacing:-2.982400pt;}
.ws13_c00456{word-spacing:-1.702400pt;}
.ws12_c00456{word-spacing:-1.651200pt;}
.ws14_c00456{word-spacing:-1.600000pt;}
.ws17_c00456{word-spacing:-0.108800pt;}
.ws1e_c00456{word-spacing:-0.044800pt;}
.ws8_c00456{word-spacing:-0.025600pt;}
.wsb_c00456{word-spacing:-0.012800pt;}
.ws9_c00456{word-spacing:-0.006400pt;}
.ws3_c00456{word-spacing:0.000000pt;}
.ws2_c00456{word-spacing:0.171008pt;}
.wsc_c00456{word-spacing:0.780800pt;}
.wsd_c00456{word-spacing:0.896000pt;}
.ws4_c00456{word-spacing:0.947200pt;}
.ws1d_c00456{word-spacing:1.254400pt;}
.wsa_c00456{word-spacing:2.163200pt;}
.ws18_c00456{word-spacing:2.489600pt;}
.wse_c00456{word-spacing:2.867200pt;}
.ws1f_c00456{word-spacing:4.371200pt;}
.ws20_c00456{word-spacing:4.524800pt;}
.ws11_c00456{word-spacing:6.003200pt;}
.ws7_c00456{word-spacing:8.864000pt;}
.ws5_c00456{word-spacing:8.883200pt;}
.ws6_c00456{word-spacing:8.902400pt;}
.ws16_c00456{word-spacing:9.523200pt;}
.ws1c_c00456{word-spacing:16.793600pt;}
.ws1b_c00456{word-spacing:16.870400pt;}
.ws1a_c00456{word-spacing:16.966400pt;}
.ws10_c00456{word-spacing:19.174400pt;}
.wsf_c00456{word-spacing:20.774400pt;}
.ws19_c00456{word-spacing:45.753600pt;}
.ws15_c00456{word-spacing:115.840000pt;}
._c_c00456{margin-left:-3.500800pt;}
._8_c00456{margin-left:-2.457600pt;}
._1_c00456{margin-left:-1.203200pt;}
._0_c00456{width:0.919168pt;}
._2_c00456{width:2.227200pt;}
._3_c00456{width:3.532800pt;}
._b_c00456{width:4.473600pt;}
._5_c00456{width:6.067200pt;}
._9_c00456{width:7.673600pt;}
._7_c00456{width:9.574400pt;}
._4_c00456{width:20.780800pt;}
._a_c00456{width:45.721600pt;}
._6_c00456{width:115.680000pt;}
.fs0_c00456{font-size:53.440000pt;}
.fs1_c00456{font-size:64.000000pt;}
.y0_c00456{bottom:0.000000pt;}
.y5_c00456{bottom:50.987067pt;}
.y4_c00456{bottom:69.387067pt;}
.y24_c00456{bottom:122.667200pt;}
.y23_c00456{bottom:150.267200pt;}
.y22_c00456{bottom:177.867200pt;}
.y21_c00456{bottom:212.027200pt;}
.y20_c00456{bottom:239.707200pt;}
.y1f_c00456{bottom:277.867200pt;}
.y1e_c00456{bottom:305.467200pt;}
.y1d_c00456{bottom:333.147200pt;}
.y1c_c00456{bottom:367.387067pt;}
.y1b_c00456{bottom:395.067067pt;}
.y1a_c00456{bottom:422.667067pt;}
.y19_c00456{bottom:456.827067pt;}
.y18_c00456{bottom:484.427067pt;}
.y17_c00456{bottom:518.747067pt;}
.y16_c00456{bottom:546.347067pt;}
.y15_c00456{bottom:573.947067pt;}
.y14_c00456{bottom:601.547067pt;}
.y13_c00456{bottom:629.067067pt;}
.y12_c00456{bottom:656.747067pt;}
.y11_c00456{bottom:684.347067pt;}
.y10_c00456{bottom:711.947067pt;}
.yf_c00456{bottom:739.547067pt;}
.ye_c00456{bottom:767.147067pt;}
.yd_c00456{bottom:794.747067pt;}
.yc_c00456{bottom:822.347067pt;}
.yb_c00456{bottom:849.947067pt;}
.ya_c00456{bottom:877.547067pt;}
.y9_c00456{bottom:905.147067pt;}
.y8_c00456{bottom:932.747067pt;}
.y7_c00456{bottom:960.267067pt;}
.y6_c00456{bottom:987.947067pt;}
.y3_c00456{bottom:1006.347067pt;}
.y2_c00456{bottom:1035.947576pt;}
.y1_c00456{bottom:1063.147200pt;}
.h1_c00456{height:47.020937pt;}
.h2_c00456{height:56.156250pt;}
.h4_c00456{height:56.312500pt;}
.h3_c00456{height:57.375000pt;}
.h0_c00456{height:1122.666667pt;}
.w1_c00456{width:793.333333pt;}
.w0_c00456{width:793.626667pt;}
.x0_c00456{left:0.000000pt;}
.x1_c00456{left:113.440000pt;}
.x3_c00456{left:137.200000pt;}
.x4_c00456{left:161.040000pt;}
.x2_c00456{left:656.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_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_70f0882493d1790a459f6342.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00457;src:url('chunks/assets/font_a35849aa03ecb2f479c1f331.woff2')format("woff");}.ff2_c00457{font-family:ff2_c00457;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00457;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00457{font-family:ff3_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;}
.ls11_c00457{letter-spacing:-0.072000px;}
.ls14_c00457{letter-spacing:-0.050400px;}
.lsd_c00457{letter-spacing:-0.048096px;}
.ls10_c00457{letter-spacing:-0.043200px;}
.ls15_c00457{letter-spacing:-0.028800px;}
.ls13_c00457{letter-spacing:-0.021600px;}
.ls12_c00457{letter-spacing:-0.014400px;}
.lsf_c00457{letter-spacing:-0.007200px;}
.lse_c00457{letter-spacing:0.000000px;}
.ls3_c00457{letter-spacing:0.007200px;}
.ls1_c00457{letter-spacing:0.014400px;}
.ls5_c00457{letter-spacing:0.021600px;}
.ls4_c00457{letter-spacing:0.028800px;}
.ls7_c00457{letter-spacing:0.036000px;}
.lsb_c00457{letter-spacing:0.043200px;}
.ls2_c00457{letter-spacing:0.050400px;}
.lsa_c00457{letter-spacing:0.057600px;}
.ls8_c00457{letter-spacing:0.064800px;}
.lsc_c00457{letter-spacing:0.086400px;}
.ls9_c00457{letter-spacing:0.100800px;}
.ls0_c00457{letter-spacing:62.064000px;}
.ls6_c00457{letter-spacing:62.784000px;}
.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;}
}
.ws1_c00457{word-spacing:-18.086400px;}
.ws0_c00457{word-spacing:-18.000000px;}
.ws1b_c00457{word-spacing:-0.388800px;}
.ws14_c00457{word-spacing:-0.072000px;}
.ws16_c00457{word-spacing:-0.007200px;}
.ws3_c00457{word-spacing:0.000000px;}
.ws2_c00457{word-spacing:0.138276px;}
.ws8_c00457{word-spacing:0.720000px;}
.ws19_c00457{word-spacing:1.274400px;}
.ws4_c00457{word-spacing:2.001600px;}
.ws7_c00457{word-spacing:3.571200px;}
.ws9_c00457{word-spacing:4.312800px;}
.ws17_c00457{word-spacing:6.393600px;}
.ws18_c00457{word-spacing:6.508800px;}
.ws5_c00457{word-spacing:8.143200px;}
.ws6_c00457{word-spacing:8.280000px;}
.wsc_c00457{word-spacing:8.647200px;}
.wsd_c00457{word-spacing:8.654400px;}
.wsa_c00457{word-spacing:8.992800px;}
.ws12_c00457{word-spacing:12.844800px;}
.ws11_c00457{word-spacing:12.945600px;}
.ws13_c00457{word-spacing:12.967200px;}
.ws10_c00457{word-spacing:13.240800px;}
.wsf_c00457{word-spacing:14.961600px;}
.ws1c_c00457{word-spacing:17.582400px;}
.ws1a_c00457{word-spacing:19.778400px;}
.ws15_c00457{word-spacing:32.335200px;}
.wse_c00457{word-spacing:50.767200px;}
.wsb_c00457{word-spacing:62.258400px;}
._1_c00457{margin-left:-1.022400px;}
._0_c00457{width:1.987200px;}
._3_c00457{width:3.571200px;}
._5_c00457{width:4.680000px;}
._a_c00457{width:5.702400px;}
._9_c00457{width:6.825600px;}
._2_c00457{width:8.287200px;}
._6_c00457{width:9.568800px;}
._c_c00457{width:12.168000px;}
._b_c00457{width:13.298400px;}
._8_c00457{width:14.558400px;}
._f_c00457{width:16.747200px;}
._e_c00457{width:19.807200px;}
._10_c00457{width:21.751200px;}
._d_c00457{width:32.407200px;}
._4_c00457{width:51.098400px;}
._7_c00457{width:62.258400px;}
.fc0_c00457{color:rgb(0,0,0);}
.fs0_c00457{font-size:60.120000px;}
.fs1_c00457{font-size:72.000000px;}
.y0_c00457{bottom:0.000000px;}
.y6_c00457{bottom:57.360450px;}
.y5_c00457{bottom:78.060450px;}
.y27_c00457{bottom:115.860450px;}
.y26_c00457{bottom:146.910450px;}
.y25_c00457{bottom:177.960450px;}
.y24_c00457{bottom:209.010450px;}
.y23_c00457{bottom:240.060450px;}
.y22_c00457{bottom:271.110450px;}
.y21_c00457{bottom:302.070450px;}
.y20_c00457{bottom:333.120450px;}
.y1f_c00457{bottom:364.170450px;}
.y1e_c00457{bottom:395.220450px;}
.y1d_c00457{bottom:426.180450px;}
.y1c_c00457{bottom:457.320450px;}
.y1b_c00457{bottom:488.370450px;}
.y1a_c00457{bottom:519.420450px;}
.y19_c00457{bottom:550.470450px;}
.y18_c00457{bottom:581.520450px;}
.y17_c00457{bottom:612.570450px;}
.y16_c00457{bottom:643.620450px;}
.y15_c00457{bottom:674.670450px;}
.y14_c00457{bottom:705.720450px;}
.y13_c00457{bottom:744.150450px;}
.y12_c00457{bottom:775.290450px;}
.y11_c00457{bottom:813.900450px;}
.y10_c00457{bottom:844.950450px;}
.yf_c00457{bottom:876.000450px;}
.ye_c00457{bottom:907.050450px;}
.yd_c00457{bottom:938.100450px;}
.yc_c00457{bottom:969.150450px;}
.yb_c00457{bottom:1000.200450px;}
.ya_c00457{bottom:1031.160450px;}
.y9_c00457{bottom:1062.210450px;}
.y8_c00457{bottom:1093.260450px;}
.y7_c00457{bottom:1124.310450px;}
.y4_c00457{bottom:1144.380657px;}
.y3_c00457{bottom:1161.660648px;}
.y2_c00457{bottom:1178.850459px;}
.y1_c00457{bottom:1196.130450px;}
.h1_c00457{height:52.898555px;}
.h2_c00457{height:63.175781px;}
.h4_c00457{height:63.351562px;}
.h3_c00457{height:64.546875px;}
.h0_c00457{height:1263.000000px;}
.w1_c00457{width:892.500000px;}
.w0_c00457{width:892.830000px;}
.x0_c00457{left:0.000000px;}
.x4_c00457{left:127.620000px;}
.x5_c00457{left:154.350000px;}
.x6_c00457{left:181.170000px;}
.x1_c00457{left:649.620000px;}
.x3_c00457{left:738.450000px;}
.x2_c00457{left:765.450198px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls11_c00457{letter-spacing:-0.064000pt;}
.ls14_c00457{letter-spacing:-0.044800pt;}
.lsd_c00457{letter-spacing:-0.042752pt;}
.ls10_c00457{letter-spacing:-0.038400pt;}
.ls15_c00457{letter-spacing:-0.025600pt;}
.ls13_c00457{letter-spacing:-0.019200pt;}
.ls12_c00457{letter-spacing:-0.012800pt;}
.lsf_c00457{letter-spacing:-0.006400pt;}
.lse_c00457{letter-spacing:0.000000pt;}
.ls3_c00457{letter-spacing:0.006400pt;}
.ls1_c00457{letter-spacing:0.012800pt;}
.ls5_c00457{letter-spacing:0.019200pt;}
.ls4_c00457{letter-spacing:0.025600pt;}
.ls7_c00457{letter-spacing:0.032000pt;}
.lsb_c00457{letter-spacing:0.038400pt;}
.ls2_c00457{letter-spacing:0.044800pt;}
.lsa_c00457{letter-spacing:0.051200pt;}
.ls8_c00457{letter-spacing:0.057600pt;}
.lsc_c00457{letter-spacing:0.076800pt;}
.ls9_c00457{letter-spacing:0.089600pt;}
.ls0_c00457{letter-spacing:55.168000pt;}
.ls6_c00457{letter-spacing:55.808000pt;}
.ws1_c00457{word-spacing:-16.076800pt;}
.ws0_c00457{word-spacing:-16.000000pt;}
.ws1b_c00457{word-spacing:-0.345600pt;}
.ws14_c00457{word-spacing:-0.064000pt;}
.ws16_c00457{word-spacing:-0.006400pt;}
.ws3_c00457{word-spacing:0.000000pt;}
.ws2_c00457{word-spacing:0.122912pt;}
.ws8_c00457{word-spacing:0.640000pt;}
.ws19_c00457{word-spacing:1.132800pt;}
.ws4_c00457{word-spacing:1.779200pt;}
.ws7_c00457{word-spacing:3.174400pt;}
.ws9_c00457{word-spacing:3.833600pt;}
.ws17_c00457{word-spacing:5.683200pt;}
.ws18_c00457{word-spacing:5.785600pt;}
.ws5_c00457{word-spacing:7.238400pt;}
.ws6_c00457{word-spacing:7.360000pt;}
.wsc_c00457{word-spacing:7.686400pt;}
.wsd_c00457{word-spacing:7.692800pt;}
.wsa_c00457{word-spacing:7.993600pt;}
.ws12_c00457{word-spacing:11.417600pt;}
.ws11_c00457{word-spacing:11.507200pt;}
.ws13_c00457{word-spacing:11.526400pt;}
.ws10_c00457{word-spacing:11.769600pt;}
.wsf_c00457{word-spacing:13.299200pt;}
.ws1c_c00457{word-spacing:15.628800pt;}
.ws1a_c00457{word-spacing:17.580800pt;}
.ws15_c00457{word-spacing:28.742400pt;}
.wse_c00457{word-spacing:45.126400pt;}
.wsb_c00457{word-spacing:55.340800pt;}
._1_c00457{margin-left:-0.908800pt;}
._0_c00457{width:1.766400pt;}
._3_c00457{width:3.174400pt;}
._5_c00457{width:4.160000pt;}
._a_c00457{width:5.068800pt;}
._9_c00457{width:6.067200pt;}
._2_c00457{width:7.366400pt;}
._6_c00457{width:8.505600pt;}
._c_c00457{width:10.816000pt;}
._b_c00457{width:11.820800pt;}
._8_c00457{width:12.940800pt;}
._f_c00457{width:14.886400pt;}
._e_c00457{width:17.606400pt;}
._10_c00457{width:19.334400pt;}
._d_c00457{width:28.806400pt;}
._4_c00457{width:45.420800pt;}
._7_c00457{width:55.340800pt;}
.fs0_c00457{font-size:53.440000pt;}
.fs1_c00457{font-size:64.000000pt;}
.y0_c00457{bottom:0.000000pt;}
.y6_c00457{bottom:50.987067pt;}
.y5_c00457{bottom:69.387067pt;}
.y27_c00457{bottom:102.987067pt;}
.y26_c00457{bottom:130.587067pt;}
.y25_c00457{bottom:158.187067pt;}
.y24_c00457{bottom:185.787067pt;}
.y23_c00457{bottom:213.387067pt;}
.y22_c00457{bottom:240.987067pt;}
.y21_c00457{bottom:268.507067pt;}
.y20_c00457{bottom:296.107067pt;}
.y1f_c00457{bottom:323.707067pt;}
.y1e_c00457{bottom:351.307067pt;}
.y1d_c00457{bottom:378.827067pt;}
.y1c_c00457{bottom:406.507067pt;}
.y1b_c00457{bottom:434.107067pt;}
.y1a_c00457{bottom:461.707067pt;}
.y19_c00457{bottom:489.307067pt;}
.y18_c00457{bottom:516.907067pt;}
.y17_c00457{bottom:544.507067pt;}
.y16_c00457{bottom:572.107067pt;}
.y15_c00457{bottom:599.707067pt;}
.y14_c00457{bottom:627.307067pt;}
.y13_c00457{bottom:661.467067pt;}
.y12_c00457{bottom:689.147067pt;}
.y11_c00457{bottom:723.467067pt;}
.y10_c00457{bottom:751.067067pt;}
.yf_c00457{bottom:778.667067pt;}
.ye_c00457{bottom:806.267067pt;}
.yd_c00457{bottom:833.867067pt;}
.yc_c00457{bottom:861.467067pt;}
.yb_c00457{bottom:889.067067pt;}
.ya_c00457{bottom:916.587067pt;}
.y9_c00457{bottom:944.187067pt;}
.y8_c00457{bottom:971.787067pt;}
.y7_c00457{bottom:999.387067pt;}
.y4_c00457{bottom:1017.227251pt;}
.y3_c00457{bottom:1032.587243pt;}
.y2_c00457{bottom:1047.867075pt;}
.y1_c00457{bottom:1063.227067pt;}
.h1_c00457{height:47.020937pt;}
.h2_c00457{height:56.156250pt;}
.h4_c00457{height:56.312500pt;}
.h3_c00457{height:57.375000pt;}
.h0_c00457{height:1122.666667pt;}
.w1_c00457{width:793.333333pt;}
.w0_c00457{width:793.626667pt;}
.x0_c00457{left:0.000000pt;}
.x4_c00457{left:113.440000pt;}
.x5_c00457{left:137.200000pt;}
.x6_c00457{left:161.040000pt;}
.x1_c00457{left:577.440000pt;}
.x3_c00457{left:656.400000pt;}
.x2_c00457{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b8b8639af9b0708b5055e37.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.095703;font-style:normal;font-weight:normal;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_43b42cb2f13227f8f069cc1a.woff2')format("woff");}.ff2_c00458{font-family:ff2_c00458;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00458;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00458{font-family:ff3_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;}
.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;}
.ls12_c00458{letter-spacing:-0.360000px;}
.ls13_c00458{letter-spacing:-0.273600px;}
.lsc_c00458{letter-spacing:-0.102204px;}
.ls11_c00458{letter-spacing:-0.064800px;}
.lsf_c00458{letter-spacing:-0.036000px;}
.ls10_c00458{letter-spacing:-0.028800px;}
.ls15_c00458{letter-spacing:-0.021600px;}
.lse_c00458{letter-spacing:-0.014400px;}
.ls14_c00458{letter-spacing:-0.007200px;}
.lsd_c00458{letter-spacing:0.000000px;}
.ls4_c00458{letter-spacing:0.007200px;}
.ls5_c00458{letter-spacing:0.014400px;}
.ls2_c00458{letter-spacing:0.021600px;}
.ls6_c00458{letter-spacing:0.028800px;}
.ls1_c00458{letter-spacing:0.036000px;}
.ls3_c00458{letter-spacing:0.043200px;}
.ls7_c00458{letter-spacing:0.050400px;}
.ls9_c00458{letter-spacing:0.057600px;}
.lsb_c00458{letter-spacing:0.064800px;}
.ls8_c00458{letter-spacing:0.100800px;}
.lsa_c00458{letter-spacing:0.360000px;}
.ls0_c00458{letter-spacing:62.784000px;}
.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;}
}
.ws1_c00458{word-spacing:-18.021600px;}
.ws0_c00458{word-spacing:-18.000000px;}
.ws13_c00458{word-spacing:-4.413600px;}
.ws8_c00458{word-spacing:-2.174400px;}
.ws15_c00458{word-spacing:-1.540800px;}
.ws7_c00458{word-spacing:-0.417600px;}
.wse_c00458{word-spacing:-0.050400px;}
.wsb_c00458{word-spacing:-0.014400px;}
.ws3_c00458{word-spacing:0.000000px;}
.wsd_c00458{word-spacing:0.014400px;}
.ws2_c00458{word-spacing:0.192384px;}
.ws4_c00458{word-spacing:2.858400px;}
.ws6_c00458{word-spacing:3.225600px;}
.wsf_c00458{word-spacing:4.996800px;}
.ws17_c00458{word-spacing:5.313600px;}
.wsc_c00458{word-spacing:5.659200px;}
.wsa_c00458{word-spacing:9.619200px;}
.ws9_c00458{word-spacing:10.800000px;}
.ws11_c00458{word-spacing:12.880800px;}
.ws10_c00458{word-spacing:12.974400px;}
.ws18_c00458{word-spacing:15.134400px;}
.ws5_c00458{word-spacing:16.545600px;}
.ws16_c00458{word-spacing:16.552800px;}
.ws12_c00458{word-spacing:23.709600px;}
.ws14_c00458{word-spacing:56.829600px;}
._c_c00458{margin-left:-5.356800px;}
._b_c00458{margin-left:-4.341600px;}
._6_c00458{margin-left:-2.188800px;}
._2_c00458{margin-left:-1.116000px;}
._0_c00458{width:1.034064px;}
._1_c00458{width:2.844000px;}
._4_c00458{width:3.924000px;}
._9_c00458{width:5.378400px;}
._8_c00458{width:9.345600px;}
._7_c00458{width:10.411200px;}
._a_c00458{width:12.981600px;}
._d_c00458{width:15.076800px;}
._3_c00458{width:16.538400px;}
._5_c00458{width:32.400000px;}
.fc1_c00458{color:rgb(0,0,0);}
.fc0_c00458{color:rgb(32,31,30);}
.fs0_c00458{font-size:60.120000px;}
.fs1_c00458{font-size:72.000000px;}
.y0_c00458{bottom:0.000000px;}
.y5_c00458{bottom:57.360450px;}
.y4_c00458{bottom:78.060450px;}
.y24_c00458{bottom:112.530450px;}
.y23_c00458{bottom:150.960450px;}
.y22_c00458{bottom:182.100450px;}
.y21_c00458{bottom:213.150450px;}
.y20_c00458{bottom:251.580450px;}
.y1f_c00458{bottom:282.720450px;}
.y1e_c00458{bottom:313.680450px;}
.y1d_c00458{bottom:344.820450px;}
.y1c_c00458{bottom:383.250450px;}
.y1b_c00458{bottom:414.390450px;}
.y1a_c00458{bottom:445.440450px;}
.y19_c00458{bottom:484.050450px;}
.y18_c00458{bottom:515.100450px;}
.y17_c00458{bottom:553.530450px;}
.y16_c00458{bottom:584.670450px;}
.y15_c00458{bottom:623.100450px;}
.y14_c00458{bottom:654.240450px;}
.y13_c00458{bottom:685.290450px;}
.y12_c00458{bottom:723.720450px;}
.y11_c00458{bottom:754.860450px;}
.y10_c00458{bottom:793.380450px;}
.yf_c00458{bottom:824.430450px;}
.ye_c00458{bottom:863.040450px;}
.yd_c00458{bottom:894.090450px;}
.yc_c00458{bottom:925.140450px;}
.yb_c00458{bottom:956.190450px;}
.ya_c00458{bottom:987.240450px;}
.y9_c00458{bottom:1018.290450px;}
.y8_c00458{bottom:1049.340450px;}
.y7_c00458{bottom:1080.390450px;}
.y6_c00458{bottom:1111.440450px;}
.y3_c00458{bottom:1132.140450px;}
.y2_c00458{bottom:1165.441023px;}
.y1_c00458{bottom:1196.040600px;}
.h1_c00458{height:52.898555px;}
.h2_c00458{height:63.175781px;}
.h4_c00458{height:63.351562px;}
.h3_c00458{height:64.546875px;}
.h0_c00458{height:1263.000000px;}
.w1_c00458{width:892.500000px;}
.w0_c00458{width:892.830000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:127.620000px;}
.x3_c00458{left:154.620000px;}
.x4_c00458{left:181.620000px;}
.x2_c00458{left:738.450000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls12_c00458{letter-spacing:-0.320000pt;}
.ls13_c00458{letter-spacing:-0.243200pt;}
.lsc_c00458{letter-spacing:-0.090848pt;}
.ls11_c00458{letter-spacing:-0.057600pt;}
.lsf_c00458{letter-spacing:-0.032000pt;}
.ls10_c00458{letter-spacing:-0.025600pt;}
.ls15_c00458{letter-spacing:-0.019200pt;}
.lse_c00458{letter-spacing:-0.012800pt;}
.ls14_c00458{letter-spacing:-0.006400pt;}
.lsd_c00458{letter-spacing:0.000000pt;}
.ls4_c00458{letter-spacing:0.006400pt;}
.ls5_c00458{letter-spacing:0.012800pt;}
.ls2_c00458{letter-spacing:0.019200pt;}
.ls6_c00458{letter-spacing:0.025600pt;}
.ls1_c00458{letter-spacing:0.032000pt;}
.ls3_c00458{letter-spacing:0.038400pt;}
.ls7_c00458{letter-spacing:0.044800pt;}
.ls9_c00458{letter-spacing:0.051200pt;}
.lsb_c00458{letter-spacing:0.057600pt;}
.ls8_c00458{letter-spacing:0.089600pt;}
.lsa_c00458{letter-spacing:0.320000pt;}
.ls0_c00458{letter-spacing:55.808000pt;}
.ws1_c00458{word-spacing:-16.019200pt;}
.ws0_c00458{word-spacing:-16.000000pt;}
.ws13_c00458{word-spacing:-3.923200pt;}
.ws8_c00458{word-spacing:-1.932800pt;}
.ws15_c00458{word-spacing:-1.369600pt;}
.ws7_c00458{word-spacing:-0.371200pt;}
.wse_c00458{word-spacing:-0.044800pt;}
.wsb_c00458{word-spacing:-0.012800pt;}
.ws3_c00458{word-spacing:0.000000pt;}
.wsd_c00458{word-spacing:0.012800pt;}
.ws2_c00458{word-spacing:0.171008pt;}
.ws4_c00458{word-spacing:2.540800pt;}
.ws6_c00458{word-spacing:2.867200pt;}
.wsf_c00458{word-spacing:4.441600pt;}
.ws17_c00458{word-spacing:4.723200pt;}
.wsc_c00458{word-spacing:5.030400pt;}
.wsa_c00458{word-spacing:8.550400pt;}
.ws9_c00458{word-spacing:9.600000pt;}
.ws11_c00458{word-spacing:11.449600pt;}
.ws10_c00458{word-spacing:11.532800pt;}
.ws18_c00458{word-spacing:13.452800pt;}
.ws5_c00458{word-spacing:14.707200pt;}
.ws16_c00458{word-spacing:14.713600pt;}
.ws12_c00458{word-spacing:21.075200pt;}
.ws14_c00458{word-spacing:50.515200pt;}
._c_c00458{margin-left:-4.761600pt;}
._b_c00458{margin-left:-3.859200pt;}
._6_c00458{margin-left:-1.945600pt;}
._2_c00458{margin-left:-0.992000pt;}
._0_c00458{width:0.919168pt;}
._1_c00458{width:2.528000pt;}
._4_c00458{width:3.488000pt;}
._9_c00458{width:4.780800pt;}
._8_c00458{width:8.307200pt;}
._7_c00458{width:9.254400pt;}
._a_c00458{width:11.539200pt;}
._d_c00458{width:13.401600pt;}
._3_c00458{width:14.700800pt;}
._5_c00458{width:28.800000pt;}
.fs0_c00458{font-size:53.440000pt;}
.fs1_c00458{font-size:64.000000pt;}
.y0_c00458{bottom:0.000000pt;}
.y5_c00458{bottom:50.987067pt;}
.y4_c00458{bottom:69.387067pt;}
.y24_c00458{bottom:100.027067pt;}
.y23_c00458{bottom:134.187067pt;}
.y22_c00458{bottom:161.867067pt;}
.y21_c00458{bottom:189.467067pt;}
.y20_c00458{bottom:223.627067pt;}
.y1f_c00458{bottom:251.307067pt;}
.y1e_c00458{bottom:278.827067pt;}
.y1d_c00458{bottom:306.507067pt;}
.y1c_c00458{bottom:340.667067pt;}
.y1b_c00458{bottom:368.347067pt;}
.y1a_c00458{bottom:395.947067pt;}
.y19_c00458{bottom:430.267067pt;}
.y18_c00458{bottom:457.867067pt;}
.y17_c00458{bottom:492.027067pt;}
.y16_c00458{bottom:519.707067pt;}
.y15_c00458{bottom:553.867067pt;}
.y14_c00458{bottom:581.547067pt;}
.y13_c00458{bottom:609.147067pt;}
.y12_c00458{bottom:643.307067pt;}
.y11_c00458{bottom:670.987067pt;}
.y10_c00458{bottom:705.227067pt;}
.yf_c00458{bottom:732.827067pt;}
.ye_c00458{bottom:767.147067pt;}
.yd_c00458{bottom:794.747067pt;}
.yc_c00458{bottom:822.347067pt;}
.yb_c00458{bottom:849.947067pt;}
.ya_c00458{bottom:877.547067pt;}
.y9_c00458{bottom:905.147067pt;}
.y8_c00458{bottom:932.747067pt;}
.y7_c00458{bottom:960.347067pt;}
.y6_c00458{bottom:987.947067pt;}
.y3_c00458{bottom:1006.347067pt;}
.y2_c00458{bottom:1035.947576pt;}
.y1_c00458{bottom:1063.147200pt;}
.h1_c00458{height:47.020937pt;}
.h2_c00458{height:56.156250pt;}
.h4_c00458{height:56.312500pt;}
.h3_c00458{height:57.375000pt;}
.h0_c00458{height:1122.666667pt;}
.w1_c00458{width:793.333333pt;}
.w0_c00458{width:793.626667pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:113.440000pt;}
.x3_c00458{left:137.440000pt;}
.x4_c00458{left:161.440000pt;}
.x2_c00458{left:656.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_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_78f60f05190a00adb61a06f3.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.095703;font-style:normal;font-weight:normal;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_e7dc72c80930b2a3f71ca564.woff2')format("woff");}.ff2_c00459{font-family:ff2_c00459;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00459{font-family:ff3_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;}
.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;}
.lse_c00459{letter-spacing:-0.158400px;}
.lsd_c00459{letter-spacing:-0.100800px;}
.lsf_c00459{letter-spacing:-0.064800px;}
.ls12_c00459{letter-spacing:-0.057600px;}
.ls9_c00459{letter-spacing:-0.048096px;}
.lsc_c00459{letter-spacing:-0.028800px;}
.ls11_c00459{letter-spacing:-0.021600px;}
.ls10_c00459{letter-spacing:-0.014400px;}
.lsb_c00459{letter-spacing:-0.007200px;}
.lsa_c00459{letter-spacing:0.000000px;}
.ls6_c00459{letter-spacing:0.007200px;}
.ls5_c00459{letter-spacing:0.014400px;}
.ls4_c00459{letter-spacing:0.021600px;}
.ls3_c00459{letter-spacing:0.028800px;}
.ls1_c00459{letter-spacing:0.036000px;}
.ls8_c00459{letter-spacing:0.050400px;}
.ls0_c00459{letter-spacing:0.093600px;}
.ls7_c00459{letter-spacing:62.064000px;}
.ls2_c00459{letter-spacing:62.784000px;}
.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:-18.093600px;}
.ws4_c00459{word-spacing:-18.036000px;}
.ws1_c00459{word-spacing:-18.000000px;}
.ws2_c00459{word-spacing:-17.971200px;}
.ws3_c00459{word-spacing:-17.899200px;}
.ws1d_c00459{word-spacing:-0.806400px;}
.ws11_c00459{word-spacing:-0.338400px;}
.wsc_c00459{word-spacing:-0.014400px;}
.ws6_c00459{word-spacing:0.000000px;}
.wsd_c00459{word-spacing:0.028800px;}
.ws5_c00459{word-spacing:0.138276px;}
.ws18_c00459{word-spacing:1.296000px;}
.ws17_c00459{word-spacing:1.411200px;}
.ws19_c00459{word-spacing:1.418400px;}
.ws8_c00459{word-spacing:1.447200px;}
.ws1a_c00459{word-spacing:1.764000px;}
.ws15_c00459{word-spacing:2.541600px;}
.ws7_c00459{word-spacing:3.873600px;}
.ws10_c00459{word-spacing:4.320000px;}
.ws14_c00459{word-spacing:6.386400px;}
.ws13_c00459{word-spacing:6.451200px;}
.wsa_c00459{word-spacing:7.639200px;}
.ws12_c00459{word-spacing:7.725600px;}
.ws9_c00459{word-spacing:7.920000px;}
.wsb_c00459{word-spacing:8.647200px;}
.ws1b_c00459{word-spacing:17.445600px;}
.ws1c_c00459{word-spacing:17.654400px;}
.wse_c00459{word-spacing:17.964000px;}
.ws16_c00459{word-spacing:30.931200px;}
.wsf_c00459{word-spacing:38.534400px;}
._0_c00459{margin-left:-1.375200px;}
._2_c00459{width:1.411200px;}
._7_c00459{width:2.966400px;}
._1_c00459{width:3.967200px;}
._6_c00459{width:6.631200px;}
._3_c00459{width:7.927200px;}
._4_c00459{width:9.201600px;}
._9_c00459{width:16.891200px;}
._a_c00459{width:25.574400px;}
._8_c00459{width:30.945600px;}
._5_c00459{width:38.505600px;}
.fc1_c00459{color:rgb(34,30,31);}
.fc0_c00459{color:rgb(0,0,0);}
.fs0_c00459{font-size:60.120000px;}
.fs1_c00459{font-size:72.000000px;}
.y0_c00459{bottom:0.000000px;}
.y6_c00459{bottom:57.360450px;}
.y5_c00459{bottom:78.060450px;}
.y26_c00459{bottom:127.290450px;}
.y25_c00459{bottom:158.430450px;}
.y24_c00459{bottom:189.480450px;}
.y23_c00459{bottom:220.530450px;}
.y22_c00459{bottom:251.580450px;}
.y21_c00459{bottom:282.630450px;}
.y20_c00459{bottom:313.680450px;}
.y1f_c00459{bottom:344.730450px;}
.y1e_c00459{bottom:375.690450px;}
.y1d_c00459{bottom:406.830450px;}
.y1c_c00459{bottom:437.880450px;}
.y1b_c00459{bottom:468.930450px;}
.y1a_c00459{bottom:499.890450px;}
.y19_c00459{bottom:531.030450px;}
.y18_c00459{bottom:561.990450px;}
.y17_c00459{bottom:593.130450px;}
.y16_c00459{bottom:624.180450px;}
.y15_c00459{bottom:655.140450px;}
.y14_c00459{bottom:686.190450px;}
.y13_c00459{bottom:717.240450px;}
.y12_c00459{bottom:748.290450px;}
.y11_c00459{bottom:779.340450px;}
.y10_c00459{bottom:810.390450px;}
.yf_c00459{bottom:841.440450px;}
.ye_c00459{bottom:879.960450px;}
.yd_c00459{bottom:911.100450px;}
.yc_c00459{bottom:942.150450px;}
.yb_c00459{bottom:980.580450px;}
.ya_c00459{bottom:1011.720450px;}
.y9_c00459{bottom:1054.650450px;}
.y8_c00459{bottom:1085.790450px;}
.y7_c00459{bottom:1124.220450px;}
.y4_c00459{bottom:1144.380657px;}
.y3_c00459{bottom:1161.660648px;}
.y2_c00459{bottom:1178.850459px;}
.y1_c00459{bottom:1196.130450px;}
.h1_c00459{height:52.898555px;}
.h2_c00459{height:63.175781px;}
.h3_c00459{height:63.351562px;}
.h4_c00459{height:64.546875px;}
.h0_c00459{height:1263.000000px;}
.w1_c00459{width:892.500000px;}
.w0_c00459{width:892.830000px;}
.x0_c00459{left:0.000000px;}
.x4_c00459{left:127.620000px;}
.x6_c00459{left:154.620000px;}
.x5_c00459{left:181.620000px;}
.x1_c00459{left:649.620000px;}
.x3_c00459{left:738.450000px;}
.x2_c00459{left:765.450198px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.lse_c00459{letter-spacing:-0.140800pt;}
.lsd_c00459{letter-spacing:-0.089600pt;}
.lsf_c00459{letter-spacing:-0.057600pt;}
.ls12_c00459{letter-spacing:-0.051200pt;}
.ls9_c00459{letter-spacing:-0.042752pt;}
.lsc_c00459{letter-spacing:-0.025600pt;}
.ls11_c00459{letter-spacing:-0.019200pt;}
.ls10_c00459{letter-spacing:-0.012800pt;}
.lsb_c00459{letter-spacing:-0.006400pt;}
.lsa_c00459{letter-spacing:0.000000pt;}
.ls6_c00459{letter-spacing:0.006400pt;}
.ls5_c00459{letter-spacing:0.012800pt;}
.ls4_c00459{letter-spacing:0.019200pt;}
.ls3_c00459{letter-spacing:0.025600pt;}
.ls1_c00459{letter-spacing:0.032000pt;}
.ls8_c00459{letter-spacing:0.044800pt;}
.ls0_c00459{letter-spacing:0.083200pt;}
.ls7_c00459{letter-spacing:55.168000pt;}
.ls2_c00459{letter-spacing:55.808000pt;}
.ws0_c00459{word-spacing:-16.083200pt;}
.ws4_c00459{word-spacing:-16.032000pt;}
.ws1_c00459{word-spacing:-16.000000pt;}
.ws2_c00459{word-spacing:-15.974400pt;}
.ws3_c00459{word-spacing:-15.910400pt;}
.ws1d_c00459{word-spacing:-0.716800pt;}
.ws11_c00459{word-spacing:-0.300800pt;}
.wsc_c00459{word-spacing:-0.012800pt;}
.ws6_c00459{word-spacing:0.000000pt;}
.wsd_c00459{word-spacing:0.025600pt;}
.ws5_c00459{word-spacing:0.122912pt;}
.ws18_c00459{word-spacing:1.152000pt;}
.ws17_c00459{word-spacing:1.254400pt;}
.ws19_c00459{word-spacing:1.260800pt;}
.ws8_c00459{word-spacing:1.286400pt;}
.ws1a_c00459{word-spacing:1.568000pt;}
.ws15_c00459{word-spacing:2.259200pt;}
.ws7_c00459{word-spacing:3.443200pt;}
.ws10_c00459{word-spacing:3.840000pt;}
.ws14_c00459{word-spacing:5.676800pt;}
.ws13_c00459{word-spacing:5.734400pt;}
.wsa_c00459{word-spacing:6.790400pt;}
.ws12_c00459{word-spacing:6.867200pt;}
.ws9_c00459{word-spacing:7.040000pt;}
.wsb_c00459{word-spacing:7.686400pt;}
.ws1b_c00459{word-spacing:15.507200pt;}
.ws1c_c00459{word-spacing:15.692800pt;}
.wse_c00459{word-spacing:15.968000pt;}
.ws16_c00459{word-spacing:27.494400pt;}
.wsf_c00459{word-spacing:34.252800pt;}
._0_c00459{margin-left:-1.222400pt;}
._2_c00459{width:1.254400pt;}
._7_c00459{width:2.636800pt;}
._1_c00459{width:3.526400pt;}
._6_c00459{width:5.894400pt;}
._3_c00459{width:7.046400pt;}
._4_c00459{width:8.179200pt;}
._9_c00459{width:15.014400pt;}
._a_c00459{width:22.732800pt;}
._8_c00459{width:27.507200pt;}
._5_c00459{width:34.227200pt;}
.fs0_c00459{font-size:53.440000pt;}
.fs1_c00459{font-size:64.000000pt;}
.y0_c00459{bottom:0.000000pt;}
.y6_c00459{bottom:50.987067pt;}
.y5_c00459{bottom:69.387067pt;}
.y26_c00459{bottom:113.147067pt;}
.y25_c00459{bottom:140.827067pt;}
.y24_c00459{bottom:168.427067pt;}
.y23_c00459{bottom:196.027067pt;}
.y22_c00459{bottom:223.627067pt;}
.y21_c00459{bottom:251.227067pt;}
.y20_c00459{bottom:278.827067pt;}
.y1f_c00459{bottom:306.427067pt;}
.y1e_c00459{bottom:333.947067pt;}
.y1d_c00459{bottom:361.627067pt;}
.y1c_c00459{bottom:389.227067pt;}
.y1b_c00459{bottom:416.827067pt;}
.y1a_c00459{bottom:444.347067pt;}
.y19_c00459{bottom:472.027067pt;}
.y18_c00459{bottom:499.547067pt;}
.y17_c00459{bottom:527.227067pt;}
.y16_c00459{bottom:554.827067pt;}
.y15_c00459{bottom:582.347067pt;}
.y14_c00459{bottom:609.947067pt;}
.y13_c00459{bottom:637.547067pt;}
.y12_c00459{bottom:665.147067pt;}
.y11_c00459{bottom:692.747067pt;}
.y10_c00459{bottom:720.347067pt;}
.yf_c00459{bottom:747.947067pt;}
.ye_c00459{bottom:782.187067pt;}
.yd_c00459{bottom:809.867067pt;}
.yc_c00459{bottom:837.467067pt;}
.yb_c00459{bottom:871.627067pt;}
.ya_c00459{bottom:899.307067pt;}
.y9_c00459{bottom:937.467067pt;}
.y8_c00459{bottom:965.147067pt;}
.y7_c00459{bottom:999.307067pt;}
.y4_c00459{bottom:1017.227251pt;}
.y3_c00459{bottom:1032.587243pt;}
.y2_c00459{bottom:1047.867075pt;}
.y1_c00459{bottom:1063.227067pt;}
.h1_c00459{height:47.020937pt;}
.h2_c00459{height:56.156250pt;}
.h3_c00459{height:56.312500pt;}
.h4_c00459{height:57.375000pt;}
.h0_c00459{height:1122.666667pt;}
.w1_c00459{width:793.333333pt;}
.w0_c00459{width:793.626667pt;}
.x0_c00459{left:0.000000pt;}
.x4_c00459{left:113.440000pt;}
.x6_c00459{left:137.440000pt;}
.x5_c00459{left:161.440000pt;}
.x1_c00459{left:577.440000pt;}
.x3_c00459{left:656.400000pt;}
.x2_c00459{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33bfb3ceb06f70cb39677481.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.095703;font-style:normal;font-weight:normal;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_b19a7dd0a57b0699b33dfa8f.woff2')format("woff");}.ff2_c00460{font-family:ff2_c00460;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00460;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00460{font-family:ff3_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:ff4_c00460;src:url('chunks/assets/font_ef6aa2f9fe6fe8e6da87ae01.woff2')format("woff");}.ff4_c00460{font-family:ff4_c00460;line-height:0.713867;font-style: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;}
.ls13_c00460{letter-spacing:-0.561600px;}
.ls15_c00460{letter-spacing:-0.165600px;}
.ls11_c00460{letter-spacing:-0.122400px;}
.lse_c00460{letter-spacing:-0.102204px;}
.ls12_c00460{letter-spacing:-0.021600px;}
.ls10_c00460{letter-spacing:-0.014400px;}
.ls14_c00460{letter-spacing:-0.007200px;}
.lsf_c00460{letter-spacing:0.000000px;}
.ls6_c00460{letter-spacing:0.007200px;}
.ls5_c00460{letter-spacing:0.014400px;}
.ls1_c00460{letter-spacing:0.021600px;}
.ls3_c00460{letter-spacing:0.028800px;}
.lsb_c00460{letter-spacing:0.036000px;}
.ls2_c00460{letter-spacing:0.043200px;}
.ls7_c00460{letter-spacing:0.050400px;}
.lsc_c00460{letter-spacing:0.064800px;}
.ls8_c00460{letter-spacing:0.072000px;}
.lsa_c00460{letter-spacing:0.079200px;}
.lsd_c00460{letter-spacing:0.136800px;}
.ls9_c00460{letter-spacing:24.840000px;}
.ls4_c00460{letter-spacing:62.064000px;}
.ls0_c00460{letter-spacing:62.784000px;}
.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;}
}
.ws2_c00460{word-spacing:-18.064800px;}
.ws1_c00460{word-spacing:-18.043200px;}
.ws0_c00460{word-spacing:-18.000000px;}
.ws11_c00460{word-spacing:-0.064800px;}
.wsa_c00460{word-spacing:-0.007200px;}
.ws4_c00460{word-spacing:0.000000px;}
.ws3_c00460{word-spacing:0.192384px;}
.ws10_c00460{word-spacing:1.058400px;}
.ws9_c00460{word-spacing:1.864800px;}
.ws8_c00460{word-spacing:2.498400px;}
.ws7_c00460{word-spacing:2.512800px;}
.wsb_c00460{word-spacing:3.160800px;}
.wsf_c00460{word-spacing:3.232800px;}
.wse_c00460{word-spacing:6.105600px;}
.wsc_c00460{word-spacing:7.128000px;}
.wsd_c00460{word-spacing:7.221600px;}
.ws6_c00460{word-spacing:10.634400px;}
.ws5_c00460{word-spacing:19.425600px;}
._b_c00460{margin-left:-5.155200px;}
._4_c00460{margin-left:-3.628800px;}
._5_c00460{margin-left:-2.404800px;}
._3_c00460{margin-left:-1.065600px;}
._0_c00460{width:1.034064px;}
._c_c00460{width:2.800800px;}
._e_c00460{width:3.888000px;}
._f_c00460{width:5.407200px;}
._8_c00460{width:6.458400px;}
._d_c00460{width:7.516800px;}
._11_c00460{width:9.259200px;}
._2_c00460{width:10.591200px;}
._1_c00460{width:19.418400px;}
._10_c00460{width:23.061600px;}
._9_c00460{width:24.112800px;}
._a_c00460{width:25.149600px;}
._7_c00460{width:34.617600px;}
._6_c00460{width:35.625600px;}
.fc2_c00460{color:rgb(51,51,51);}
.fc1_c00460{color:rgb(0,0,0);}
.fc0_c00460{color:rgb(32,31,30);}
.fs0_c00460{font-size:60.120000px;}
.fs1_c00460{font-size:72.000000px;}
.y0_c00460{bottom:0.000000px;}
.y5_c00460{bottom:57.360450px;}
.y4_c00460{bottom:78.060450px;}
.y26_c00460{bottom:117.930450px;}
.y25_c00460{bottom:148.980450px;}
.y24_c00460{bottom:180.030450px;}
.y23_c00460{bottom:211.080450px;}
.y22_c00460{bottom:242.130450px;}
.y21_c00460{bottom:273.090450px;}
.y20_c00460{bottom:304.140450px;}
.y1f_c00460{bottom:335.190450px;}
.y1e_c00460{bottom:366.240450px;}
.y1d_c00460{bottom:397.290450px;}
.y1c_c00460{bottom:428.340450px;}
.y1b_c00460{bottom:459.390450px;}
.y1a_c00460{bottom:490.440450px;}
.y19_c00460{bottom:521.490450px;}
.y18_c00460{bottom:552.540450px;}
.y17_c00460{bottom:583.590450px;}
.y16_c00460{bottom:614.640450px;}
.y15_c00460{bottom:645.690450px;}
.y14_c00460{bottom:676.650450px;}
.y13_c00460{bottom:707.790450px;}
.y12_c00460{bottom:738.840450px;}
.y11_c00460{bottom:769.890450px;}
.y10_c00460{bottom:800.940450px;}
.yf_c00460{bottom:831.990450px;}
.ye_c00460{bottom:863.040450px;}
.yd_c00460{bottom:894.090450px;}
.yc_c00460{bottom:925.140450px;}
.yb_c00460{bottom:956.190450px;}
.ya_c00460{bottom:987.240450px;}
.y9_c00460{bottom:1018.290450px;}
.y8_c00460{bottom:1049.340450px;}
.y7_c00460{bottom:1080.390450px;}
.y6_c00460{bottom:1111.440450px;}
.y3_c00460{bottom:1132.140450px;}
.y2_c00460{bottom:1165.441023px;}
.y1_c00460{bottom:1196.040600px;}
.h1_c00460{height:52.898555px;}
.h2_c00460{height:63.175781px;}
.h4_c00460{height:63.351562px;}
.h3_c00460{height:64.546875px;}
.h0_c00460{height:1263.000000px;}
.w1_c00460{width:892.500000px;}
.w0_c00460{width:892.830000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:127.620000px;}
.x3_c00460{left:154.620000px;}
.x4_c00460{left:181.620000px;}
.x2_c00460{left:738.450000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls13_c00460{letter-spacing:-0.499200pt;}
.ls15_c00460{letter-spacing:-0.147200pt;}
.ls11_c00460{letter-spacing:-0.108800pt;}
.lse_c00460{letter-spacing:-0.090848pt;}
.ls12_c00460{letter-spacing:-0.019200pt;}
.ls10_c00460{letter-spacing:-0.012800pt;}
.ls14_c00460{letter-spacing:-0.006400pt;}
.lsf_c00460{letter-spacing:0.000000pt;}
.ls6_c00460{letter-spacing:0.006400pt;}
.ls5_c00460{letter-spacing:0.012800pt;}
.ls1_c00460{letter-spacing:0.019200pt;}
.ls3_c00460{letter-spacing:0.025600pt;}
.lsb_c00460{letter-spacing:0.032000pt;}
.ls2_c00460{letter-spacing:0.038400pt;}
.ls7_c00460{letter-spacing:0.044800pt;}
.lsc_c00460{letter-spacing:0.057600pt;}
.ls8_c00460{letter-spacing:0.064000pt;}
.lsa_c00460{letter-spacing:0.070400pt;}
.lsd_c00460{letter-spacing:0.121600pt;}
.ls9_c00460{letter-spacing:22.080000pt;}
.ls4_c00460{letter-spacing:55.168000pt;}
.ls0_c00460{letter-spacing:55.808000pt;}
.ws2_c00460{word-spacing:-16.057600pt;}
.ws1_c00460{word-spacing:-16.038400pt;}
.ws0_c00460{word-spacing:-16.000000pt;}
.ws11_c00460{word-spacing:-0.057600pt;}
.wsa_c00460{word-spacing:-0.006400pt;}
.ws4_c00460{word-spacing:0.000000pt;}
.ws3_c00460{word-spacing:0.171008pt;}
.ws10_c00460{word-spacing:0.940800pt;}
.ws9_c00460{word-spacing:1.657600pt;}
.ws8_c00460{word-spacing:2.220800pt;}
.ws7_c00460{word-spacing:2.233600pt;}
.wsb_c00460{word-spacing:2.809600pt;}
.wsf_c00460{word-spacing:2.873600pt;}
.wse_c00460{word-spacing:5.427200pt;}
.wsc_c00460{word-spacing:6.336000pt;}
.wsd_c00460{word-spacing:6.419200pt;}
.ws6_c00460{word-spacing:9.452800pt;}
.ws5_c00460{word-spacing:17.267200pt;}
._b_c00460{margin-left:-4.582400pt;}
._4_c00460{margin-left:-3.225600pt;}
._5_c00460{margin-left:-2.137600pt;}
._3_c00460{margin-left:-0.947200pt;}
._0_c00460{width:0.919168pt;}
._c_c00460{width:2.489600pt;}
._e_c00460{width:3.456000pt;}
._f_c00460{width:4.806400pt;}
._8_c00460{width:5.740800pt;}
._d_c00460{width:6.681600pt;}
._11_c00460{width:8.230400pt;}
._2_c00460{width:9.414400pt;}
._1_c00460{width:17.260800pt;}
._10_c00460{width:20.499200pt;}
._9_c00460{width:21.433600pt;}
._a_c00460{width:22.355200pt;}
._7_c00460{width:30.771200pt;}
._6_c00460{width:31.667200pt;}
.fs0_c00460{font-size:53.440000pt;}
.fs1_c00460{font-size:64.000000pt;}
.y0_c00460{bottom:0.000000pt;}
.y5_c00460{bottom:50.987067pt;}
.y4_c00460{bottom:69.387067pt;}
.y26_c00460{bottom:104.827067pt;}
.y25_c00460{bottom:132.427067pt;}
.y24_c00460{bottom:160.027067pt;}
.y23_c00460{bottom:187.627067pt;}
.y22_c00460{bottom:215.227067pt;}
.y21_c00460{bottom:242.747067pt;}
.y20_c00460{bottom:270.347067pt;}
.y1f_c00460{bottom:297.947067pt;}
.y1e_c00460{bottom:325.547067pt;}
.y1d_c00460{bottom:353.147067pt;}
.y1c_c00460{bottom:380.747067pt;}
.y1b_c00460{bottom:408.347067pt;}
.y1a_c00460{bottom:435.947067pt;}
.y19_c00460{bottom:463.547067pt;}
.y18_c00460{bottom:491.147067pt;}
.y17_c00460{bottom:518.747067pt;}
.y16_c00460{bottom:546.347067pt;}
.y15_c00460{bottom:573.947067pt;}
.y14_c00460{bottom:601.467067pt;}
.y13_c00460{bottom:629.147067pt;}
.y12_c00460{bottom:656.747067pt;}
.y11_c00460{bottom:684.347067pt;}
.y10_c00460{bottom:711.947067pt;}
.yf_c00460{bottom:739.547067pt;}
.ye_c00460{bottom:767.147067pt;}
.yd_c00460{bottom:794.747067pt;}
.yc_c00460{bottom:822.347067pt;}
.yb_c00460{bottom:849.947067pt;}
.ya_c00460{bottom:877.547067pt;}
.y9_c00460{bottom:905.147067pt;}
.y8_c00460{bottom:932.747067pt;}
.y7_c00460{bottom:960.347067pt;}
.y6_c00460{bottom:987.947067pt;}
.y3_c00460{bottom:1006.347067pt;}
.y2_c00460{bottom:1035.947576pt;}
.y1_c00460{bottom:1063.147200pt;}
.h1_c00460{height:47.020937pt;}
.h2_c00460{height:56.156250pt;}
.h4_c00460{height:56.312500pt;}
.h3_c00460{height:57.375000pt;}
.h0_c00460{height:1122.666667pt;}
.w1_c00460{width:793.333333pt;}
.w0_c00460{width:793.626667pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:113.440000pt;}
.x3_c00460{left:137.440000pt;}
.x4_c00460{left:161.440000pt;}
.x2_c00460{left:656.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_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_df3957b1835ae57b6b47b6f3.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.095703;font-style:normal;font-weight:normal;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_acc16fd65ab4c907fb0bc85e.woff2')format("woff");}.ff2_c00461{font-family:ff2_c00461;line-height:1.093262;font-style:normal;font-weight:normal;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_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00461{font-family:ff3_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:ff4_c00461;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff4_c00461{font-family:ff4_c00461;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_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;}
.ls17_c00461{letter-spacing:-0.259200px;}
.ls10_c00461{letter-spacing:-0.064800px;}
.ls16_c00461{letter-spacing:-0.050400px;}
.lse_c00461{letter-spacing:-0.048096px;}
.ls13_c00461{letter-spacing:-0.043200px;}
.ls15_c00461{letter-spacing:-0.036000px;}
.ls14_c00461{letter-spacing:-0.028800px;}
.ls11_c00461{letter-spacing:-0.014400px;}
.ls12_c00461{letter-spacing:-0.007200px;}
.lsf_c00461{letter-spacing:0.000000px;}
.ls7_c00461{letter-spacing:0.007200px;}
.ls2_c00461{letter-spacing:0.014400px;}
.ls4_c00461{letter-spacing:0.021600px;}
.ls5_c00461{letter-spacing:0.028800px;}
.ls9_c00461{letter-spacing:0.036000px;}
.ls1_c00461{letter-spacing:0.043200px;}
.ls3_c00461{letter-spacing:0.050400px;}
.lsc_c00461{letter-spacing:0.064800px;}
.lsd_c00461{letter-spacing:0.079200px;}
.ls6_c00461{letter-spacing:0.086400px;}
.ls8_c00461{letter-spacing:0.093600px;}
.lsb_c00461{letter-spacing:4.680000px;}
.lsa_c00461{letter-spacing:54.864000px;}
.ls0_c00461{letter-spacing:62.784000px;}
.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;}
}
.ws3_c00461{word-spacing:-72.000000px;}
.ws2_c00461{word-spacing:-18.036000px;}
.ws1_c00461{word-spacing:-18.014400px;}
.ws0_c00461{word-spacing:-18.000000px;}
.ws10_c00461{word-spacing:-0.374400px;}
.wsc_c00461{word-spacing:-0.165600px;}
.ws12_c00461{word-spacing:-0.136800px;}
.ws5_c00461{word-spacing:0.000000px;}
.ws4_c00461{word-spacing:0.138276px;}
.ws7_c00461{word-spacing:0.763200px;}
.wsa_c00461{word-spacing:1.425600px;}
.ws9_c00461{word-spacing:2.109600px;}
.ws11_c00461{word-spacing:4.615200px;}
.wsf_c00461{word-spacing:6.076800px;}
.wsd_c00461{word-spacing:6.804000px;}
.wse_c00461{word-spacing:16.459200px;}
.ws8_c00461{word-spacing:19.771200px;}
.wsb_c00461{word-spacing:25.099200px;}
.ws6_c00461{word-spacing:165.967200px;}
._4_c00461{margin-left:-4.305600px;}
._7_c00461{margin-left:-2.160000px;}
._3_c00461{margin-left:-1.022400px;}
._2_c00461{width:1.029600px;}
._6_c00461{width:2.174400px;}
._d_c00461{width:3.794400px;}
._0_c00461{width:5.356800px;}
._c_c00461{width:6.681600px;}
._a_c00461{width:7.804800px;}
._b_c00461{width:16.682400px;}
._5_c00461{width:19.936800px;}
._8_c00461{width:25.192800px;}
._9_c00461{width:30.571200px;}
._1_c00461{width:166.024800px;}
.fc1_c00461{color:rgb(5,99,193);}
.fc0_c00461{color:rgb(0,0,0);}
.fs0_c00461{font-size:60.120000px;}
.fs1_c00461{font-size:72.000000px;}
.y0_c00461{bottom:0.000000px;}
.y6_c00461{bottom:57.360450px;}
.y5_c00461{bottom:78.060450px;}
.y26_c00461{bottom:148.530450px;}
.y25_c00461{bottom:179.580450px;}
.y24_c00461{bottom:211.980450px;}
.y23_c00461{bottom:243.030450px;}
.y22_c00461{bottom:274.080450px;}
.y21_c00461{bottom:305.130450px;}
.y20_c00461{bottom:336.180450px;}
.y1f_c00461{bottom:367.230450px;}
.y1e_c00461{bottom:398.280450px;}
.y1d_c00461{bottom:429.330450px;}
.y1c_c00461{bottom:460.380450px;}
.y1b_c00461{bottom:491.430450px;}
.y1a_c00461{bottom:522.480450px;}
.y19_c00461{bottom:553.530450px;}
.y18_c00461{bottom:596.460450px;}
.y17_c00461{bottom:627.600450px;}
.y16_c00461{bottom:658.650450px;}
.y15_c00461{bottom:689.700450px;}
.y14_c00461{bottom:720.750450px;}
.y13_c00461{bottom:751.800450px;}
.y12_c00461{bottom:782.850450px;}
.y11_c00461{bottom:813.900450px;}
.y10_c00461{bottom:844.950450px;}
.yf_c00461{bottom:876.000450px;}
.ye_c00461{bottom:907.050450px;}
.yd_c00461{bottom:938.100450px;}
.yc_c00461{bottom:969.150450px;}
.yb_c00461{bottom:1000.200450px;}
.ya_c00461{bottom:1031.160450px;}
.y9_c00461{bottom:1062.210450px;}
.y8_c00461{bottom:1093.260450px;}
.y7_c00461{bottom:1124.310450px;}
.y4_c00461{bottom:1144.380657px;}
.y3_c00461{bottom:1161.660648px;}
.y2_c00461{bottom:1178.850459px;}
.y1_c00461{bottom:1196.130450px;}
.h1_c00461{height:52.898555px;}
.h2_c00461{height:63.175781px;}
.h4_c00461{height:63.351562px;}
.h3_c00461{height:64.546875px;}
.h0_c00461{height:1263.000000px;}
.w1_c00461{width:892.500000px;}
.w0_c00461{width:892.830000px;}
.x0_c00461{left:0.000000px;}
.x4_c00461{left:127.620000px;}
.x5_c00461{left:154.620000px;}
.x6_c00461{left:181.620000px;}
.x1_c00461{left:649.620000px;}
.x3_c00461{left:738.450000px;}
.x2_c00461{left:765.450198px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls17_c00461{letter-spacing:-0.230400pt;}
.ls10_c00461{letter-spacing:-0.057600pt;}
.ls16_c00461{letter-spacing:-0.044800pt;}
.lse_c00461{letter-spacing:-0.042752pt;}
.ls13_c00461{letter-spacing:-0.038400pt;}
.ls15_c00461{letter-spacing:-0.032000pt;}
.ls14_c00461{letter-spacing:-0.025600pt;}
.ls11_c00461{letter-spacing:-0.012800pt;}
.ls12_c00461{letter-spacing:-0.006400pt;}
.lsf_c00461{letter-spacing:0.000000pt;}
.ls7_c00461{letter-spacing:0.006400pt;}
.ls2_c00461{letter-spacing:0.012800pt;}
.ls4_c00461{letter-spacing:0.019200pt;}
.ls5_c00461{letter-spacing:0.025600pt;}
.ls9_c00461{letter-spacing:0.032000pt;}
.ls1_c00461{letter-spacing:0.038400pt;}
.ls3_c00461{letter-spacing:0.044800pt;}
.lsc_c00461{letter-spacing:0.057600pt;}
.lsd_c00461{letter-spacing:0.070400pt;}
.ls6_c00461{letter-spacing:0.076800pt;}
.ls8_c00461{letter-spacing:0.083200pt;}
.lsb_c00461{letter-spacing:4.160000pt;}
.lsa_c00461{letter-spacing:48.768000pt;}
.ls0_c00461{letter-spacing:55.808000pt;}
.ws3_c00461{word-spacing:-64.000000pt;}
.ws2_c00461{word-spacing:-16.032000pt;}
.ws1_c00461{word-spacing:-16.012800pt;}
.ws0_c00461{word-spacing:-16.000000pt;}
.ws10_c00461{word-spacing:-0.332800pt;}
.wsc_c00461{word-spacing:-0.147200pt;}
.ws12_c00461{word-spacing:-0.121600pt;}
.ws5_c00461{word-spacing:0.000000pt;}
.ws4_c00461{word-spacing:0.122912pt;}
.ws7_c00461{word-spacing:0.678400pt;}
.wsa_c00461{word-spacing:1.267200pt;}
.ws9_c00461{word-spacing:1.875200pt;}
.ws11_c00461{word-spacing:4.102400pt;}
.wsf_c00461{word-spacing:5.401600pt;}
.wsd_c00461{word-spacing:6.048000pt;}
.wse_c00461{word-spacing:14.630400pt;}
.ws8_c00461{word-spacing:17.574400pt;}
.wsb_c00461{word-spacing:22.310400pt;}
.ws6_c00461{word-spacing:147.526400pt;}
._4_c00461{margin-left:-3.827200pt;}
._7_c00461{margin-left:-1.920000pt;}
._3_c00461{margin-left:-0.908800pt;}
._2_c00461{width:0.915200pt;}
._6_c00461{width:1.932800pt;}
._d_c00461{width:3.372800pt;}
._0_c00461{width:4.761600pt;}
._c_c00461{width:5.939200pt;}
._a_c00461{width:6.937600pt;}
._b_c00461{width:14.828800pt;}
._5_c00461{width:17.721600pt;}
._8_c00461{width:22.393600pt;}
._9_c00461{width:27.174400pt;}
._1_c00461{width:147.577600pt;}
.fs0_c00461{font-size:53.440000pt;}
.fs1_c00461{font-size:64.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y6_c00461{bottom:50.987067pt;}
.y5_c00461{bottom:69.387067pt;}
.y26_c00461{bottom:132.027067pt;}
.y25_c00461{bottom:159.627067pt;}
.y24_c00461{bottom:188.427067pt;}
.y23_c00461{bottom:216.027067pt;}
.y22_c00461{bottom:243.627067pt;}
.y21_c00461{bottom:271.227067pt;}
.y20_c00461{bottom:298.827067pt;}
.y1f_c00461{bottom:326.427067pt;}
.y1e_c00461{bottom:354.027067pt;}
.y1d_c00461{bottom:381.627067pt;}
.y1c_c00461{bottom:409.227067pt;}
.y1b_c00461{bottom:436.827067pt;}
.y1a_c00461{bottom:464.427067pt;}
.y19_c00461{bottom:492.027067pt;}
.y18_c00461{bottom:530.187067pt;}
.y17_c00461{bottom:557.867067pt;}
.y16_c00461{bottom:585.467067pt;}
.y15_c00461{bottom:613.067067pt;}
.y14_c00461{bottom:640.667067pt;}
.y13_c00461{bottom:668.267067pt;}
.y12_c00461{bottom:695.867067pt;}
.y11_c00461{bottom:723.467067pt;}
.y10_c00461{bottom:751.067067pt;}
.yf_c00461{bottom:778.667067pt;}
.ye_c00461{bottom:806.267067pt;}
.yd_c00461{bottom:833.867067pt;}
.yc_c00461{bottom:861.467067pt;}
.yb_c00461{bottom:889.067067pt;}
.ya_c00461{bottom:916.587067pt;}
.y9_c00461{bottom:944.187067pt;}
.y8_c00461{bottom:971.787067pt;}
.y7_c00461{bottom:999.387067pt;}
.y4_c00461{bottom:1017.227251pt;}
.y3_c00461{bottom:1032.587243pt;}
.y2_c00461{bottom:1047.867075pt;}
.y1_c00461{bottom:1063.227067pt;}
.h1_c00461{height:47.020937pt;}
.h2_c00461{height:56.156250pt;}
.h4_c00461{height:56.312500pt;}
.h3_c00461{height:57.375000pt;}
.h0_c00461{height:1122.666667pt;}
.w1_c00461{width:793.333333pt;}
.w0_c00461{width:793.626667pt;}
.x0_c00461{left:0.000000pt;}
.x4_c00461{left:113.440000pt;}
.x5_c00461{left:137.440000pt;}
.x6_c00461{left:161.440000pt;}
.x1_c00461{left:577.440000pt;}
.x3_c00461{left:656.400000pt;}
.x2_c00461{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_29ddaf6b4b6121f7a098b86b.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.095703;font-style:normal;font-weight:normal;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_33b26326886c46377b4fe8a3.woff2')format("woff");}.ff2_c00462{font-family:ff2_c00462;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00462;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.woff2')format("woff");}.ff3_c00462{font-family:ff3_c00462;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_c00462;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff4_c00462{font-family:ff4_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;}
.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;}
.lsa_c00462{letter-spacing:-0.102204px;}
.lsf_c00462{letter-spacing:-0.064800px;}
.ls10_c00462{letter-spacing:-0.028800px;}
.ls12_c00462{letter-spacing:-0.021600px;}
.lsc_c00462{letter-spacing:-0.014400px;}
.lse_c00462{letter-spacing:-0.007200px;}
.lsb_c00462{letter-spacing:0.000000px;}
.ls7_c00462{letter-spacing:0.007200px;}
.ls1_c00462{letter-spacing:0.014400px;}
.ls4_c00462{letter-spacing:0.021600px;}
.ls3_c00462{letter-spacing:0.028800px;}
.ls2_c00462{letter-spacing:0.036000px;}
.ls11_c00462{letter-spacing:0.043200px;}
.ls5_c00462{letter-spacing:0.050400px;}
.ls6_c00462{letter-spacing:0.064800px;}
.ls9_c00462{letter-spacing:0.079200px;}
.lsd_c00462{letter-spacing:9.360000px;}
.ls0_c00462{letter-spacing:54.864000px;}
.ls8_c00462{letter-spacing:62.784000px;}
.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:-72.000000px;}
.ws3_c00462{word-spacing:-18.064800px;}
.ws1_c00462{word-spacing:-18.014400px;}
.ws2_c00462{word-spacing:-18.000000px;}
.ws19_c00462{word-spacing:-2.512800px;}
.ws1a_c00462{word-spacing:-2.196000px;}
.ws1b_c00462{word-spacing:-2.174400px;}
.ws7_c00462{word-spacing:-1.094400px;}
.ws12_c00462{word-spacing:-0.360000px;}
.ws11_c00462{word-spacing:-0.208800px;}
.ws18_c00462{word-spacing:-0.007200px;}
.ws5_c00462{word-spacing:0.000000px;}
.wse_c00462{word-spacing:0.007200px;}
.ws1c_c00462{word-spacing:0.014400px;}
.ws4_c00462{word-spacing:0.192384px;}
.wsb_c00462{word-spacing:0.309600px;}
.ws8_c00462{word-spacing:1.008000px;}
.ws9_c00462{word-spacing:1.411200px;}
.ws6_c00462{word-spacing:1.720800px;}
.wsc_c00462{word-spacing:2.743200px;}
.ws13_c00462{word-spacing:2.829600px;}
.wsd_c00462{word-spacing:2.894400px;}
.ws15_c00462{word-spacing:3.153600px;}
.ws16_c00462{word-spacing:6.091200px;}
.ws17_c00462{word-spacing:6.120000px;}
.ws1d_c00462{word-spacing:8.532000px;}
.ws14_c00462{word-spacing:10.065600px;}
.wsf_c00462{word-spacing:16.905600px;}
.ws1e_c00462{word-spacing:17.971200px;}
.wsa_c00462{word-spacing:20.865600px;}
.ws10_c00462{word-spacing:31.298400px;}
._4_c00462{margin-left:-9.676800px;}
._5_c00462{margin-left:-8.503200px;}
._e_c00462{margin-left:-3.988800px;}
._8_c00462{margin-left:-2.736000px;}
._2_c00462{margin-left:-1.425600px;}
._0_c00462{width:1.034064px;}
._1_c00462{width:2.537136px;}
._10_c00462{width:3.978864px;}
._11_c00462{width:6.134400px;}
._9_c00462{width:8.236800px;}
._3_c00462{width:9.331200px;}
._f_c00462{width:10.425600px;}
._a_c00462{width:16.920000px;}
._6_c00462{width:20.491200px;}
._7_c00462{width:21.758400px;}
._b_c00462{width:30.693600px;}
._c_c00462{width:31.924800px;}
._d_c00462{width:33.249600px;}
.fc1_c00462{color:rgb(0,0,0);}
.fc0_c00462{color:rgb(32,31,30);}
.fs0_c00462{font-size:60.120000px;}
.fs1_c00462{font-size:72.000000px;}
.y0_c00462{bottom:0.000000px;}
.y5_c00462{bottom:57.360450px;}
.y4_c00462{bottom:78.060450px;}
.y26_c00462{bottom:111.450450px;}
.y25_c00462{bottom:142.500450px;}
.y24_c00462{bottom:173.550450px;}
.y23_c00462{bottom:204.600450px;}
.y22_c00462{bottom:235.650450px;}
.y21_c00462{bottom:266.610450px;}
.y20_c00462{bottom:297.750450px;}
.y1f_c00462{bottom:328.800450px;}
.y1e_c00462{bottom:359.850450px;}
.y1d_c00462{bottom:390.900450px;}
.y1c_c00462{bottom:421.950450px;}
.y1b_c00462{bottom:453.000450px;}
.y1a_c00462{bottom:484.050450px;}
.y19_c00462{bottom:515.010450px;}
.y18_c00462{bottom:546.060450px;}
.y17_c00462{bottom:577.110450px;}
.y16_c00462{bottom:608.160450px;}
.y15_c00462{bottom:639.210450px;}
.y14_c00462{bottom:670.260450px;}
.y13_c00462{bottom:701.310450px;}
.y12_c00462{bottom:733.710450px;}
.y11_c00462{bottom:764.670450px;}
.y10_c00462{bottom:795.720450px;}
.yf_c00462{bottom:828.120450px;}
.ye_c00462{bottom:859.170450px;}
.yd_c00462{bottom:890.130450px;}
.yc_c00462{bottom:922.530450px;}
.yb_c00462{bottom:953.580450px;}
.ya_c00462{bottom:984.630450px;}
.y9_c00462{bottom:1015.590450px;}
.y8_c00462{bottom:1047.990450px;}
.y7_c00462{bottom:1079.040450px;}
.y6_c00462{bottom:1110.090450px;}
.y3_c00462{bottom:1132.140450px;}
.y2_c00462{bottom:1165.441023px;}
.y1_c00462{bottom:1196.040600px;}
.h1_c00462{height:52.898555px;}
.h2_c00462{height:63.175781px;}
.h4_c00462{height:63.351562px;}
.h3_c00462{height:64.546875px;}
.h0_c00462{height:1263.000000px;}
.w1_c00462{width:892.500000px;}
.w0_c00462{width:892.830000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:127.620000px;}
.x3_c00462{left:154.620000px;}
.x4_c00462{left:181.620000px;}
.x2_c00462{left:738.450000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.lsa_c00462{letter-spacing:-0.090848pt;}
.lsf_c00462{letter-spacing:-0.057600pt;}
.ls10_c00462{letter-spacing:-0.025600pt;}
.ls12_c00462{letter-spacing:-0.019200pt;}
.lsc_c00462{letter-spacing:-0.012800pt;}
.lse_c00462{letter-spacing:-0.006400pt;}
.lsb_c00462{letter-spacing:0.000000pt;}
.ls7_c00462{letter-spacing:0.006400pt;}
.ls1_c00462{letter-spacing:0.012800pt;}
.ls4_c00462{letter-spacing:0.019200pt;}
.ls3_c00462{letter-spacing:0.025600pt;}
.ls2_c00462{letter-spacing:0.032000pt;}
.ls11_c00462{letter-spacing:0.038400pt;}
.ls5_c00462{letter-spacing:0.044800pt;}
.ls6_c00462{letter-spacing:0.057600pt;}
.ls9_c00462{letter-spacing:0.070400pt;}
.lsd_c00462{letter-spacing:8.320000pt;}
.ls0_c00462{letter-spacing:48.768000pt;}
.ls8_c00462{letter-spacing:55.808000pt;}
.ws0_c00462{word-spacing:-64.000000pt;}
.ws3_c00462{word-spacing:-16.057600pt;}
.ws1_c00462{word-spacing:-16.012800pt;}
.ws2_c00462{word-spacing:-16.000000pt;}
.ws19_c00462{word-spacing:-2.233600pt;}
.ws1a_c00462{word-spacing:-1.952000pt;}
.ws1b_c00462{word-spacing:-1.932800pt;}
.ws7_c00462{word-spacing:-0.972800pt;}
.ws12_c00462{word-spacing:-0.320000pt;}
.ws11_c00462{word-spacing:-0.185600pt;}
.ws18_c00462{word-spacing:-0.006400pt;}
.ws5_c00462{word-spacing:0.000000pt;}
.wse_c00462{word-spacing:0.006400pt;}
.ws1c_c00462{word-spacing:0.012800pt;}
.ws4_c00462{word-spacing:0.171008pt;}
.wsb_c00462{word-spacing:0.275200pt;}
.ws8_c00462{word-spacing:0.896000pt;}
.ws9_c00462{word-spacing:1.254400pt;}
.ws6_c00462{word-spacing:1.529600pt;}
.wsc_c00462{word-spacing:2.438400pt;}
.ws13_c00462{word-spacing:2.515200pt;}
.wsd_c00462{word-spacing:2.572800pt;}
.ws15_c00462{word-spacing:2.803200pt;}
.ws16_c00462{word-spacing:5.414400pt;}
.ws17_c00462{word-spacing:5.440000pt;}
.ws1d_c00462{word-spacing:7.584000pt;}
.ws14_c00462{word-spacing:8.947200pt;}
.wsf_c00462{word-spacing:15.027200pt;}
.ws1e_c00462{word-spacing:15.974400pt;}
.wsa_c00462{word-spacing:18.547200pt;}
.ws10_c00462{word-spacing:27.820800pt;}
._4_c00462{margin-left:-8.601600pt;}
._5_c00462{margin-left:-7.558400pt;}
._e_c00462{margin-left:-3.545600pt;}
._8_c00462{margin-left:-2.432000pt;}
._2_c00462{margin-left:-1.267200pt;}
._0_c00462{width:0.919168pt;}
._1_c00462{width:2.255232pt;}
._10_c00462{width:3.536768pt;}
._11_c00462{width:5.452800pt;}
._9_c00462{width:7.321600pt;}
._3_c00462{width:8.294400pt;}
._f_c00462{width:9.267200pt;}
._a_c00462{width:15.040000pt;}
._6_c00462{width:18.214400pt;}
._7_c00462{width:19.340800pt;}
._b_c00462{width:27.283200pt;}
._c_c00462{width:28.377600pt;}
._d_c00462{width:29.555200pt;}
.fs0_c00462{font-size:53.440000pt;}
.fs1_c00462{font-size:64.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y5_c00462{bottom:50.987067pt;}
.y4_c00462{bottom:69.387067pt;}
.y26_c00462{bottom:99.067067pt;}
.y25_c00462{bottom:126.667067pt;}
.y24_c00462{bottom:154.267067pt;}
.y23_c00462{bottom:181.867067pt;}
.y22_c00462{bottom:209.467067pt;}
.y21_c00462{bottom:236.987067pt;}
.y20_c00462{bottom:264.667067pt;}
.y1f_c00462{bottom:292.267067pt;}
.y1e_c00462{bottom:319.867067pt;}
.y1d_c00462{bottom:347.467067pt;}
.y1c_c00462{bottom:375.067067pt;}
.y1b_c00462{bottom:402.667067pt;}
.y1a_c00462{bottom:430.267067pt;}
.y19_c00462{bottom:457.787067pt;}
.y18_c00462{bottom:485.387067pt;}
.y17_c00462{bottom:512.987067pt;}
.y16_c00462{bottom:540.587067pt;}
.y15_c00462{bottom:568.187067pt;}
.y14_c00462{bottom:595.787067pt;}
.y13_c00462{bottom:623.387067pt;}
.y12_c00462{bottom:652.187067pt;}
.y11_c00462{bottom:679.707067pt;}
.y10_c00462{bottom:707.307067pt;}
.yf_c00462{bottom:736.107067pt;}
.ye_c00462{bottom:763.707067pt;}
.yd_c00462{bottom:791.227067pt;}
.yc_c00462{bottom:820.027067pt;}
.yb_c00462{bottom:847.627067pt;}
.ya_c00462{bottom:875.227067pt;}
.y9_c00462{bottom:902.747067pt;}
.y8_c00462{bottom:931.547067pt;}
.y7_c00462{bottom:959.147067pt;}
.y6_c00462{bottom:986.747067pt;}
.y3_c00462{bottom:1006.347067pt;}
.y2_c00462{bottom:1035.947576pt;}
.y1_c00462{bottom:1063.147200pt;}
.h1_c00462{height:47.020937pt;}
.h2_c00462{height:56.156250pt;}
.h4_c00462{height:56.312500pt;}
.h3_c00462{height:57.375000pt;}
.h0_c00462{height:1122.666667pt;}
.w1_c00462{width:793.333333pt;}
.w0_c00462{width:793.626667pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:113.440000pt;}
.x3_c00462{left:137.440000pt;}
.x4_c00462{left:161.440000pt;}
.x2_c00462{left:656.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_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_674725a4636019e24e03dee9.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.095703;font-style:normal;font-weight:normal;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_c3f551818c4ef050d959e200.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00463;src:url('chunks/assets/font_5df51557eb3d4f6c85d1656f.woff2')format("woff");}.ff3_c00463{font-family:ff3_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:ff4_c00463;src:url('chunks/assets/font_730ca418fc8fb9f55c39c1d9.woff2')format("woff");}.ff4_c00463{font-family:ff4_c00463;line-height:1.104004;font-style: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;}
.lsa_c00463{letter-spacing:-0.633600px;}
.lsb_c00463{letter-spacing:-0.072000px;}
.ls8_c00463{letter-spacing:-0.048096px;}
.ls9_c00463{letter-spacing:0.000000px;}
.ls7_c00463{letter-spacing:0.007200px;}
.ls2_c00463{letter-spacing:0.014400px;}
.ls1_c00463{letter-spacing:0.021600px;}
.ls4_c00463{letter-spacing:0.028800px;}
.ls3_c00463{letter-spacing:0.043200px;}
.ls5_c00463{letter-spacing:0.050400px;}
.ls6_c00463{letter-spacing:0.057600px;}
.ls0_c00463{letter-spacing:62.784000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00463{word-spacing:-18.000000px;}
.ws6_c00463{word-spacing:-1.432800px;}
.ws5_c00463{word-spacing:-0.144000px;}
.ws2_c00463{word-spacing:0.000000px;}
.ws1_c00463{word-spacing:0.138276px;}
.ws7_c00463{word-spacing:3.218400px;}
.ws4_c00463{word-spacing:3.492000px;}
.ws3_c00463{word-spacing:23.011200px;}
._2_c00463{margin-left:-1.886400px;}
._3_c00463{width:1.195200px;}
._4_c00463{width:2.296800px;}
._1_c00463{width:3.585600px;}
._0_c00463{width:22.658400px;}
.fc0_c00463{color:rgb(0,0,0);}
.fs0_c00463{font-size:60.120000px;}
.fs1_c00463{font-size:72.000000px;}
.fs2_c00463{font-size:83.880000px;}
.fs3_c00463{font-size:108.000000px;}
.y0_c00463{bottom:0.000000px;}
.y6_c00463{bottom:57.360450px;}
.y5_c00463{bottom:78.060450px;}
.y22_c00463{bottom:170.940600px;}
.y21_c00463{bottom:205.230600px;}
.y20_c00463{bottom:239.610600px;}
.y1f_c00463{bottom:273.900600px;}
.y1e_c00463{bottom:308.280600px;}
.y1d_c00463{bottom:342.570600px;}
.y1c_c00463{bottom:376.950600px;}
.y1b_c00463{bottom:411.240600px;}
.y1a_c00463{bottom:445.620600px;}
.y19_c00463{bottom:470.550600px;}
.y18_c00463{bottom:522.120600px;}
.y17_c00463{bottom:570.990450px;}
.y16_c00463{bottom:605.280450px;}
.y15_c00463{bottom:627.690450px;}
.y14_c00463{bottom:668.010450px;}
.y13_c00463{bottom:702.300450px;}
.y12_c00463{bottom:727.320450px;}
.y11_c00463{bottom:776.190450px;}
.y10_c00463{bottom:801.210450px;}
.yf_c00463{bottom:860.880450px;}
.ye_c00463{bottom:906.960450px;}
.yd_c00463{bottom:938.100450px;}
.yc_c00463{bottom:969.150450px;}
.yb_c00463{bottom:1000.200450px;}
.ya_c00463{bottom:1031.160450px;}
.y9_c00463{bottom:1062.210450px;}
.y8_c00463{bottom:1093.260450px;}
.y7_c00463{bottom:1124.310450px;}
.y4_c00463{bottom:1144.380657px;}
.y3_c00463{bottom:1161.660648px;}
.y2_c00463{bottom:1178.850459px;}
.y1_c00463{bottom:1196.130450px;}
.h1_c00463{height:52.898555px;}
.h2_c00463{height:63.175781px;}
.h4_c00463{height:63.351562px;}
.h3_c00463{height:64.546875px;}
.h5_c00463{height:74.500840px;}
.h6_c00463{height:95.923828px;}
.h0_c00463{height:1263.000000px;}
.w1_c00463{width:892.500000px;}
.w0_c00463{width:892.830000px;}
.x0_c00463{left:0.000000px;}
.x4_c00463{left:127.620000px;}
.x5_c00463{left:154.620000px;}
.x6_c00463{left:181.620000px;}
.x1_c00463{left:649.620000px;}
.x3_c00463{left:738.450000px;}
.x2_c00463{left:765.450198px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.lsa_c00463{letter-spacing:-0.563200pt;}
.lsb_c00463{letter-spacing:-0.064000pt;}
.ls8_c00463{letter-spacing:-0.042752pt;}
.ls9_c00463{letter-spacing:0.000000pt;}
.ls7_c00463{letter-spacing:0.006400pt;}
.ls2_c00463{letter-spacing:0.012800pt;}
.ls1_c00463{letter-spacing:0.019200pt;}
.ls4_c00463{letter-spacing:0.025600pt;}
.ls3_c00463{letter-spacing:0.038400pt;}
.ls5_c00463{letter-spacing:0.044800pt;}
.ls6_c00463{letter-spacing:0.051200pt;}
.ls0_c00463{letter-spacing:55.808000pt;}
.ws0_c00463{word-spacing:-16.000000pt;}
.ws6_c00463{word-spacing:-1.273600pt;}
.ws5_c00463{word-spacing:-0.128000pt;}
.ws2_c00463{word-spacing:0.000000pt;}
.ws1_c00463{word-spacing:0.122912pt;}
.ws7_c00463{word-spacing:2.860800pt;}
.ws4_c00463{word-spacing:3.104000pt;}
.ws3_c00463{word-spacing:20.454400pt;}
._2_c00463{margin-left:-1.676800pt;}
._3_c00463{width:1.062400pt;}
._4_c00463{width:2.041600pt;}
._1_c00463{width:3.187200pt;}
._0_c00463{width:20.140800pt;}
.fs0_c00463{font-size:53.440000pt;}
.fs1_c00463{font-size:64.000000pt;}
.fs2_c00463{font-size:74.560000pt;}
.fs3_c00463{font-size:96.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y6_c00463{bottom:50.987067pt;}
.y5_c00463{bottom:69.387067pt;}
.y22_c00463{bottom:151.947200pt;}
.y21_c00463{bottom:182.427200pt;}
.y20_c00463{bottom:212.987200pt;}
.y1f_c00463{bottom:243.467200pt;}
.y1e_c00463{bottom:274.027200pt;}
.y1d_c00463{bottom:304.507200pt;}
.y1c_c00463{bottom:335.067200pt;}
.y1b_c00463{bottom:365.547200pt;}
.y1a_c00463{bottom:396.107200pt;}
.y19_c00463{bottom:418.267200pt;}
.y18_c00463{bottom:464.107200pt;}
.y17_c00463{bottom:507.547067pt;}
.y16_c00463{bottom:538.027067pt;}
.y15_c00463{bottom:557.947067pt;}
.y14_c00463{bottom:593.787067pt;}
.y13_c00463{bottom:624.267067pt;}
.y12_c00463{bottom:646.507067pt;}
.y11_c00463{bottom:689.947067pt;}
.y10_c00463{bottom:712.187067pt;}
.yf_c00463{bottom:765.227067pt;}
.ye_c00463{bottom:806.187067pt;}
.yd_c00463{bottom:833.867067pt;}
.yc_c00463{bottom:861.467067pt;}
.yb_c00463{bottom:889.067067pt;}
.ya_c00463{bottom:916.587067pt;}
.y9_c00463{bottom:944.187067pt;}
.y8_c00463{bottom:971.787067pt;}
.y7_c00463{bottom:999.387067pt;}
.y4_c00463{bottom:1017.227251pt;}
.y3_c00463{bottom:1032.587243pt;}
.y2_c00463{bottom:1047.867075pt;}
.y1_c00463{bottom:1063.227067pt;}
.h1_c00463{height:47.020937pt;}
.h2_c00463{height:56.156250pt;}
.h4_c00463{height:56.312500pt;}
.h3_c00463{height:57.375000pt;}
.h5_c00463{height:66.222969pt;}
.h6_c00463{height:85.265625pt;}
.h0_c00463{height:1122.666667pt;}
.w1_c00463{width:793.333333pt;}
.w0_c00463{width:793.626667pt;}
.x0_c00463{left:0.000000pt;}
.x4_c00463{left:113.440000pt;}
.x5_c00463{left:137.440000pt;}
.x6_c00463{left:161.440000pt;}
.x1_c00463{left:577.440000pt;}
.x3_c00463{left:656.400000pt;}
.x2_c00463{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.095703;font-style:normal;font-weight:normal;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_7007c0ee960b81c032275574.woff2')format("woff");}.ff2_c00464{font-family:ff2_c00464;line-height:1.093262;font-style:normal;font-weight:normal;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_080b086b9717b05847c480d1.woff2')format("woff");}.ff3_c00464{font-family:ff3_c00464;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00464;src:url('chunks/assets/font_6119a1be5ca5f1c92891075f.woff2')format("woff");}.ff4_c00464{font-family:ff4_c00464;line-height:0.896973;font-style: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;}
.ls9_c00464{letter-spacing:-0.102204px;}
.ls10_c00464{letter-spacing:-0.079200px;}
.lsc_c00464{letter-spacing:-0.021600px;}
.lsd_c00464{letter-spacing:-0.014400px;}
.lsb_c00464{letter-spacing:-0.010800px;}
.lsf_c00464{letter-spacing:-0.007200px;}
.lsa_c00464{letter-spacing:0.000000px;}
.ls2_c00464{letter-spacing:0.007200px;}
.ls6_c00464{letter-spacing:0.014400px;}
.ls8_c00464{letter-spacing:0.021600px;}
.ls3_c00464{letter-spacing:0.028800px;}
.ls5_c00464{letter-spacing:0.036000px;}
.ls7_c00464{letter-spacing:0.043200px;}
.ls0_c00464{letter-spacing:0.050328px;}
.ls4_c00464{letter-spacing:0.050400px;}
.ls1_c00464{letter-spacing:0.064800px;}
.lse_c00464{letter-spacing:0.151200px;}
.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:-18.028800px;}
.ws2_c00464{word-spacing:0.000000px;}
.ws1_c00464{word-spacing:0.192384px;}
._3_c00464{margin-left:-2.656800px;}
._2_c00464{margin-left:-1.332000px;}
._0_c00464{width:1.034064px;}
._1_c00464{width:252.021600px;}
.fc1_c00464{color:rgb(0,0,0);}
.fc0_c00464{color:rgb(32,31,30);}
.fs0_c00464{font-size:60.120000px;}
.fs1_c00464{font-size:72.000000px;}
.fs3_c00464{font-size:83.880000px;}
.fs2_c00464{font-size:108.000000px;}
.y0_c00464{bottom:0.000000px;}
.y5_c00464{bottom:57.360450px;}
.y4_c00464{bottom:78.060450px;}
.y24_c00464{bottom:122.070450px;}
.y23_c00464{bottom:153.660450px;}
.y22_c00464{bottom:184.980450px;}
.y21_c00464{bottom:216.390450px;}
.y20_c00464{bottom:247.800450px;}
.y1f_c00464{bottom:279.210450px;}
.y1e_c00464{bottom:310.620450px;}
.y1d_c00464{bottom:344.100450px;}
.y1c_c00464{bottom:375.150450px;}
.y1b_c00464{bottom:406.380450px;}
.y1a_c00464{bottom:437.790600px;}
.y19_c00464{bottom:469.200600px;}
.y18_c00464{bottom:500.700600px;}
.y17_c00464{bottom:532.110450px;}
.y16_c00464{bottom:563.520450px;}
.y15_c00464{bottom:594.930450px;}
.y14_c00464{bottom:626.340450px;}
.y13_c00464{bottom:657.750450px;}
.y12_c00464{bottom:689.160450px;}
.y11_c00464{bottom:720.660450px;}
.y10_c00464{bottom:754.050450px;}
.yf_c00464{bottom:799.230450px;}
.ye_c00464{bottom:833.520450px;}
.yd_c00464{bottom:865.020450px;}
.yc_c00464{bottom:896.430450px;}
.yb_c00464{bottom:935.220450px;}
.ya_c00464{bottom:966.270450px;}
.y9_c00464{bottom:1007.310450px;}
.y8_c00464{bottom:1040.520450px;}
.y7_c00464{bottom:1077.780450px;}
.y6_c00464{bottom:1102.800450px;}
.y3_c00464{bottom:1132.140450px;}
.y2_c00464{bottom:1165.441023px;}
.y1_c00464{bottom:1196.040600px;}
.h1_c00464{height:52.898555px;}
.h2_c00464{height:63.175781px;}
.h5_c00464{height:63.949219px;}
.h4_c00464{height:74.500840px;}
.h3_c00464{height:95.923828px;}
.h0_c00464{height:1263.000000px;}
.w1_c00464{width:892.500000px;}
.w0_c00464{width:892.830000px;}
.x0_c00464{left:0.000000px;}
.x1_c00464{left:127.620000px;}
.x4_c00464{left:275.400000px;}
.x5_c00464{left:322.020000px;}
.x3_c00464{left:369.720000px;}
.x2_c00464{left:738.450000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls9_c00464{letter-spacing:-0.090848pt;}
.ls10_c00464{letter-spacing:-0.070400pt;}
.lsc_c00464{letter-spacing:-0.019200pt;}
.lsd_c00464{letter-spacing:-0.012800pt;}
.lsb_c00464{letter-spacing:-0.009600pt;}
.lsf_c00464{letter-spacing:-0.006400pt;}
.lsa_c00464{letter-spacing:0.000000pt;}
.ls2_c00464{letter-spacing:0.006400pt;}
.ls6_c00464{letter-spacing:0.012800pt;}
.ls8_c00464{letter-spacing:0.019200pt;}
.ls3_c00464{letter-spacing:0.025600pt;}
.ls5_c00464{letter-spacing:0.032000pt;}
.ls7_c00464{letter-spacing:0.038400pt;}
.ls0_c00464{letter-spacing:0.044736pt;}
.ls4_c00464{letter-spacing:0.044800pt;}
.ls1_c00464{letter-spacing:0.057600pt;}
.lse_c00464{letter-spacing:0.134400pt;}
.ws0_c00464{word-spacing:-16.025600pt;}
.ws2_c00464{word-spacing:0.000000pt;}
.ws1_c00464{word-spacing:0.171008pt;}
._3_c00464{margin-left:-2.361600pt;}
._2_c00464{margin-left:-1.184000pt;}
._0_c00464{width:0.919168pt;}
._1_c00464{width:224.019200pt;}
.fs0_c00464{font-size:53.440000pt;}
.fs1_c00464{font-size:64.000000pt;}
.fs3_c00464{font-size:74.560000pt;}
.fs2_c00464{font-size:96.000000pt;}
.y0_c00464{bottom:0.000000pt;}
.y5_c00464{bottom:50.987067pt;}
.y4_c00464{bottom:69.387067pt;}
.y24_c00464{bottom:108.507067pt;}
.y23_c00464{bottom:136.587067pt;}
.y22_c00464{bottom:164.427067pt;}
.y21_c00464{bottom:192.347067pt;}
.y20_c00464{bottom:220.267067pt;}
.y1f_c00464{bottom:248.187067pt;}
.y1e_c00464{bottom:276.107067pt;}
.y1d_c00464{bottom:305.867067pt;}
.y1c_c00464{bottom:333.467067pt;}
.y1b_c00464{bottom:361.227067pt;}
.y1a_c00464{bottom:389.147200pt;}
.y19_c00464{bottom:417.067200pt;}
.y18_c00464{bottom:445.067200pt;}
.y17_c00464{bottom:472.987067pt;}
.y16_c00464{bottom:500.907067pt;}
.y15_c00464{bottom:528.827067pt;}
.y14_c00464{bottom:556.747067pt;}
.y13_c00464{bottom:584.667067pt;}
.y12_c00464{bottom:612.587067pt;}
.y11_c00464{bottom:640.587067pt;}
.y10_c00464{bottom:670.267067pt;}
.yf_c00464{bottom:710.427067pt;}
.ye_c00464{bottom:740.907067pt;}
.yd_c00464{bottom:768.907067pt;}
.yc_c00464{bottom:796.827067pt;}
.yb_c00464{bottom:831.307067pt;}
.ya_c00464{bottom:858.907067pt;}
.y9_c00464{bottom:895.387067pt;}
.y8_c00464{bottom:924.907067pt;}
.y7_c00464{bottom:958.027067pt;}
.y6_c00464{bottom:980.267067pt;}
.y3_c00464{bottom:1006.347067pt;}
.y2_c00464{bottom:1035.947576pt;}
.y1_c00464{bottom:1063.147200pt;}
.h1_c00464{height:47.020937pt;}
.h2_c00464{height:56.156250pt;}
.h5_c00464{height:56.843750pt;}
.h4_c00464{height:66.222969pt;}
.h3_c00464{height:85.265625pt;}
.h0_c00464{height:1122.666667pt;}
.w1_c00464{width:793.333333pt;}
.w0_c00464{width:793.626667pt;}
.x0_c00464{left:0.000000pt;}
.x1_c00464{left:113.440000pt;}
.x4_c00464{left:244.800000pt;}
.x5_c00464{left:286.240000pt;}
.x3_c00464{left:328.640000pt;}
.x2_c00464{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.095703;font-style:normal;font-weight:normal;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_bf98aa503652c317424bbf51.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00465;src:url('chunks/assets/font_7d870133e76e4ce66112471f.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.104004;font-style: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;}
.lsf_c00465{letter-spacing:-0.064800px;}
.ls9_c00465{letter-spacing:-0.048096px;}
.lse_c00465{letter-spacing:-0.028800px;}
.lsd_c00465{letter-spacing:-0.021600px;}
.lsb_c00465{letter-spacing:-0.014400px;}
.lsc_c00465{letter-spacing:-0.007200px;}
.lsa_c00465{letter-spacing:0.000000px;}
.ls1_c00465{letter-spacing:0.007200px;}
.ls4_c00465{letter-spacing:0.014400px;}
.ls0_c00465{letter-spacing:0.021600px;}
.ls2_c00465{letter-spacing:0.028800px;}
.ls8_c00465{letter-spacing:0.036000px;}
.ls7_c00465{letter-spacing:0.043200px;}
.ls3_c00465{letter-spacing:0.050400px;}
.ls5_c00465{letter-spacing:0.057600px;}
.ls6_c00465{letter-spacing:0.151200px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00465{word-spacing:0.000000px;}
.ws0_c00465{word-spacing:0.138276px;}
._2_c00465{margin-left:-1.368000px;}
._1_c00465{width:3.182400px;}
._0_c00465{width:345.974400px;}
.fc0_c00465{color:rgb(0,0,0);}
.fs0_c00465{font-size:60.120000px;}
.fs1_c00465{font-size:72.000000px;}
.y0_c00465{bottom:0.000000px;}
.y6_c00465{bottom:57.360450px;}
.y5_c00465{bottom:78.060450px;}
.y25_c00465{bottom:139.080450px;}
.y24_c00465{bottom:170.490450px;}
.y23_c00465{bottom:201.900450px;}
.y22_c00465{bottom:234.210600px;}
.y21_c00465{bottom:265.620450px;}
.y20_c00465{bottom:297.030450px;}
.y1f_c00465{bottom:328.440450px;}
.y1e_c00465{bottom:360.840450px;}
.y1d_c00465{bottom:392.250600px;}
.y1c_c00465{bottom:423.660600px;}
.y1b_c00465{bottom:455.070450px;}
.y1a_c00465{bottom:487.380450px;}
.y19_c00465{bottom:520.680600px;}
.y18_c00465{bottom:563.790450px;}
.y17_c00465{bottom:594.930450px;}
.y16_c00465{bottom:637.950450px;}
.y15_c00465{bottom:669.270450px;}
.y14_c00465{bottom:700.680450px;}
.y13_c00465{bottom:732.090450px;}
.y12_c00465{bottom:765.570450px;}
.y11_c00465{bottom:796.620450px;}
.y10_c00465{bottom:839.550450px;}
.yf_c00465{bottom:870.870450px;}
.ye_c00465{bottom:902.370450px;}
.yd_c00465{bottom:933.780450px;}
.yc_c00465{bottom:965.190450px;}
.yb_c00465{bottom:996.600450px;}
.ya_c00465{bottom:1030.080450px;}
.y9_c00465{bottom:1061.130450px;}
.y8_c00465{bottom:1092.360450px;}
.y7_c00465{bottom:1123.770450px;}
.y4_c00465{bottom:1144.380657px;}
.y3_c00465{bottom:1161.660648px;}
.y2_c00465{bottom:1178.850459px;}
.y1_c00465{bottom:1196.130450px;}
.h1_c00465{height:52.898555px;}
.h2_c00465{height:63.175781px;}
.h3_c00465{height:63.949219px;}
.h0_c00465{height:1263.000000px;}
.w1_c00465{width:892.500000px;}
.w0_c00465{width:892.830000px;}
.x0_c00465{left:0.000000px;}
.x4_c00465{left:127.620000px;}
.x6_c00465{left:181.620000px;}
.x7_c00465{left:275.400000px;}
.x5_c00465{left:322.020000px;}
.x9_c00465{left:343.350000px;}
.x8_c00465{left:371.970000px;}
.x1_c00465{left:649.620000px;}
.x3_c00465{left:738.450000px;}
.x2_c00465{left:765.450198px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.lsf_c00465{letter-spacing:-0.057600pt;}
.ls9_c00465{letter-spacing:-0.042752pt;}
.lse_c00465{letter-spacing:-0.025600pt;}
.lsd_c00465{letter-spacing:-0.019200pt;}
.lsb_c00465{letter-spacing:-0.012800pt;}
.lsc_c00465{letter-spacing:-0.006400pt;}
.lsa_c00465{letter-spacing:0.000000pt;}
.ls1_c00465{letter-spacing:0.006400pt;}
.ls4_c00465{letter-spacing:0.012800pt;}
.ls0_c00465{letter-spacing:0.019200pt;}
.ls2_c00465{letter-spacing:0.025600pt;}
.ls8_c00465{letter-spacing:0.032000pt;}
.ls7_c00465{letter-spacing:0.038400pt;}
.ls3_c00465{letter-spacing:0.044800pt;}
.ls5_c00465{letter-spacing:0.051200pt;}
.ls6_c00465{letter-spacing:0.134400pt;}
.ws1_c00465{word-spacing:0.000000pt;}
.ws0_c00465{word-spacing:0.122912pt;}
._2_c00465{margin-left:-1.216000pt;}
._1_c00465{width:2.828800pt;}
._0_c00465{width:307.532800pt;}
.fs0_c00465{font-size:53.440000pt;}
.fs1_c00465{font-size:64.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y6_c00465{bottom:50.987067pt;}
.y5_c00465{bottom:69.387067pt;}
.y25_c00465{bottom:123.627067pt;}
.y24_c00465{bottom:151.547067pt;}
.y23_c00465{bottom:179.467067pt;}
.y22_c00465{bottom:208.187200pt;}
.y21_c00465{bottom:236.107067pt;}
.y20_c00465{bottom:264.027067pt;}
.y1f_c00465{bottom:291.947067pt;}
.y1e_c00465{bottom:320.747067pt;}
.y1d_c00465{bottom:348.667200pt;}
.y1c_c00465{bottom:376.587200pt;}
.y1b_c00465{bottom:404.507067pt;}
.y1a_c00465{bottom:433.227067pt;}
.y19_c00465{bottom:462.827200pt;}
.y18_c00465{bottom:501.147067pt;}
.y17_c00465{bottom:528.827067pt;}
.y16_c00465{bottom:567.067067pt;}
.y15_c00465{bottom:594.907067pt;}
.y14_c00465{bottom:622.827067pt;}
.y13_c00465{bottom:650.747067pt;}
.y12_c00465{bottom:680.507067pt;}
.y11_c00465{bottom:708.107067pt;}
.y10_c00465{bottom:746.267067pt;}
.yf_c00465{bottom:774.107067pt;}
.ye_c00465{bottom:802.107067pt;}
.yd_c00465{bottom:830.027067pt;}
.yc_c00465{bottom:857.947067pt;}
.yb_c00465{bottom:885.867067pt;}
.ya_c00465{bottom:915.627067pt;}
.y9_c00465{bottom:943.227067pt;}
.y8_c00465{bottom:970.987067pt;}
.y7_c00465{bottom:998.907067pt;}
.y4_c00465{bottom:1017.227251pt;}
.y3_c00465{bottom:1032.587243pt;}
.y2_c00465{bottom:1047.867075pt;}
.y1_c00465{bottom:1063.227067pt;}
.h1_c00465{height:47.020937pt;}
.h2_c00465{height:56.156250pt;}
.h3_c00465{height:56.843750pt;}
.h0_c00465{height:1122.666667pt;}
.w1_c00465{width:793.333333pt;}
.w0_c00465{width:793.626667pt;}
.x0_c00465{left:0.000000pt;}
.x4_c00465{left:113.440000pt;}
.x6_c00465{left:161.440000pt;}
.x7_c00465{left:244.800000pt;}
.x5_c00465{left:286.240000pt;}
.x9_c00465{left:305.200000pt;}
.x8_c00465{left:330.640000pt;}
.x1_c00465{left:577.440000pt;}
.x3_c00465{left:656.400000pt;}
.x2_c00465{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_286e0d35a79ddd0033dde46c.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.095703;font-style:normal;font-weight:normal;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_887e90c75b30d6a7459c04e0.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00466;src:url('chunks/assets/font_b410db13065a59f16629a51d.woff2')format("woff");}.ff3_c00466{font-family:ff3_c00466;line-height:1.104004;font-style: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;}
.lsb_c00466{letter-spacing:-0.165600px;}
.ls8_c00466{letter-spacing:-0.102204px;}
.lsa_c00466{letter-spacing:-0.079200px;}
.lsd_c00466{letter-spacing:-0.028800px;}
.lsc_c00466{letter-spacing:-0.021600px;}
.lse_c00466{letter-spacing:-0.014400px;}
.lsf_c00466{letter-spacing:-0.007200px;}
.ls9_c00466{letter-spacing:0.000000px;}
.ls7_c00466{letter-spacing:0.007200px;}
.ls6_c00466{letter-spacing:0.014400px;}
.ls1_c00466{letter-spacing:0.021600px;}
.ls4_c00466{letter-spacing:0.028800px;}
.ls5_c00466{letter-spacing:0.036000px;}
.ls0_c00466{letter-spacing:0.043200px;}
.ls3_c00466{letter-spacing:0.058716px;}
.ls2_c00466{letter-spacing:0.100800px;}
.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:-18.036000px;}
.ws2_c00466{word-spacing:0.000000px;}
.ws1_c00466{word-spacing:0.192384px;}
._0_c00466{width:1.034064px;}
._1_c00466{width:62.625600px;}
.fc1_c00466{color:rgb(0,0,0);}
.fc0_c00466{color:rgb(32,31,30);}
.fs0_c00466{font-size:60.120000px;}
.fs1_c00466{font-size:72.000000px;}
.fs2_c00466{font-size:83.880000px;}
.y0_c00466{bottom:0.000000px;}
.y5_c00466{bottom:57.360450px;}
.y4_c00466{bottom:78.060450px;}
.y25_c00466{bottom:150.240450px;}
.y24_c00466{bottom:181.650450px;}
.y23_c00466{bottom:213.060450px;}
.y22_c00466{bottom:244.110600px;}
.y21_c00466{bottom:275.610450px;}
.y20_c00466{bottom:307.020450px;}
.y1f_c00466{bottom:340.500600px;}
.y1e_c00466{bottom:371.550450px;}
.y1d_c00466{bottom:414.480450px;}
.y1c_c00466{bottom:435.540600px;}
.y1b_c00466{bottom:456.690600px;}
.y1a_c00466{bottom:479.640450px;}
.y19_c00466{bottom:510.870600px;}
.y18_c00466{bottom:541.920450px;}
.y17_c00466{bottom:584.850450px;}
.y16_c00466{bottom:605.820450px;}
.y15_c00466{bottom:626.880450px;}
.y14_c00466{bottom:649.830450px;}
.y13_c00466{bottom:681.060450px;}
.y12_c00466{bottom:712.110450px;}
.y11_c00466{bottom:755.130450px;}
.y10_c00466{bottom:780.690450px;}
.yf_c00466{bottom:806.340450px;}
.ye_c00466{bottom:839.820450px;}
.yd_c00466{bottom:870.870450px;}
.yc_c00466{bottom:905.070450px;}
.yb_c00466{bottom:938.370450px;}
.ya_c00466{bottom:984.180450px;}
.y9_c00466{bottom:1015.680450px;}
.y8_c00466{bottom:1047.090450px;}
.y7_c00466{bottom:1079.400450px;}
.y6_c00466{bottom:1110.900450px;}
.y3_c00466{bottom:1132.140450px;}
.y2_c00466{bottom:1165.441023px;}
.y1_c00466{bottom:1196.040600px;}
.h1_c00466{height:52.898555px;}
.h2_c00466{height:63.175781px;}
.h5_c00466{height:63.351562px;}
.h3_c00466{height:63.949219px;}
.h4_c00466{height:74.500840px;}
.h0_c00466{height:1263.000000px;}
.w1_c00466{width:892.500000px;}
.w0_c00466{width:892.830000px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:127.620000px;}
.x7_c00466{left:192.780000px;}
.x6_c00466{left:245.070000px;}
.x5_c00466{left:246.780000px;}
.x4_c00466{left:278.730000px;}
.x3_c00466{left:343.350000px;}
.x2_c00466{left:738.450000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.lsb_c00466{letter-spacing:-0.147200pt;}
.ls8_c00466{letter-spacing:-0.090848pt;}
.lsa_c00466{letter-spacing:-0.070400pt;}
.lsd_c00466{letter-spacing:-0.025600pt;}
.lsc_c00466{letter-spacing:-0.019200pt;}
.lse_c00466{letter-spacing:-0.012800pt;}
.lsf_c00466{letter-spacing:-0.006400pt;}
.ls9_c00466{letter-spacing:0.000000pt;}
.ls7_c00466{letter-spacing:0.006400pt;}
.ls6_c00466{letter-spacing:0.012800pt;}
.ls1_c00466{letter-spacing:0.019200pt;}
.ls4_c00466{letter-spacing:0.025600pt;}
.ls5_c00466{letter-spacing:0.032000pt;}
.ls0_c00466{letter-spacing:0.038400pt;}
.ls3_c00466{letter-spacing:0.052192pt;}
.ls2_c00466{letter-spacing:0.089600pt;}
.ws0_c00466{word-spacing:-16.032000pt;}
.ws2_c00466{word-spacing:0.000000pt;}
.ws1_c00466{word-spacing:0.171008pt;}
._0_c00466{width:0.919168pt;}
._1_c00466{width:55.667200pt;}
.fs0_c00466{font-size:53.440000pt;}
.fs1_c00466{font-size:64.000000pt;}
.fs2_c00466{font-size:74.560000pt;}
.y0_c00466{bottom:0.000000pt;}
.y5_c00466{bottom:50.987067pt;}
.y4_c00466{bottom:69.387067pt;}
.y25_c00466{bottom:133.547067pt;}
.y24_c00466{bottom:161.467067pt;}
.y23_c00466{bottom:189.387067pt;}
.y22_c00466{bottom:216.987200pt;}
.y21_c00466{bottom:244.987067pt;}
.y20_c00466{bottom:272.907067pt;}
.y1f_c00466{bottom:302.667200pt;}
.y1e_c00466{bottom:330.267067pt;}
.y1d_c00466{bottom:368.427067pt;}
.y1c_c00466{bottom:387.147200pt;}
.y1b_c00466{bottom:405.947200pt;}
.y1a_c00466{bottom:426.347067pt;}
.y19_c00466{bottom:454.107200pt;}
.y18_c00466{bottom:481.707067pt;}
.y17_c00466{bottom:519.867067pt;}
.y16_c00466{bottom:538.507067pt;}
.y15_c00466{bottom:557.227067pt;}
.y14_c00466{bottom:577.627067pt;}
.y13_c00466{bottom:605.387067pt;}
.y12_c00466{bottom:632.987067pt;}
.y11_c00466{bottom:671.227067pt;}
.y10_c00466{bottom:693.947067pt;}
.yf_c00466{bottom:716.747067pt;}
.ye_c00466{bottom:746.507067pt;}
.yd_c00466{bottom:774.107067pt;}
.yc_c00466{bottom:804.507067pt;}
.yb_c00466{bottom:834.107067pt;}
.ya_c00466{bottom:874.827067pt;}
.y9_c00466{bottom:902.827067pt;}
.y8_c00466{bottom:930.747067pt;}
.y7_c00466{bottom:959.467067pt;}
.y6_c00466{bottom:987.467067pt;}
.y3_c00466{bottom:1006.347067pt;}
.y2_c00466{bottom:1035.947576pt;}
.y1_c00466{bottom:1063.147200pt;}
.h1_c00466{height:47.020937pt;}
.h2_c00466{height:56.156250pt;}
.h5_c00466{height:56.312500pt;}
.h3_c00466{height:56.843750pt;}
.h4_c00466{height:66.222969pt;}
.h0_c00466{height:1122.666667pt;}
.w1_c00466{width:793.333333pt;}
.w0_c00466{width:793.626667pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:113.440000pt;}
.x7_c00466{left:171.360000pt;}
.x6_c00466{left:217.840000pt;}
.x5_c00466{left:219.360000pt;}
.x4_c00466{left:247.760000pt;}
.x3_c00466{left:305.200000pt;}
.x2_c00466{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.095703;font-style:normal;font-weight:normal;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_d457c9ffd12280462391cc08.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00467;src:url('chunks/assets/font_5b05f41456a3c2741a00d724.woff2')format("woff");}.ff3_c00467{font-family:ff3_c00467;line-height:1.104004;font-style: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;}
.ls5_c00467{letter-spacing:-0.050400px;}
.ls3_c00467{letter-spacing:-0.048096px;}
.ls8_c00467{letter-spacing:-0.028800px;}
.ls7_c00467{letter-spacing:-0.014400px;}
.ls6_c00467{letter-spacing:-0.007200px;}
.ls4_c00467{letter-spacing:0.000000px;}
.ls0_c00467{letter-spacing:0.021600px;}
.ls1_c00467{letter-spacing:0.064800px;}
.ls2_c00467{letter-spacing:0.079200px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00467{word-spacing:0.000000px;}
.ws0_c00467{word-spacing:0.138276px;}
._0_c00467{margin-left:-1.274400px;}
.fc0_c00467{color:rgb(0,0,0);}
.fs0_c00467{font-size:60.120000px;}
.fs1_c00467{font-size:72.000000px;}
.fs2_c00467{font-size:108.000000px;}
.y0_c00467{bottom:0.000000px;}
.y6_c00467{bottom:57.360450px;}
.y5_c00467{bottom:78.060450px;}
.y1e_c00467{bottom:157.620450px;}
.y1d_c00467{bottom:191.910450px;}
.y1c_c00467{bottom:216.930450px;}
.y1b_c00467{bottom:265.800450px;}
.y1a_c00467{bottom:300.090450px;}
.y19_c00467{bottom:325.110450px;}
.y18_c00467{bottom:373.980450px;}
.y17_c00467{bottom:398.910450px;}
.y16_c00467{bottom:456.780600px;}
.y15_c00467{bottom:488.190600px;}
.y14_c00467{bottom:519.600450px;}
.y13_c00467{bottom:553.080450px;}
.y12_c00467{bottom:596.100450px;}
.y11_c00467{bottom:627.420450px;}
.y10_c00467{bottom:658.830450px;}
.yf_c00467{bottom:690.240450px;}
.ye_c00467{bottom:721.650450px;}
.yd_c00467{bottom:753.060450px;}
.yc_c00467{bottom:784.470450px;}
.yb_c00467{bottom:817.950450px;}
.ya_c00467{bottom:860.970450px;}
.y9_c00467{bottom:903.990450px;}
.y23_c00467{bottom:935.310450px;}
.y22_c00467{bottom:966.720450px;}
.y21_c00467{bottom:998.130450px;}
.y20_c00467{bottom:1029.180450px;}
.y1f_c00467{bottom:1062.660450px;}
.y8_c00467{bottom:1092.450450px;}
.y7_c00467{bottom:1123.770450px;}
.y4_c00467{bottom:1144.380657px;}
.y3_c00467{bottom:1161.660648px;}
.y2_c00467{bottom:1178.850459px;}
.y1_c00467{bottom:1196.130450px;}
.h1_c00467{height:52.898555px;}
.h2_c00467{height:63.175781px;}
.h3_c00467{height:63.949219px;}
.h4_c00467{height:95.923828px;}
.h0_c00467{height:1263.000000px;}
.w1_c00467{width:892.500000px;}
.w0_c00467{width:892.830000px;}
.x0_c00467{left:0.000000px;}
.x4_c00467{left:127.620000px;}
.x8_c00467{left:162.450000px;}
.x5_c00467{left:192.780000px;}
.x6_c00467{left:297.270000px;}
.x7_c00467{left:320.850000px;}
.x1_c00467{left:649.620000px;}
.x3_c00467{left:738.450000px;}
.x2_c00467{left:765.450198px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls5_c00467{letter-spacing:-0.044800pt;}
.ls3_c00467{letter-spacing:-0.042752pt;}
.ls8_c00467{letter-spacing:-0.025600pt;}
.ls7_c00467{letter-spacing:-0.012800pt;}
.ls6_c00467{letter-spacing:-0.006400pt;}
.ls4_c00467{letter-spacing:0.000000pt;}
.ls0_c00467{letter-spacing:0.019200pt;}
.ls1_c00467{letter-spacing:0.057600pt;}
.ls2_c00467{letter-spacing:0.070400pt;}
.ws1_c00467{word-spacing:0.000000pt;}
.ws0_c00467{word-spacing:0.122912pt;}
._0_c00467{margin-left:-1.132800pt;}
.fs0_c00467{font-size:53.440000pt;}
.fs1_c00467{font-size:64.000000pt;}
.fs2_c00467{font-size:96.000000pt;}
.y0_c00467{bottom:0.000000pt;}
.y6_c00467{bottom:50.987067pt;}
.y5_c00467{bottom:69.387067pt;}
.y1e_c00467{bottom:140.107067pt;}
.y1d_c00467{bottom:170.587067pt;}
.y1c_c00467{bottom:192.827067pt;}
.y1b_c00467{bottom:236.267067pt;}
.y1a_c00467{bottom:266.747067pt;}
.y19_c00467{bottom:288.987067pt;}
.y18_c00467{bottom:332.427067pt;}
.y17_c00467{bottom:354.587067pt;}
.y16_c00467{bottom:406.027200pt;}
.y15_c00467{bottom:433.947200pt;}
.y14_c00467{bottom:461.867067pt;}
.y13_c00467{bottom:491.627067pt;}
.y12_c00467{bottom:529.867067pt;}
.y11_c00467{bottom:557.707067pt;}
.y10_c00467{bottom:585.627067pt;}
.yf_c00467{bottom:613.547067pt;}
.ye_c00467{bottom:641.467067pt;}
.yd_c00467{bottom:669.387067pt;}
.yc_c00467{bottom:697.307067pt;}
.yb_c00467{bottom:727.067067pt;}
.ya_c00467{bottom:765.307067pt;}
.y9_c00467{bottom:803.547067pt;}
.y23_c00467{bottom:831.387067pt;}
.y22_c00467{bottom:859.307067pt;}
.y21_c00467{bottom:887.227067pt;}
.y20_c00467{bottom:914.827067pt;}
.y1f_c00467{bottom:944.587067pt;}
.y8_c00467{bottom:971.067067pt;}
.y7_c00467{bottom:998.907067pt;}
.y4_c00467{bottom:1017.227251pt;}
.y3_c00467{bottom:1032.587243pt;}
.y2_c00467{bottom:1047.867075pt;}
.y1_c00467{bottom:1063.227067pt;}
.h1_c00467{height:47.020937pt;}
.h2_c00467{height:56.156250pt;}
.h3_c00467{height:56.843750pt;}
.h4_c00467{height:85.265625pt;}
.h0_c00467{height:1122.666667pt;}
.w1_c00467{width:793.333333pt;}
.w0_c00467{width:793.626667pt;}
.x0_c00467{left:0.000000pt;}
.x4_c00467{left:113.440000pt;}
.x8_c00467{left:144.400000pt;}
.x5_c00467{left:171.360000pt;}
.x6_c00467{left:264.240000pt;}
.x7_c00467{left:285.200000pt;}
.x1_c00467{left:577.440000pt;}
.x3_c00467{left:656.400000pt;}
.x2_c00467{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.095703;font-style:normal;font-weight:normal;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_50b4d701d1bf064bdd969e44.woff2')format("woff");}.ff2_c00468{font-family:ff2_c00468;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00468;src:url('chunks/assets/font_587715af660bd63cda4578ff.woff2')format("woff");}.ff3_c00468{font-family:ff3_c00468;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00468;src:url('chunks/assets/font_21c28748607d4a2cef0e5b08.woff2')format("woff");}.ff4_c00468{font-family:ff4_c00468;line-height:0.896973;font-style: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;}
.lsa_c00468{letter-spacing:-0.102204px;}
.lsd_c00468{letter-spacing:-0.079200px;}
.lsc_c00468{letter-spacing:-0.050400px;}
.lsf_c00468{letter-spacing:-0.021600px;}
.lse_c00468{letter-spacing:-0.007200px;}
.lsb_c00468{letter-spacing:0.000000px;}
.ls3_c00468{letter-spacing:0.007200px;}
.ls0_c00468{letter-spacing:0.010800px;}
.ls7_c00468{letter-spacing:0.014400px;}
.ls5_c00468{letter-spacing:0.021600px;}
.ls4_c00468{letter-spacing:0.028800px;}
.ls2_c00468{letter-spacing:0.036000px;}
.ls8_c00468{letter-spacing:0.050400px;}
.ls6_c00468{letter-spacing:0.057600px;}
.ls1_c00468{letter-spacing:0.067104px;}
.ls9_c00468{letter-spacing:0.086400px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00468{word-spacing:-0.007200px;}
.ws1_c00468{word-spacing:0.000000px;}
.ws0_c00468{word-spacing:0.192384px;}
._0_c00468{width:1.034064px;}
.fc1_c00468{color:rgb(0,0,0);}
.fc0_c00468{color:rgb(32,31,30);}
.fs0_c00468{font-size:60.120000px;}
.fs1_c00468{font-size:72.000000px;}
.fs3_c00468{font-size:83.880000px;}
.fs2_c00468{font-size:108.000000px;}
.y0_c00468{bottom:0.000000px;}
.y5_c00468{bottom:57.360450px;}
.y4_c00468{bottom:78.060450px;}
.y24_c00468{bottom:142.230450px;}
.y23_c00468{bottom:173.640450px;}
.y22_c00468{bottom:205.050450px;}
.y21_c00468{bottom:238.530600px;}
.y20_c00468{bottom:272.820450px;}
.y1f_c00468{bottom:307.110450px;}
.y1e_c00468{bottom:338.520450px;}
.y1d_c00468{bottom:369.930450px;}
.y1c_c00468{bottom:401.340600px;}
.y1b_c00468{bottom:432.390450px;}
.y1a_c00468{bottom:471.810450px;}
.y19_c00468{bottom:503.220450px;}
.y18_c00468{bottom:538.410450px;}
.y17_c00468{bottom:572.610450px;}
.y16_c00468{bottom:606.990450px;}
.y15_c00468{bottom:638.850450px;}
.y14_c00468{bottom:670.800450px;}
.y13_c00468{bottom:703.920450px;}
.y12_c00468{bottom:735.870450px;}
.y11_c00468{bottom:767.820450px;}
.y10_c00468{bottom:801.300450px;}
.yf_c00468{bottom:835.590450px;}
.ye_c00468{bottom:857.730450px;}
.yd_c00468{bottom:880.050450px;}
.yc_c00468{bottom:922.350450px;}
.yb_c00468{bottom:956.550450px;}
.ya_c00468{bottom:978.780450px;}
.y9_c00468{bottom:1004.070450px;}
.y8_c00468{bottom:1040.520450px;}
.y7_c00468{bottom:1077.780450px;}
.y6_c00468{bottom:1102.800450px;}
.y3_c00468{bottom:1132.140450px;}
.y2_c00468{bottom:1165.441023px;}
.y1_c00468{bottom:1196.040600px;}
.h5_c00468{height:49.042969px;}
.h1_c00468{height:52.898555px;}
.h2_c00468{height:63.175781px;}
.h6_c00468{height:63.949219px;}
.h4_c00468{height:74.500840px;}
.h3_c00468{height:95.923828px;}
.h0_c00468{height:1263.000000px;}
.w1_c00468{width:892.500000px;}
.w0_c00468{width:892.830000px;}
.x0_c00468{left:0.000000px;}
.x1_c00468{left:127.620000px;}
.x4_c00468{left:367.470000px;}
.x6_c00468{left:378.180000px;}
.x3_c00468{left:386.010000px;}
.x5_c00468{left:391.680000px;}
.x2_c00468{left:738.450000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.lsa_c00468{letter-spacing:-0.090848pt;}
.lsd_c00468{letter-spacing:-0.070400pt;}
.lsc_c00468{letter-spacing:-0.044800pt;}
.lsf_c00468{letter-spacing:-0.019200pt;}
.lse_c00468{letter-spacing:-0.006400pt;}
.lsb_c00468{letter-spacing:0.000000pt;}
.ls3_c00468{letter-spacing:0.006400pt;}
.ls0_c00468{letter-spacing:0.009600pt;}
.ls7_c00468{letter-spacing:0.012800pt;}
.ls5_c00468{letter-spacing:0.019200pt;}
.ls4_c00468{letter-spacing:0.025600pt;}
.ls2_c00468{letter-spacing:0.032000pt;}
.ls8_c00468{letter-spacing:0.044800pt;}
.ls6_c00468{letter-spacing:0.051200pt;}
.ls1_c00468{letter-spacing:0.059648pt;}
.ls9_c00468{letter-spacing:0.076800pt;}
.ws2_c00468{word-spacing:-0.006400pt;}
.ws1_c00468{word-spacing:0.000000pt;}
.ws0_c00468{word-spacing:0.171008pt;}
._0_c00468{width:0.919168pt;}
.fs0_c00468{font-size:53.440000pt;}
.fs1_c00468{font-size:64.000000pt;}
.fs3_c00468{font-size:74.560000pt;}
.fs2_c00468{font-size:96.000000pt;}
.y0_c00468{bottom:0.000000pt;}
.y5_c00468{bottom:50.987067pt;}
.y4_c00468{bottom:69.387067pt;}
.y24_c00468{bottom:126.427067pt;}
.y23_c00468{bottom:154.347067pt;}
.y22_c00468{bottom:182.267067pt;}
.y21_c00468{bottom:212.027200pt;}
.y20_c00468{bottom:242.507067pt;}
.y1f_c00468{bottom:272.987067pt;}
.y1e_c00468{bottom:300.907067pt;}
.y1d_c00468{bottom:328.827067pt;}
.y1c_c00468{bottom:356.747200pt;}
.y1b_c00468{bottom:384.347067pt;}
.y1a_c00468{bottom:419.387067pt;}
.y19_c00468{bottom:447.307067pt;}
.y18_c00468{bottom:478.587067pt;}
.y17_c00468{bottom:508.987067pt;}
.y16_c00468{bottom:539.547067pt;}
.y15_c00468{bottom:567.867067pt;}
.y14_c00468{bottom:596.267067pt;}
.y13_c00468{bottom:625.707067pt;}
.y12_c00468{bottom:654.107067pt;}
.y11_c00468{bottom:682.507067pt;}
.y10_c00468{bottom:712.267067pt;}
.yf_c00468{bottom:742.747067pt;}
.ye_c00468{bottom:762.427067pt;}
.yd_c00468{bottom:782.267067pt;}
.yc_c00468{bottom:819.867067pt;}
.yb_c00468{bottom:850.267067pt;}
.ya_c00468{bottom:870.027067pt;}
.y9_c00468{bottom:892.507067pt;}
.y8_c00468{bottom:924.907067pt;}
.y7_c00468{bottom:958.027067pt;}
.y6_c00468{bottom:980.267067pt;}
.y3_c00468{bottom:1006.347067pt;}
.y2_c00468{bottom:1035.947576pt;}
.y1_c00468{bottom:1063.147200pt;}
.h5_c00468{height:43.593750pt;}
.h1_c00468{height:47.020937pt;}
.h2_c00468{height:56.156250pt;}
.h6_c00468{height:56.843750pt;}
.h4_c00468{height:66.222969pt;}
.h3_c00468{height:85.265625pt;}
.h0_c00468{height:1122.666667pt;}
.w1_c00468{width:793.333333pt;}
.w0_c00468{width:793.626667pt;}
.x0_c00468{left:0.000000pt;}
.x1_c00468{left:113.440000pt;}
.x4_c00468{left:326.640000pt;}
.x6_c00468{left:336.160000pt;}
.x3_c00468{left:343.120000pt;}
.x5_c00468{left:348.160000pt;}
.x2_c00468{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.095703;font-style:normal;font-weight:normal;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_07d78e89e16d715e78484b44.woff2')format("woff");}.ff2_c00469{font-family:ff2_c00469;line-height:1.093262;font-style:normal;font-weight:normal;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_667e409c4204bae30a3af4dd.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.104004;font-style: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;}
.lsd_c00469{letter-spacing:-0.122400px;}
.ls7_c00469{letter-spacing:-0.048096px;}
.lsa_c00469{letter-spacing:-0.028800px;}
.lsb_c00469{letter-spacing:-0.021600px;}
.lsc_c00469{letter-spacing:-0.014400px;}
.ls9_c00469{letter-spacing:-0.007200px;}
.ls8_c00469{letter-spacing:0.000000px;}
.ls5_c00469{letter-spacing:0.007200px;}
.ls1_c00469{letter-spacing:0.014400px;}
.ls0_c00469{letter-spacing:0.021600px;}
.ls4_c00469{letter-spacing:0.043200px;}
.ls2_c00469{letter-spacing:0.100800px;}
.ls6_c00469{letter-spacing:0.115200px;}
.ls3_c00469{letter-spacing:0.165600px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00469{word-spacing:0.000000px;}
.ws0_c00469{word-spacing:0.138276px;}
.fc0_c00469{color:rgb(0,0,0);}
.fs0_c00469{font-size:60.120000px;}
.fs1_c00469{font-size:72.000000px;}
.y0_c00469{bottom:0.000000px;}
.y6_c00469{bottom:57.360450px;}
.y5_c00469{bottom:78.060450px;}
.y26_c00469{bottom:139.440450px;}
.y25_c00469{bottom:171.030450px;}
.y24_c00469{bottom:202.440450px;}
.y23_c00469{bottom:233.850450px;}
.y22_c00469{bottom:265.260450px;}
.y21_c00469{bottom:296.850450px;}
.y20_c00469{bottom:330.330450px;}
.y1f_c00469{bottom:361.380600px;}
.y1e_c00469{bottom:392.430600px;}
.y1d_c00469{bottom:423.660600px;}
.y1c_c00469{bottom:455.070450px;}
.y1b_c00469{bottom:486.480450px;}
.y1a_c00469{bottom:517.890450px;}
.y19_c00469{bottom:549.390450px;}
.y18_c00469{bottom:580.800450px;}
.y17_c00469{bottom:612.210450px;}
.y16_c00469{bottom:643.620450px;}
.y15_c00469{bottom:677.100450px;}
.y14_c00469{bottom:708.150450px;}
.y13_c00469{bottom:739.200450px;}
.y12_c00469{bottom:770.430450px;}
.y11_c00469{bottom:801.840450px;}
.y10_c00469{bottom:833.250450px;}
.yf_c00469{bottom:864.750600px;}
.ye_c00469{bottom:896.160450px;}
.yd_c00469{bottom:929.640450px;}
.yc_c00469{bottom:963.840450px;}
.yb_c00469{bottom:998.220450px;}
.ya_c00469{bottom:1029.540450px;}
.y9_c00469{bottom:1060.950450px;}
.y8_c00469{bottom:1092.360450px;}
.y7_c00469{bottom:1123.770450px;}
.y4_c00469{bottom:1144.380657px;}
.y3_c00469{bottom:1161.660648px;}
.y2_c00469{bottom:1178.850459px;}
.y1_c00469{bottom:1196.130450px;}
.h1_c00469{height:52.898555px;}
.h2_c00469{height:63.175781px;}
.h3_c00469{height:63.949219px;}
.h0_c00469{height:1263.000000px;}
.w1_c00469{width:892.500000px;}
.w0_c00469{width:892.830000px;}
.x0_c00469{left:0.000000px;}
.x4_c00469{left:127.620000px;}
.x7_c00469{left:181.620000px;}
.x8_c00469{left:353.520000px;}
.x9_c00469{left:370.260000px;}
.x6_c00469{left:376.920000px;}
.x5_c00469{left:378.180000px;}
.x1_c00469{left:649.620000px;}
.x3_c00469{left:738.450000px;}
.x2_c00469{left:765.450198px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.lsd_c00469{letter-spacing:-0.108800pt;}
.ls7_c00469{letter-spacing:-0.042752pt;}
.lsa_c00469{letter-spacing:-0.025600pt;}
.lsb_c00469{letter-spacing:-0.019200pt;}
.lsc_c00469{letter-spacing:-0.012800pt;}
.ls9_c00469{letter-spacing:-0.006400pt;}
.ls8_c00469{letter-spacing:0.000000pt;}
.ls5_c00469{letter-spacing:0.006400pt;}
.ls1_c00469{letter-spacing:0.012800pt;}
.ls0_c00469{letter-spacing:0.019200pt;}
.ls4_c00469{letter-spacing:0.038400pt;}
.ls2_c00469{letter-spacing:0.089600pt;}
.ls6_c00469{letter-spacing:0.102400pt;}
.ls3_c00469{letter-spacing:0.147200pt;}
.ws1_c00469{word-spacing:0.000000pt;}
.ws0_c00469{word-spacing:0.122912pt;}
.fs0_c00469{font-size:53.440000pt;}
.fs1_c00469{font-size:64.000000pt;}
.y0_c00469{bottom:0.000000pt;}
.y6_c00469{bottom:50.987067pt;}
.y5_c00469{bottom:69.387067pt;}
.y26_c00469{bottom:123.947067pt;}
.y25_c00469{bottom:152.027067pt;}
.y24_c00469{bottom:179.947067pt;}
.y23_c00469{bottom:207.867067pt;}
.y22_c00469{bottom:235.787067pt;}
.y21_c00469{bottom:263.867067pt;}
.y20_c00469{bottom:293.627067pt;}
.y1f_c00469{bottom:321.227200pt;}
.y1e_c00469{bottom:348.827200pt;}
.y1d_c00469{bottom:376.587200pt;}
.y1c_c00469{bottom:404.507067pt;}
.y1b_c00469{bottom:432.427067pt;}
.y1a_c00469{bottom:460.347067pt;}
.y19_c00469{bottom:488.347067pt;}
.y18_c00469{bottom:516.267067pt;}
.y17_c00469{bottom:544.187067pt;}
.y16_c00469{bottom:572.107067pt;}
.y15_c00469{bottom:601.867067pt;}
.y14_c00469{bottom:629.467067pt;}
.y13_c00469{bottom:657.067067pt;}
.y12_c00469{bottom:684.827067pt;}
.y11_c00469{bottom:712.747067pt;}
.y10_c00469{bottom:740.667067pt;}
.yf_c00469{bottom:768.667200pt;}
.ye_c00469{bottom:796.587067pt;}
.yd_c00469{bottom:826.347067pt;}
.yc_c00469{bottom:856.747067pt;}
.yb_c00469{bottom:887.307067pt;}
.ya_c00469{bottom:915.147067pt;}
.y9_c00469{bottom:943.067067pt;}
.y8_c00469{bottom:970.987067pt;}
.y7_c00469{bottom:998.907067pt;}
.y4_c00469{bottom:1017.227251pt;}
.y3_c00469{bottom:1032.587243pt;}
.y2_c00469{bottom:1047.867075pt;}
.y1_c00469{bottom:1063.227067pt;}
.h1_c00469{height:47.020937pt;}
.h2_c00469{height:56.156250pt;}
.h3_c00469{height:56.843750pt;}
.h0_c00469{height:1122.666667pt;}
.w1_c00469{width:793.333333pt;}
.w0_c00469{width:793.626667pt;}
.x0_c00469{left:0.000000pt;}
.x4_c00469{left:113.440000pt;}
.x7_c00469{left:161.440000pt;}
.x8_c00469{left:314.240000pt;}
.x9_c00469{left:329.120000pt;}
.x6_c00469{left:335.040000pt;}
.x5_c00469{left:336.160000pt;}
.x1_c00469{left:577.440000pt;}
.x3_c00469{left:656.400000pt;}
.x2_c00469{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.095703;font-style:normal;font-weight:normal;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_4c13b02ed7977e494c2e3a7d.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.093262;font-style:normal;font-weight:normal;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_6c3b03b3faf395b078af5e36.woff2')format("woff");}.ff3_c00470{font-family:ff3_c00470;line-height:1.104004;font-style: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;}
.ls5_c00470{letter-spacing:-0.102204px;}
.ls7_c00470{letter-spacing:-0.057600px;}
.ls8_c00470{letter-spacing:-0.036000px;}
.lsb_c00470{letter-spacing:-0.021600px;}
.lsc_c00470{letter-spacing:-0.014400px;}
.ls9_c00470{letter-spacing:-0.007200px;}
.ls6_c00470{letter-spacing:0.000000px;}
.ls3_c00470{letter-spacing:0.014400px;}
.ls1_c00470{letter-spacing:0.021600px;}
.ls4_c00470{letter-spacing:0.028800px;}
.ls0_c00470{letter-spacing:0.036000px;}
.ls2_c00470{letter-spacing:0.050400px;}
.lsa_c00470{letter-spacing:26.280000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00470{word-spacing:0.000000px;}
.ws0_c00470{word-spacing:0.192384px;}
._1_c00470{margin-left:-26.438400px;}
._2_c00470{margin-left:-25.430400px;}
._0_c00470{width:1.034064px;}
.fc1_c00470{color:rgb(0,0,0);}
.fc0_c00470{color:rgb(32,31,30);}
.fs0_c00470{font-size:60.120000px;}
.fs1_c00470{font-size:72.000000px;}
.y0_c00470{bottom:0.000000px;}
.y5_c00470{bottom:57.360450px;}
.y4_c00470{bottom:78.060450px;}
.y22_c00470{bottom:143.670450px;}
.y21_c00470{bottom:177.150450px;}
.y20_c00470{bottom:220.080450px;}
.y1f_c00470{bottom:263.100450px;}
.y1e_c00470{bottom:294.510450px;}
.y1d_c00470{bottom:325.920450px;}
.y1c_c00470{bottom:357.330450px;}
.y1b_c00470{bottom:388.740450px;}
.y1a_c00470{bottom:422.220450px;}
.y19_c00470{bottom:465.150450px;}
.y18_c00470{bottom:508.260450px;}
.y17_c00470{bottom:539.580450px;}
.y16_c00470{bottom:570.630450px;}
.y15_c00470{bottom:602.040450px;}
.y14_c00470{bottom:633.450450px;}
.y13_c00470{bottom:664.860450px;}
.y12_c00470{bottom:696.270450px;}
.y11_c00470{bottom:727.680450px;}
.y10_c00470{bottom:761.160450px;}
.yf_c00470{bottom:804.180450px;}
.ye_c00470{bottom:847.200450px;}
.yd_c00470{bottom:890.220450px;}
.yc_c00470{bottom:921.540600px;}
.yb_c00470{bottom:953.040600px;}
.ya_c00470{bottom:984.450450px;}
.y9_c00470{bottom:1015.860450px;}
.y8_c00470{bottom:1049.340450px;}
.y7_c00470{bottom:1080.390450px;}
.y6_c00470{bottom:1111.440450px;}
.y3_c00470{bottom:1132.140450px;}
.y2_c00470{bottom:1165.441023px;}
.y1_c00470{bottom:1196.040600px;}
.h1_c00470{height:52.898555px;}
.h2_c00470{height:63.175781px;}
.h3_c00470{height:63.949219px;}
.h0_c00470{height:1263.000000px;}
.w1_c00470{width:892.500000px;}
.w0_c00470{width:892.830000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:127.620000px;}
.x4_c00470{left:278.190000px;}
.x5_c00470{left:373.680000px;}
.x6_c00470{left:375.300000px;}
.x3_c00470{left:386.010000px;}
.x2_c00470{left:738.450000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls5_c00470{letter-spacing:-0.090848pt;}
.ls7_c00470{letter-spacing:-0.051200pt;}
.ls8_c00470{letter-spacing:-0.032000pt;}
.lsb_c00470{letter-spacing:-0.019200pt;}
.lsc_c00470{letter-spacing:-0.012800pt;}
.ls9_c00470{letter-spacing:-0.006400pt;}
.ls6_c00470{letter-spacing:0.000000pt;}
.ls3_c00470{letter-spacing:0.012800pt;}
.ls1_c00470{letter-spacing:0.019200pt;}
.ls4_c00470{letter-spacing:0.025600pt;}
.ls0_c00470{letter-spacing:0.032000pt;}
.ls2_c00470{letter-spacing:0.044800pt;}
.lsa_c00470{letter-spacing:23.360000pt;}
.ws1_c00470{word-spacing:0.000000pt;}
.ws0_c00470{word-spacing:0.171008pt;}
._1_c00470{margin-left:-23.500800pt;}
._2_c00470{margin-left:-22.604800pt;}
._0_c00470{width:0.919168pt;}
.fs0_c00470{font-size:53.440000pt;}
.fs1_c00470{font-size:64.000000pt;}
.y0_c00470{bottom:0.000000pt;}
.y5_c00470{bottom:50.987067pt;}
.y4_c00470{bottom:69.387067pt;}
.y22_c00470{bottom:127.707067pt;}
.y21_c00470{bottom:157.467067pt;}
.y20_c00470{bottom:195.627067pt;}
.y1f_c00470{bottom:233.867067pt;}
.y1e_c00470{bottom:261.787067pt;}
.y1d_c00470{bottom:289.707067pt;}
.y1c_c00470{bottom:317.627067pt;}
.y1b_c00470{bottom:345.547067pt;}
.y1a_c00470{bottom:375.307067pt;}
.y19_c00470{bottom:413.467067pt;}
.y18_c00470{bottom:451.787067pt;}
.y17_c00470{bottom:479.627067pt;}
.y16_c00470{bottom:507.227067pt;}
.y15_c00470{bottom:535.147067pt;}
.y14_c00470{bottom:563.067067pt;}
.y13_c00470{bottom:590.987067pt;}
.y12_c00470{bottom:618.907067pt;}
.y11_c00470{bottom:646.827067pt;}
.y10_c00470{bottom:676.587067pt;}
.yf_c00470{bottom:714.827067pt;}
.ye_c00470{bottom:753.067067pt;}
.yd_c00470{bottom:791.307067pt;}
.yc_c00470{bottom:819.147200pt;}
.yb_c00470{bottom:847.147200pt;}
.ya_c00470{bottom:875.067067pt;}
.y9_c00470{bottom:902.987067pt;}
.y8_c00470{bottom:932.747067pt;}
.y7_c00470{bottom:960.347067pt;}
.y6_c00470{bottom:987.947067pt;}
.y3_c00470{bottom:1006.347067pt;}
.y2_c00470{bottom:1035.947576pt;}
.y1_c00470{bottom:1063.147200pt;}
.h1_c00470{height:47.020937pt;}
.h2_c00470{height:56.156250pt;}
.h3_c00470{height:56.843750pt;}
.h0_c00470{height:1122.666667pt;}
.w1_c00470{width:793.333333pt;}
.w0_c00470{width:793.626667pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:113.440000pt;}
.x4_c00470{left:247.280000pt;}
.x5_c00470{left:332.160000pt;}
.x6_c00470{left:333.600000pt;}
.x3_c00470{left:343.120000pt;}
.x2_c00470{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.095703;font-style:normal;font-weight:normal;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_a45ebc49b69429376d90e179.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00471;src:url('chunks/assets/font_f3c4466cef6550f9be9fa965.woff2')format("woff");}.ff3_c00471{font-family:ff3_c00471;line-height:1.104004;font-style: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;}
.ls7_c00471{letter-spacing:-0.048096px;}
.ls9_c00471{letter-spacing:-0.036000px;}
.lsa_c00471{letter-spacing:-0.021600px;}
.lsb_c00471{letter-spacing:-0.014400px;}
.lsc_c00471{letter-spacing:-0.007200px;}
.ls8_c00471{letter-spacing:0.000000px;}
.ls6_c00471{letter-spacing:0.007200px;}
.ls0_c00471{letter-spacing:0.014400px;}
.ls5_c00471{letter-spacing:0.021600px;}
.ls1_c00471{letter-spacing:0.036000px;}
.ls2_c00471{letter-spacing:0.043200px;}
.ls3_c00471{letter-spacing:0.093600px;}
.ls4_c00471{letter-spacing:0.100800px;}
.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:0.000000px;}
.ws0_c00471{word-spacing:0.138276px;}
.fc0_c00471{color:rgb(0,0,0);}
.fs0_c00471{font-size:60.120000px;}
.fs1_c00471{font-size:72.000000px;}
.y0_c00471{bottom:0.000000px;}
.y6_c00471{bottom:57.360450px;}
.y5_c00471{bottom:78.060450px;}
.y25_c00471{bottom:130.170450px;}
.y24_c00471{bottom:173.190450px;}
.y23_c00471{bottom:204.510450px;}
.y22_c00471{bottom:235.920450px;}
.y21_c00471{bottom:267.330450px;}
.y20_c00471{bottom:298.380450px;}
.y1f_c00471{bottom:329.790450px;}
.y1e_c00471{bottom:361.200450px;}
.y1d_c00471{bottom:392.700600px;}
.y1c_c00471{bottom:426.180600px;}
.y1b_c00471{bottom:469.110600px;}
.y1a_c00471{bottom:500.430600px;}
.y19_c00471{bottom:531.840450px;}
.y18_c00471{bottom:564.510450px;}
.y17_c00471{bottom:595.920450px;}
.y16_c00471{bottom:627.330450px;}
.y15_c00471{bottom:660.810450px;}
.y14_c00471{bottom:703.740450px;}
.y13_c00471{bottom:746.850450px;}
.y12_c00471{bottom:778.170450px;}
.y11_c00471{bottom:809.580450px;}
.y10_c00471{bottom:840.990450px;}
.yf_c00471{bottom:872.400450px;}
.ye_c00471{bottom:903.810450px;}
.yd_c00471{bottom:935.220450px;}
.yc_c00471{bottom:966.720450px;}
.yb_c00471{bottom:998.130450px;}
.ya_c00471{bottom:1029.540450px;}
.y9_c00471{bottom:1060.950450px;}
.y8_c00471{bottom:1092.360450px;}
.y7_c00471{bottom:1123.770450px;}
.y4_c00471{bottom:1144.380657px;}
.y3_c00471{bottom:1161.660648px;}
.y2_c00471{bottom:1178.850459px;}
.y1_c00471{bottom:1196.130450px;}
.h1_c00471{height:52.898555px;}
.h2_c00471{height:63.175781px;}
.h3_c00471{height:63.949219px;}
.h0_c00471{height:1263.000000px;}
.w1_c00471{width:892.500000px;}
.w0_c00471{width:892.830000px;}
.x0_c00471{left:0.000000px;}
.x4_c00471{left:127.620000px;}
.x6_c00471{left:370.890000px;}
.x7_c00471{left:371.970000px;}
.x5_c00471{left:375.300000px;}
.x8_c00471{left:384.300000px;}
.x1_c00471{left:649.620000px;}
.x3_c00471{left:738.450000px;}
.x2_c00471{left:765.450198px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls7_c00471{letter-spacing:-0.042752pt;}
.ls9_c00471{letter-spacing:-0.032000pt;}
.lsa_c00471{letter-spacing:-0.019200pt;}
.lsb_c00471{letter-spacing:-0.012800pt;}
.lsc_c00471{letter-spacing:-0.006400pt;}
.ls8_c00471{letter-spacing:0.000000pt;}
.ls6_c00471{letter-spacing:0.006400pt;}
.ls0_c00471{letter-spacing:0.012800pt;}
.ls5_c00471{letter-spacing:0.019200pt;}
.ls1_c00471{letter-spacing:0.032000pt;}
.ls2_c00471{letter-spacing:0.038400pt;}
.ls3_c00471{letter-spacing:0.083200pt;}
.ls4_c00471{letter-spacing:0.089600pt;}
.ws1_c00471{word-spacing:0.000000pt;}
.ws0_c00471{word-spacing:0.122912pt;}
.fs0_c00471{font-size:53.440000pt;}
.fs1_c00471{font-size:64.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.y6_c00471{bottom:50.987067pt;}
.y5_c00471{bottom:69.387067pt;}
.y25_c00471{bottom:115.707067pt;}
.y24_c00471{bottom:153.947067pt;}
.y23_c00471{bottom:181.787067pt;}
.y22_c00471{bottom:209.707067pt;}
.y21_c00471{bottom:237.627067pt;}
.y20_c00471{bottom:265.227067pt;}
.y1f_c00471{bottom:293.147067pt;}
.y1e_c00471{bottom:321.067067pt;}
.y1d_c00471{bottom:349.067200pt;}
.y1c_c00471{bottom:378.827200pt;}
.y1b_c00471{bottom:416.987200pt;}
.y1a_c00471{bottom:444.827200pt;}
.y19_c00471{bottom:472.747067pt;}
.y18_c00471{bottom:501.787067pt;}
.y17_c00471{bottom:529.707067pt;}
.y16_c00471{bottom:557.627067pt;}
.y15_c00471{bottom:587.387067pt;}
.y14_c00471{bottom:625.547067pt;}
.y13_c00471{bottom:663.867067pt;}
.y12_c00471{bottom:691.707067pt;}
.y11_c00471{bottom:719.627067pt;}
.y10_c00471{bottom:747.547067pt;}
.yf_c00471{bottom:775.467067pt;}
.ye_c00471{bottom:803.387067pt;}
.yd_c00471{bottom:831.307067pt;}
.yc_c00471{bottom:859.307067pt;}
.yb_c00471{bottom:887.227067pt;}
.ya_c00471{bottom:915.147067pt;}
.y9_c00471{bottom:943.067067pt;}
.y8_c00471{bottom:970.987067pt;}
.y7_c00471{bottom:998.907067pt;}
.y4_c00471{bottom:1017.227251pt;}
.y3_c00471{bottom:1032.587243pt;}
.y2_c00471{bottom:1047.867075pt;}
.y1_c00471{bottom:1063.227067pt;}
.h1_c00471{height:47.020937pt;}
.h2_c00471{height:56.156250pt;}
.h3_c00471{height:56.843750pt;}
.h0_c00471{height:1122.666667pt;}
.w1_c00471{width:793.333333pt;}
.w0_c00471{width:793.626667pt;}
.x0_c00471{left:0.000000pt;}
.x4_c00471{left:113.440000pt;}
.x6_c00471{left:329.680000pt;}
.x7_c00471{left:330.640000pt;}
.x5_c00471{left:333.600000pt;}
.x8_c00471{left:341.600000pt;}
.x1_c00471{left:577.440000pt;}
.x3_c00471{left:656.400000pt;}
.x2_c00471{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.095703;font-style:normal;font-weight:normal;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_ac3ba65b64c16089f45b1680.woff2')format("woff");}.ff2_c00472{font-family:ff2_c00472;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00472;src:url('chunks/assets/font_fbfe90c919b3292a6bf30c49.woff2')format("woff");}.ff3_c00472{font-family:ff3_c00472;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00472;src:url('chunks/assets/font_c369e5e45942e7f75e449f2a.woff2')format("woff");}.ff4_c00472{font-family:ff4_c00472;line-height:0.896973;font-style: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;}
.ls4_c00472{letter-spacing:-0.102204px;}
.ls9_c00472{letter-spacing:-0.079200px;}
.lsa_c00472{letter-spacing:-0.072000px;}
.ls7_c00472{letter-spacing:-0.021600px;}
.ls8_c00472{letter-spacing:-0.014400px;}
.ls6_c00472{letter-spacing:-0.007200px;}
.ls5_c00472{letter-spacing:0.000000px;}
.ls1_c00472{letter-spacing:0.014400px;}
.ls0_c00472{letter-spacing:0.021600px;}
.ls2_c00472{letter-spacing:0.036000px;}
.ls3_c00472{letter-spacing:0.100800px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00472{word-spacing:0.000000px;}
.ws2_c00472{word-spacing:0.007200px;}
.ws0_c00472{word-spacing:0.192384px;}
._0_c00472{width:1.034064px;}
.fc1_c00472{color:rgb(0,0,0);}
.fc0_c00472{color:rgb(32,31,30);}
.fs0_c00472{font-size:60.120000px;}
.fs1_c00472{font-size:72.000000px;}
.y0_c00472{bottom:0.000000px;}
.y5_c00472{bottom:57.360450px;}
.y4_c00472{bottom:78.060450px;}
.y23_c00472{bottom:138.630450px;}
.y22_c00472{bottom:181.650450px;}
.y21_c00472{bottom:224.670450px;}
.y20_c00472{bottom:255.990450px;}
.y1f_c00472{bottom:287.400450px;}
.y1e_c00472{bottom:318.810450px;}
.y1d_c00472{bottom:350.310450px;}
.y1c_c00472{bottom:381.360450px;}
.y1b_c00472{bottom:412.770600px;}
.y1a_c00472{bottom:444.180600px;}
.y19_c00472{bottom:475.590600px;}
.y18_c00472{bottom:507.000600px;}
.y17_c00472{bottom:538.410450px;}
.y16_c00472{bottom:569.820450px;}
.y15_c00472{bottom:601.230450px;}
.y14_c00472{bottom:632.730450px;}
.y13_c00472{bottom:666.210450px;}
.y12_c00472{bottom:709.140450px;}
.y11_c00472{bottom:740.460450px;}
.y10_c00472{bottom:771.870450px;}
.yf_c00472{bottom:803.280450px;}
.ye_c00472{bottom:834.690450px;}
.yd_c00472{bottom:868.170450px;}
.yc_c00472{bottom:911.190450px;}
.yb_c00472{bottom:942.150450px;}
.ya_c00472{bottom:985.260450px;}
.y9_c00472{bottom:1016.580450px;}
.y8_c00472{bottom:1047.990450px;}
.y7_c00472{bottom:1079.400450px;}
.y6_c00472{bottom:1110.900450px;}
.y3_c00472{bottom:1132.140450px;}
.y2_c00472{bottom:1165.441023px;}
.y1_c00472{bottom:1196.040600px;}
.h4_c00472{height:49.042969px;}
.h1_c00472{height:52.898555px;}
.h2_c00472{height:63.175781px;}
.h3_c00472{height:63.949219px;}
.h0_c00472{height:1263.000000px;}
.w1_c00472{width:892.500000px;}
.w0_c00472{width:892.830000px;}
.x0_c00472{left:0.000000px;}
.x1_c00472{left:127.620000px;}
.x6_c00472{left:343.980000px;}
.x5_c00472{left:350.100000px;}
.x4_c00472{left:358.830000px;}
.x3_c00472{left:384.300000px;}
.x2_c00472{left:738.450000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls4_c00472{letter-spacing:-0.090848pt;}
.ls9_c00472{letter-spacing:-0.070400pt;}
.lsa_c00472{letter-spacing:-0.064000pt;}
.ls7_c00472{letter-spacing:-0.019200pt;}
.ls8_c00472{letter-spacing:-0.012800pt;}
.ls6_c00472{letter-spacing:-0.006400pt;}
.ls5_c00472{letter-spacing:0.000000pt;}
.ls1_c00472{letter-spacing:0.012800pt;}
.ls0_c00472{letter-spacing:0.019200pt;}
.ls2_c00472{letter-spacing:0.032000pt;}
.ls3_c00472{letter-spacing:0.089600pt;}
.ws1_c00472{word-spacing:0.000000pt;}
.ws2_c00472{word-spacing:0.006400pt;}
.ws0_c00472{word-spacing:0.171008pt;}
._0_c00472{width:0.919168pt;}
.fs0_c00472{font-size:53.440000pt;}
.fs1_c00472{font-size:64.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y5_c00472{bottom:50.987067pt;}
.y4_c00472{bottom:69.387067pt;}
.y23_c00472{bottom:123.227067pt;}
.y22_c00472{bottom:161.467067pt;}
.y21_c00472{bottom:199.707067pt;}
.y20_c00472{bottom:227.547067pt;}
.y1f_c00472{bottom:255.467067pt;}
.y1e_c00472{bottom:283.387067pt;}
.y1d_c00472{bottom:311.387067pt;}
.y1c_c00472{bottom:338.987067pt;}
.y1b_c00472{bottom:366.907200pt;}
.y1a_c00472{bottom:394.827200pt;}
.y19_c00472{bottom:422.747200pt;}
.y18_c00472{bottom:450.667200pt;}
.y17_c00472{bottom:478.587067pt;}
.y16_c00472{bottom:506.507067pt;}
.y15_c00472{bottom:534.427067pt;}
.y14_c00472{bottom:562.427067pt;}
.y13_c00472{bottom:592.187067pt;}
.y12_c00472{bottom:630.347067pt;}
.y11_c00472{bottom:658.187067pt;}
.y10_c00472{bottom:686.107067pt;}
.yf_c00472{bottom:714.027067pt;}
.ye_c00472{bottom:741.947067pt;}
.yd_c00472{bottom:771.707067pt;}
.yc_c00472{bottom:809.947067pt;}
.yb_c00472{bottom:837.467067pt;}
.ya_c00472{bottom:875.787067pt;}
.y9_c00472{bottom:903.627067pt;}
.y8_c00472{bottom:931.547067pt;}
.y7_c00472{bottom:959.467067pt;}
.y6_c00472{bottom:987.467067pt;}
.y3_c00472{bottom:1006.347067pt;}
.y2_c00472{bottom:1035.947576pt;}
.y1_c00472{bottom:1063.147200pt;}
.h4_c00472{height:43.593750pt;}
.h1_c00472{height:47.020937pt;}
.h2_c00472{height:56.156250pt;}
.h3_c00472{height:56.843750pt;}
.h0_c00472{height:1122.666667pt;}
.w1_c00472{width:793.333333pt;}
.w0_c00472{width:793.626667pt;}
.x0_c00472{left:0.000000pt;}
.x1_c00472{left:113.440000pt;}
.x6_c00472{left:305.760000pt;}
.x5_c00472{left:311.200000pt;}
.x4_c00472{left:318.960000pt;}
.x3_c00472{left:341.600000pt;}
.x2_c00472{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.095703;font-style:normal;font-weight:normal;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_ad62dce683deb8fc3a90423f.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00473;src:url('chunks/assets/font_eecabe4e536e758b333f8b5b.woff2')format("woff");}.ff3_c00473{font-family:ff3_c00473;line-height:1.104004;font-style: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;}
.lsc_c00473{letter-spacing:-0.561600px;}
.lsb_c00473{letter-spacing:-0.079200px;}
.ls9_c00473{letter-spacing:-0.048096px;}
.lsd_c00473{letter-spacing:-0.021600px;}
.lsf_c00473{letter-spacing:-0.014400px;}
.lse_c00473{letter-spacing:-0.007200px;}
.lsa_c00473{letter-spacing:0.000000px;}
.ls6_c00473{letter-spacing:0.007200px;}
.ls3_c00473{letter-spacing:0.014400px;}
.ls1_c00473{letter-spacing:0.021600px;}
.ls0_c00473{letter-spacing:0.036000px;}
.ls5_c00473{letter-spacing:0.043200px;}
.ls8_c00473{letter-spacing:0.050400px;}
.ls2_c00473{letter-spacing:0.057600px;}
.ls4_c00473{letter-spacing:0.072000px;}
.ls7_c00473{letter-spacing:0.100800px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00473{word-spacing:0.000000px;}
.ws0_c00473{word-spacing:0.138276px;}
._1_c00473{margin-left:-4.003200px;}
._0_c00473{width:1.123200px;}
.fc0_c00473{color:rgb(0,0,0);}
.fs0_c00473{font-size:60.120000px;}
.fs1_c00473{font-size:72.000000px;}
.y0_c00473{bottom:0.000000px;}
.y6_c00473{bottom:57.360450px;}
.y5_c00473{bottom:78.060450px;}
.y25_c00473{bottom:129.810450px;}
.y24_c00473{bottom:161.130450px;}
.y23_c00473{bottom:192.630450px;}
.y22_c00473{bottom:224.040600px;}
.y21_c00473{bottom:255.450450px;}
.y20_c00473{bottom:288.930450px;}
.y1f_c00473{bottom:319.980450px;}
.y1e_c00473{bottom:351.030450px;}
.y1d_c00473{bottom:382.260450px;}
.y1c_c00473{bottom:413.670450px;}
.y1b_c00473{bottom:445.080450px;}
.y1a_c00473{bottom:476.490450px;}
.y19_c00473{bottom:507.900450px;}
.y18_c00473{bottom:539.400450px;}
.y17_c00473{bottom:570.810450px;}
.y16_c00473{bottom:602.220450px;}
.y15_c00473{bottom:633.630450px;}
.y14_c00473{bottom:665.040450px;}
.y13_c00473{bottom:696.450450px;}
.y12_c00473{bottom:727.860450px;}
.y11_c00473{bottom:759.360450px;}
.y10_c00473{bottom:792.750450px;}
.yf_c00473{bottom:835.770600px;}
.ye_c00473{bottom:878.790600px;}
.yd_c00473{bottom:910.110450px;}
.yc_c00473{bottom:941.520450px;}
.yb_c00473{bottom:975.000450px;}
.ya_c00473{bottom:1018.020450px;}
.y9_c00473{bottom:1061.040450px;}
.y8_c00473{bottom:1092.360450px;}
.y7_c00473{bottom:1123.770450px;}
.y4_c00473{bottom:1144.380657px;}
.y3_c00473{bottom:1161.660648px;}
.y2_c00473{bottom:1178.850459px;}
.y1_c00473{bottom:1196.130450px;}
.h1_c00473{height:52.898555px;}
.h2_c00473{height:63.175781px;}
.h3_c00473{height:63.949219px;}
.h0_c00473{height:1263.000000px;}
.w1_c00473{width:892.500000px;}
.w0_c00473{width:892.830000px;}
.x0_c00473{left:0.000000px;}
.x4_c00473{left:127.620000px;}
.x5_c00473{left:343.980000px;}
.x6_c00473{left:352.890000px;}
.x7_c00473{left:389.970000px;}
.x1_c00473{left:649.620000px;}
.x3_c00473{left:738.450000px;}
.x2_c00473{left:765.450198px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.lsc_c00473{letter-spacing:-0.499200pt;}
.lsb_c00473{letter-spacing:-0.070400pt;}
.ls9_c00473{letter-spacing:-0.042752pt;}
.lsd_c00473{letter-spacing:-0.019200pt;}
.lsf_c00473{letter-spacing:-0.012800pt;}
.lse_c00473{letter-spacing:-0.006400pt;}
.lsa_c00473{letter-spacing:0.000000pt;}
.ls6_c00473{letter-spacing:0.006400pt;}
.ls3_c00473{letter-spacing:0.012800pt;}
.ls1_c00473{letter-spacing:0.019200pt;}
.ls0_c00473{letter-spacing:0.032000pt;}
.ls5_c00473{letter-spacing:0.038400pt;}
.ls8_c00473{letter-spacing:0.044800pt;}
.ls2_c00473{letter-spacing:0.051200pt;}
.ls4_c00473{letter-spacing:0.064000pt;}
.ls7_c00473{letter-spacing:0.089600pt;}
.ws1_c00473{word-spacing:0.000000pt;}
.ws0_c00473{word-spacing:0.122912pt;}
._1_c00473{margin-left:-3.558400pt;}
._0_c00473{width:0.998400pt;}
.fs0_c00473{font-size:53.440000pt;}
.fs1_c00473{font-size:64.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y6_c00473{bottom:50.987067pt;}
.y5_c00473{bottom:69.387067pt;}
.y25_c00473{bottom:115.387067pt;}
.y24_c00473{bottom:143.227067pt;}
.y23_c00473{bottom:171.227067pt;}
.y22_c00473{bottom:199.147200pt;}
.y21_c00473{bottom:227.067067pt;}
.y20_c00473{bottom:256.827067pt;}
.y1f_c00473{bottom:284.427067pt;}
.y1e_c00473{bottom:312.027067pt;}
.y1d_c00473{bottom:339.787067pt;}
.y1c_c00473{bottom:367.707067pt;}
.y1b_c00473{bottom:395.627067pt;}
.y1a_c00473{bottom:423.547067pt;}
.y19_c00473{bottom:451.467067pt;}
.y18_c00473{bottom:479.467067pt;}
.y17_c00473{bottom:507.387067pt;}
.y16_c00473{bottom:535.307067pt;}
.y15_c00473{bottom:563.227067pt;}
.y14_c00473{bottom:591.147067pt;}
.y13_c00473{bottom:619.067067pt;}
.y12_c00473{bottom:646.987067pt;}
.y11_c00473{bottom:674.987067pt;}
.y10_c00473{bottom:704.667067pt;}
.yf_c00473{bottom:742.907200pt;}
.ye_c00473{bottom:781.147200pt;}
.yd_c00473{bottom:808.987067pt;}
.yc_c00473{bottom:836.907067pt;}
.yb_c00473{bottom:866.667067pt;}
.ya_c00473{bottom:904.907067pt;}
.y9_c00473{bottom:943.147067pt;}
.y8_c00473{bottom:970.987067pt;}
.y7_c00473{bottom:998.907067pt;}
.y4_c00473{bottom:1017.227251pt;}
.y3_c00473{bottom:1032.587243pt;}
.y2_c00473{bottom:1047.867075pt;}
.y1_c00473{bottom:1063.227067pt;}
.h1_c00473{height:47.020937pt;}
.h2_c00473{height:56.156250pt;}
.h3_c00473{height:56.843750pt;}
.h0_c00473{height:1122.666667pt;}
.w1_c00473{width:793.333333pt;}
.w0_c00473{width:793.626667pt;}
.x0_c00473{left:0.000000pt;}
.x4_c00473{left:113.440000pt;}
.x5_c00473{left:305.760000pt;}
.x6_c00473{left:313.680000pt;}
.x7_c00473{left:346.640000pt;}
.x1_c00473{left:577.440000pt;}
.x3_c00473{left:656.400000pt;}
.x2_c00473{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.095703;font-style:normal;font-weight:normal;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_15c05e42d1f87256a8e76b28.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00474;src:url('chunks/assets/font_c8e6816462c07a717df86563.woff2')format("woff");}.ff3_c00474{font-family:ff3_c00474;line-height:1.104004;font-style: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;}
.lse_c00474{letter-spacing:-0.108000px;}
.lsa_c00474{letter-spacing:-0.102204px;}
.lsd_c00474{letter-spacing:-0.050400px;}
.lsc_c00474{letter-spacing:-0.014400px;}
.lsf_c00474{letter-spacing:-0.007200px;}
.lsb_c00474{letter-spacing:0.000000px;}
.ls3_c00474{letter-spacing:0.007200px;}
.ls2_c00474{letter-spacing:0.014400px;}
.ls8_c00474{letter-spacing:0.021600px;}
.ls4_c00474{letter-spacing:0.028800px;}
.ls6_c00474{letter-spacing:0.036000px;}
.ls7_c00474{letter-spacing:0.050400px;}
.ls9_c00474{letter-spacing:0.057600px;}
.ls5_c00474{letter-spacing:0.079200px;}
.ls1_c00474{letter-spacing:0.093600px;}
.ls0_c00474{letter-spacing:0.180000px;}
.ls10_c00474{letter-spacing:36.360000px;}
.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:0.000000px;}
.ws0_c00474{word-spacing:0.192384px;}
._4_c00474{margin-left:-36.518400px;}
._5_c00474{margin-left:-35.395200px;}
._3_c00474{margin-left:-4.039200px;}
._2_c00474{margin-left:-1.288800px;}
._0_c00474{width:1.034064px;}
._1_c00474{width:79.214400px;}
.fc1_c00474{color:rgb(0,0,0);}
.fc0_c00474{color:rgb(32,31,30);}
.fs0_c00474{font-size:60.120000px;}
.fs1_c00474{font-size:72.000000px;}
.y0_c00474{bottom:0.000000px;}
.y5_c00474{bottom:57.360450px;}
.y4_c00474{bottom:78.060450px;}
.y24_c00474{bottom:128.910450px;}
.y23_c00474{bottom:160.230450px;}
.y22_c00474{bottom:191.280450px;}
.y21_c00474{bottom:222.690450px;}
.y20_c00474{bottom:254.100450px;}
.y1f_c00474{bottom:285.510450px;}
.y1e_c00474{bottom:317.010450px;}
.y1d_c00474{bottom:348.420450px;}
.y1c_c00474{bottom:381.900450px;}
.y1b_c00474{bottom:424.830450px;}
.y1a_c00474{bottom:456.150450px;}
.y19_c00474{bottom:487.560450px;}
.y18_c00474{bottom:518.970450px;}
.y17_c00474{bottom:550.470450px;}
.y16_c00474{bottom:581.880450px;}
.y15_c00474{bottom:613.290450px;}
.y14_c00474{bottom:644.700450px;}
.y13_c00474{bottom:676.110450px;}
.y12_c00474{bottom:709.590450px;}
.y11_c00474{bottom:752.520450px;}
.y10_c00474{bottom:783.840450px;}
.yf_c00474{bottom:815.340450px;}
.ye_c00474{bottom:846.750450px;}
.yd_c00474{bottom:878.160450px;}
.yc_c00474{bottom:909.570450px;}
.yb_c00474{bottom:940.980450px;}
.ya_c00474{bottom:972.390450px;}
.y9_c00474{bottom:1003.800450px;}
.y8_c00474{bottom:1037.280450px;}
.y7_c00474{bottom:1068.330450px;}
.y6_c00474{bottom:1111.350450px;}
.y3_c00474{bottom:1132.140450px;}
.y2_c00474{bottom:1165.441023px;}
.y1_c00474{bottom:1196.040600px;}
.h1_c00474{height:52.898555px;}
.h2_c00474{height:63.175781px;}
.h3_c00474{height:63.949219px;}
.h0_c00474{height:1263.000000px;}
.w1_c00474{width:892.500000px;}
.w0_c00474{width:892.830000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:127.620000px;}
.x3_c00474{left:325.350000px;}
.x5_c00474{left:345.600000px;}
.x4_c00474{left:371.970000px;}
.x2_c00474{left:738.450000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.lse_c00474{letter-spacing:-0.096000pt;}
.lsa_c00474{letter-spacing:-0.090848pt;}
.lsd_c00474{letter-spacing:-0.044800pt;}
.lsc_c00474{letter-spacing:-0.012800pt;}
.lsf_c00474{letter-spacing:-0.006400pt;}
.lsb_c00474{letter-spacing:0.000000pt;}
.ls3_c00474{letter-spacing:0.006400pt;}
.ls2_c00474{letter-spacing:0.012800pt;}
.ls8_c00474{letter-spacing:0.019200pt;}
.ls4_c00474{letter-spacing:0.025600pt;}
.ls6_c00474{letter-spacing:0.032000pt;}
.ls7_c00474{letter-spacing:0.044800pt;}
.ls9_c00474{letter-spacing:0.051200pt;}
.ls5_c00474{letter-spacing:0.070400pt;}
.ls1_c00474{letter-spacing:0.083200pt;}
.ls0_c00474{letter-spacing:0.160000pt;}
.ls10_c00474{letter-spacing:32.320000pt;}
.ws1_c00474{word-spacing:0.000000pt;}
.ws0_c00474{word-spacing:0.171008pt;}
._4_c00474{margin-left:-32.460800pt;}
._5_c00474{margin-left:-31.462400pt;}
._3_c00474{margin-left:-3.590400pt;}
._2_c00474{margin-left:-1.145600pt;}
._0_c00474{width:0.919168pt;}
._1_c00474{width:70.412800pt;}
.fs0_c00474{font-size:53.440000pt;}
.fs1_c00474{font-size:64.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.y5_c00474{bottom:50.987067pt;}
.y4_c00474{bottom:69.387067pt;}
.y24_c00474{bottom:114.587067pt;}
.y23_c00474{bottom:142.427067pt;}
.y22_c00474{bottom:170.027067pt;}
.y21_c00474{bottom:197.947067pt;}
.y20_c00474{bottom:225.867067pt;}
.y1f_c00474{bottom:253.787067pt;}
.y1e_c00474{bottom:281.787067pt;}
.y1d_c00474{bottom:309.707067pt;}
.y1c_c00474{bottom:339.467067pt;}
.y1b_c00474{bottom:377.627067pt;}
.y1a_c00474{bottom:405.467067pt;}
.y19_c00474{bottom:433.387067pt;}
.y18_c00474{bottom:461.307067pt;}
.y17_c00474{bottom:489.307067pt;}
.y16_c00474{bottom:517.227067pt;}
.y15_c00474{bottom:545.147067pt;}
.y14_c00474{bottom:573.067067pt;}
.y13_c00474{bottom:600.987067pt;}
.y12_c00474{bottom:630.747067pt;}
.y11_c00474{bottom:668.907067pt;}
.y10_c00474{bottom:696.747067pt;}
.yf_c00474{bottom:724.747067pt;}
.ye_c00474{bottom:752.667067pt;}
.yd_c00474{bottom:780.587067pt;}
.yc_c00474{bottom:808.507067pt;}
.yb_c00474{bottom:836.427067pt;}
.ya_c00474{bottom:864.347067pt;}
.y9_c00474{bottom:892.267067pt;}
.y8_c00474{bottom:922.027067pt;}
.y7_c00474{bottom:949.627067pt;}
.y6_c00474{bottom:987.867067pt;}
.y3_c00474{bottom:1006.347067pt;}
.y2_c00474{bottom:1035.947576pt;}
.y1_c00474{bottom:1063.147200pt;}
.h1_c00474{height:47.020937pt;}
.h2_c00474{height:56.156250pt;}
.h3_c00474{height:56.843750pt;}
.h0_c00474{height:1122.666667pt;}
.w1_c00474{width:793.333333pt;}
.w0_c00474{width:793.626667pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:113.440000pt;}
.x3_c00474{left:289.200000pt;}
.x5_c00474{left:307.200000pt;}
.x4_c00474{left:330.640000pt;}
.x2_c00474{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.095703;font-style:normal;font-weight:normal;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_bd6d0669a7ae966d710e4909.woff2')format("woff");}.ff2_c00475{font-family:ff2_c00475;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00475;src:url('chunks/assets/font_15aac49ecf1432fe089f79c8.woff2')format("woff");}.ff3_c00475{font-family:ff3_c00475;line-height:0.896973;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00475;src:url('chunks/assets/font_7a5a2b490c398b6ffafe8034.woff2')format("woff");}.ff4_c00475{font-family:ff4_c00475;line-height:1.104004;font-style: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;}
.ls8_c00475{letter-spacing:-0.048096px;}
.lsd_c00475{letter-spacing:-0.036000px;}
.lsa_c00475{letter-spacing:-0.028800px;}
.lse_c00475{letter-spacing:-0.021600px;}
.lsc_c00475{letter-spacing:-0.014400px;}
.lsb_c00475{letter-spacing:-0.007200px;}
.ls9_c00475{letter-spacing:0.000000px;}
.ls0_c00475{letter-spacing:0.007200px;}
.ls5_c00475{letter-spacing:0.014400px;}
.ls2_c00475{letter-spacing:0.021600px;}
.ls7_c00475{letter-spacing:0.028800px;}
.ls1_c00475{letter-spacing:0.043200px;}
.ls4_c00475{letter-spacing:0.079200px;}
.ls6_c00475{letter-spacing:0.100800px;}
.ls3_c00475{letter-spacing:0.122400px;}
.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;}
}
.ws2_c00475{word-spacing:-0.007200px;}
.ws1_c00475{word-spacing:0.000000px;}
.ws0_c00475{word-spacing:0.138276px;}
._0_c00475{width:22.233600px;}
.fc0_c00475{color:rgb(0,0,0);}
.fs0_c00475{font-size:60.120000px;}
.fs1_c00475{font-size:72.000000px;}
.y0_c00475{bottom:0.000000px;}
.y6_c00475{bottom:57.360450px;}
.y5_c00475{bottom:78.060450px;}
.y26_c00475{bottom:121.350450px;}
.y25_c00475{bottom:152.760450px;}
.y24_c00475{bottom:186.240450px;}
.y23_c00475{bottom:223.680450px;}
.y22_c00475{bottom:261.120450px;}
.y21_c00475{bottom:292.350450px;}
.y20_c00475{bottom:323.760450px;}
.y1f_c00475{bottom:355.170450px;}
.y1e_c00475{bottom:386.580450px;}
.y1d_c00475{bottom:418.080450px;}
.y1c_c00475{bottom:449.490450px;}
.y1b_c00475{bottom:480.900450px;}
.y1a_c00475{bottom:512.310450px;}
.y19_c00475{bottom:543.720450px;}
.y18_c00475{bottom:575.130450px;}
.y17_c00475{bottom:606.180450px;}
.y16_c00475{bottom:637.590450px;}
.y15_c00475{bottom:669.090450px;}
.y14_c00475{bottom:700.500450px;}
.y13_c00475{bottom:731.910450px;}
.y12_c00475{bottom:765.390450px;}
.y11_c00475{bottom:802.830450px;}
.y10_c00475{bottom:834.060450px;}
.yf_c00475{bottom:865.470450px;}
.ye_c00475{bottom:896.880450px;}
.yd_c00475{bottom:928.290600px;}
.yc_c00475{bottom:959.700450px;}
.yb_c00475{bottom:991.110450px;}
.ya_c00475{bottom:1024.410450px;}
.y9_c00475{bottom:1058.880450px;}
.y8_c00475{bottom:1093.170450px;}
.y7_c00475{bottom:1124.130450px;}
.y4_c00475{bottom:1144.380657px;}
.y3_c00475{bottom:1161.660648px;}
.y2_c00475{bottom:1178.850459px;}
.y1_c00475{bottom:1196.130450px;}
.h3_c00475{height:49.042969px;}
.h1_c00475{height:52.898555px;}
.h2_c00475{height:63.175781px;}
.h4_c00475{height:63.949219px;}
.h0_c00475{height:1263.000000px;}
.w1_c00475{width:892.500000px;}
.w0_c00475{width:892.830000px;}
.x0_c00475{left:0.000000px;}
.x4_c00475{left:127.620000px;}
.x7_c00475{left:154.620000px;}
.x8_c00475{left:319.770000px;}
.x6_c00475{left:339.750000px;}
.x5_c00475{left:370.890000px;}
.x1_c00475{left:649.620000px;}
.x3_c00475{left:738.450000px;}
.x2_c00475{left:765.450198px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls8_c00475{letter-spacing:-0.042752pt;}
.lsd_c00475{letter-spacing:-0.032000pt;}
.lsa_c00475{letter-spacing:-0.025600pt;}
.lse_c00475{letter-spacing:-0.019200pt;}
.lsc_c00475{letter-spacing:-0.012800pt;}
.lsb_c00475{letter-spacing:-0.006400pt;}
.ls9_c00475{letter-spacing:0.000000pt;}
.ls0_c00475{letter-spacing:0.006400pt;}
.ls5_c00475{letter-spacing:0.012800pt;}
.ls2_c00475{letter-spacing:0.019200pt;}
.ls7_c00475{letter-spacing:0.025600pt;}
.ls1_c00475{letter-spacing:0.038400pt;}
.ls4_c00475{letter-spacing:0.070400pt;}
.ls6_c00475{letter-spacing:0.089600pt;}
.ls3_c00475{letter-spacing:0.108800pt;}
.ws2_c00475{word-spacing:-0.006400pt;}
.ws1_c00475{word-spacing:0.000000pt;}
.ws0_c00475{word-spacing:0.122912pt;}
._0_c00475{width:19.763200pt;}
.fs0_c00475{font-size:53.440000pt;}
.fs1_c00475{font-size:64.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y6_c00475{bottom:50.987067pt;}
.y5_c00475{bottom:69.387067pt;}
.y26_c00475{bottom:107.867067pt;}
.y25_c00475{bottom:135.787067pt;}
.y24_c00475{bottom:165.547067pt;}
.y23_c00475{bottom:198.827067pt;}
.y22_c00475{bottom:232.107067pt;}
.y21_c00475{bottom:259.867067pt;}
.y20_c00475{bottom:287.787067pt;}
.y1f_c00475{bottom:315.707067pt;}
.y1e_c00475{bottom:343.627067pt;}
.y1d_c00475{bottom:371.627067pt;}
.y1c_c00475{bottom:399.547067pt;}
.y1b_c00475{bottom:427.467067pt;}
.y1a_c00475{bottom:455.387067pt;}
.y19_c00475{bottom:483.307067pt;}
.y18_c00475{bottom:511.227067pt;}
.y17_c00475{bottom:538.827067pt;}
.y16_c00475{bottom:566.747067pt;}
.y15_c00475{bottom:594.747067pt;}
.y14_c00475{bottom:622.667067pt;}
.y13_c00475{bottom:650.587067pt;}
.y12_c00475{bottom:680.347067pt;}
.y11_c00475{bottom:713.627067pt;}
.y10_c00475{bottom:741.387067pt;}
.yf_c00475{bottom:769.307067pt;}
.ye_c00475{bottom:797.227067pt;}
.yd_c00475{bottom:825.147200pt;}
.yc_c00475{bottom:853.067067pt;}
.yb_c00475{bottom:880.987067pt;}
.ya_c00475{bottom:910.587067pt;}
.y9_c00475{bottom:941.227067pt;}
.y8_c00475{bottom:971.707067pt;}
.y7_c00475{bottom:999.227067pt;}
.y4_c00475{bottom:1017.227251pt;}
.y3_c00475{bottom:1032.587243pt;}
.y2_c00475{bottom:1047.867075pt;}
.y1_c00475{bottom:1063.227067pt;}
.h3_c00475{height:43.593750pt;}
.h1_c00475{height:47.020937pt;}
.h2_c00475{height:56.156250pt;}
.h4_c00475{height:56.843750pt;}
.h0_c00475{height:1122.666667pt;}
.w1_c00475{width:793.333333pt;}
.w0_c00475{width:793.626667pt;}
.x0_c00475{left:0.000000pt;}
.x4_c00475{left:113.440000pt;}
.x7_c00475{left:137.440000pt;}
.x8_c00475{left:284.240000pt;}
.x6_c00475{left:302.000000pt;}
.x5_c00475{left:329.680000pt;}
.x1_c00475{left:577.440000pt;}
.x3_c00475{left:656.400000pt;}
.x2_c00475{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.095703;font-style:normal;font-weight:normal;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_3ad2c784412f169681d8887f.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00476;src:url('chunks/assets/font_fb62039cf9a84e0cf3192ba2.woff2')format("woff");}.ff3_c00476{font-family:ff3_c00476;line-height:1.104004;font-style: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;}
.ls7_c00476{letter-spacing:-0.102204px;}
.lsa_c00476{letter-spacing:-0.043200px;}
.lse_c00476{letter-spacing:-0.036000px;}
.lsd_c00476{letter-spacing:-0.028800px;}
.lsc_c00476{letter-spacing:-0.021600px;}
.lsb_c00476{letter-spacing:-0.014400px;}
.ls9_c00476{letter-spacing:-0.007200px;}
.ls8_c00476{letter-spacing:0.000000px;}
.ls0_c00476{letter-spacing:0.007200px;}
.ls2_c00476{letter-spacing:0.014400px;}
.ls6_c00476{letter-spacing:0.021600px;}
.ls1_c00476{letter-spacing:0.036000px;}
.ls4_c00476{letter-spacing:0.043200px;}
.ls3_c00476{letter-spacing:0.050400px;}
.ls5_c00476{letter-spacing:0.100800px;}
.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:0.000000px;}
.ws0_c00476{word-spacing:0.192384px;}
._2_c00476{margin-left:-1.188000px;}
._0_c00476{width:1.034064px;}
._1_c00476{width:46.425600px;}
._3_c00476{width:64.476000px;}
.fc1_c00476{color:rgb(0,0,0);}
.fc0_c00476{color:rgb(32,31,30);}
.fs0_c00476{font-size:60.120000px;}
.fs1_c00476{font-size:72.000000px;}
.y0_c00476{bottom:0.000000px;}
.y5_c00476{bottom:57.360450px;}
.y4_c00476{bottom:78.060450px;}
.y24_c00476{bottom:147.360450px;}
.y23_c00476{bottom:184.800450px;}
.y22_c00476{bottom:216.030600px;}
.y21_c00476{bottom:247.440450px;}
.y20_c00476{bottom:278.850450px;}
.y1f_c00476{bottom:310.260450px;}
.y1e_c00476{bottom:343.740450px;}
.y1d_c00476{bottom:374.790600px;}
.y1c_c00476{bottom:412.230450px;}
.y1b_c00476{bottom:443.460600px;}
.y1a_c00476{bottom:474.870600px;}
.y19_c00476{bottom:508.350450px;}
.y18_c00476{bottom:545.790450px;}
.y17_c00476{bottom:577.020450px;}
.y16_c00476{bottom:608.520450px;}
.y15_c00476{bottom:639.930450px;}
.y14_c00476{bottom:671.340450px;}
.y13_c00476{bottom:702.750450px;}
.y12_c00476{bottom:734.160450px;}
.y11_c00476{bottom:765.570450px;}
.y10_c00476{bottom:796.980450px;}
.yf_c00476{bottom:828.390450px;}
.ye_c00476{bottom:859.890450px;}
.yd_c00476{bottom:891.300450px;}
.yc_c00476{bottom:922.350450px;}
.yb_c00476{bottom:953.760450px;}
.ya_c00476{bottom:985.170450px;}
.y9_c00476{bottom:1016.580450px;}
.y8_c00476{bottom:1047.990450px;}
.y7_c00476{bottom:1079.400450px;}
.y6_c00476{bottom:1110.900450px;}
.y3_c00476{bottom:1132.140450px;}
.y2_c00476{bottom:1165.441023px;}
.y1_c00476{bottom:1196.040600px;}
.h1_c00476{height:52.898555px;}
.h2_c00476{height:63.175781px;}
.h3_c00476{height:63.949219px;}
.h0_c00476{height:1263.000000px;}
.w1_c00476{width:892.500000px;}
.w0_c00476{width:892.830000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:127.620000px;}
.x4_c00476{left:313.020000px;}
.x3_c00476{left:319.770000px;}
.x2_c00476{left:738.450000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls7_c00476{letter-spacing:-0.090848pt;}
.lsa_c00476{letter-spacing:-0.038400pt;}
.lse_c00476{letter-spacing:-0.032000pt;}
.lsd_c00476{letter-spacing:-0.025600pt;}
.lsc_c00476{letter-spacing:-0.019200pt;}
.lsb_c00476{letter-spacing:-0.012800pt;}
.ls9_c00476{letter-spacing:-0.006400pt;}
.ls8_c00476{letter-spacing:0.000000pt;}
.ls0_c00476{letter-spacing:0.006400pt;}
.ls2_c00476{letter-spacing:0.012800pt;}
.ls6_c00476{letter-spacing:0.019200pt;}
.ls1_c00476{letter-spacing:0.032000pt;}
.ls4_c00476{letter-spacing:0.038400pt;}
.ls3_c00476{letter-spacing:0.044800pt;}
.ls5_c00476{letter-spacing:0.089600pt;}
.ws1_c00476{word-spacing:0.000000pt;}
.ws0_c00476{word-spacing:0.171008pt;}
._2_c00476{margin-left:-1.056000pt;}
._0_c00476{width:0.919168pt;}
._1_c00476{width:41.267200pt;}
._3_c00476{width:57.312000pt;}
.fs0_c00476{font-size:53.440000pt;}
.fs1_c00476{font-size:64.000000pt;}
.y0_c00476{bottom:0.000000pt;}
.y5_c00476{bottom:50.987067pt;}
.y4_c00476{bottom:69.387067pt;}
.y24_c00476{bottom:130.987067pt;}
.y23_c00476{bottom:164.267067pt;}
.y22_c00476{bottom:192.027200pt;}
.y21_c00476{bottom:219.947067pt;}
.y20_c00476{bottom:247.867067pt;}
.y1f_c00476{bottom:275.787067pt;}
.y1e_c00476{bottom:305.547067pt;}
.y1d_c00476{bottom:333.147200pt;}
.y1c_c00476{bottom:366.427067pt;}
.y1b_c00476{bottom:394.187200pt;}
.y1a_c00476{bottom:422.107200pt;}
.y19_c00476{bottom:451.867067pt;}
.y18_c00476{bottom:485.147067pt;}
.y17_c00476{bottom:512.907067pt;}
.y16_c00476{bottom:540.907067pt;}
.y15_c00476{bottom:568.827067pt;}
.y14_c00476{bottom:596.747067pt;}
.y13_c00476{bottom:624.667067pt;}
.y12_c00476{bottom:652.587067pt;}
.y11_c00476{bottom:680.507067pt;}
.y10_c00476{bottom:708.427067pt;}
.yf_c00476{bottom:736.347067pt;}
.ye_c00476{bottom:764.347067pt;}
.yd_c00476{bottom:792.267067pt;}
.yc_c00476{bottom:819.867067pt;}
.yb_c00476{bottom:847.787067pt;}
.ya_c00476{bottom:875.707067pt;}
.y9_c00476{bottom:903.627067pt;}
.y8_c00476{bottom:931.547067pt;}
.y7_c00476{bottom:959.467067pt;}
.y6_c00476{bottom:987.467067pt;}
.y3_c00476{bottom:1006.347067pt;}
.y2_c00476{bottom:1035.947576pt;}
.y1_c00476{bottom:1063.147200pt;}
.h1_c00476{height:47.020937pt;}
.h2_c00476{height:56.156250pt;}
.h3_c00476{height:56.843750pt;}
.h0_c00476{height:1122.666667pt;}
.w1_c00476{width:793.333333pt;}
.w0_c00476{width:793.626667pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:113.440000pt;}
.x4_c00476{left:278.240000pt;}
.x3_c00476{left:284.240000pt;}
.x2_c00476{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.095703;font-style:normal;font-weight:normal;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_5ff7422cb2dabf402b9c6ccb.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00477;src:url('chunks/assets/font_89b847392e9dac7ebbf5f7cc.woff2')format("woff");}.ff3_c00477{font-family:ff3_c00477;line-height:1.104004;font-style: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;}
.lsd_c00477{letter-spacing:-0.050400px;}
.ls9_c00477{letter-spacing:-0.048096px;}
.lsf_c00477{letter-spacing:-0.043200px;}
.lsb_c00477{letter-spacing:-0.036000px;}
.lsc_c00477{letter-spacing:-0.014400px;}
.lse_c00477{letter-spacing:-0.007200px;}
.lsa_c00477{letter-spacing:0.000000px;}
.ls3_c00477{letter-spacing:0.007200px;}
.ls4_c00477{letter-spacing:0.014400px;}
.ls0_c00477{letter-spacing:0.028800px;}
.ls2_c00477{letter-spacing:0.036000px;}
.ls8_c00477{letter-spacing:0.043200px;}
.ls1_c00477{letter-spacing:0.050400px;}
.ls6_c00477{letter-spacing:0.057600px;}
.ls7_c00477{letter-spacing:0.093600px;}
.ls5_c00477{letter-spacing:0.100800px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00477{word-spacing:0.000000px;}
.ws0_c00477{word-spacing:0.138276px;}
._0_c00477{margin-left:-1.108800px;}
._2_c00477{width:32.371200px;}
._1_c00477{width:73.094400px;}
.fc0_c00477{color:rgb(0,0,0);}
.fs0_c00477{font-size:60.120000px;}
.fs1_c00477{font-size:72.000000px;}
.y0_c00477{bottom:0.000000px;}
.y6_c00477{bottom:57.360450px;}
.y5_c00477{bottom:78.060450px;}
.y26_c00477{bottom:121.170450px;}
.y25_c00477{bottom:154.650450px;}
.y24_c00477{bottom:192.090600px;}
.y23_c00477{bottom:229.530600px;}
.y22_c00477{bottom:260.760450px;}
.y21_c00477{bottom:292.170450px;}
.y20_c00477{bottom:323.580450px;}
.y1f_c00477{bottom:354.990450px;}
.y1e_c00477{bottom:386.490450px;}
.y1d_c00477{bottom:417.540600px;}
.y1c_c00477{bottom:448.950600px;}
.y1b_c00477{bottom:480.360600px;}
.y1a_c00477{bottom:513.840600px;}
.y19_c00477{bottom:551.280450px;}
.y18_c00477{bottom:588.630450px;}
.y17_c00477{bottom:619.950450px;}
.y16_c00477{bottom:651.360450px;}
.y15_c00477{bottom:682.410450px;}
.y14_c00477{bottom:713.820450px;}
.y13_c00477{bottom:745.230450px;}
.y12_c00477{bottom:776.640450px;}
.y11_c00477{bottom:808.050450px;}
.y10_c00477{bottom:839.460450px;}
.yf_c00477{bottom:870.870450px;}
.ye_c00477{bottom:902.370450px;}
.yd_c00477{bottom:933.780450px;}
.yc_c00477{bottom:965.190450px;}
.yb_c00477{bottom:996.600450px;}
.ya_c00477{bottom:1028.010450px;}
.y9_c00477{bottom:1059.420450px;}
.y8_c00477{bottom:1090.830450px;}
.y7_c00477{bottom:1124.310450px;}
.y4_c00477{bottom:1144.380657px;}
.y3_c00477{bottom:1161.660648px;}
.y2_c00477{bottom:1178.850459px;}
.y1_c00477{bottom:1196.130450px;}
.h1_c00477{height:52.898555px;}
.h2_c00477{height:63.175781px;}
.h3_c00477{height:63.949219px;}
.h0_c00477{height:1263.000000px;}
.w1_c00477{width:892.500000px;}
.w0_c00477{width:892.830000px;}
.x0_c00477{left:0.000000px;}
.x4_c00477{left:127.620000px;}
.x6_c00477{left:298.980000px;}
.x5_c00477{left:320.850000px;}
.x7_c00477{left:336.060000px;}
.x1_c00477{left:649.620000px;}
.x3_c00477{left:738.450000px;}
.x2_c00477{left:765.450198px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.lsd_c00477{letter-spacing:-0.044800pt;}
.ls9_c00477{letter-spacing:-0.042752pt;}
.lsf_c00477{letter-spacing:-0.038400pt;}
.lsb_c00477{letter-spacing:-0.032000pt;}
.lsc_c00477{letter-spacing:-0.012800pt;}
.lse_c00477{letter-spacing:-0.006400pt;}
.lsa_c00477{letter-spacing:0.000000pt;}
.ls3_c00477{letter-spacing:0.006400pt;}
.ls4_c00477{letter-spacing:0.012800pt;}
.ls0_c00477{letter-spacing:0.025600pt;}
.ls2_c00477{letter-spacing:0.032000pt;}
.ls8_c00477{letter-spacing:0.038400pt;}
.ls1_c00477{letter-spacing:0.044800pt;}
.ls6_c00477{letter-spacing:0.051200pt;}
.ls7_c00477{letter-spacing:0.083200pt;}
.ls5_c00477{letter-spacing:0.089600pt;}
.ws1_c00477{word-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.122912pt;}
._0_c00477{margin-left:-0.985600pt;}
._2_c00477{width:28.774400pt;}
._1_c00477{width:64.972800pt;}
.fs0_c00477{font-size:53.440000pt;}
.fs1_c00477{font-size:64.000000pt;}
.y0_c00477{bottom:0.000000pt;}
.y6_c00477{bottom:50.987067pt;}
.y5_c00477{bottom:69.387067pt;}
.y26_c00477{bottom:107.707067pt;}
.y25_c00477{bottom:137.467067pt;}
.y24_c00477{bottom:170.747200pt;}
.y23_c00477{bottom:204.027200pt;}
.y22_c00477{bottom:231.787067pt;}
.y21_c00477{bottom:259.707067pt;}
.y20_c00477{bottom:287.627067pt;}
.y1f_c00477{bottom:315.547067pt;}
.y1e_c00477{bottom:343.547067pt;}
.y1d_c00477{bottom:371.147200pt;}
.y1c_c00477{bottom:399.067200pt;}
.y1b_c00477{bottom:426.987200pt;}
.y1a_c00477{bottom:456.747200pt;}
.y19_c00477{bottom:490.027067pt;}
.y18_c00477{bottom:523.227067pt;}
.y17_c00477{bottom:551.067067pt;}
.y16_c00477{bottom:578.987067pt;}
.y15_c00477{bottom:606.587067pt;}
.y14_c00477{bottom:634.507067pt;}
.y13_c00477{bottom:662.427067pt;}
.y12_c00477{bottom:690.347067pt;}
.y11_c00477{bottom:718.267067pt;}
.y10_c00477{bottom:746.187067pt;}
.yf_c00477{bottom:774.107067pt;}
.ye_c00477{bottom:802.107067pt;}
.yd_c00477{bottom:830.027067pt;}
.yc_c00477{bottom:857.947067pt;}
.yb_c00477{bottom:885.867067pt;}
.ya_c00477{bottom:913.787067pt;}
.y9_c00477{bottom:941.707067pt;}
.y8_c00477{bottom:969.627067pt;}
.y7_c00477{bottom:999.387067pt;}
.y4_c00477{bottom:1017.227251pt;}
.y3_c00477{bottom:1032.587243pt;}
.y2_c00477{bottom:1047.867075pt;}
.y1_c00477{bottom:1063.227067pt;}
.h1_c00477{height:47.020937pt;}
.h2_c00477{height:56.156250pt;}
.h3_c00477{height:56.843750pt;}
.h0_c00477{height:1122.666667pt;}
.w1_c00477{width:793.333333pt;}
.w0_c00477{width:793.626667pt;}
.x0_c00477{left:0.000000pt;}
.x4_c00477{left:113.440000pt;}
.x6_c00477{left:265.760000pt;}
.x5_c00477{left:285.200000pt;}
.x7_c00477{left:298.720000pt;}
.x1_c00477{left:577.440000pt;}
.x3_c00477{left:656.400000pt;}
.x2_c00477{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.095703;font-style:normal;font-weight:normal;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_62972a025b75bd6342eec589.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_b6176a00227c23b6ae211e29.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:1.104004;font-style: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;}
.ls8_c00478{letter-spacing:-0.102204px;}
.lsb_c00478{letter-spacing:-0.021600px;}
.lsa_c00478{letter-spacing:-0.007200px;}
.ls9_c00478{letter-spacing:0.000000px;}
.ls2_c00478{letter-spacing:0.007200px;}
.ls3_c00478{letter-spacing:0.014400px;}
.ls7_c00478{letter-spacing:0.028800px;}
.ls1_c00478{letter-spacing:0.036000px;}
.ls5_c00478{letter-spacing:0.043200px;}
.ls4_c00478{letter-spacing:0.050400px;}
.ls0_c00478{letter-spacing:0.057600px;}
.ls6_c00478{letter-spacing:0.064800px;}
.lsc_c00478{letter-spacing:95.040000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00478{word-spacing:0.000000px;}
.ws0_c00478{word-spacing:0.192384px;}
._2_c00478{margin-left:-95.198400px;}
._3_c00478{margin-left:-94.132800px;}
._0_c00478{width:1.034064px;}
._1_c00478{width:79.560000px;}
.fc1_c00478{color:rgb(0,0,0);}
.fc0_c00478{color:rgb(32,31,30);}
.fs0_c00478{font-size:60.120000px;}
.fs1_c00478{font-size:72.000000px;}
.y0_c00478{bottom:0.000000px;}
.y5_c00478{bottom:57.360450px;}
.y4_c00478{bottom:78.060450px;}
.y25_c00478{bottom:123.600450px;}
.y24_c00478{bottom:155.100450px;}
.y23_c00478{bottom:186.510450px;}
.y22_c00478{bottom:217.920450px;}
.y21_c00478{bottom:249.330450px;}
.y20_c00478{bottom:280.740450px;}
.y1f_c00478{bottom:312.150450px;}
.y1e_c00478{bottom:343.560450px;}
.y1d_c00478{bottom:375.060450px;}
.y1c_c00478{bottom:406.470450px;}
.y1b_c00478{bottom:437.880450px;}
.y1a_c00478{bottom:469.290600px;}
.y19_c00478{bottom:500.700600px;}
.y18_c00478{bottom:532.110450px;}
.y17_c00478{bottom:563.520450px;}
.y16_c00478{bottom:595.020450px;}
.y15_c00478{bottom:626.430450px;}
.y14_c00478{bottom:657.840450px;}
.y13_c00478{bottom:689.250450px;}
.y12_c00478{bottom:722.730450px;}
.y11_c00478{bottom:760.170450px;}
.y10_c00478{bottom:797.520450px;}
.yf_c00478{bottom:828.840450px;}
.ye_c00478{bottom:859.890450px;}
.yd_c00478{bottom:891.300450px;}
.yc_c00478{bottom:922.350450px;}
.yb_c00478{bottom:953.760450px;}
.ya_c00478{bottom:985.170450px;}
.y9_c00478{bottom:1016.580450px;}
.y8_c00478{bottom:1047.990450px;}
.y7_c00478{bottom:1079.400450px;}
.y6_c00478{bottom:1110.900450px;}
.y3_c00478{bottom:1132.140450px;}
.y2_c00478{bottom:1165.441023px;}
.y1_c00478{bottom:1196.040600px;}
.h1_c00478{height:52.898555px;}
.h2_c00478{height:63.175781px;}
.h3_c00478{height:63.949219px;}
.h0_c00478{height:1263.000000px;}
.w1_c00478{width:892.500000px;}
.w0_c00478{width:892.830000px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:127.620000px;}
.x4_c00478{left:312.480000px;}
.x3_c00478{left:336.060000px;}
.x2_c00478{left:738.450000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls8_c00478{letter-spacing:-0.090848pt;}
.lsb_c00478{letter-spacing:-0.019200pt;}
.lsa_c00478{letter-spacing:-0.006400pt;}
.ls9_c00478{letter-spacing:0.000000pt;}
.ls2_c00478{letter-spacing:0.006400pt;}
.ls3_c00478{letter-spacing:0.012800pt;}
.ls7_c00478{letter-spacing:0.025600pt;}
.ls1_c00478{letter-spacing:0.032000pt;}
.ls5_c00478{letter-spacing:0.038400pt;}
.ls4_c00478{letter-spacing:0.044800pt;}
.ls0_c00478{letter-spacing:0.051200pt;}
.ls6_c00478{letter-spacing:0.057600pt;}
.lsc_c00478{letter-spacing:84.480000pt;}
.ws1_c00478{word-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.171008pt;}
._2_c00478{margin-left:-84.620800pt;}
._3_c00478{margin-left:-83.673600pt;}
._0_c00478{width:0.919168pt;}
._1_c00478{width:70.720000pt;}
.fs0_c00478{font-size:53.440000pt;}
.fs1_c00478{font-size:64.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y5_c00478{bottom:50.987067pt;}
.y4_c00478{bottom:69.387067pt;}
.y25_c00478{bottom:109.867067pt;}
.y24_c00478{bottom:137.867067pt;}
.y23_c00478{bottom:165.787067pt;}
.y22_c00478{bottom:193.707067pt;}
.y21_c00478{bottom:221.627067pt;}
.y20_c00478{bottom:249.547067pt;}
.y1f_c00478{bottom:277.467067pt;}
.y1e_c00478{bottom:305.387067pt;}
.y1d_c00478{bottom:333.387067pt;}
.y1c_c00478{bottom:361.307067pt;}
.y1b_c00478{bottom:389.227067pt;}
.y1a_c00478{bottom:417.147200pt;}
.y19_c00478{bottom:445.067200pt;}
.y18_c00478{bottom:472.987067pt;}
.y17_c00478{bottom:500.907067pt;}
.y16_c00478{bottom:528.907067pt;}
.y15_c00478{bottom:556.827067pt;}
.y14_c00478{bottom:584.747067pt;}
.y13_c00478{bottom:612.667067pt;}
.y12_c00478{bottom:642.427067pt;}
.y11_c00478{bottom:675.707067pt;}
.y10_c00478{bottom:708.907067pt;}
.yf_c00478{bottom:736.747067pt;}
.ye_c00478{bottom:764.347067pt;}
.yd_c00478{bottom:792.267067pt;}
.yc_c00478{bottom:819.867067pt;}
.yb_c00478{bottom:847.787067pt;}
.ya_c00478{bottom:875.707067pt;}
.y9_c00478{bottom:903.627067pt;}
.y8_c00478{bottom:931.547067pt;}
.y7_c00478{bottom:959.467067pt;}
.y6_c00478{bottom:987.467067pt;}
.y3_c00478{bottom:1006.347067pt;}
.y2_c00478{bottom:1035.947576pt;}
.y1_c00478{bottom:1063.147200pt;}
.h1_c00478{height:47.020937pt;}
.h2_c00478{height:56.156250pt;}
.h3_c00478{height:56.843750pt;}
.h0_c00478{height:1122.666667pt;}
.w1_c00478{width:793.333333pt;}
.w0_c00478{width:793.626667pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:113.440000pt;}
.x4_c00478{left:277.760000pt;}
.x3_c00478{left:298.720000pt;}
.x2_c00478{left:656.400000pt;}
}





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

.ir_c00479:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00479{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00479;src:url('chunks/assets/font_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.095703;font-style:normal;font-weight:normal;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_cdbd882276dff09c7b95eacf.woff2')format("woff");}.ff2_c00479{font-family:ff2_c00479;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00479;src:url('chunks/assets/font_e1314264d509856dc4290443.woff2')format("woff");}.ff3_c00479{font-family:ff3_c00479;line-height:1.104004;font-style: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;}
.lse_c00479{letter-spacing:-0.050400px;}
.ls9_c00479{letter-spacing:-0.048096px;}
.lsf_c00479{letter-spacing:-0.043200px;}
.ls11_c00479{letter-spacing:-0.036000px;}
.lsd_c00479{letter-spacing:-0.028800px;}
.lsc_c00479{letter-spacing:-0.021600px;}
.lsb_c00479{letter-spacing:-0.014400px;}
.ls10_c00479{letter-spacing:-0.007200px;}
.lsa_c00479{letter-spacing:0.000000px;}
.ls7_c00479{letter-spacing:0.007200px;}
.ls5_c00479{letter-spacing:0.014400px;}
.ls4_c00479{letter-spacing:0.021600px;}
.ls2_c00479{letter-spacing:0.028800px;}
.ls8_c00479{letter-spacing:0.036000px;}
.ls0_c00479{letter-spacing:0.050400px;}
.ls6_c00479{letter-spacing:0.057600px;}
.ls3_c00479{letter-spacing:0.064800px;}
.ls1_c00479{letter-spacing:0.100800px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00479{word-spacing:0.000000px;}
.ws0_c00479{word-spacing:0.138276px;}
.fc0_c00479{color:rgb(0,0,0);}
.fs0_c00479{font-size:60.120000px;}
.fs1_c00479{font-size:72.000000px;}
.y0_c00479{bottom:0.000000px;}
.y6_c00479{bottom:57.360450px;}
.y5_c00479{bottom:78.060450px;}
.y26_c00479{bottom:149.700600px;}
.y25_c00479{bottom:181.110450px;}
.y24_c00479{bottom:212.520450px;}
.y23_c00479{bottom:243.930450px;}
.y22_c00479{bottom:275.430450px;}
.y21_c00479{bottom:306.840450px;}
.y20_c00479{bottom:338.250600px;}
.y1f_c00479{bottom:369.660450px;}
.y1e_c00479{bottom:401.070450px;}
.y1d_c00479{bottom:432.480450px;}
.y1c_c00479{bottom:463.890450px;}
.y1b_c00479{bottom:495.300450px;}
.y1a_c00479{bottom:526.800450px;}
.y19_c00479{bottom:558.210450px;}
.y18_c00479{bottom:589.620450px;}
.y17_c00479{bottom:621.030450px;}
.y16_c00479{bottom:652.440450px;}
.y15_c00479{bottom:683.850450px;}
.y14_c00479{bottom:715.260450px;}
.y13_c00479{bottom:746.760450px;}
.y12_c00479{bottom:778.170450px;}
.y11_c00479{bottom:809.580450px;}
.y10_c00479{bottom:840.990450px;}
.yf_c00479{bottom:872.400450px;}
.ye_c00479{bottom:903.810450px;}
.yd_c00479{bottom:935.220450px;}
.yc_c00479{bottom:966.720450px;}
.yb_c00479{bottom:998.130450px;}
.ya_c00479{bottom:1029.540450px;}
.y9_c00479{bottom:1060.950450px;}
.y8_c00479{bottom:1092.360450px;}
.y7_c00479{bottom:1123.770450px;}
.y4_c00479{bottom:1144.380657px;}
.y3_c00479{bottom:1161.660648px;}
.y2_c00479{bottom:1178.850459px;}
.y1_c00479{bottom:1196.130450px;}
.h1_c00479{height:52.898555px;}
.h2_c00479{height:63.175781px;}
.h3_c00479{height:63.949219px;}
.h0_c00479{height:1263.000000px;}
.w1_c00479{width:892.500000px;}
.w0_c00479{width:892.830000px;}
.x0_c00479{left:0.000000px;}
.x4_c00479{left:127.620000px;}
.x5_c00479{left:312.480000px;}
.x1_c00479{left:649.620000px;}
.x3_c00479{left:738.450000px;}
.x2_c00479{left:765.450198px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.lse_c00479{letter-spacing:-0.044800pt;}
.ls9_c00479{letter-spacing:-0.042752pt;}
.lsf_c00479{letter-spacing:-0.038400pt;}
.ls11_c00479{letter-spacing:-0.032000pt;}
.lsd_c00479{letter-spacing:-0.025600pt;}
.lsc_c00479{letter-spacing:-0.019200pt;}
.lsb_c00479{letter-spacing:-0.012800pt;}
.ls10_c00479{letter-spacing:-0.006400pt;}
.lsa_c00479{letter-spacing:0.000000pt;}
.ls7_c00479{letter-spacing:0.006400pt;}
.ls5_c00479{letter-spacing:0.012800pt;}
.ls4_c00479{letter-spacing:0.019200pt;}
.ls2_c00479{letter-spacing:0.025600pt;}
.ls8_c00479{letter-spacing:0.032000pt;}
.ls0_c00479{letter-spacing:0.044800pt;}
.ls6_c00479{letter-spacing:0.051200pt;}
.ls3_c00479{letter-spacing:0.057600pt;}
.ls1_c00479{letter-spacing:0.089600pt;}
.ws1_c00479{word-spacing:0.000000pt;}
.ws0_c00479{word-spacing:0.122912pt;}
.fs0_c00479{font-size:53.440000pt;}
.fs1_c00479{font-size:64.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y6_c00479{bottom:50.987067pt;}
.y5_c00479{bottom:69.387067pt;}
.y26_c00479{bottom:133.067200pt;}
.y25_c00479{bottom:160.987067pt;}
.y24_c00479{bottom:188.907067pt;}
.y23_c00479{bottom:216.827067pt;}
.y22_c00479{bottom:244.827067pt;}
.y21_c00479{bottom:272.747067pt;}
.y20_c00479{bottom:300.667200pt;}
.y1f_c00479{bottom:328.587067pt;}
.y1e_c00479{bottom:356.507067pt;}
.y1d_c00479{bottom:384.427067pt;}
.y1c_c00479{bottom:412.347067pt;}
.y1b_c00479{bottom:440.267067pt;}
.y1a_c00479{bottom:468.267067pt;}
.y19_c00479{bottom:496.187067pt;}
.y18_c00479{bottom:524.107067pt;}
.y17_c00479{bottom:552.027067pt;}
.y16_c00479{bottom:579.947067pt;}
.y15_c00479{bottom:607.867067pt;}
.y14_c00479{bottom:635.787067pt;}
.y13_c00479{bottom:663.787067pt;}
.y12_c00479{bottom:691.707067pt;}
.y11_c00479{bottom:719.627067pt;}
.y10_c00479{bottom:747.547067pt;}
.yf_c00479{bottom:775.467067pt;}
.ye_c00479{bottom:803.387067pt;}
.yd_c00479{bottom:831.307067pt;}
.yc_c00479{bottom:859.307067pt;}
.yb_c00479{bottom:887.227067pt;}
.ya_c00479{bottom:915.147067pt;}
.y9_c00479{bottom:943.067067pt;}
.y8_c00479{bottom:970.987067pt;}
.y7_c00479{bottom:998.907067pt;}
.y4_c00479{bottom:1017.227251pt;}
.y3_c00479{bottom:1032.587243pt;}
.y2_c00479{bottom:1047.867075pt;}
.y1_c00479{bottom:1063.227067pt;}
.h1_c00479{height:47.020937pt;}
.h2_c00479{height:56.156250pt;}
.h3_c00479{height:56.843750pt;}
.h0_c00479{height:1122.666667pt;}
.w1_c00479{width:793.333333pt;}
.w0_c00479{width:793.626667pt;}
.x0_c00479{left:0.000000pt;}
.x4_c00479{left:113.440000pt;}
.x5_c00479{left:277.760000pt;}
.x1_c00479{left:577.440000pt;}
.x3_c00479{left:656.400000pt;}
.x2_c00479{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.095703;font-style:normal;font-weight:normal;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_464017d45df246c42d43813b.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_1c26c2aca93645d5f96977bf.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00480;src:url('chunks/assets/font_21c28748607d4a2cef0e5b08.woff2')format("woff");}.ff4_c00480{font-family:ff4_c00480;line-height:0.896973;font-style: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;}
.ls9_c00480{letter-spacing:-0.102204px;}
.lsc_c00480{letter-spacing:-0.079200px;}
.lsb_c00480{letter-spacing:-0.057600px;}
.lse_c00480{letter-spacing:-0.021600px;}
.lsd_c00480{letter-spacing:-0.007200px;}
.lsa_c00480{letter-spacing:0.000000px;}
.ls0_c00480{letter-spacing:0.007200px;}
.ls2_c00480{letter-spacing:0.010800px;}
.ls7_c00480{letter-spacing:0.014400px;}
.ls1_c00480{letter-spacing:0.021600px;}
.ls5_c00480{letter-spacing:0.028800px;}
.ls4_c00480{letter-spacing:0.036000px;}
.ls8_c00480{letter-spacing:0.050400px;}
.ls6_c00480{letter-spacing:0.057600px;}
.ls3_c00480{letter-spacing:0.067104px;}
.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;}
}
.ws2_c00480{word-spacing:-0.007200px;}
.ws1_c00480{word-spacing:0.000000px;}
.ws0_c00480{word-spacing:0.192384px;}
._0_c00480{width:1.034064px;}
.fc1_c00480{color:rgb(0,0,0);}
.fc0_c00480{color:rgb(32,31,30);}
.fs0_c00480{font-size:60.120000px;}
.fs1_c00480{font-size:72.000000px;}
.fs3_c00480{font-size:83.880000px;}
.fs2_c00480{font-size:108.000000px;}
.y0_c00480{bottom:0.000000px;}
.y5_c00480{bottom:57.360450px;}
.y4_c00480{bottom:78.060450px;}
.y22_c00480{bottom:134.850450px;}
.y21_c00480{bottom:168.330450px;}
.y20_c00480{bottom:211.260450px;}
.y1f_c00480{bottom:242.580450px;}
.y1e_c00480{bottom:273.990450px;}
.y1d_c00480{bottom:305.400450px;}
.y1c_c00480{bottom:336.450450px;}
.y1b_c00480{bottom:375.960600px;}
.y1a_c00480{bottom:407.370600px;}
.y19_c00480{bottom:442.470450px;}
.y18_c00480{bottom:485.400450px;}
.y17_c00480{bottom:517.260450px;}
.y16_c00480{bottom:549.210450px;}
.y15_c00480{bottom:582.420450px;}
.y14_c00480{bottom:614.370450px;}
.y13_c00480{bottom:646.320450px;}
.y12_c00480{bottom:679.800450px;}
.y11_c00480{bottom:722.730450px;}
.y10_c00480{bottom:744.960450px;}
.yf_c00480{bottom:767.190450px;}
.ye_c00480{bottom:809.490450px;}
.yd_c00480{bottom:840.360600px;}
.yc_c00480{bottom:876.720450px;}
.yb_c00480{bottom:914.070450px;}
.ya_c00480{bottom:938.999550px;}
.y9_c00480{bottom:990.480450px;}
.y8_c00480{bottom:1048.170450px;}
.y7_c00480{bottom:1079.400450px;}
.y6_c00480{bottom:1110.900450px;}
.y3_c00480{bottom:1132.140450px;}
.y2_c00480{bottom:1165.441023px;}
.y1_c00480{bottom:1196.040600px;}
.h6_c00480{height:49.042969px;}
.h1_c00480{height:52.898555px;}
.h2_c00480{height:63.175781px;}
.h3_c00480{height:63.949219px;}
.h5_c00480{height:74.500840px;}
.h4_c00480{height:95.923828px;}
.h0_c00480{height:1263.000000px;}
.w1_c00480{width:892.500000px;}
.w0_c00480{width:892.830000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:127.620000px;}
.x3_c00480{left:312.480000px;}
.x5_c00480{left:367.470000px;}
.x7_c00480{left:376.920000px;}
.x4_c00480{left:386.010000px;}
.x6_c00480{left:391.680000px;}
.x2_c00480{left:738.450000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls9_c00480{letter-spacing:-0.090848pt;}
.lsc_c00480{letter-spacing:-0.070400pt;}
.lsb_c00480{letter-spacing:-0.051200pt;}
.lse_c00480{letter-spacing:-0.019200pt;}
.lsd_c00480{letter-spacing:-0.006400pt;}
.lsa_c00480{letter-spacing:0.000000pt;}
.ls0_c00480{letter-spacing:0.006400pt;}
.ls2_c00480{letter-spacing:0.009600pt;}
.ls7_c00480{letter-spacing:0.012800pt;}
.ls1_c00480{letter-spacing:0.019200pt;}
.ls5_c00480{letter-spacing:0.025600pt;}
.ls4_c00480{letter-spacing:0.032000pt;}
.ls8_c00480{letter-spacing:0.044800pt;}
.ls6_c00480{letter-spacing:0.051200pt;}
.ls3_c00480{letter-spacing:0.059648pt;}
.ws2_c00480{word-spacing:-0.006400pt;}
.ws1_c00480{word-spacing:0.000000pt;}
.ws0_c00480{word-spacing:0.171008pt;}
._0_c00480{width:0.919168pt;}
.fs0_c00480{font-size:53.440000pt;}
.fs1_c00480{font-size:64.000000pt;}
.fs3_c00480{font-size:74.560000pt;}
.fs2_c00480{font-size:96.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y5_c00480{bottom:50.987067pt;}
.y4_c00480{bottom:69.387067pt;}
.y22_c00480{bottom:119.867067pt;}
.y21_c00480{bottom:149.627067pt;}
.y20_c00480{bottom:187.787067pt;}
.y1f_c00480{bottom:215.627067pt;}
.y1e_c00480{bottom:243.547067pt;}
.y1d_c00480{bottom:271.467067pt;}
.y1c_c00480{bottom:299.067067pt;}
.y1b_c00480{bottom:334.187200pt;}
.y1a_c00480{bottom:362.107200pt;}
.y19_c00480{bottom:393.307067pt;}
.y18_c00480{bottom:431.467067pt;}
.y17_c00480{bottom:459.787067pt;}
.y16_c00480{bottom:488.187067pt;}
.y15_c00480{bottom:517.707067pt;}
.y14_c00480{bottom:546.107067pt;}
.y13_c00480{bottom:574.507067pt;}
.y12_c00480{bottom:604.267067pt;}
.y11_c00480{bottom:642.427067pt;}
.y10_c00480{bottom:662.187067pt;}
.yf_c00480{bottom:681.947067pt;}
.ye_c00480{bottom:719.547067pt;}
.yd_c00480{bottom:746.987200pt;}
.yc_c00480{bottom:779.307067pt;}
.yb_c00480{bottom:812.507067pt;}
.ya_c00480{bottom:834.666267pt;}
.y9_c00480{bottom:880.427067pt;}
.y8_c00480{bottom:931.707067pt;}
.y7_c00480{bottom:959.467067pt;}
.y6_c00480{bottom:987.467067pt;}
.y3_c00480{bottom:1006.347067pt;}
.y2_c00480{bottom:1035.947576pt;}
.y1_c00480{bottom:1063.147200pt;}
.h6_c00480{height:43.593750pt;}
.h1_c00480{height:47.020937pt;}
.h2_c00480{height:56.156250pt;}
.h3_c00480{height:56.843750pt;}
.h5_c00480{height:66.222969pt;}
.h4_c00480{height:85.265625pt;}
.h0_c00480{height:1122.666667pt;}
.w1_c00480{width:793.333333pt;}
.w0_c00480{width:793.626667pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:113.440000pt;}
.x3_c00480{left:277.760000pt;}
.x5_c00480{left:326.640000pt;}
.x7_c00480{left:335.040000pt;}
.x4_c00480{left:343.120000pt;}
.x6_c00480{left:348.160000pt;}
.x2_c00480{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.095703;font-style:normal;font-weight:normal;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_82dea90e0de946759277660a.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.093262;font-style:normal;font-weight:normal;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_44e5ccf6cb427b6b0c31ccfe.woff2')format("woff");}.ff3_c00481{font-family:ff3_c00481;line-height:1.104004;font-style: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;}
.lsc_c00481{letter-spacing:-0.072000px;}
.lse_c00481{letter-spacing:-0.050400px;}
.ls8_c00481{letter-spacing:-0.048096px;}
.lsb_c00481{letter-spacing:-0.028800px;}
.lsd_c00481{letter-spacing:-0.021600px;}
.lsf_c00481{letter-spacing:-0.014400px;}
.lsa_c00481{letter-spacing:-0.007200px;}
.ls9_c00481{letter-spacing:0.000000px;}
.ls4_c00481{letter-spacing:0.007200px;}
.ls3_c00481{letter-spacing:0.014400px;}
.ls2_c00481{letter-spacing:0.021600px;}
.ls6_c00481{letter-spacing:0.043200px;}
.ls0_c00481{letter-spacing:0.086400px;}
.ls1_c00481{letter-spacing:0.100800px;}
.ls7_c00481{letter-spacing:0.115200px;}
.ls5_c00481{letter-spacing:0.165600px;}
.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:0.000000px;}
.ws0_c00481{word-spacing:0.138276px;}
.fc0_c00481{color:rgb(0,0,0);}
.fs0_c00481{font-size:60.120000px;}
.fs1_c00481{font-size:72.000000px;}
.y0_c00481{bottom:0.000000px;}
.y6_c00481{bottom:57.360450px;}
.y5_c00481{bottom:78.060450px;}
.y26_c00481{bottom:122.700450px;}
.y25_c00481{bottom:154.110450px;}
.y24_c00481{bottom:185.520450px;}
.y23_c00481{bottom:216.930450px;}
.y22_c00481{bottom:248.430450px;}
.y21_c00481{bottom:279.840450px;}
.y20_c00481{bottom:311.250450px;}
.y1f_c00481{bottom:344.730450px;}
.y1e_c00481{bottom:387.660450px;}
.y1d_c00481{bottom:418.980450px;}
.y1c_c00481{bottom:450.390450px;}
.y1b_c00481{bottom:481.800450px;}
.y1a_c00481{bottom:513.300450px;}
.y19_c00481{bottom:544.710450px;}
.y18_c00481{bottom:576.120450px;}
.y17_c00481{bottom:607.530450px;}
.y16_c00481{bottom:641.010450px;}
.y15_c00481{bottom:683.940450px;}
.y14_c00481{bottom:715.260450px;}
.y13_c00481{bottom:746.760450px;}
.y12_c00481{bottom:778.170450px;}
.y11_c00481{bottom:809.580450px;}
.y10_c00481{bottom:840.990450px;}
.yf_c00481{bottom:872.400450px;}
.ye_c00481{bottom:903.810450px;}
.yd_c00481{bottom:935.400450px;}
.yc_c00481{bottom:966.720450px;}
.yb_c00481{bottom:998.130450px;}
.ya_c00481{bottom:1029.540450px;}
.y9_c00481{bottom:1060.950450px;}
.y8_c00481{bottom:1092.360450px;}
.y7_c00481{bottom:1123.770450px;}
.y4_c00481{bottom:1144.380657px;}
.y3_c00481{bottom:1161.660648px;}
.y2_c00481{bottom:1178.850459px;}
.y1_c00481{bottom:1196.130450px;}
.h1_c00481{height:52.898555px;}
.h2_c00481{height:63.175781px;}
.h3_c00481{height:63.949219px;}
.h0_c00481{height:1263.000000px;}
.w1_c00481{width:892.500000px;}
.w0_c00481{width:892.830000px;}
.x0_c00481{left:0.000000px;}
.x4_c00481{left:127.620000px;}
.x6_c00481{left:374.850000px;}
.x5_c00481{left:376.920000px;}
.x7_c00481{left:391.680000px;}
.x1_c00481{left:649.620000px;}
.x3_c00481{left:738.450000px;}
.x2_c00481{left:765.450198px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.lsc_c00481{letter-spacing:-0.064000pt;}
.lse_c00481{letter-spacing:-0.044800pt;}
.ls8_c00481{letter-spacing:-0.042752pt;}
.lsb_c00481{letter-spacing:-0.025600pt;}
.lsd_c00481{letter-spacing:-0.019200pt;}
.lsf_c00481{letter-spacing:-0.012800pt;}
.lsa_c00481{letter-spacing:-0.006400pt;}
.ls9_c00481{letter-spacing:0.000000pt;}
.ls4_c00481{letter-spacing:0.006400pt;}
.ls3_c00481{letter-spacing:0.012800pt;}
.ls2_c00481{letter-spacing:0.019200pt;}
.ls6_c00481{letter-spacing:0.038400pt;}
.ls0_c00481{letter-spacing:0.076800pt;}
.ls1_c00481{letter-spacing:0.089600pt;}
.ls7_c00481{letter-spacing:0.102400pt;}
.ls5_c00481{letter-spacing:0.147200pt;}
.ws1_c00481{word-spacing:0.000000pt;}
.ws0_c00481{word-spacing:0.122912pt;}
.fs0_c00481{font-size:53.440000pt;}
.fs1_c00481{font-size:64.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.y6_c00481{bottom:50.987067pt;}
.y5_c00481{bottom:69.387067pt;}
.y26_c00481{bottom:109.067067pt;}
.y25_c00481{bottom:136.987067pt;}
.y24_c00481{bottom:164.907067pt;}
.y23_c00481{bottom:192.827067pt;}
.y22_c00481{bottom:220.827067pt;}
.y21_c00481{bottom:248.747067pt;}
.y20_c00481{bottom:276.667067pt;}
.y1f_c00481{bottom:306.427067pt;}
.y1e_c00481{bottom:344.587067pt;}
.y1d_c00481{bottom:372.427067pt;}
.y1c_c00481{bottom:400.347067pt;}
.y1b_c00481{bottom:428.267067pt;}
.y1a_c00481{bottom:456.267067pt;}
.y19_c00481{bottom:484.187067pt;}
.y18_c00481{bottom:512.107067pt;}
.y17_c00481{bottom:540.027067pt;}
.y16_c00481{bottom:569.787067pt;}
.y15_c00481{bottom:607.947067pt;}
.y14_c00481{bottom:635.787067pt;}
.y13_c00481{bottom:663.787067pt;}
.y12_c00481{bottom:691.707067pt;}
.y11_c00481{bottom:719.627067pt;}
.y10_c00481{bottom:747.547067pt;}
.yf_c00481{bottom:775.467067pt;}
.ye_c00481{bottom:803.387067pt;}
.yd_c00481{bottom:831.467067pt;}
.yc_c00481{bottom:859.307067pt;}
.yb_c00481{bottom:887.227067pt;}
.ya_c00481{bottom:915.147067pt;}
.y9_c00481{bottom:943.067067pt;}
.y8_c00481{bottom:970.987067pt;}
.y7_c00481{bottom:998.907067pt;}
.y4_c00481{bottom:1017.227251pt;}
.y3_c00481{bottom:1032.587243pt;}
.y2_c00481{bottom:1047.867075pt;}
.y1_c00481{bottom:1063.227067pt;}
.h1_c00481{height:47.020937pt;}
.h2_c00481{height:56.156250pt;}
.h3_c00481{height:56.843750pt;}
.h0_c00481{height:1122.666667pt;}
.w1_c00481{width:793.333333pt;}
.w0_c00481{width:793.626667pt;}
.x0_c00481{left:0.000000pt;}
.x4_c00481{left:113.440000pt;}
.x6_c00481{left:333.200000pt;}
.x5_c00481{left:335.040000pt;}
.x7_c00481{left:348.160000pt;}
.x1_c00481{left:577.440000pt;}
.x3_c00481{left:656.400000pt;}
.x2_c00481{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.095703;font-style:normal;font-weight:normal;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_48d91db12ddc8554c37d78a6.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_9db740f4a09af06022173c93.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:1.104004;font-style: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;}
.ls7_c00482{letter-spacing:-0.102204px;}
.lsb_c00482{letter-spacing:-0.064800px;}
.ls9_c00482{letter-spacing:-0.057600px;}
.lsa_c00482{letter-spacing:-0.036000px;}
.lsd_c00482{letter-spacing:-0.021600px;}
.lse_c00482{letter-spacing:-0.014400px;}
.lsc_c00482{letter-spacing:-0.007200px;}
.ls8_c00482{letter-spacing:0.000000px;}
.ls2_c00482{letter-spacing:0.007200px;}
.ls5_c00482{letter-spacing:0.014400px;}
.ls1_c00482{letter-spacing:0.021600px;}
.ls6_c00482{letter-spacing:0.028800px;}
.ls0_c00482{letter-spacing:0.036000px;}
.ls4_c00482{letter-spacing:0.050400px;}
.ls3_c00482{letter-spacing:0.100800px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00482{word-spacing:0.000000px;}
.ws0_c00482{word-spacing:0.192384px;}
._0_c00482{width:1.034064px;}
._1_c00482{width:44.647200px;}
.fc1_c00482{color:rgb(0,0,0);}
.fc0_c00482{color:rgb(32,31,30);}
.fs0_c00482{font-size:60.120000px;}
.fs1_c00482{font-size:72.000000px;}
.y0_c00482{bottom:0.000000px;}
.y5_c00482{bottom:57.360450px;}
.y4_c00482{bottom:78.060450px;}
.y23_c00482{bottom:147.630450px;}
.y22_c00482{bottom:190.650450px;}
.y21_c00482{bottom:221.970450px;}
.y20_c00482{bottom:253.380450px;}
.y1f_c00482{bottom:284.790450px;}
.y1e_c00482{bottom:316.200450px;}
.y1d_c00482{bottom:349.680450px;}
.y1c_c00482{bottom:392.700600px;}
.y1b_c00482{bottom:424.020600px;}
.y1a_c00482{bottom:455.430600px;}
.y19_c00482{bottom:486.840450px;}
.y18_c00482{bottom:517.890450px;}
.y17_c00482{bottom:549.300450px;}
.y16_c00482{bottom:580.710450px;}
.y15_c00482{bottom:612.120450px;}
.y14_c00482{bottom:645.600450px;}
.y13_c00482{bottom:683.040450px;}
.y12_c00482{bottom:714.270450px;}
.y11_c00482{bottom:745.680450px;}
.y10_c00482{bottom:777.090450px;}
.yf_c00482{bottom:808.590450px;}
.ye_c00482{bottom:840.000450px;}
.yd_c00482{bottom:871.410450px;}
.yc_c00482{bottom:909.390450px;}
.yb_c00482{bottom:940.620450px;}
.ya_c00482{bottom:972.030450px;}
.y9_c00482{bottom:1003.440450px;}
.y8_c00482{bottom:1034.850450px;}
.y7_c00482{bottom:1068.330450px;}
.y6_c00482{bottom:1111.350450px;}
.y3_c00482{bottom:1132.140450px;}
.y2_c00482{bottom:1165.441023px;}
.y1_c00482{bottom:1196.040600px;}
.h1_c00482{height:52.898555px;}
.h2_c00482{height:63.175781px;}
.h3_c00482{height:63.949219px;}
.h0_c00482{height:1263.000000px;}
.w1_c00482{width:892.500000px;}
.w0_c00482{width:892.830000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:127.620000px;}
.x4_c00482{left:315.810000px;}
.x5_c00482{left:373.680000px;}
.x6_c00482{left:375.300000px;}
.x3_c00482{left:382.680000px;}
.x2_c00482{left:738.450000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls7_c00482{letter-spacing:-0.090848pt;}
.lsb_c00482{letter-spacing:-0.057600pt;}
.ls9_c00482{letter-spacing:-0.051200pt;}
.lsa_c00482{letter-spacing:-0.032000pt;}
.lsd_c00482{letter-spacing:-0.019200pt;}
.lse_c00482{letter-spacing:-0.012800pt;}
.lsc_c00482{letter-spacing:-0.006400pt;}
.ls8_c00482{letter-spacing:0.000000pt;}
.ls2_c00482{letter-spacing:0.006400pt;}
.ls5_c00482{letter-spacing:0.012800pt;}
.ls1_c00482{letter-spacing:0.019200pt;}
.ls6_c00482{letter-spacing:0.025600pt;}
.ls0_c00482{letter-spacing:0.032000pt;}
.ls4_c00482{letter-spacing:0.044800pt;}
.ls3_c00482{letter-spacing:0.089600pt;}
.ws1_c00482{word-spacing:0.000000pt;}
.ws0_c00482{word-spacing:0.171008pt;}
._0_c00482{width:0.919168pt;}
._1_c00482{width:39.686400pt;}
.fs0_c00482{font-size:53.440000pt;}
.fs1_c00482{font-size:64.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y5_c00482{bottom:50.987067pt;}
.y4_c00482{bottom:69.387067pt;}
.y23_c00482{bottom:131.227067pt;}
.y22_c00482{bottom:169.467067pt;}
.y21_c00482{bottom:197.307067pt;}
.y20_c00482{bottom:225.227067pt;}
.y1f_c00482{bottom:253.147067pt;}
.y1e_c00482{bottom:281.067067pt;}
.y1d_c00482{bottom:310.827067pt;}
.y1c_c00482{bottom:349.067200pt;}
.y1b_c00482{bottom:376.907200pt;}
.y1a_c00482{bottom:404.827200pt;}
.y19_c00482{bottom:432.747067pt;}
.y18_c00482{bottom:460.347067pt;}
.y17_c00482{bottom:488.267067pt;}
.y16_c00482{bottom:516.187067pt;}
.y15_c00482{bottom:544.107067pt;}
.y14_c00482{bottom:573.867067pt;}
.y13_c00482{bottom:607.147067pt;}
.y12_c00482{bottom:634.907067pt;}
.y11_c00482{bottom:662.827067pt;}
.y10_c00482{bottom:690.747067pt;}
.yf_c00482{bottom:718.747067pt;}
.ye_c00482{bottom:746.667067pt;}
.yd_c00482{bottom:774.587067pt;}
.yc_c00482{bottom:808.347067pt;}
.yb_c00482{bottom:836.107067pt;}
.ya_c00482{bottom:864.027067pt;}
.y9_c00482{bottom:891.947067pt;}
.y8_c00482{bottom:919.867067pt;}
.y7_c00482{bottom:949.627067pt;}
.y6_c00482{bottom:987.867067pt;}
.y3_c00482{bottom:1006.347067pt;}
.y2_c00482{bottom:1035.947576pt;}
.y1_c00482{bottom:1063.147200pt;}
.h1_c00482{height:47.020937pt;}
.h2_c00482{height:56.156250pt;}
.h3_c00482{height:56.843750pt;}
.h0_c00482{height:1122.666667pt;}
.w1_c00482{width:793.333333pt;}
.w0_c00482{width:793.626667pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:113.440000pt;}
.x4_c00482{left:280.720000pt;}
.x5_c00482{left:332.160000pt;}
.x6_c00482{left:333.600000pt;}
.x3_c00482{left:340.160000pt;}
.x2_c00482{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.095703;font-style:normal;font-weight:normal;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_081cb2c323065685ddebaaef.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_d40fb92063ff30f698b1fe42.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:1.104004;font-style: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;}
.ls6_c00483{letter-spacing:-0.048096px;}
.ls8_c00483{letter-spacing:-0.036000px;}
.ls9_c00483{letter-spacing:-0.021600px;}
.lsa_c00483{letter-spacing:-0.014400px;}
.lsb_c00483{letter-spacing:-0.007200px;}
.ls7_c00483{letter-spacing:0.000000px;}
.ls2_c00483{letter-spacing:0.007200px;}
.ls1_c00483{letter-spacing:0.014400px;}
.ls3_c00483{letter-spacing:0.021600px;}
.ls0_c00483{letter-spacing:0.036000px;}
.ls5_c00483{letter-spacing:0.043200px;}
.ls4_c00483{letter-spacing:0.100800px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00483{word-spacing:0.000000px;}
.ws0_c00483{word-spacing:0.138276px;}
._0_c00483{margin-left:-1.461600px;}
.fc0_c00483{color:rgb(0,0,0);}
.fs0_c00483{font-size:60.120000px;}
.fs1_c00483{font-size:72.000000px;}
.y0_c00483{bottom:0.000000px;}
.y6_c00483{bottom:57.360450px;}
.y5_c00483{bottom:78.060450px;}
.y25_c00483{bottom:134.670450px;}
.y24_c00483{bottom:165.990450px;}
.y23_c00483{bottom:197.490450px;}
.y22_c00483{bottom:237.990450px;}
.y21_c00483{bottom:278.580450px;}
.y20_c00483{bottom:309.990450px;}
.y1f_c00483{bottom:341.400450px;}
.y1e_c00483{bottom:372.900450px;}
.y1d_c00483{bottom:406.380450px;}
.y1c_c00483{bottom:449.310450px;}
.y1b_c00483{bottom:480.630450px;}
.y1a_c00483{bottom:512.040600px;}
.y19_c00483{bottom:544.710450px;}
.y18_c00483{bottom:576.120450px;}
.y17_c00483{bottom:607.530450px;}
.y16_c00483{bottom:641.010450px;}
.y15_c00483{bottom:683.940450px;}
.y14_c00483{bottom:715.260450px;}
.y13_c00483{bottom:746.760450px;}
.y12_c00483{bottom:778.170450px;}
.y11_c00483{bottom:809.580450px;}
.y10_c00483{bottom:840.990450px;}
.yf_c00483{bottom:872.400450px;}
.ye_c00483{bottom:903.810450px;}
.yd_c00483{bottom:935.220450px;}
.yc_c00483{bottom:966.720450px;}
.yb_c00483{bottom:998.130450px;}
.ya_c00483{bottom:1029.540450px;}
.y9_c00483{bottom:1060.950450px;}
.y8_c00483{bottom:1092.360450px;}
.y7_c00483{bottom:1123.770450px;}
.y4_c00483{bottom:1144.380657px;}
.y3_c00483{bottom:1161.660648px;}
.y2_c00483{bottom:1178.850459px;}
.y1_c00483{bottom:1196.130450px;}
.h1_c00483{height:52.898555px;}
.h2_c00483{height:63.175781px;}
.h3_c00483{height:63.949219px;}
.h0_c00483{height:1263.000000px;}
.w1_c00483{width:892.500000px;}
.w0_c00483{width:892.830000px;}
.x0_c00483{left:0.000000px;}
.x4_c00483{left:127.620000px;}
.x6_c00483{left:370.890000px;}
.x7_c00483{left:371.970000px;}
.x5_c00483{left:375.300000px;}
.x1_c00483{left:649.620000px;}
.x3_c00483{left:738.450000px;}
.x2_c00483{left:765.450198px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls6_c00483{letter-spacing:-0.042752pt;}
.ls8_c00483{letter-spacing:-0.032000pt;}
.ls9_c00483{letter-spacing:-0.019200pt;}
.lsa_c00483{letter-spacing:-0.012800pt;}
.lsb_c00483{letter-spacing:-0.006400pt;}
.ls7_c00483{letter-spacing:0.000000pt;}
.ls2_c00483{letter-spacing:0.006400pt;}
.ls1_c00483{letter-spacing:0.012800pt;}
.ls3_c00483{letter-spacing:0.019200pt;}
.ls0_c00483{letter-spacing:0.032000pt;}
.ls5_c00483{letter-spacing:0.038400pt;}
.ls4_c00483{letter-spacing:0.089600pt;}
.ws1_c00483{word-spacing:0.000000pt;}
.ws0_c00483{word-spacing:0.122912pt;}
._0_c00483{margin-left:-1.299200pt;}
.fs0_c00483{font-size:53.440000pt;}
.fs1_c00483{font-size:64.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y6_c00483{bottom:50.987067pt;}
.y5_c00483{bottom:69.387067pt;}
.y25_c00483{bottom:119.707067pt;}
.y24_c00483{bottom:147.547067pt;}
.y23_c00483{bottom:175.547067pt;}
.y22_c00483{bottom:211.547067pt;}
.y21_c00483{bottom:247.627067pt;}
.y20_c00483{bottom:275.547067pt;}
.y1f_c00483{bottom:303.467067pt;}
.y1e_c00483{bottom:331.467067pt;}
.y1d_c00483{bottom:361.227067pt;}
.y1c_c00483{bottom:399.387067pt;}
.y1b_c00483{bottom:427.227067pt;}
.y1a_c00483{bottom:455.147200pt;}
.y19_c00483{bottom:484.187067pt;}
.y18_c00483{bottom:512.107067pt;}
.y17_c00483{bottom:540.027067pt;}
.y16_c00483{bottom:569.787067pt;}
.y15_c00483{bottom:607.947067pt;}
.y14_c00483{bottom:635.787067pt;}
.y13_c00483{bottom:663.787067pt;}
.y12_c00483{bottom:691.707067pt;}
.y11_c00483{bottom:719.627067pt;}
.y10_c00483{bottom:747.547067pt;}
.yf_c00483{bottom:775.467067pt;}
.ye_c00483{bottom:803.387067pt;}
.yd_c00483{bottom:831.307067pt;}
.yc_c00483{bottom:859.307067pt;}
.yb_c00483{bottom:887.227067pt;}
.ya_c00483{bottom:915.147067pt;}
.y9_c00483{bottom:943.067067pt;}
.y8_c00483{bottom:970.987067pt;}
.y7_c00483{bottom:998.907067pt;}
.y4_c00483{bottom:1017.227251pt;}
.y3_c00483{bottom:1032.587243pt;}
.y2_c00483{bottom:1047.867075pt;}
.y1_c00483{bottom:1063.227067pt;}
.h1_c00483{height:47.020937pt;}
.h2_c00483{height:56.156250pt;}
.h3_c00483{height:56.843750pt;}
.h0_c00483{height:1122.666667pt;}
.w1_c00483{width:793.333333pt;}
.w0_c00483{width:793.626667pt;}
.x0_c00483{left:0.000000pt;}
.x4_c00483{left:113.440000pt;}
.x6_c00483{left:329.680000pt;}
.x7_c00483{left:330.640000pt;}
.x5_c00483{left:333.600000pt;}
.x1_c00483{left:577.440000pt;}
.x3_c00483{left:656.400000pt;}
.x2_c00483{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.095703;font-style:normal;font-weight:normal;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_01877107204da746a891141b.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00484;src:url('chunks/assets/font_92562f63d5847fb11924c224.woff2')format("woff");}.ff3_c00484{font-family:ff3_c00484;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00484;src:url('chunks/assets/font_c369e5e45942e7f75e449f2a.woff2')format("woff");}.ff4_c00484{font-family:ff4_c00484;line-height:0.896973;font-style: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;}
.ls7_c00484{letter-spacing:-0.102204px;}
.lsd_c00484{letter-spacing:-0.057600px;}
.lsc_c00484{letter-spacing:-0.036000px;}
.ls9_c00484{letter-spacing:-0.021600px;}
.lsb_c00484{letter-spacing:-0.014400px;}
.lsa_c00484{letter-spacing:-0.007200px;}
.ls8_c00484{letter-spacing:0.000000px;}
.ls1_c00484{letter-spacing:0.014400px;}
.ls0_c00484{letter-spacing:0.021600px;}
.ls5_c00484{letter-spacing:0.028800px;}
.ls2_c00484{letter-spacing:0.036000px;}
.ls4_c00484{letter-spacing:0.050400px;}
.ls6_c00484{letter-spacing:0.064800px;}
.ls3_c00484{letter-spacing:0.100800px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00484{word-spacing:0.000000px;}
.ws2_c00484{word-spacing:0.007200px;}
.ws0_c00484{word-spacing:0.192384px;}
._0_c00484{width:1.034064px;}
.fc1_c00484{color:rgb(0,0,0);}
.fc0_c00484{color:rgb(32,31,30);}
.fs0_c00484{font-size:60.120000px;}
.fs1_c00484{font-size:72.000000px;}
.y0_c00484{bottom:0.000000px;}
.y5_c00484{bottom:57.360450px;}
.y4_c00484{bottom:78.060450px;}
.y23_c00484{bottom:123.150450px;}
.y22_c00484{bottom:154.560450px;}
.y21_c00484{bottom:185.970450px;}
.y20_c00484{bottom:217.380450px;}
.y1f_c00484{bottom:248.790450px;}
.y1e_c00484{bottom:282.270450px;}
.y1d_c00484{bottom:325.200450px;}
.y1c_c00484{bottom:356.610450px;}
.y1b_c00484{bottom:388.020600px;}
.y1a_c00484{bottom:419.430600px;}
.y19_c00484{bottom:450.840600px;}
.y18_c00484{bottom:482.250600px;}
.y17_c00484{bottom:513.660450px;}
.y16_c00484{bottom:547.140450px;}
.y15_c00484{bottom:590.070450px;}
.y14_c00484{bottom:621.480450px;}
.y13_c00484{bottom:652.890450px;}
.y12_c00484{bottom:684.300450px;}
.y11_c00484{bottom:715.710450px;}
.y10_c00484{bottom:749.190450px;}
.yf_c00484{bottom:780.060450px;}
.ye_c00484{bottom:823.170450px;}
.yd_c00484{bottom:866.280450px;}
.yc_c00484{bottom:909.300450px;}
.yb_c00484{bottom:952.320450px;}
.ya_c00484{bottom:983.640450px;}
.y9_c00484{bottom:1015.050450px;}
.y8_c00484{bottom:1046.550450px;}
.y7_c00484{bottom:1077.960450px;}
.y6_c00484{bottom:1111.440450px;}
.y3_c00484{bottom:1132.140450px;}
.y2_c00484{bottom:1165.441023px;}
.y1_c00484{bottom:1196.040600px;}
.h4_c00484{height:49.042969px;}
.h1_c00484{height:52.898555px;}
.h2_c00484{height:63.175781px;}
.h3_c00484{height:63.949219px;}
.h0_c00484{height:1263.000000px;}
.w1_c00484{width:892.500000px;}
.w0_c00484{width:892.830000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:127.620000px;}
.x6_c00484{left:220.680000px;}
.x4_c00484{left:353.520000px;}
.x5_c00484{left:358.470000px;}
.x3_c00484{left:384.300000px;}
.x2_c00484{left:738.450000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls7_c00484{letter-spacing:-0.090848pt;}
.lsd_c00484{letter-spacing:-0.051200pt;}
.lsc_c00484{letter-spacing:-0.032000pt;}
.ls9_c00484{letter-spacing:-0.019200pt;}
.lsb_c00484{letter-spacing:-0.012800pt;}
.lsa_c00484{letter-spacing:-0.006400pt;}
.ls8_c00484{letter-spacing:0.000000pt;}
.ls1_c00484{letter-spacing:0.012800pt;}
.ls0_c00484{letter-spacing:0.019200pt;}
.ls5_c00484{letter-spacing:0.025600pt;}
.ls2_c00484{letter-spacing:0.032000pt;}
.ls4_c00484{letter-spacing:0.044800pt;}
.ls6_c00484{letter-spacing:0.057600pt;}
.ls3_c00484{letter-spacing:0.089600pt;}
.ws1_c00484{word-spacing:0.000000pt;}
.ws2_c00484{word-spacing:0.006400pt;}
.ws0_c00484{word-spacing:0.171008pt;}
._0_c00484{width:0.919168pt;}
.fs0_c00484{font-size:53.440000pt;}
.fs1_c00484{font-size:64.000000pt;}
.y0_c00484{bottom:0.000000pt;}
.y5_c00484{bottom:50.987067pt;}
.y4_c00484{bottom:69.387067pt;}
.y23_c00484{bottom:109.467067pt;}
.y22_c00484{bottom:137.387067pt;}
.y21_c00484{bottom:165.307067pt;}
.y20_c00484{bottom:193.227067pt;}
.y1f_c00484{bottom:221.147067pt;}
.y1e_c00484{bottom:250.907067pt;}
.y1d_c00484{bottom:289.067067pt;}
.y1c_c00484{bottom:316.987067pt;}
.y1b_c00484{bottom:344.907200pt;}
.y1a_c00484{bottom:372.827200pt;}
.y19_c00484{bottom:400.747200pt;}
.y18_c00484{bottom:428.667200pt;}
.y17_c00484{bottom:456.587067pt;}
.y16_c00484{bottom:486.347067pt;}
.y15_c00484{bottom:524.507067pt;}
.y14_c00484{bottom:552.427067pt;}
.y13_c00484{bottom:580.347067pt;}
.y12_c00484{bottom:608.267067pt;}
.y11_c00484{bottom:636.187067pt;}
.y10_c00484{bottom:665.947067pt;}
.yf_c00484{bottom:693.387067pt;}
.ye_c00484{bottom:731.707067pt;}
.yd_c00484{bottom:770.027067pt;}
.yc_c00484{bottom:808.267067pt;}
.yb_c00484{bottom:846.507067pt;}
.ya_c00484{bottom:874.347067pt;}
.y9_c00484{bottom:902.267067pt;}
.y8_c00484{bottom:930.267067pt;}
.y7_c00484{bottom:958.187067pt;}
.y6_c00484{bottom:987.947067pt;}
.y3_c00484{bottom:1006.347067pt;}
.y2_c00484{bottom:1035.947576pt;}
.y1_c00484{bottom:1063.147200pt;}
.h4_c00484{height:43.593750pt;}
.h1_c00484{height:47.020937pt;}
.h2_c00484{height:56.156250pt;}
.h3_c00484{height:56.843750pt;}
.h0_c00484{height:1122.666667pt;}
.w1_c00484{width:793.333333pt;}
.w0_c00484{width:793.626667pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:113.440000pt;}
.x6_c00484{left:196.160000pt;}
.x4_c00484{left:314.240000pt;}
.x5_c00484{left:318.640000pt;}
.x3_c00484{left:341.600000pt;}
.x2_c00484{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.095703;font-style:normal;font-weight:normal;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_de22f5cce62d4c0b9d89ef1a.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00485;src:url('chunks/assets/font_493db7142be98a90adac8371.woff2')format("woff");}.ff3_c00485{font-family:ff3_c00485;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00485{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.lsc_c00485{letter-spacing:-0.561600px;}
.lsd_c00485{letter-spacing:-0.057600px;}
.ls8_c00485{letter-spacing:-0.048096px;}
.lsa_c00485{letter-spacing:-0.014400px;}
.lsb_c00485{letter-spacing:-0.007200px;}
.ls9_c00485{letter-spacing:0.000000px;}
.ls6_c00485{letter-spacing:0.007200px;}
.ls2_c00485{letter-spacing:0.014400px;}
.ls1_c00485{letter-spacing:0.021600px;}
.ls3_c00485{letter-spacing:0.043200px;}
.ls7_c00485{letter-spacing:0.050400px;}
.ls0_c00485{letter-spacing:0.057600px;}
.ls5_c00485{letter-spacing:0.072000px;}
.ls4_c00485{letter-spacing:0.100800px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00485{word-spacing:0.000000px;}
.ws0_c00485{word-spacing:0.138276px;}
._0_c00485{width:1.123200px;}
._1_c00485{width:230.299200px;}
.fc0_c00485{color:rgb(0,0,0);}
.fs0_c00485{font-size:60.120000px;}
.fs1_c00485{font-size:72.000000px;}
.y0_c00485{bottom:0.000000px;}
.y6_c00485{bottom:57.360450px;}
.y5_c00485{bottom:78.060450px;}
.y24_c00485{bottom:151.050450px;}
.y23_c00485{bottom:182.460450px;}
.y22_c00485{bottom:213.510450px;}
.y21_c00485{bottom:244.920450px;}
.y20_c00485{bottom:276.330450px;}
.y1f_c00485{bottom:307.740450px;}
.y1e_c00485{bottom:339.240450px;}
.y1d_c00485{bottom:370.650450px;}
.y1c_c00485{bottom:402.060450px;}
.y1b_c00485{bottom:433.470450px;}
.y1a_c00485{bottom:466.950600px;}
.y19_c00485{bottom:509.880450px;}
.y18_c00485{bottom:541.200450px;}
.y17_c00485{bottom:572.700450px;}
.y16_c00485{bottom:604.110450px;}
.y15_c00485{bottom:635.520450px;}
.y14_c00485{bottom:666.930450px;}
.y13_c00485{bottom:698.340450px;}
.y12_c00485{bottom:729.750450px;}
.y11_c00485{bottom:763.230450px;}
.y10_c00485{bottom:806.160450px;}
.yf_c00485{bottom:849.270450px;}
.ye_c00485{bottom:892.290450px;}
.yd_c00485{bottom:935.310450px;}
.yc_c00485{bottom:966.720450px;}
.yb_c00485{bottom:998.130450px;}
.ya_c00485{bottom:1029.540450px;}
.y9_c00485{bottom:1060.950450px;}
.y8_c00485{bottom:1092.360450px;}
.y7_c00485{bottom:1123.770450px;}
.y4_c00485{bottom:1144.380657px;}
.y3_c00485{bottom:1161.660648px;}
.y2_c00485{bottom:1178.850459px;}
.y1_c00485{bottom:1196.130450px;}
.h1_c00485{height:52.898555px;}
.h2_c00485{height:63.175781px;}
.h3_c00485{height:63.949219px;}
.h0_c00485{height:1263.000000px;}
.w1_c00485{width:892.500000px;}
.w0_c00485{width:892.830000px;}
.x0_c00485{left:0.000000px;}
.x4_c00485{left:127.620000px;}
.x5_c00485{left:220.680000px;}
.x6_c00485{left:352.890000px;}
.x1_c00485{left:649.620000px;}
.x3_c00485{left:738.450000px;}
.x2_c00485{left:765.450198px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.lsc_c00485{letter-spacing:-0.499200pt;}
.lsd_c00485{letter-spacing:-0.051200pt;}
.ls8_c00485{letter-spacing:-0.042752pt;}
.lsa_c00485{letter-spacing:-0.012800pt;}
.lsb_c00485{letter-spacing:-0.006400pt;}
.ls9_c00485{letter-spacing:0.000000pt;}
.ls6_c00485{letter-spacing:0.006400pt;}
.ls2_c00485{letter-spacing:0.012800pt;}
.ls1_c00485{letter-spacing:0.019200pt;}
.ls3_c00485{letter-spacing:0.038400pt;}
.ls7_c00485{letter-spacing:0.044800pt;}
.ls0_c00485{letter-spacing:0.051200pt;}
.ls5_c00485{letter-spacing:0.064000pt;}
.ls4_c00485{letter-spacing:0.089600pt;}
.ws1_c00485{word-spacing:0.000000pt;}
.ws0_c00485{word-spacing:0.122912pt;}
._0_c00485{width:0.998400pt;}
._1_c00485{width:204.710400pt;}
.fs0_c00485{font-size:53.440000pt;}
.fs1_c00485{font-size:64.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y6_c00485{bottom:50.987067pt;}
.y5_c00485{bottom:69.387067pt;}
.y24_c00485{bottom:134.267067pt;}
.y23_c00485{bottom:162.187067pt;}
.y22_c00485{bottom:189.787067pt;}
.y21_c00485{bottom:217.707067pt;}
.y20_c00485{bottom:245.627067pt;}
.y1f_c00485{bottom:273.547067pt;}
.y1e_c00485{bottom:301.547067pt;}
.y1d_c00485{bottom:329.467067pt;}
.y1c_c00485{bottom:357.387067pt;}
.y1b_c00485{bottom:385.307067pt;}
.y1a_c00485{bottom:415.067200pt;}
.y19_c00485{bottom:453.227067pt;}
.y18_c00485{bottom:481.067067pt;}
.y17_c00485{bottom:509.067067pt;}
.y16_c00485{bottom:536.987067pt;}
.y15_c00485{bottom:564.907067pt;}
.y14_c00485{bottom:592.827067pt;}
.y13_c00485{bottom:620.747067pt;}
.y12_c00485{bottom:648.667067pt;}
.y11_c00485{bottom:678.427067pt;}
.y10_c00485{bottom:716.587067pt;}
.yf_c00485{bottom:754.907067pt;}
.ye_c00485{bottom:793.147067pt;}
.yd_c00485{bottom:831.387067pt;}
.yc_c00485{bottom:859.307067pt;}
.yb_c00485{bottom:887.227067pt;}
.ya_c00485{bottom:915.147067pt;}
.y9_c00485{bottom:943.067067pt;}
.y8_c00485{bottom:970.987067pt;}
.y7_c00485{bottom:998.907067pt;}
.y4_c00485{bottom:1017.227251pt;}
.y3_c00485{bottom:1032.587243pt;}
.y2_c00485{bottom:1047.867075pt;}
.y1_c00485{bottom:1063.227067pt;}
.h1_c00485{height:47.020937pt;}
.h2_c00485{height:56.156250pt;}
.h3_c00485{height:56.843750pt;}
.h0_c00485{height:1122.666667pt;}
.w1_c00485{width:793.333333pt;}
.w0_c00485{width:793.626667pt;}
.x0_c00485{left:0.000000pt;}
.x4_c00485{left:113.440000pt;}
.x5_c00485{left:196.160000pt;}
.x6_c00485{left:313.680000pt;}
.x1_c00485{left:577.440000pt;}
.x3_c00485{left:656.400000pt;}
.x2_c00485{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.095703;font-style:normal;font-weight:normal;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_d25ee51a42d40e4448670559.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00486;src:url('chunks/assets/font_b055edbbbc28859675185742.woff2')format("woff");}.ff3_c00486{font-family:ff3_c00486;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00486;src:url('chunks/assets/font_f4235862cb38ed97ac20ddc3.woff2')format("woff");}.ff4_c00486{font-family:ff4_c00486;line-height:0.896973;font-style: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;}
.ls6_c00486{letter-spacing:-0.102204px;}
.ls8_c00486{letter-spacing:-0.079200px;}
.lsb_c00486{letter-spacing:-0.057600px;}
.ls9_c00486{letter-spacing:-0.021600px;}
.lsa_c00486{letter-spacing:-0.014400px;}
.lsc_c00486{letter-spacing:-0.007200px;}
.ls7_c00486{letter-spacing:0.000000px;}
.ls5_c00486{letter-spacing:0.007200px;}
.ls2_c00486{letter-spacing:0.014400px;}
.ls0_c00486{letter-spacing:0.021600px;}
.ls1_c00486{letter-spacing:0.036000px;}
.ls4_c00486{letter-spacing:0.043200px;}
.ls3_c00486{letter-spacing:0.122400px;}
.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;}
}
.ws2_c00486{word-spacing:-0.021600px;}
.ws1_c00486{word-spacing:0.000000px;}
.ws0_c00486{word-spacing:0.192384px;}
._0_c00486{width:1.034064px;}
._1_c00486{width:150.825600px;}
.fc1_c00486{color:rgb(0,0,0);}
.fc0_c00486{color:rgb(32,31,30);}
.fs0_c00486{font-size:60.120000px;}
.fs1_c00486{font-size:72.000000px;}
.y0_c00486{bottom:0.000000px;}
.y5_c00486{bottom:57.360450px;}
.y4_c00486{bottom:78.060450px;}
.y22_c00486{bottom:180.750450px;}
.y21_c00486{bottom:212.160450px;}
.y20_c00486{bottom:243.660450px;}
.y1f_c00486{bottom:275.070450px;}
.y1e_c00486{bottom:308.550450px;}
.y1d_c00486{bottom:345.990450px;}
.y1c_c00486{bottom:377.220450px;}
.y1b_c00486{bottom:408.630450px;}
.y1a_c00486{bottom:440.040600px;}
.y19_c00486{bottom:471.090600px;}
.y18_c00486{bottom:502.500600px;}
.y17_c00486{bottom:533.910450px;}
.y16_c00486{bottom:565.320450px;}
.y15_c00486{bottom:596.730450px;}
.y14_c00486{bottom:630.210450px;}
.y13_c00486{bottom:661.080450px;}
.y12_c00486{bottom:695.190450px;}
.y11_c00486{bottom:738.300450px;}
.y10_c00486{bottom:769.620450px;}
.yf_c00486{bottom:801.030450px;}
.ye_c00486{bottom:832.440450px;}
.yd_c00486{bottom:865.920450px;}
.yc_c00486{bottom:908.940450px;}
.yb_c00486{bottom:940.260450px;}
.ya_c00486{bottom:971.670450px;}
.y9_c00486{bottom:1003.080450px;}
.y8_c00486{bottom:1036.560450px;}
.y7_c00486{bottom:1079.490450px;}
.y6_c00486{bottom:1110.900450px;}
.y3_c00486{bottom:1132.140450px;}
.y2_c00486{bottom:1165.441023px;}
.y1_c00486{bottom:1196.040600px;}
.h4_c00486{height:49.042969px;}
.h1_c00486{height:52.898555px;}
.h2_c00486{height:63.175781px;}
.h3_c00486{height:63.949219px;}
.h0_c00486{height:1263.000000px;}
.w1_c00486{width:892.500000px;}
.w0_c00486{width:892.830000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:127.620000px;}
.x7_c00486{left:339.750000px;}
.x3_c00486{left:352.890000px;}
.x5_c00486{left:358.560000px;}
.x6_c00486{left:370.890000px;}
.x4_c00486{left:371.970000px;}
.x2_c00486{left:738.450000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls6_c00486{letter-spacing:-0.090848pt;}
.ls8_c00486{letter-spacing:-0.070400pt;}
.lsb_c00486{letter-spacing:-0.051200pt;}
.ls9_c00486{letter-spacing:-0.019200pt;}
.lsa_c00486{letter-spacing:-0.012800pt;}
.lsc_c00486{letter-spacing:-0.006400pt;}
.ls7_c00486{letter-spacing:0.000000pt;}
.ls5_c00486{letter-spacing:0.006400pt;}
.ls2_c00486{letter-spacing:0.012800pt;}
.ls0_c00486{letter-spacing:0.019200pt;}
.ls1_c00486{letter-spacing:0.032000pt;}
.ls4_c00486{letter-spacing:0.038400pt;}
.ls3_c00486{letter-spacing:0.108800pt;}
.ws2_c00486{word-spacing:-0.019200pt;}
.ws1_c00486{word-spacing:0.000000pt;}
.ws0_c00486{word-spacing:0.171008pt;}
._0_c00486{width:0.919168pt;}
._1_c00486{width:134.067200pt;}
.fs0_c00486{font-size:53.440000pt;}
.fs1_c00486{font-size:64.000000pt;}
.y0_c00486{bottom:0.000000pt;}
.y5_c00486{bottom:50.987067pt;}
.y4_c00486{bottom:69.387067pt;}
.y22_c00486{bottom:160.667067pt;}
.y21_c00486{bottom:188.587067pt;}
.y20_c00486{bottom:216.587067pt;}
.y1f_c00486{bottom:244.507067pt;}
.y1e_c00486{bottom:274.267067pt;}
.y1d_c00486{bottom:307.547067pt;}
.y1c_c00486{bottom:335.307067pt;}
.y1b_c00486{bottom:363.227067pt;}
.y1a_c00486{bottom:391.147200pt;}
.y19_c00486{bottom:418.747200pt;}
.y18_c00486{bottom:446.667200pt;}
.y17_c00486{bottom:474.587067pt;}
.y16_c00486{bottom:502.507067pt;}
.y15_c00486{bottom:530.427067pt;}
.y14_c00486{bottom:560.187067pt;}
.y13_c00486{bottom:587.627067pt;}
.y12_c00486{bottom:617.947067pt;}
.y11_c00486{bottom:656.267067pt;}
.y10_c00486{bottom:684.107067pt;}
.yf_c00486{bottom:712.027067pt;}
.ye_c00486{bottom:739.947067pt;}
.yd_c00486{bottom:769.707067pt;}
.yc_c00486{bottom:807.947067pt;}
.yb_c00486{bottom:835.787067pt;}
.ya_c00486{bottom:863.707067pt;}
.y9_c00486{bottom:891.627067pt;}
.y8_c00486{bottom:921.387067pt;}
.y7_c00486{bottom:959.547067pt;}
.y6_c00486{bottom:987.467067pt;}
.y3_c00486{bottom:1006.347067pt;}
.y2_c00486{bottom:1035.947576pt;}
.y1_c00486{bottom:1063.147200pt;}
.h4_c00486{height:43.593750pt;}
.h1_c00486{height:47.020937pt;}
.h2_c00486{height:56.156250pt;}
.h3_c00486{height:56.843750pt;}
.h0_c00486{height:1122.666667pt;}
.w1_c00486{width:793.333333pt;}
.w0_c00486{width:793.626667pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:113.440000pt;}
.x7_c00486{left:302.000000pt;}
.x3_c00486{left:313.680000pt;}
.x5_c00486{left:318.720000pt;}
.x6_c00486{left:329.680000pt;}
.x4_c00486{left:330.640000pt;}
.x2_c00486{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.095703;font-style:normal;font-weight:normal;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_e7547fe91cb6c15cd87e4210.woff2')format("woff");}.ff2_c00487{font-family:ff2_c00487;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00487;src:url('chunks/assets/font_fa39e803bc54f04cc07e0ea3.woff2')format("woff");}.ff3_c00487{font-family:ff3_c00487;line-height:1.104004;font-style: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;}
.lsb_c00487{letter-spacing:-0.048096px;}
.ls10_c00487{letter-spacing:-0.043200px;}
.lse_c00487{letter-spacing:-0.021600px;}
.lsd_c00487{letter-spacing:-0.014400px;}
.lsf_c00487{letter-spacing:-0.007200px;}
.lsc_c00487{letter-spacing:0.000000px;}
.ls2_c00487{letter-spacing:0.007200px;}
.ls6_c00487{letter-spacing:0.014400px;}
.ls9_c00487{letter-spacing:0.021600px;}
.ls4_c00487{letter-spacing:0.028800px;}
.lsa_c00487{letter-spacing:0.036000px;}
.ls0_c00487{letter-spacing:0.043200px;}
.ls7_c00487{letter-spacing:0.057600px;}
.ls5_c00487{letter-spacing:0.064800px;}
.ls3_c00487{letter-spacing:0.079200px;}
.ls8_c00487{letter-spacing:0.086400px;}
.ls1_c00487{letter-spacing:0.100800px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00487{word-spacing:0.000000px;}
.ws0_c00487{word-spacing:0.138276px;}
._0_c00487{width:22.233600px;}
._1_c00487{width:46.425600px;}
.fc0_c00487{color:rgb(0,0,0);}
.fs0_c00487{font-size:60.120000px;}
.fs1_c00487{font-size:72.000000px;}
.y0_c00487{bottom:0.000000px;}
.y6_c00487{bottom:57.360450px;}
.y5_c00487{bottom:78.060450px;}
.y26_c00487{bottom:124.590450px;}
.y25_c00487{bottom:155.640450px;}
.y24_c00487{bottom:187.050450px;}
.y23_c00487{bottom:218.460600px;}
.y22_c00487{bottom:249.870450px;}
.y21_c00487{bottom:281.280450px;}
.y20_c00487{bottom:312.690450px;}
.y1f_c00487{bottom:344.190450px;}
.y1e_c00487{bottom:375.600450px;}
.y1d_c00487{bottom:407.010450px;}
.y1c_c00487{bottom:440.490450px;}
.y1b_c00487{bottom:477.930450px;}
.y1a_c00487{bottom:515.280450px;}
.y19_c00487{bottom:552.720450px;}
.y18_c00487{bottom:590.160450px;}
.y17_c00487{bottom:621.390450px;}
.y16_c00487{bottom:652.800450px;}
.y15_c00487{bottom:684.210450px;}
.y14_c00487{bottom:715.710450px;}
.y13_c00487{bottom:747.120450px;}
.y12_c00487{bottom:778.530450px;}
.y11_c00487{bottom:809.940450px;}
.y10_c00487{bottom:841.350450px;}
.yf_c00487{bottom:872.760450px;}
.ye_c00487{bottom:904.170450px;}
.yd_c00487{bottom:935.670450px;}
.yc_c00487{bottom:967.080450px;}
.yb_c00487{bottom:998.490450px;}
.ya_c00487{bottom:1029.900450px;}
.y9_c00487{bottom:1061.310450px;}
.y8_c00487{bottom:1092.720450px;}
.y7_c00487{bottom:1123.770450px;}
.y4_c00487{bottom:1144.380657px;}
.y3_c00487{bottom:1161.660648px;}
.y2_c00487{bottom:1178.850459px;}
.y1_c00487{bottom:1196.130450px;}
.h1_c00487{height:52.898555px;}
.h2_c00487{height:63.175781px;}
.h3_c00487{height:63.949219px;}
.h0_c00487{height:1263.000000px;}
.w1_c00487{width:892.500000px;}
.w0_c00487{width:892.830000px;}
.x0_c00487{left:0.000000px;}
.x4_c00487{left:127.620000px;}
.x6_c00487{left:319.770000px;}
.x5_c00487{left:339.750000px;}
.x1_c00487{left:649.620000px;}
.x3_c00487{left:738.450000px;}
.x2_c00487{left:765.450198px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.lsb_c00487{letter-spacing:-0.042752pt;}
.ls10_c00487{letter-spacing:-0.038400pt;}
.lse_c00487{letter-spacing:-0.019200pt;}
.lsd_c00487{letter-spacing:-0.012800pt;}
.lsf_c00487{letter-spacing:-0.006400pt;}
.lsc_c00487{letter-spacing:0.000000pt;}
.ls2_c00487{letter-spacing:0.006400pt;}
.ls6_c00487{letter-spacing:0.012800pt;}
.ls9_c00487{letter-spacing:0.019200pt;}
.ls4_c00487{letter-spacing:0.025600pt;}
.lsa_c00487{letter-spacing:0.032000pt;}
.ls0_c00487{letter-spacing:0.038400pt;}
.ls7_c00487{letter-spacing:0.051200pt;}
.ls5_c00487{letter-spacing:0.057600pt;}
.ls3_c00487{letter-spacing:0.070400pt;}
.ls8_c00487{letter-spacing:0.076800pt;}
.ls1_c00487{letter-spacing:0.089600pt;}
.ws1_c00487{word-spacing:0.000000pt;}
.ws0_c00487{word-spacing:0.122912pt;}
._0_c00487{width:19.763200pt;}
._1_c00487{width:41.267200pt;}
.fs0_c00487{font-size:53.440000pt;}
.fs1_c00487{font-size:64.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y6_c00487{bottom:50.987067pt;}
.y5_c00487{bottom:69.387067pt;}
.y26_c00487{bottom:110.747067pt;}
.y25_c00487{bottom:138.347067pt;}
.y24_c00487{bottom:166.267067pt;}
.y23_c00487{bottom:194.187200pt;}
.y22_c00487{bottom:222.107067pt;}
.y21_c00487{bottom:250.027067pt;}
.y20_c00487{bottom:277.947067pt;}
.y1f_c00487{bottom:305.947067pt;}
.y1e_c00487{bottom:333.867067pt;}
.y1d_c00487{bottom:361.787067pt;}
.y1c_c00487{bottom:391.547067pt;}
.y1b_c00487{bottom:424.827067pt;}
.y1a_c00487{bottom:458.027067pt;}
.y19_c00487{bottom:491.307067pt;}
.y18_c00487{bottom:524.587067pt;}
.y17_c00487{bottom:552.347067pt;}
.y16_c00487{bottom:580.267067pt;}
.y15_c00487{bottom:608.187067pt;}
.y14_c00487{bottom:636.187067pt;}
.y13_c00487{bottom:664.107067pt;}
.y12_c00487{bottom:692.027067pt;}
.y11_c00487{bottom:719.947067pt;}
.y10_c00487{bottom:747.867067pt;}
.yf_c00487{bottom:775.787067pt;}
.ye_c00487{bottom:803.707067pt;}
.yd_c00487{bottom:831.707067pt;}
.yc_c00487{bottom:859.627067pt;}
.yb_c00487{bottom:887.547067pt;}
.ya_c00487{bottom:915.467067pt;}
.y9_c00487{bottom:943.387067pt;}
.y8_c00487{bottom:971.307067pt;}
.y7_c00487{bottom:998.907067pt;}
.y4_c00487{bottom:1017.227251pt;}
.y3_c00487{bottom:1032.587243pt;}
.y2_c00487{bottom:1047.867075pt;}
.y1_c00487{bottom:1063.227067pt;}
.h1_c00487{height:47.020937pt;}
.h2_c00487{height:56.156250pt;}
.h3_c00487{height:56.843750pt;}
.h0_c00487{height:1122.666667pt;}
.w1_c00487{width:793.333333pt;}
.w0_c00487{width:793.626667pt;}
.x0_c00487{left:0.000000pt;}
.x4_c00487{left:113.440000pt;}
.x6_c00487{left:284.240000pt;}
.x5_c00487{left:302.000000pt;}
.x1_c00487{left:577.440000pt;}
.x3_c00487{left:656.400000pt;}
.x2_c00487{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.095703;font-style:normal;font-weight:normal;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_0e4ef157b58024ecea2d9060.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.093262;font-style:normal;font-weight:normal;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_2c28372b13ed218e037a8087.woff2')format("woff");}.ff3_c00488{font-family:ff3_c00488;line-height:1.104004;font-style: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;}
.ls9_c00488{letter-spacing:-0.102204px;}
.lsd_c00488{letter-spacing:-0.043200px;}
.lse_c00488{letter-spacing:-0.036000px;}
.lsc_c00488{letter-spacing:-0.014400px;}
.lsb_c00488{letter-spacing:-0.007200px;}
.lsa_c00488{letter-spacing:0.000000px;}
.ls1_c00488{letter-spacing:0.007200px;}
.ls3_c00488{letter-spacing:0.014400px;}
.ls0_c00488{letter-spacing:0.028800px;}
.ls4_c00488{letter-spacing:0.036000px;}
.ls2_c00488{letter-spacing:0.043200px;}
.ls8_c00488{letter-spacing:0.050400px;}
.ls6_c00488{letter-spacing:0.079200px;}
.ls5_c00488{letter-spacing:0.100800px;}
.ls7_c00488{letter-spacing:0.122400px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00488{word-spacing:0.000000px;}
.ws0_c00488{word-spacing:0.192384px;}
._3_c00488{margin-left:-1.080000px;}
._0_c00488{width:1.034064px;}
._1_c00488{width:7.912800px;}
._2_c00488{width:95.731200px;}
.fc1_c00488{color:rgb(0,0,0);}
.fc0_c00488{color:rgb(32,31,30);}
.fs0_c00488{font-size:60.120000px;}
.fs1_c00488{font-size:72.000000px;}
.y0_c00488{bottom:0.000000px;}
.y5_c00488{bottom:57.360450px;}
.y4_c00488{bottom:78.060450px;}
.y24_c00488{bottom:127.650450px;}
.y23_c00488{bottom:159.150450px;}
.y22_c00488{bottom:190.560450px;}
.y21_c00488{bottom:221.970450px;}
.y20_c00488{bottom:253.380450px;}
.y1f_c00488{bottom:286.860450px;}
.y1e_c00488{bottom:329.790450px;}
.y1d_c00488{bottom:367.320450px;}
.y1c_c00488{bottom:398.550450px;}
.y1b_c00488{bottom:429.960600px;}
.y1a_c00488{bottom:461.370600px;}
.y19_c00488{bottom:492.870600px;}
.y18_c00488{bottom:524.280600px;}
.y17_c00488{bottom:557.760450px;}
.y16_c00488{bottom:595.200450px;}
.y15_c00488{bottom:626.430450px;}
.y14_c00488{bottom:657.840450px;}
.y13_c00488{bottom:691.320450px;}
.y12_c00488{bottom:728.760450px;}
.y11_c00488{bottom:766.110450px;}
.y10_c00488{bottom:797.340450px;}
.yf_c00488{bottom:828.840450px;}
.ye_c00488{bottom:860.250450px;}
.yd_c00488{bottom:891.300450px;}
.yc_c00488{bottom:922.710450px;}
.yb_c00488{bottom:954.120450px;}
.ya_c00488{bottom:985.530450px;}
.y9_c00488{bottom:1016.940450px;}
.y8_c00488{bottom:1048.350450px;}
.y7_c00488{bottom:1079.400450px;}
.y6_c00488{bottom:1110.900450px;}
.y3_c00488{bottom:1132.140450px;}
.y2_c00488{bottom:1165.441023px;}
.y1_c00488{bottom:1196.040600px;}
.h1_c00488{height:52.898555px;}
.h2_c00488{height:63.175781px;}
.h3_c00488{height:63.949219px;}
.h0_c00488{height:1263.000000px;}
.w1_c00488{width:892.500000px;}
.w0_c00488{width:892.830000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:127.620000px;}
.x5_c00488{left:311.040000px;}
.x4_c00488{left:313.020000px;}
.x3_c00488{left:319.770000px;}
.x6_c00488{left:320.850000px;}
.x2_c00488{left:738.450000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls9_c00488{letter-spacing:-0.090848pt;}
.lsd_c00488{letter-spacing:-0.038400pt;}
.lse_c00488{letter-spacing:-0.032000pt;}
.lsc_c00488{letter-spacing:-0.012800pt;}
.lsb_c00488{letter-spacing:-0.006400pt;}
.lsa_c00488{letter-spacing:0.000000pt;}
.ls1_c00488{letter-spacing:0.006400pt;}
.ls3_c00488{letter-spacing:0.012800pt;}
.ls0_c00488{letter-spacing:0.025600pt;}
.ls4_c00488{letter-spacing:0.032000pt;}
.ls2_c00488{letter-spacing:0.038400pt;}
.ls8_c00488{letter-spacing:0.044800pt;}
.ls6_c00488{letter-spacing:0.070400pt;}
.ls5_c00488{letter-spacing:0.089600pt;}
.ls7_c00488{letter-spacing:0.108800pt;}
.ws1_c00488{word-spacing:0.000000pt;}
.ws0_c00488{word-spacing:0.171008pt;}
._3_c00488{margin-left:-0.960000pt;}
._0_c00488{width:0.919168pt;}
._1_c00488{width:7.033600pt;}
._2_c00488{width:85.094400pt;}
.fs0_c00488{font-size:53.440000pt;}
.fs1_c00488{font-size:64.000000pt;}
.y0_c00488{bottom:0.000000pt;}
.y5_c00488{bottom:50.987067pt;}
.y4_c00488{bottom:69.387067pt;}
.y24_c00488{bottom:113.467067pt;}
.y23_c00488{bottom:141.467067pt;}
.y22_c00488{bottom:169.387067pt;}
.y21_c00488{bottom:197.307067pt;}
.y20_c00488{bottom:225.227067pt;}
.y1f_c00488{bottom:254.987067pt;}
.y1e_c00488{bottom:293.147067pt;}
.y1d_c00488{bottom:326.507067pt;}
.y1c_c00488{bottom:354.267067pt;}
.y1b_c00488{bottom:382.187200pt;}
.y1a_c00488{bottom:410.107200pt;}
.y19_c00488{bottom:438.107200pt;}
.y18_c00488{bottom:466.027200pt;}
.y17_c00488{bottom:495.787067pt;}
.y16_c00488{bottom:529.067067pt;}
.y15_c00488{bottom:556.827067pt;}
.y14_c00488{bottom:584.747067pt;}
.y13_c00488{bottom:614.507067pt;}
.y12_c00488{bottom:647.787067pt;}
.y11_c00488{bottom:680.987067pt;}
.y10_c00488{bottom:708.747067pt;}
.yf_c00488{bottom:736.747067pt;}
.ye_c00488{bottom:764.667067pt;}
.yd_c00488{bottom:792.267067pt;}
.yc_c00488{bottom:820.187067pt;}
.yb_c00488{bottom:848.107067pt;}
.ya_c00488{bottom:876.027067pt;}
.y9_c00488{bottom:903.947067pt;}
.y8_c00488{bottom:931.867067pt;}
.y7_c00488{bottom:959.467067pt;}
.y6_c00488{bottom:987.467067pt;}
.y3_c00488{bottom:1006.347067pt;}
.y2_c00488{bottom:1035.947576pt;}
.y1_c00488{bottom:1063.147200pt;}
.h1_c00488{height:47.020937pt;}
.h2_c00488{height:56.156250pt;}
.h3_c00488{height:56.843750pt;}
.h0_c00488{height:1122.666667pt;}
.w1_c00488{width:793.333333pt;}
.w0_c00488{width:793.626667pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:113.440000pt;}
.x5_c00488{left:276.480000pt;}
.x4_c00488{left:278.240000pt;}
.x3_c00488{left:284.240000pt;}
.x6_c00488{left:285.200000pt;}
.x2_c00488{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.095703;font-style:normal;font-weight:normal;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_87646e12d380fb24086575ea.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00489;src:url('chunks/assets/font_8e8c59054c166eeb955199bf.woff2')format("woff");}.ff3_c00489{font-family:ff3_c00489;line-height:1.104004;font-style: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;}
.lsa_c00489{letter-spacing:-0.050400px;}
.ls8_c00489{letter-spacing:-0.048096px;}
.lsd_c00489{letter-spacing:-0.043200px;}
.lsb_c00489{letter-spacing:-0.014400px;}
.lsc_c00489{letter-spacing:-0.007200px;}
.ls9_c00489{letter-spacing:0.000000px;}
.ls1_c00489{letter-spacing:0.007200px;}
.ls3_c00489{letter-spacing:0.014400px;}
.ls5_c00489{letter-spacing:0.021600px;}
.ls2_c00489{letter-spacing:0.036000px;}
.ls7_c00489{letter-spacing:0.043200px;}
.ls0_c00489{letter-spacing:0.050400px;}
.ls6_c00489{letter-spacing:0.057600px;}
.ls4_c00489{letter-spacing:0.100800px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00489{word-spacing:0.000000px;}
.ws0_c00489{word-spacing:0.138276px;}
._2_c00489{margin-left:-1.296000px;}
._1_c00489{width:32.371200px;}
._0_c00489{width:73.094400px;}
.fc0_c00489{color:rgb(0,0,0);}
.fs0_c00489{font-size:60.120000px;}
.fs1_c00489{font-size:72.000000px;}
.y0_c00489{bottom:0.000000px;}
.y6_c00489{bottom:57.360450px;}
.y5_c00489{bottom:78.060450px;}
.y24_c00489{bottom:151.050450px;}
.y23_c00489{bottom:182.460600px;}
.y22_c00489{bottom:213.870600px;}
.y21_c00489{bottom:247.350450px;}
.y20_c00489{bottom:284.790450px;}
.y1f_c00489{bottom:322.230450px;}
.y1e_c00489{bottom:353.460600px;}
.y1d_c00489{bottom:384.870450px;}
.y1c_c00489{bottom:416.280450px;}
.y1b_c00489{bottom:447.690600px;}
.y1a_c00489{bottom:479.100450px;}
.y19_c00489{bottom:510.150450px;}
.y18_c00489{bottom:541.650450px;}
.y17_c00489{bottom:573.060450px;}
.y16_c00489{bottom:606.540450px;}
.y15_c00489{bottom:649.470450px;}
.y14_c00489{bottom:692.490450px;}
.y13_c00489{bottom:735.600450px;}
.y12_c00489{bottom:778.620450px;}
.y11_c00489{bottom:809.940450px;}
.y10_c00489{bottom:841.350450px;}
.yf_c00489{bottom:872.400450px;}
.ye_c00489{bottom:903.810450px;}
.yd_c00489{bottom:935.220450px;}
.yc_c00489{bottom:966.720450px;}
.yb_c00489{bottom:998.130450px;}
.ya_c00489{bottom:1029.540450px;}
.y9_c00489{bottom:1060.950450px;}
.y8_c00489{bottom:1092.360450px;}
.y7_c00489{bottom:1123.770450px;}
.y4_c00489{bottom:1144.380657px;}
.y3_c00489{bottom:1161.660648px;}
.y2_c00489{bottom:1178.850459px;}
.y1_c00489{bottom:1196.130450px;}
.h1_c00489{height:52.898555px;}
.h2_c00489{height:63.175781px;}
.h3_c00489{height:63.949219px;}
.h0_c00489{height:1263.000000px;}
.w1_c00489{width:892.500000px;}
.w0_c00489{width:892.830000px;}
.x0_c00489{left:0.000000px;}
.x4_c00489{left:127.620000px;}
.x6_c00489{left:298.980000px;}
.x5_c00489{left:320.850000px;}
.x7_c00489{left:336.060000px;}
.x1_c00489{left:649.620000px;}
.x3_c00489{left:738.450000px;}
.x2_c00489{left:765.450198px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.lsa_c00489{letter-spacing:-0.044800pt;}
.ls8_c00489{letter-spacing:-0.042752pt;}
.lsd_c00489{letter-spacing:-0.038400pt;}
.lsb_c00489{letter-spacing:-0.012800pt;}
.lsc_c00489{letter-spacing:-0.006400pt;}
.ls9_c00489{letter-spacing:0.000000pt;}
.ls1_c00489{letter-spacing:0.006400pt;}
.ls3_c00489{letter-spacing:0.012800pt;}
.ls5_c00489{letter-spacing:0.019200pt;}
.ls2_c00489{letter-spacing:0.032000pt;}
.ls7_c00489{letter-spacing:0.038400pt;}
.ls0_c00489{letter-spacing:0.044800pt;}
.ls6_c00489{letter-spacing:0.051200pt;}
.ls4_c00489{letter-spacing:0.089600pt;}
.ws1_c00489{word-spacing:0.000000pt;}
.ws0_c00489{word-spacing:0.122912pt;}
._2_c00489{margin-left:-1.152000pt;}
._1_c00489{width:28.774400pt;}
._0_c00489{width:64.972800pt;}
.fs0_c00489{font-size:53.440000pt;}
.fs1_c00489{font-size:64.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y6_c00489{bottom:50.987067pt;}
.y5_c00489{bottom:69.387067pt;}
.y24_c00489{bottom:134.267067pt;}
.y23_c00489{bottom:162.187200pt;}
.y22_c00489{bottom:190.107200pt;}
.y21_c00489{bottom:219.867067pt;}
.y20_c00489{bottom:253.147067pt;}
.y1f_c00489{bottom:286.427067pt;}
.y1e_c00489{bottom:314.187200pt;}
.y1d_c00489{bottom:342.107067pt;}
.y1c_c00489{bottom:370.027067pt;}
.y1b_c00489{bottom:397.947200pt;}
.y1a_c00489{bottom:425.867067pt;}
.y19_c00489{bottom:453.467067pt;}
.y18_c00489{bottom:481.467067pt;}
.y17_c00489{bottom:509.387067pt;}
.y16_c00489{bottom:539.147067pt;}
.y15_c00489{bottom:577.307067pt;}
.y14_c00489{bottom:615.547067pt;}
.y13_c00489{bottom:653.867067pt;}
.y12_c00489{bottom:692.107067pt;}
.y11_c00489{bottom:719.947067pt;}
.y10_c00489{bottom:747.867067pt;}
.yf_c00489{bottom:775.467067pt;}
.ye_c00489{bottom:803.387067pt;}
.yd_c00489{bottom:831.307067pt;}
.yc_c00489{bottom:859.307067pt;}
.yb_c00489{bottom:887.227067pt;}
.ya_c00489{bottom:915.147067pt;}
.y9_c00489{bottom:943.067067pt;}
.y8_c00489{bottom:970.987067pt;}
.y7_c00489{bottom:998.907067pt;}
.y4_c00489{bottom:1017.227251pt;}
.y3_c00489{bottom:1032.587243pt;}
.y2_c00489{bottom:1047.867075pt;}
.y1_c00489{bottom:1063.227067pt;}
.h1_c00489{height:47.020937pt;}
.h2_c00489{height:56.156250pt;}
.h3_c00489{height:56.843750pt;}
.h0_c00489{height:1122.666667pt;}
.w1_c00489{width:793.333333pt;}
.w0_c00489{width:793.626667pt;}
.x0_c00489{left:0.000000pt;}
.x4_c00489{left:113.440000pt;}
.x6_c00489{left:265.760000pt;}
.x5_c00489{left:285.200000pt;}
.x7_c00489{left:298.720000pt;}
.x1_c00489{left:577.440000pt;}
.x3_c00489{left:656.400000pt;}
.x2_c00489{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.095703;font-style:normal;font-weight:normal;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_618cbe350b2197e64e1e391e.woff2')format("woff");}.ff2_c00490{font-family:ff2_c00490;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00490;src:url('chunks/assets/font_ff0089c9f56af52b8f872c62.woff2')format("woff");}.ff3_c00490{font-family:ff3_c00490;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls6_c00490{letter-spacing:-0.102204px;}
.lsd_c00490{letter-spacing:-0.043200px;}
.lsb_c00490{letter-spacing:-0.028800px;}
.ls8_c00490{letter-spacing:-0.021600px;}
.ls9_c00490{letter-spacing:-0.014400px;}
.lsc_c00490{letter-spacing:-0.007200px;}
.ls7_c00490{letter-spacing:0.000000px;}
.ls1_c00490{letter-spacing:0.007200px;}
.ls2_c00490{letter-spacing:0.014400px;}
.ls4_c00490{letter-spacing:0.021600px;}
.ls0_c00490{letter-spacing:0.036000px;}
.ls3_c00490{letter-spacing:0.050400px;}
.ls5_c00490{letter-spacing:0.064800px;}
.lsa_c00490{letter-spacing:95.040000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00490{word-spacing:0.000000px;}
.ws0_c00490{word-spacing:0.192384px;}
._2_c00490{margin-left:-95.198400px;}
._3_c00490{margin-left:-94.132800px;}
._4_c00490{margin-left:-1.116000px;}
._0_c00490{width:1.034064px;}
._1_c00490{width:79.560000px;}
._5_c00490{width:138.578400px;}
.fc1_c00490{color:rgb(0,0,0);}
.fc0_c00490{color:rgb(32,31,30);}
.fs0_c00490{font-size:60.120000px;}
.fs1_c00490{font-size:72.000000px;}
.y0_c00490{bottom:0.000000px;}
.y5_c00490{bottom:57.360450px;}
.y4_c00490{bottom:78.060450px;}
.y25_c00490{bottom:129.990450px;}
.y24_c00490{bottom:161.400450px;}
.y23_c00490{bottom:192.900450px;}
.y22_c00490{bottom:224.310450px;}
.y21_c00490{bottom:255.720450px;}
.y20_c00490{bottom:287.130450px;}
.y1f_c00490{bottom:318.540450px;}
.y1e_c00490{bottom:349.950450px;}
.y1d_c00490{bottom:381.360450px;}
.y1c_c00490{bottom:412.860600px;}
.y1b_c00490{bottom:444.270600px;}
.y1a_c00490{bottom:475.320450px;}
.y19_c00490{bottom:506.730450px;}
.y18_c00490{bottom:538.140450px;}
.y17_c00490{bottom:569.550450px;}
.y16_c00490{bottom:600.960450px;}
.y15_c00490{bottom:632.370450px;}
.y14_c00490{bottom:663.780450px;}
.y13_c00490{bottom:697.260450px;}
.y12_c00490{bottom:734.700450px;}
.y11_c00490{bottom:765.930450px;}
.y10_c00490{bottom:796.980450px;}
.yf_c00490{bottom:828.390450px;}
.ye_c00490{bottom:859.890450px;}
.yd_c00490{bottom:891.300450px;}
.yc_c00490{bottom:922.710450px;}
.yb_c00490{bottom:954.120450px;}
.ya_c00490{bottom:985.170450px;}
.y9_c00490{bottom:1016.580450px;}
.y8_c00490{bottom:1047.990450px;}
.y7_c00490{bottom:1079.400450px;}
.y6_c00490{bottom:1110.900450px;}
.y3_c00490{bottom:1132.140450px;}
.y2_c00490{bottom:1165.441023px;}
.y1_c00490{bottom:1196.040600px;}
.h1_c00490{height:52.898555px;}
.h2_c00490{height:63.175781px;}
.h3_c00490{height:63.949219px;}
.h0_c00490{height:1263.000000px;}
.w1_c00490{width:892.500000px;}
.w0_c00490{width:892.830000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:127.620000px;}
.x4_c00490{left:324.270000px;}
.x3_c00490{left:336.060000px;}
.x2_c00490{left:738.450000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls6_c00490{letter-spacing:-0.090848pt;}
.lsd_c00490{letter-spacing:-0.038400pt;}
.lsb_c00490{letter-spacing:-0.025600pt;}
.ls8_c00490{letter-spacing:-0.019200pt;}
.ls9_c00490{letter-spacing:-0.012800pt;}
.lsc_c00490{letter-spacing:-0.006400pt;}
.ls7_c00490{letter-spacing:0.000000pt;}
.ls1_c00490{letter-spacing:0.006400pt;}
.ls2_c00490{letter-spacing:0.012800pt;}
.ls4_c00490{letter-spacing:0.019200pt;}
.ls0_c00490{letter-spacing:0.032000pt;}
.ls3_c00490{letter-spacing:0.044800pt;}
.ls5_c00490{letter-spacing:0.057600pt;}
.lsa_c00490{letter-spacing:84.480000pt;}
.ws1_c00490{word-spacing:0.000000pt;}
.ws0_c00490{word-spacing:0.171008pt;}
._2_c00490{margin-left:-84.620800pt;}
._3_c00490{margin-left:-83.673600pt;}
._4_c00490{margin-left:-0.992000pt;}
._0_c00490{width:0.919168pt;}
._1_c00490{width:70.720000pt;}
._5_c00490{width:123.180800pt;}
.fs0_c00490{font-size:53.440000pt;}
.fs1_c00490{font-size:64.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y5_c00490{bottom:50.987067pt;}
.y4_c00490{bottom:69.387067pt;}
.y25_c00490{bottom:115.547067pt;}
.y24_c00490{bottom:143.467067pt;}
.y23_c00490{bottom:171.467067pt;}
.y22_c00490{bottom:199.387067pt;}
.y21_c00490{bottom:227.307067pt;}
.y20_c00490{bottom:255.227067pt;}
.y1f_c00490{bottom:283.147067pt;}
.y1e_c00490{bottom:311.067067pt;}
.y1d_c00490{bottom:338.987067pt;}
.y1c_c00490{bottom:366.987200pt;}
.y1b_c00490{bottom:394.907200pt;}
.y1a_c00490{bottom:422.507067pt;}
.y19_c00490{bottom:450.427067pt;}
.y18_c00490{bottom:478.347067pt;}
.y17_c00490{bottom:506.267067pt;}
.y16_c00490{bottom:534.187067pt;}
.y15_c00490{bottom:562.107067pt;}
.y14_c00490{bottom:590.027067pt;}
.y13_c00490{bottom:619.787067pt;}
.y12_c00490{bottom:653.067067pt;}
.y11_c00490{bottom:680.827067pt;}
.y10_c00490{bottom:708.427067pt;}
.yf_c00490{bottom:736.347067pt;}
.ye_c00490{bottom:764.347067pt;}
.yd_c00490{bottom:792.267067pt;}
.yc_c00490{bottom:820.187067pt;}
.yb_c00490{bottom:848.107067pt;}
.ya_c00490{bottom:875.707067pt;}
.y9_c00490{bottom:903.627067pt;}
.y8_c00490{bottom:931.547067pt;}
.y7_c00490{bottom:959.467067pt;}
.y6_c00490{bottom:987.467067pt;}
.y3_c00490{bottom:1006.347067pt;}
.y2_c00490{bottom:1035.947576pt;}
.y1_c00490{bottom:1063.147200pt;}
.h1_c00490{height:47.020937pt;}
.h2_c00490{height:56.156250pt;}
.h3_c00490{height:56.843750pt;}
.h0_c00490{height:1122.666667pt;}
.w1_c00490{width:793.333333pt;}
.w0_c00490{width:793.626667pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:113.440000pt;}
.x4_c00490{left:288.240000pt;}
.x3_c00490{left:298.720000pt;}
.x2_c00490{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.095703;font-style:normal;font-weight:normal;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_903963ac0195746b9bcbde5d.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00491;src:url('chunks/assets/font_7050bd67e0be213c2bd45288.woff2')format("woff");}.ff3_c00491{font-family:ff3_c00491;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.lsc_c00491{letter-spacing:-0.050400px;}
.ls7_c00491{letter-spacing:-0.048096px;}
.lsd_c00491{letter-spacing:-0.043200px;}
.ls9_c00491{letter-spacing:-0.021600px;}
.lsb_c00491{letter-spacing:-0.014400px;}
.lsa_c00491{letter-spacing:-0.007200px;}
.ls8_c00491{letter-spacing:0.000000px;}
.ls6_c00491{letter-spacing:0.014400px;}
.ls5_c00491{letter-spacing:0.021600px;}
.ls0_c00491{letter-spacing:0.028800px;}
.ls3_c00491{letter-spacing:0.036000px;}
.ls2_c00491{letter-spacing:0.050400px;}
.ls4_c00491{letter-spacing:0.057600px;}
.ls1_c00491{letter-spacing:0.100800px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00491{word-spacing:0.000000px;}
.ws0_c00491{word-spacing:0.138276px;}
._0_c00491{width:50.407200px;}
.fc0_c00491{color:rgb(0,0,0);}
.fs0_c00491{font-size:60.120000px;}
.fs1_c00491{font-size:72.000000px;}
.y0_c00491{bottom:0.000000px;}
.y6_c00491{bottom:57.360450px;}
.y5_c00491{bottom:78.060450px;}
.y26_c00491{bottom:150.060450px;}
.y25_c00491{bottom:181.470450px;}
.y24_c00491{bottom:212.880450px;}
.y23_c00491{bottom:244.380450px;}
.y22_c00491{bottom:275.790450px;}
.y21_c00491{bottom:307.200450px;}
.y20_c00491{bottom:338.610450px;}
.y1f_c00491{bottom:370.020450px;}
.y1e_c00491{bottom:401.430450px;}
.y1d_c00491{bottom:432.480450px;}
.y1c_c00491{bottom:463.890450px;}
.y1b_c00491{bottom:495.300450px;}
.y1a_c00491{bottom:526.800450px;}
.y19_c00491{bottom:558.210450px;}
.y18_c00491{bottom:589.620450px;}
.y17_c00491{bottom:621.030450px;}
.y16_c00491{bottom:652.440450px;}
.y15_c00491{bottom:683.850450px;}
.y14_c00491{bottom:715.260450px;}
.y13_c00491{bottom:746.760450px;}
.y12_c00491{bottom:778.170450px;}
.y11_c00491{bottom:809.580450px;}
.y10_c00491{bottom:840.990450px;}
.yf_c00491{bottom:872.400450px;}
.ye_c00491{bottom:903.810450px;}
.yd_c00491{bottom:935.220450px;}
.yc_c00491{bottom:966.720450px;}
.yb_c00491{bottom:998.130450px;}
.ya_c00491{bottom:1029.540450px;}
.y9_c00491{bottom:1060.950450px;}
.y8_c00491{bottom:1092.360450px;}
.y7_c00491{bottom:1123.770450px;}
.y4_c00491{bottom:1144.380657px;}
.y3_c00491{bottom:1161.660648px;}
.y2_c00491{bottom:1178.850459px;}
.y1_c00491{bottom:1196.130450px;}
.h1_c00491{height:52.898555px;}
.h2_c00491{height:63.175781px;}
.h3_c00491{height:63.949219px;}
.h0_c00491{height:1263.000000px;}
.w1_c00491{width:892.500000px;}
.w0_c00491{width:892.830000px;}
.x0_c00491{left:0.000000px;}
.x4_c00491{left:127.620000px;}
.x5_c00491{left:324.270000px;}
.x1_c00491{left:649.620000px;}
.x3_c00491{left:738.450000px;}
.x2_c00491{left:765.450198px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.lsc_c00491{letter-spacing:-0.044800pt;}
.ls7_c00491{letter-spacing:-0.042752pt;}
.lsd_c00491{letter-spacing:-0.038400pt;}
.ls9_c00491{letter-spacing:-0.019200pt;}
.lsb_c00491{letter-spacing:-0.012800pt;}
.lsa_c00491{letter-spacing:-0.006400pt;}
.ls8_c00491{letter-spacing:0.000000pt;}
.ls6_c00491{letter-spacing:0.012800pt;}
.ls5_c00491{letter-spacing:0.019200pt;}
.ls0_c00491{letter-spacing:0.025600pt;}
.ls3_c00491{letter-spacing:0.032000pt;}
.ls2_c00491{letter-spacing:0.044800pt;}
.ls4_c00491{letter-spacing:0.051200pt;}
.ls1_c00491{letter-spacing:0.089600pt;}
.ws1_c00491{word-spacing:0.000000pt;}
.ws0_c00491{word-spacing:0.122912pt;}
._0_c00491{width:44.806400pt;}
.fs0_c00491{font-size:53.440000pt;}
.fs1_c00491{font-size:64.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y6_c00491{bottom:50.987067pt;}
.y5_c00491{bottom:69.387067pt;}
.y26_c00491{bottom:133.387067pt;}
.y25_c00491{bottom:161.307067pt;}
.y24_c00491{bottom:189.227067pt;}
.y23_c00491{bottom:217.227067pt;}
.y22_c00491{bottom:245.147067pt;}
.y21_c00491{bottom:273.067067pt;}
.y20_c00491{bottom:300.987067pt;}
.y1f_c00491{bottom:328.907067pt;}
.y1e_c00491{bottom:356.827067pt;}
.y1d_c00491{bottom:384.427067pt;}
.y1c_c00491{bottom:412.347067pt;}
.y1b_c00491{bottom:440.267067pt;}
.y1a_c00491{bottom:468.267067pt;}
.y19_c00491{bottom:496.187067pt;}
.y18_c00491{bottom:524.107067pt;}
.y17_c00491{bottom:552.027067pt;}
.y16_c00491{bottom:579.947067pt;}
.y15_c00491{bottom:607.867067pt;}
.y14_c00491{bottom:635.787067pt;}
.y13_c00491{bottom:663.787067pt;}
.y12_c00491{bottom:691.707067pt;}
.y11_c00491{bottom:719.627067pt;}
.y10_c00491{bottom:747.547067pt;}
.yf_c00491{bottom:775.467067pt;}
.ye_c00491{bottom:803.387067pt;}
.yd_c00491{bottom:831.307067pt;}
.yc_c00491{bottom:859.307067pt;}
.yb_c00491{bottom:887.227067pt;}
.ya_c00491{bottom:915.147067pt;}
.y9_c00491{bottom:943.067067pt;}
.y8_c00491{bottom:970.987067pt;}
.y7_c00491{bottom:998.907067pt;}
.y4_c00491{bottom:1017.227251pt;}
.y3_c00491{bottom:1032.587243pt;}
.y2_c00491{bottom:1047.867075pt;}
.y1_c00491{bottom:1063.227067pt;}
.h1_c00491{height:47.020937pt;}
.h2_c00491{height:56.156250pt;}
.h3_c00491{height:56.843750pt;}
.h0_c00491{height:1122.666667pt;}
.w1_c00491{width:793.333333pt;}
.w0_c00491{width:793.626667pt;}
.x0_c00491{left:0.000000pt;}
.x4_c00491{left:113.440000pt;}
.x5_c00491{left:288.240000pt;}
.x1_c00491{left:577.440000pt;}
.x3_c00491{left:656.400000pt;}
.x2_c00491{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.095703;font-style:normal;font-weight:normal;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_94919f9bc46845a2873791dc.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_dc57c3d38da0d69738c0548d.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.104004;font-style: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;}
.ls6_c00492{letter-spacing:-0.102204px;}
.ls9_c00492{letter-spacing:-0.036000px;}
.lsb_c00492{letter-spacing:-0.021600px;}
.lsa_c00492{letter-spacing:-0.014400px;}
.ls8_c00492{letter-spacing:-0.007200px;}
.ls7_c00492{letter-spacing:0.000000px;}
.ls3_c00492{letter-spacing:0.007200px;}
.ls1_c00492{letter-spacing:0.014400px;}
.ls0_c00492{letter-spacing:0.021600px;}
.ls4_c00492{letter-spacing:0.028800px;}
.ls2_c00492{letter-spacing:0.064800px;}
.ls5_c00492{letter-spacing:0.100800px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00492{word-spacing:0.000000px;}
.ws0_c00492{word-spacing:0.192384px;}
._0_c00492{width:1.034064px;}
.fc1_c00492{color:rgb(0,0,0);}
.fc0_c00492{color:rgb(32,31,30);}
.fs0_c00492{font-size:60.120000px;}
.fs1_c00492{font-size:72.000000px;}
.y0_c00492{bottom:0.000000px;}
.y5_c00492{bottom:57.360450px;}
.y4_c00492{bottom:78.060450px;}
.y20_c00492{bottom:165.900450px;}
.y1f_c00492{bottom:208.920450px;}
.y1e_c00492{bottom:252.030450px;}
.y1d_c00492{bottom:295.050450px;}
.y1c_c00492{bottom:338.070450px;}
.y1b_c00492{bottom:381.180450px;}
.y1a_c00492{bottom:424.200450px;}
.y19_c00492{bottom:467.220450px;}
.y18_c00492{bottom:510.330450px;}
.y17_c00492{bottom:553.350450px;}
.y16_c00492{bottom:596.370450px;}
.y15_c00492{bottom:639.390450px;}
.y14_c00492{bottom:670.980450px;}
.y13_c00492{bottom:702.390450px;}
.y12_c00492{bottom:733.800450px;}
.y11_c00492{bottom:765.210450px;}
.y10_c00492{bottom:796.620450px;}
.yf_c00492{bottom:828.030450px;}
.ye_c00492{bottom:859.440450px;}
.yd_c00492{bottom:890.940450px;}
.yc_c00492{bottom:922.350450px;}
.yb_c00492{bottom:953.760450px;}
.ya_c00492{bottom:985.170450px;}
.y9_c00492{bottom:1016.580450px;}
.y8_c00492{bottom:1047.990450px;}
.y7_c00492{bottom:1079.400450px;}
.y6_c00492{bottom:1110.900450px;}
.y3_c00492{bottom:1132.140450px;}
.y2_c00492{bottom:1165.441023px;}
.y1_c00492{bottom:1196.040600px;}
.h1_c00492{height:52.898555px;}
.h2_c00492{height:63.175781px;}
.h3_c00492{height:63.949219px;}
.h0_c00492{height:1263.000000px;}
.w1_c00492{width:892.500000px;}
.w0_c00492{width:892.830000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:127.620000px;}
.x3_c00492{left:324.270000px;}
.x2_c00492{left:738.450000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls6_c00492{letter-spacing:-0.090848pt;}
.ls9_c00492{letter-spacing:-0.032000pt;}
.lsb_c00492{letter-spacing:-0.019200pt;}
.lsa_c00492{letter-spacing:-0.012800pt;}
.ls8_c00492{letter-spacing:-0.006400pt;}
.ls7_c00492{letter-spacing:0.000000pt;}
.ls3_c00492{letter-spacing:0.006400pt;}
.ls1_c00492{letter-spacing:0.012800pt;}
.ls0_c00492{letter-spacing:0.019200pt;}
.ls4_c00492{letter-spacing:0.025600pt;}
.ls2_c00492{letter-spacing:0.057600pt;}
.ls5_c00492{letter-spacing:0.089600pt;}
.ws1_c00492{word-spacing:0.000000pt;}
.ws0_c00492{word-spacing:0.171008pt;}
._0_c00492{width:0.919168pt;}
.fs0_c00492{font-size:53.440000pt;}
.fs1_c00492{font-size:64.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y5_c00492{bottom:50.987067pt;}
.y4_c00492{bottom:69.387067pt;}
.y20_c00492{bottom:147.467067pt;}
.y1f_c00492{bottom:185.707067pt;}
.y1e_c00492{bottom:224.027067pt;}
.y1d_c00492{bottom:262.267067pt;}
.y1c_c00492{bottom:300.507067pt;}
.y1b_c00492{bottom:338.827067pt;}
.y1a_c00492{bottom:377.067067pt;}
.y19_c00492{bottom:415.307067pt;}
.y18_c00492{bottom:453.627067pt;}
.y17_c00492{bottom:491.867067pt;}
.y16_c00492{bottom:530.107067pt;}
.y15_c00492{bottom:568.347067pt;}
.y14_c00492{bottom:596.427067pt;}
.y13_c00492{bottom:624.347067pt;}
.y12_c00492{bottom:652.267067pt;}
.y11_c00492{bottom:680.187067pt;}
.y10_c00492{bottom:708.107067pt;}
.yf_c00492{bottom:736.027067pt;}
.ye_c00492{bottom:763.947067pt;}
.yd_c00492{bottom:791.947067pt;}
.yc_c00492{bottom:819.867067pt;}
.yb_c00492{bottom:847.787067pt;}
.ya_c00492{bottom:875.707067pt;}
.y9_c00492{bottom:903.627067pt;}
.y8_c00492{bottom:931.547067pt;}
.y7_c00492{bottom:959.467067pt;}
.y6_c00492{bottom:987.467067pt;}
.y3_c00492{bottom:1006.347067pt;}
.y2_c00492{bottom:1035.947576pt;}
.y1_c00492{bottom:1063.147200pt;}
.h1_c00492{height:47.020937pt;}
.h2_c00492{height:56.156250pt;}
.h3_c00492{height:56.843750pt;}
.h0_c00492{height:1122.666667pt;}
.w1_c00492{width:793.333333pt;}
.w0_c00492{width:793.626667pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:113.440000pt;}
.x3_c00492{left:288.240000pt;}
.x2_c00492{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.095703;font-style:normal;font-weight:normal;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_3e1bffd7c8c013e6e4b6c9fe.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00493;src:url('chunks/assets/font_8cc87b0f725a3409483689b2.woff2')format("woff");}.ff3_c00493{font-family:ff3_c00493;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00493;src:url('chunks/assets/font_edc862b668d5c1755a04567b.woff2')format("woff");}.ff4_c00493{font-family:ff4_c00493;line-height:0.896973;font-style: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;}
.lsb_c00493{letter-spacing:-0.048096px;}
.lse_c00493{letter-spacing:-0.014400px;}
.lsd_c00493{letter-spacing:-0.007200px;}
.lsc_c00493{letter-spacing:0.000000px;}
.ls2_c00493{letter-spacing:0.007200px;}
.ls1_c00493{letter-spacing:0.008388px;}
.ls0_c00493{letter-spacing:0.010800px;}
.ls5_c00493{letter-spacing:0.014400px;}
.lsa_c00493{letter-spacing:0.021600px;}
.ls6_c00493{letter-spacing:0.028800px;}
.ls9_c00493{letter-spacing:0.036000px;}
.ls7_c00493{letter-spacing:0.043200px;}
.ls4_c00493{letter-spacing:0.057600px;}
.ls3_c00493{letter-spacing:0.064800px;}
.ls8_c00493{letter-spacing:0.072000px;}
.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;}
}
.ws2_c00493{word-spacing:-0.129600px;}
.ws1_c00493{word-spacing:0.000000px;}
.ws0_c00493{word-spacing:0.138276px;}
._2_c00493{margin-left:-3.103200px;}
._3_c00493{margin-left:-1.598400px;}
._1_c00493{width:56.116800px;}
._0_c00493{width:70.891200px;}
.fc0_c00493{color:rgb(0,0,0);}
.fs0_c00493{font-size:60.120000px;}
.fs1_c00493{font-size:72.000000px;}
.fs3_c00493{font-size:83.880000px;}
.fs2_c00493{font-size:108.000000px;}
.y0_c00493{bottom:0.000000px;}
.y6_c00493{bottom:57.360450px;}
.y5_c00493{bottom:78.060450px;}
.y25_c00493{bottom:144.930450px;}
.y24_c00493{bottom:176.340450px;}
.y23_c00493{bottom:209.820450px;}
.y22_c00493{bottom:244.110600px;}
.y21_c00493{bottom:275.430450px;}
.y20_c00493{bottom:306.840450px;}
.y1f_c00493{bottom:338.250600px;}
.y1e_c00493{bottom:369.660450px;}
.y1d_c00493{bottom:403.140450px;}
.y1c_c00493{bottom:437.430450px;}
.y1b_c00493{bottom:468.390450px;}
.y1a_c00493{bottom:511.320450px;}
.y19_c00493{bottom:542.820450px;}
.y18_c00493{bottom:573.870450px;}
.y17_c00493{bottom:605.280450px;}
.y16_c00493{bottom:636.780450px;}
.y15_c00493{bottom:668.190450px;}
.y14_c00493{bottom:701.670450px;}
.y13_c00493{bottom:735.870450px;}
.y12_c00493{bottom:767.190450px;}
.y11_c00493{bottom:798.690450px;}
.y10_c00493{bottom:830.100450px;}
.yf_c00493{bottom:861.150450px;}
.ye_c00493{bottom:892.560450px;}
.yd_c00493{bottom:923.970450px;}
.yc_c00493{bottom:955.380450px;}
.yb_c00493{bottom:986.790600px;}
.ya_c00493{bottom:1020.270450px;}
.y9_c00493{bottom:1053.480450px;}
.y8_c00493{bottom:1090.740450px;}
.y7_c00493{bottom:1115.760450px;}
.y4_c00493{bottom:1144.380657px;}
.y3_c00493{bottom:1161.660648px;}
.y2_c00493{bottom:1178.850459px;}
.y1_c00493{bottom:1196.130450px;}
.h6_c00493{height:49.042969px;}
.h1_c00493{height:52.898555px;}
.h2_c00493{height:63.175781px;}
.h5_c00493{height:63.949219px;}
.h4_c00493{height:74.500840px;}
.h3_c00493{height:95.923828px;}
.h0_c00493{height:1263.000000px;}
.w1_c00493{width:892.500000px;}
.w0_c00493{width:892.830000px;}
.x0_c00493{left:0.000000px;}
.x4_c00493{left:127.620000px;}
.x7_c00493{left:277.020000px;}
.x5_c00493{left:355.140000px;}
.x6_c00493{left:368.640000px;}
.x8_c00493{left:374.220000px;}
.x1_c00493{left:649.620000px;}
.x3_c00493{left:738.450000px;}
.x2_c00493{left:765.450198px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.lsb_c00493{letter-spacing:-0.042752pt;}
.lse_c00493{letter-spacing:-0.012800pt;}
.lsd_c00493{letter-spacing:-0.006400pt;}
.lsc_c00493{letter-spacing:0.000000pt;}
.ls2_c00493{letter-spacing:0.006400pt;}
.ls1_c00493{letter-spacing:0.007456pt;}
.ls0_c00493{letter-spacing:0.009600pt;}
.ls5_c00493{letter-spacing:0.012800pt;}
.lsa_c00493{letter-spacing:0.019200pt;}
.ls6_c00493{letter-spacing:0.025600pt;}
.ls9_c00493{letter-spacing:0.032000pt;}
.ls7_c00493{letter-spacing:0.038400pt;}
.ls4_c00493{letter-spacing:0.051200pt;}
.ls3_c00493{letter-spacing:0.057600pt;}
.ls8_c00493{letter-spacing:0.064000pt;}
.ws2_c00493{word-spacing:-0.115200pt;}
.ws1_c00493{word-spacing:0.000000pt;}
.ws0_c00493{word-spacing:0.122912pt;}
._2_c00493{margin-left:-2.758400pt;}
._3_c00493{margin-left:-1.420800pt;}
._1_c00493{width:49.881600pt;}
._0_c00493{width:63.014400pt;}
.fs0_c00493{font-size:53.440000pt;}
.fs1_c00493{font-size:64.000000pt;}
.fs3_c00493{font-size:74.560000pt;}
.fs2_c00493{font-size:96.000000pt;}
.y0_c00493{bottom:0.000000pt;}
.y6_c00493{bottom:50.987067pt;}
.y5_c00493{bottom:69.387067pt;}
.y25_c00493{bottom:128.827067pt;}
.y24_c00493{bottom:156.747067pt;}
.y23_c00493{bottom:186.507067pt;}
.y22_c00493{bottom:216.987200pt;}
.y21_c00493{bottom:244.827067pt;}
.y20_c00493{bottom:272.747067pt;}
.y1f_c00493{bottom:300.667200pt;}
.y1e_c00493{bottom:328.587067pt;}
.y1d_c00493{bottom:358.347067pt;}
.y1c_c00493{bottom:388.827067pt;}
.y1b_c00493{bottom:416.347067pt;}
.y1a_c00493{bottom:454.507067pt;}
.y19_c00493{bottom:482.507067pt;}
.y18_c00493{bottom:510.107067pt;}
.y17_c00493{bottom:538.027067pt;}
.y16_c00493{bottom:566.027067pt;}
.y15_c00493{bottom:593.947067pt;}
.y14_c00493{bottom:623.707067pt;}
.y13_c00493{bottom:654.107067pt;}
.y12_c00493{bottom:681.947067pt;}
.y11_c00493{bottom:709.947067pt;}
.y10_c00493{bottom:737.867067pt;}
.yf_c00493{bottom:765.467067pt;}
.ye_c00493{bottom:793.387067pt;}
.yd_c00493{bottom:821.307067pt;}
.yc_c00493{bottom:849.227067pt;}
.yb_c00493{bottom:877.147200pt;}
.ya_c00493{bottom:906.907067pt;}
.y9_c00493{bottom:936.427067pt;}
.y8_c00493{bottom:969.547067pt;}
.y7_c00493{bottom:991.787067pt;}
.y4_c00493{bottom:1017.227251pt;}
.y3_c00493{bottom:1032.587243pt;}
.y2_c00493{bottom:1047.867075pt;}
.y1_c00493{bottom:1063.227067pt;}
.h6_c00493{height:43.593750pt;}
.h1_c00493{height:47.020937pt;}
.h2_c00493{height:56.156250pt;}
.h5_c00493{height:56.843750pt;}
.h4_c00493{height:66.222969pt;}
.h3_c00493{height:85.265625pt;}
.h0_c00493{height:1122.666667pt;}
.w1_c00493{width:793.333333pt;}
.w0_c00493{width:793.626667pt;}
.x0_c00493{left:0.000000pt;}
.x4_c00493{left:113.440000pt;}
.x7_c00493{left:246.240000pt;}
.x5_c00493{left:315.680000pt;}
.x6_c00493{left:327.680000pt;}
.x8_c00493{left:332.640000pt;}
.x1_c00493{left:577.440000pt;}
.x3_c00493{left:656.400000pt;}
.x2_c00493{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.095703;font-style:normal;font-weight:normal;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_d2750cab73ca183a77097d8a.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00494;src:url('chunks/assets/font_ce809f1f48e727bf0ba262ea.woff2')format("woff");}.ff3_c00494{font-family:ff3_c00494;line-height:1.104004;font-style: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;}
.ls7_c00494{letter-spacing:-0.102204px;}
.lsc_c00494{letter-spacing:-0.079200px;}
.lsd_c00494{letter-spacing:-0.028800px;}
.lsb_c00494{letter-spacing:-0.021600px;}
.lsa_c00494{letter-spacing:-0.014400px;}
.ls9_c00494{letter-spacing:-0.007200px;}
.ls8_c00494{letter-spacing:0.000000px;}
.ls1_c00494{letter-spacing:0.007200px;}
.ls3_c00494{letter-spacing:0.014400px;}
.ls0_c00494{letter-spacing:0.021600px;}
.ls6_c00494{letter-spacing:0.043200px;}
.ls4_c00494{letter-spacing:0.057600px;}
.ls5_c00494{letter-spacing:0.064800px;}
.ls2_c00494{letter-spacing:0.072000px;}
.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.000000px;}
.ws0_c00494{word-spacing:0.192384px;}
._1_c00494{margin-left:-3.585600px;}
._2_c00494{margin-left:-1.252800px;}
._0_c00494{width:1.034064px;}
.fc1_c00494{color:rgb(0,0,0);}
.fc0_c00494{color:rgb(32,31,30);}
.fs0_c00494{font-size:60.120000px;}
.fs1_c00494{font-size:72.000000px;}
.y0_c00494{bottom:0.000000px;}
.y5_c00494{bottom:57.360450px;}
.y4_c00494{bottom:78.060450px;}
.y24_c00494{bottom:138.540600px;}
.y23_c00494{bottom:169.950600px;}
.y22_c00494{bottom:201.450600px;}
.y21_c00494{bottom:232.860450px;}
.y20_c00494{bottom:264.270450px;}
.y1f_c00494{bottom:295.680450px;}
.y1e_c00494{bottom:327.090450px;}
.y1d_c00494{bottom:358.500600px;}
.y1c_c00494{bottom:391.980450px;}
.y1b_c00494{bottom:429.420600px;}
.y1a_c00494{bottom:466.860600px;}
.y19_c00494{bottom:498.090600px;}
.y18_c00494{bottom:529.500450px;}
.y17_c00494{bottom:560.910450px;}
.y16_c00494{bottom:592.320450px;}
.y15_c00494{bottom:623.730450px;}
.y14_c00494{bottom:655.230450px;}
.y13_c00494{bottom:686.640450px;}
.y12_c00494{bottom:718.050450px;}
.y11_c00494{bottom:749.460450px;}
.y10_c00494{bottom:782.940450px;}
.yf_c00494{bottom:820.380450px;}
.ye_c00494{bottom:851.610600px;}
.yd_c00494{bottom:883.020450px;}
.yc_c00494{bottom:914.430450px;}
.yb_c00494{bottom:945.840450px;}
.ya_c00494{bottom:979.320450px;}
.y9_c00494{bottom:1016.760450px;}
.y8_c00494{bottom:1047.990450px;}
.y7_c00494{bottom:1079.400450px;}
.y6_c00494{bottom:1110.900450px;}
.y3_c00494{bottom:1132.140450px;}
.y2_c00494{bottom:1165.441023px;}
.y1_c00494{bottom:1196.040600px;}
.h1_c00494{height:52.898555px;}
.h2_c00494{height:63.175781px;}
.h3_c00494{height:63.949219px;}
.h0_c00494{height:1263.000000px;}
.w1_c00494{width:892.500000px;}
.w0_c00494{width:892.830000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:127.620000px;}
.x5_c00494{left:189.990000px;}
.x6_c00494{left:246.690000px;}
.x3_c00494{left:374.220000px;}
.x4_c00494{left:389.970000px;}
.x2_c00494{left:738.450000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls7_c00494{letter-spacing:-0.090848pt;}
.lsc_c00494{letter-spacing:-0.070400pt;}
.lsd_c00494{letter-spacing:-0.025600pt;}
.lsb_c00494{letter-spacing:-0.019200pt;}
.lsa_c00494{letter-spacing:-0.012800pt;}
.ls9_c00494{letter-spacing:-0.006400pt;}
.ls8_c00494{letter-spacing:0.000000pt;}
.ls1_c00494{letter-spacing:0.006400pt;}
.ls3_c00494{letter-spacing:0.012800pt;}
.ls0_c00494{letter-spacing:0.019200pt;}
.ls6_c00494{letter-spacing:0.038400pt;}
.ls4_c00494{letter-spacing:0.051200pt;}
.ls5_c00494{letter-spacing:0.057600pt;}
.ls2_c00494{letter-spacing:0.064000pt;}
.ws1_c00494{word-spacing:0.000000pt;}
.ws0_c00494{word-spacing:0.171008pt;}
._1_c00494{margin-left:-3.187200pt;}
._2_c00494{margin-left:-1.113600pt;}
._0_c00494{width:0.919168pt;}
.fs0_c00494{font-size:53.440000pt;}
.fs1_c00494{font-size:64.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y5_c00494{bottom:50.987067pt;}
.y4_c00494{bottom:69.387067pt;}
.y24_c00494{bottom:123.147200pt;}
.y23_c00494{bottom:151.067200pt;}
.y22_c00494{bottom:179.067200pt;}
.y21_c00494{bottom:206.987067pt;}
.y20_c00494{bottom:234.907067pt;}
.y1f_c00494{bottom:262.827067pt;}
.y1e_c00494{bottom:290.747067pt;}
.y1d_c00494{bottom:318.667200pt;}
.y1c_c00494{bottom:348.427067pt;}
.y1b_c00494{bottom:381.707200pt;}
.y1a_c00494{bottom:414.987200pt;}
.y19_c00494{bottom:442.747200pt;}
.y18_c00494{bottom:470.667067pt;}
.y17_c00494{bottom:498.587067pt;}
.y16_c00494{bottom:526.507067pt;}
.y15_c00494{bottom:554.427067pt;}
.y14_c00494{bottom:582.427067pt;}
.y13_c00494{bottom:610.347067pt;}
.y12_c00494{bottom:638.267067pt;}
.y11_c00494{bottom:666.187067pt;}
.y10_c00494{bottom:695.947067pt;}
.yf_c00494{bottom:729.227067pt;}
.ye_c00494{bottom:756.987200pt;}
.yd_c00494{bottom:784.907067pt;}
.yc_c00494{bottom:812.827067pt;}
.yb_c00494{bottom:840.747067pt;}
.ya_c00494{bottom:870.507067pt;}
.y9_c00494{bottom:903.787067pt;}
.y8_c00494{bottom:931.547067pt;}
.y7_c00494{bottom:959.467067pt;}
.y6_c00494{bottom:987.467067pt;}
.y3_c00494{bottom:1006.347067pt;}
.y2_c00494{bottom:1035.947576pt;}
.y1_c00494{bottom:1063.147200pt;}
.h1_c00494{height:47.020937pt;}
.h2_c00494{height:56.156250pt;}
.h3_c00494{height:56.843750pt;}
.h0_c00494{height:1122.666667pt;}
.w1_c00494{width:793.333333pt;}
.w0_c00494{width:793.626667pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:113.440000pt;}
.x5_c00494{left:168.880000pt;}
.x6_c00494{left:219.280000pt;}
.x3_c00494{left:332.640000pt;}
.x4_c00494{left:346.640000pt;}
.x2_c00494{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.095703;font-style:normal;font-weight:normal;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_dfec8f5a00315e19e6ab8acf.woff2')format("woff");}.ff2_c00495{font-family:ff2_c00495;line-height:1.093262;font-style:normal;font-weight:normal;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_5b27c004c99f2b361ce30d66.woff2')format("woff");}.ff3_c00495{font-family:ff3_c00495;line-height:1.104004;font-style: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;}
.ls13_c00495{letter-spacing:-0.064800px;}
.lsc_c00495{letter-spacing:-0.048096px;}
.ls12_c00495{letter-spacing:-0.036000px;}
.ls11_c00495{letter-spacing:-0.028800px;}
.lse_c00495{letter-spacing:-0.021600px;}
.ls10_c00495{letter-spacing:-0.007200px;}
.lsd_c00495{letter-spacing:0.000000px;}
.ls7_c00495{letter-spacing:0.007200px;}
.lsa_c00495{letter-spacing:0.014400px;}
.ls6_c00495{letter-spacing:0.021600px;}
.ls3_c00495{letter-spacing:0.028800px;}
.ls9_c00495{letter-spacing:0.043200px;}
.ls4_c00495{letter-spacing:0.050400px;}
.lsb_c00495{letter-spacing:0.057600px;}
.ls5_c00495{letter-spacing:0.064800px;}
.ls0_c00495{letter-spacing:0.072000px;}
.ls2_c00495{letter-spacing:0.079200px;}
.ls1_c00495{letter-spacing:0.100800px;}
.ls8_c00495{letter-spacing:0.122400px;}
.lsf_c00495{letter-spacing:31.982400px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00495{word-spacing:0.000000px;}
.ws0_c00495{word-spacing:0.138276px;}
._0_c00495{margin-left:-32.040000px;}
._1_c00495{margin-left:-30.988800px;}
._2_c00495{margin-left:-1.173600px;}
.fc0_c00495{color:rgb(0,0,0);}
.fs0_c00495{font-size:60.120000px;}
.fs1_c00495{font-size:72.000000px;}
.y0_c00495{bottom:0.000000px;}
.y6_c00495{bottom:57.360450px;}
.y5_c00495{bottom:78.060450px;}
.y26_c00495{bottom:128.730450px;}
.y25_c00495{bottom:160.140450px;}
.y24_c00495{bottom:191.550450px;}
.y23_c00495{bottom:222.960600px;}
.y22_c00495{bottom:254.370450px;}
.y21_c00495{bottom:285.780450px;}
.y20_c00495{bottom:317.190450px;}
.y1f_c00495{bottom:348.690450px;}
.y1e_c00495{bottom:380.100450px;}
.y1d_c00495{bottom:411.510450px;}
.y1c_c00495{bottom:442.920450px;}
.y1b_c00495{bottom:476.400450px;}
.y1a_c00495{bottom:507.450600px;}
.y19_c00495{bottom:544.890450px;}
.y18_c00495{bottom:576.120450px;}
.y17_c00495{bottom:607.530450px;}
.y16_c00495{bottom:638.940450px;}
.y15_c00495{bottom:670.350450px;}
.y14_c00495{bottom:701.760450px;}
.y13_c00495{bottom:733.260450px;}
.y12_c00495{bottom:764.670450px;}
.y11_c00495{bottom:796.080450px;}
.y10_c00495{bottom:827.490450px;}
.yf_c00495{bottom:858.900450px;}
.ye_c00495{bottom:892.380450px;}
.yd_c00495{bottom:923.430450px;}
.yc_c00495{bottom:960.870450px;}
.yb_c00495{bottom:998.310450px;}
.ya_c00495{bottom:1029.540450px;}
.y9_c00495{bottom:1060.950450px;}
.y8_c00495{bottom:1092.360450px;}
.y7_c00495{bottom:1123.770450px;}
.y4_c00495{bottom:1144.380657px;}
.y3_c00495{bottom:1161.660648px;}
.y2_c00495{bottom:1178.850459px;}
.y1_c00495{bottom:1196.130450px;}
.h1_c00495{height:52.898555px;}
.h2_c00495{height:63.175781px;}
.h3_c00495{height:63.949219px;}
.h0_c00495{height:1263.000000px;}
.w1_c00495{width:892.500000px;}
.w0_c00495{width:892.830000px;}
.x0_c00495{left:0.000000px;}
.x4_c00495{left:127.620000px;}
.x6_c00495{left:225.360000px;}
.x5_c00495{left:246.690000px;}
.x7_c00495{left:298.440000px;}
.x1_c00495{left:649.620000px;}
.x3_c00495{left:738.450000px;}
.x2_c00495{left:765.450198px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls13_c00495{letter-spacing:-0.057600pt;}
.lsc_c00495{letter-spacing:-0.042752pt;}
.ls12_c00495{letter-spacing:-0.032000pt;}
.ls11_c00495{letter-spacing:-0.025600pt;}
.lse_c00495{letter-spacing:-0.019200pt;}
.ls10_c00495{letter-spacing:-0.006400pt;}
.lsd_c00495{letter-spacing:0.000000pt;}
.ls7_c00495{letter-spacing:0.006400pt;}
.lsa_c00495{letter-spacing:0.012800pt;}
.ls6_c00495{letter-spacing:0.019200pt;}
.ls3_c00495{letter-spacing:0.025600pt;}
.ls9_c00495{letter-spacing:0.038400pt;}
.ls4_c00495{letter-spacing:0.044800pt;}
.lsb_c00495{letter-spacing:0.051200pt;}
.ls5_c00495{letter-spacing:0.057600pt;}
.ls0_c00495{letter-spacing:0.064000pt;}
.ls2_c00495{letter-spacing:0.070400pt;}
.ls1_c00495{letter-spacing:0.089600pt;}
.ls8_c00495{letter-spacing:0.108800pt;}
.lsf_c00495{letter-spacing:28.428800pt;}
.ws1_c00495{word-spacing:0.000000pt;}
.ws0_c00495{word-spacing:0.122912pt;}
._0_c00495{margin-left:-28.480000pt;}
._1_c00495{margin-left:-27.545600pt;}
._2_c00495{margin-left:-1.043200pt;}
.fs0_c00495{font-size:53.440000pt;}
.fs1_c00495{font-size:64.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.y6_c00495{bottom:50.987067pt;}
.y5_c00495{bottom:69.387067pt;}
.y26_c00495{bottom:114.427067pt;}
.y25_c00495{bottom:142.347067pt;}
.y24_c00495{bottom:170.267067pt;}
.y23_c00495{bottom:198.187200pt;}
.y22_c00495{bottom:226.107067pt;}
.y21_c00495{bottom:254.027067pt;}
.y20_c00495{bottom:281.947067pt;}
.y1f_c00495{bottom:309.947067pt;}
.y1e_c00495{bottom:337.867067pt;}
.y1d_c00495{bottom:365.787067pt;}
.y1c_c00495{bottom:393.707067pt;}
.y1b_c00495{bottom:423.467067pt;}
.y1a_c00495{bottom:451.067200pt;}
.y19_c00495{bottom:484.347067pt;}
.y18_c00495{bottom:512.107067pt;}
.y17_c00495{bottom:540.027067pt;}
.y16_c00495{bottom:567.947067pt;}
.y15_c00495{bottom:595.867067pt;}
.y14_c00495{bottom:623.787067pt;}
.y13_c00495{bottom:651.787067pt;}
.y12_c00495{bottom:679.707067pt;}
.y11_c00495{bottom:707.627067pt;}
.y10_c00495{bottom:735.547067pt;}
.yf_c00495{bottom:763.467067pt;}
.ye_c00495{bottom:793.227067pt;}
.yd_c00495{bottom:820.827067pt;}
.yc_c00495{bottom:854.107067pt;}
.yb_c00495{bottom:887.387067pt;}
.ya_c00495{bottom:915.147067pt;}
.y9_c00495{bottom:943.067067pt;}
.y8_c00495{bottom:970.987067pt;}
.y7_c00495{bottom:998.907067pt;}
.y4_c00495{bottom:1017.227251pt;}
.y3_c00495{bottom:1032.587243pt;}
.y2_c00495{bottom:1047.867075pt;}
.y1_c00495{bottom:1063.227067pt;}
.h1_c00495{height:47.020937pt;}
.h2_c00495{height:56.156250pt;}
.h3_c00495{height:56.843750pt;}
.h0_c00495{height:1122.666667pt;}
.w1_c00495{width:793.333333pt;}
.w0_c00495{width:793.626667pt;}
.x0_c00495{left:0.000000pt;}
.x4_c00495{left:113.440000pt;}
.x6_c00495{left:200.320000pt;}
.x5_c00495{left:219.280000pt;}
.x7_c00495{left:265.280000pt;}
.x1_c00495{left:577.440000pt;}
.x3_c00495{left:656.400000pt;}
.x2_c00495{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.095703;font-style:normal;font-weight:normal;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_800856eb3b86c9375026dfac.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00496;src:url('chunks/assets/font_c7886263d7f9f2df63ba5f11.woff2')format("woff");}.ff3_c00496{font-family:ff3_c00496;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.lsa_c00496{letter-spacing:-0.102204px;}
.lsd_c00496{letter-spacing:-0.050400px;}
.lsc_c00496{letter-spacing:-0.021600px;}
.lse_c00496{letter-spacing:-0.014400px;}
.lsb_c00496{letter-spacing:0.000000px;}
.ls3_c00496{letter-spacing:0.007200px;}
.ls1_c00496{letter-spacing:0.014400px;}
.ls2_c00496{letter-spacing:0.021600px;}
.ls9_c00496{letter-spacing:0.028800px;}
.ls7_c00496{letter-spacing:0.036000px;}
.ls0_c00496{letter-spacing:0.043200px;}
.ls8_c00496{letter-spacing:0.050400px;}
.ls5_c00496{letter-spacing:0.064800px;}
.ls6_c00496{letter-spacing:0.086400px;}
.ls4_c00496{letter-spacing:0.100800px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00496{word-spacing:0.000000px;}
.ws0_c00496{word-spacing:0.192384px;}
._2_c00496{margin-left:-1.382400px;}
._0_c00496{width:1.034064px;}
._3_c00496{width:6.105600px;}
._1_c00496{width:40.975200px;}
.fc1_c00496{color:rgb(0,0,0);}
.fc0_c00496{color:rgb(32,31,30);}
.fs0_c00496{font-size:60.120000px;}
.fs1_c00496{font-size:72.000000px;}
.y0_c00496{bottom:0.000000px;}
.y5_c00496{bottom:57.360450px;}
.y4_c00496{bottom:78.060450px;}
.y24_c00496{bottom:130.350450px;}
.y23_c00496{bottom:161.760450px;}
.y22_c00496{bottom:193.170450px;}
.y21_c00496{bottom:224.580450px;}
.y20_c00496{bottom:255.990450px;}
.y1f_c00496{bottom:287.400450px;}
.y1e_c00496{bottom:318.810450px;}
.y1d_c00496{bottom:350.310450px;}
.y1c_c00496{bottom:381.720450px;}
.y1b_c00496{bottom:415.200600px;}
.y1a_c00496{bottom:446.250450px;}
.y19_c00496{bottom:489.180450px;}
.y18_c00496{bottom:532.200450px;}
.y17_c00496{bottom:563.520450px;}
.y16_c00496{bottom:595.020450px;}
.y15_c00496{bottom:626.430450px;}
.y14_c00496{bottom:657.840450px;}
.y13_c00496{bottom:689.250450px;}
.y12_c00496{bottom:722.730450px;}
.y11_c00496{bottom:753.780450px;}
.y10_c00496{bottom:796.710450px;}
.yf_c00496{bottom:828.030450px;}
.ye_c00496{bottom:859.440450px;}
.yd_c00496{bottom:890.940450px;}
.yc_c00496{bottom:922.350450px;}
.yb_c00496{bottom:953.760450px;}
.ya_c00496{bottom:985.170450px;}
.y9_c00496{bottom:1016.580450px;}
.y8_c00496{bottom:1047.990450px;}
.y7_c00496{bottom:1079.400450px;}
.y6_c00496{bottom:1110.900450px;}
.y3_c00496{bottom:1132.140450px;}
.y2_c00496{bottom:1165.441023px;}
.y1_c00496{bottom:1196.040600px;}
.h1_c00496{height:52.898555px;}
.h2_c00496{height:63.175781px;}
.h3_c00496{height:63.949219px;}
.h0_c00496{height:1263.000000px;}
.w1_c00496{width:892.500000px;}
.w0_c00496{width:892.830000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:127.620000px;}
.x5_c00496{left:225.360000px;}
.x4_c00496{left:226.530000px;}
.x3_c00496{left:298.440000px;}
.x2_c00496{left:738.450000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.lsa_c00496{letter-spacing:-0.090848pt;}
.lsd_c00496{letter-spacing:-0.044800pt;}
.lsc_c00496{letter-spacing:-0.019200pt;}
.lse_c00496{letter-spacing:-0.012800pt;}
.lsb_c00496{letter-spacing:0.000000pt;}
.ls3_c00496{letter-spacing:0.006400pt;}
.ls1_c00496{letter-spacing:0.012800pt;}
.ls2_c00496{letter-spacing:0.019200pt;}
.ls9_c00496{letter-spacing:0.025600pt;}
.ls7_c00496{letter-spacing:0.032000pt;}
.ls0_c00496{letter-spacing:0.038400pt;}
.ls8_c00496{letter-spacing:0.044800pt;}
.ls5_c00496{letter-spacing:0.057600pt;}
.ls6_c00496{letter-spacing:0.076800pt;}
.ls4_c00496{letter-spacing:0.089600pt;}
.ws1_c00496{word-spacing:0.000000pt;}
.ws0_c00496{word-spacing:0.171008pt;}
._2_c00496{margin-left:-1.228800pt;}
._0_c00496{width:0.919168pt;}
._3_c00496{width:5.427200pt;}
._1_c00496{width:36.422400pt;}
.fs0_c00496{font-size:53.440000pt;}
.fs1_c00496{font-size:64.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y5_c00496{bottom:50.987067pt;}
.y4_c00496{bottom:69.387067pt;}
.y24_c00496{bottom:115.867067pt;}
.y23_c00496{bottom:143.787067pt;}
.y22_c00496{bottom:171.707067pt;}
.y21_c00496{bottom:199.627067pt;}
.y20_c00496{bottom:227.547067pt;}
.y1f_c00496{bottom:255.467067pt;}
.y1e_c00496{bottom:283.387067pt;}
.y1d_c00496{bottom:311.387067pt;}
.y1c_c00496{bottom:339.307067pt;}
.y1b_c00496{bottom:369.067200pt;}
.y1a_c00496{bottom:396.667067pt;}
.y19_c00496{bottom:434.827067pt;}
.y18_c00496{bottom:473.067067pt;}
.y17_c00496{bottom:500.907067pt;}
.y16_c00496{bottom:528.907067pt;}
.y15_c00496{bottom:556.827067pt;}
.y14_c00496{bottom:584.747067pt;}
.y13_c00496{bottom:612.667067pt;}
.y12_c00496{bottom:642.427067pt;}
.y11_c00496{bottom:670.027067pt;}
.y10_c00496{bottom:708.187067pt;}
.yf_c00496{bottom:736.027067pt;}
.ye_c00496{bottom:763.947067pt;}
.yd_c00496{bottom:791.947067pt;}
.yc_c00496{bottom:819.867067pt;}
.yb_c00496{bottom:847.787067pt;}
.ya_c00496{bottom:875.707067pt;}
.y9_c00496{bottom:903.627067pt;}
.y8_c00496{bottom:931.547067pt;}
.y7_c00496{bottom:959.467067pt;}
.y6_c00496{bottom:987.467067pt;}
.y3_c00496{bottom:1006.347067pt;}
.y2_c00496{bottom:1035.947576pt;}
.y1_c00496{bottom:1063.147200pt;}
.h1_c00496{height:47.020937pt;}
.h2_c00496{height:56.156250pt;}
.h3_c00496{height:56.843750pt;}
.h0_c00496{height:1122.666667pt;}
.w1_c00496{width:793.333333pt;}
.w0_c00496{width:793.626667pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:113.440000pt;}
.x5_c00496{left:200.320000pt;}
.x4_c00496{left:201.360000pt;}
.x3_c00496{left:265.280000pt;}
.x2_c00496{left:656.400000pt;}
}





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

.ir_c00497:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00497{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00497;src:url('chunks/assets/font_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.095703;font-style:normal;font-weight:normal;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_7345cf6378faedf147fe233e.woff2')format("woff");}.ff2_c00497{font-family:ff2_c00497;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00497;src:url('chunks/assets/font_c711185d37d52a9a19f3abf4.woff2')format("woff");}.ff3_c00497{font-family:ff3_c00497;line-height:1.104004;font-style: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;}
.ls7_c00497{letter-spacing:-0.048096px;}
.ls9_c00497{letter-spacing:-0.028800px;}
.lsa_c00497{letter-spacing:-0.007200px;}
.ls8_c00497{letter-spacing:0.000000px;}
.ls1_c00497{letter-spacing:0.007200px;}
.ls0_c00497{letter-spacing:0.021600px;}
.ls4_c00497{letter-spacing:0.036000px;}
.ls2_c00497{letter-spacing:0.050400px;}
.ls6_c00497{letter-spacing:0.064800px;}
.ls5_c00497{letter-spacing:0.072000px;}
.ls3_c00497{letter-spacing:0.100800px;}
.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:0.000000px;}
.ws0_c00497{word-spacing:0.138276px;}
._0_c00497{margin-left:-1.281600px;}
._1_c00497{width:4.644000px;}
.fc0_c00497{color:rgb(0,0,0);}
.fs0_c00497{font-size:60.120000px;}
.fs1_c00497{font-size:72.000000px;}
.y0_c00497{bottom:0.000000px;}
.y6_c00497{bottom:57.360450px;}
.y5_c00497{bottom:78.060450px;}
.y25_c00497{bottom:133.140450px;}
.y24_c00497{bottom:164.550450px;}
.y23_c00497{bottom:195.960600px;}
.y22_c00497{bottom:227.370600px;}
.y21_c00497{bottom:260.850450px;}
.y20_c00497{bottom:298.290450px;}
.y1f_c00497{bottom:329.520450px;}
.y1e_c00497{bottom:360.930450px;}
.y1d_c00497{bottom:392.340600px;}
.y1c_c00497{bottom:425.820450px;}
.y1b_c00497{bottom:468.840600px;}
.y1a_c00497{bottom:500.160450px;}
.y19_c00497{bottom:531.570450px;}
.y18_c00497{bottom:562.980450px;}
.y17_c00497{bottom:596.460450px;}
.y16_c00497{bottom:639.390450px;}
.y15_c00497{bottom:670.710450px;}
.y14_c00497{bottom:702.210450px;}
.y13_c00497{bottom:733.620450px;}
.y12_c00497{bottom:765.030450px;}
.y11_c00497{bottom:796.440450px;}
.y10_c00497{bottom:827.850450px;}
.yf_c00497{bottom:859.260450px;}
.ye_c00497{bottom:892.740450px;}
.yd_c00497{bottom:923.790600px;}
.yc_c00497{bottom:966.810450px;}
.yb_c00497{bottom:998.130450px;}
.ya_c00497{bottom:1029.540450px;}
.y9_c00497{bottom:1060.950450px;}
.y8_c00497{bottom:1092.360450px;}
.y7_c00497{bottom:1123.770450px;}
.y4_c00497{bottom:1144.380657px;}
.y3_c00497{bottom:1161.660648px;}
.y2_c00497{bottom:1178.850459px;}
.y1_c00497{bottom:1196.130450px;}
.h1_c00497{height:52.898555px;}
.h2_c00497{height:63.175781px;}
.h3_c00497{height:63.949219px;}
.h0_c00497{height:1263.000000px;}
.w1_c00497{width:892.500000px;}
.w0_c00497{width:892.830000px;}
.x0_c00497{left:0.000000px;}
.x4_c00497{left:127.620000px;}
.x6_c00497{left:220.320000px;}
.x5_c00497{left:225.360000px;}
.x8_c00497{left:346.680000px;}
.x9_c00497{left:363.600000px;}
.x7_c00497{left:401.220000px;}
.x1_c00497{left:649.620000px;}
.x3_c00497{left:738.450000px;}
.x2_c00497{left:765.450198px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls7_c00497{letter-spacing:-0.042752pt;}
.ls9_c00497{letter-spacing:-0.025600pt;}
.lsa_c00497{letter-spacing:-0.006400pt;}
.ls8_c00497{letter-spacing:0.000000pt;}
.ls1_c00497{letter-spacing:0.006400pt;}
.ls0_c00497{letter-spacing:0.019200pt;}
.ls4_c00497{letter-spacing:0.032000pt;}
.ls2_c00497{letter-spacing:0.044800pt;}
.ls6_c00497{letter-spacing:0.057600pt;}
.ls5_c00497{letter-spacing:0.064000pt;}
.ls3_c00497{letter-spacing:0.089600pt;}
.ws1_c00497{word-spacing:0.000000pt;}
.ws0_c00497{word-spacing:0.122912pt;}
._0_c00497{margin-left:-1.139200pt;}
._1_c00497{width:4.128000pt;}
.fs0_c00497{font-size:53.440000pt;}
.fs1_c00497{font-size:64.000000pt;}
.y0_c00497{bottom:0.000000pt;}
.y6_c00497{bottom:50.987067pt;}
.y5_c00497{bottom:69.387067pt;}
.y25_c00497{bottom:118.347067pt;}
.y24_c00497{bottom:146.267067pt;}
.y23_c00497{bottom:174.187200pt;}
.y22_c00497{bottom:202.107200pt;}
.y21_c00497{bottom:231.867067pt;}
.y20_c00497{bottom:265.147067pt;}
.y1f_c00497{bottom:292.907067pt;}
.y1e_c00497{bottom:320.827067pt;}
.y1d_c00497{bottom:348.747200pt;}
.y1c_c00497{bottom:378.507067pt;}
.y1b_c00497{bottom:416.747200pt;}
.y1a_c00497{bottom:444.587067pt;}
.y19_c00497{bottom:472.507067pt;}
.y18_c00497{bottom:500.427067pt;}
.y17_c00497{bottom:530.187067pt;}
.y16_c00497{bottom:568.347067pt;}
.y15_c00497{bottom:596.187067pt;}
.y14_c00497{bottom:624.187067pt;}
.y13_c00497{bottom:652.107067pt;}
.y12_c00497{bottom:680.027067pt;}
.y11_c00497{bottom:707.947067pt;}
.y10_c00497{bottom:735.867067pt;}
.yf_c00497{bottom:763.787067pt;}
.ye_c00497{bottom:793.547067pt;}
.yd_c00497{bottom:821.147200pt;}
.yc_c00497{bottom:859.387067pt;}
.yb_c00497{bottom:887.227067pt;}
.ya_c00497{bottom:915.147067pt;}
.y9_c00497{bottom:943.067067pt;}
.y8_c00497{bottom:970.987067pt;}
.y7_c00497{bottom:998.907067pt;}
.y4_c00497{bottom:1017.227251pt;}
.y3_c00497{bottom:1032.587243pt;}
.y2_c00497{bottom:1047.867075pt;}
.y1_c00497{bottom:1063.227067pt;}
.h1_c00497{height:47.020937pt;}
.h2_c00497{height:56.156250pt;}
.h3_c00497{height:56.843750pt;}
.h0_c00497{height:1122.666667pt;}
.w1_c00497{width:793.333333pt;}
.w0_c00497{width:793.626667pt;}
.x0_c00497{left:0.000000pt;}
.x4_c00497{left:113.440000pt;}
.x6_c00497{left:195.840000pt;}
.x5_c00497{left:200.320000pt;}
.x8_c00497{left:308.160000pt;}
.x9_c00497{left:323.200000pt;}
.x7_c00497{left:356.640000pt;}
.x1_c00497{left:577.440000pt;}
.x3_c00497{left:656.400000pt;}
.x2_c00497{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_083f3cca38278d3dc250c720.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.095703;font-style:normal;font-weight:normal;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_c4d1257c23a0302d4d670246.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00498;src:url('chunks/assets/font_72aa3837a87b4529ed0c9829.woff2')format("woff");}.ff3_c00498{font-family:ff3_c00498;line-height:1.104004;font-style: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;}
.ls8_c00498{letter-spacing:-0.102204px;}
.lsc_c00498{letter-spacing:-0.072000px;}
.lsb_c00498{letter-spacing:-0.028800px;}
.lsd_c00498{letter-spacing:-0.021600px;}
.lse_c00498{letter-spacing:-0.014400px;}
.lsa_c00498{letter-spacing:-0.007200px;}
.ls9_c00498{letter-spacing:0.000000px;}
.ls0_c00498{letter-spacing:0.007200px;}
.ls6_c00498{letter-spacing:0.014400px;}
.ls2_c00498{letter-spacing:0.021600px;}
.ls1_c00498{letter-spacing:0.028800px;}
.ls4_c00498{letter-spacing:0.036000px;}
.ls7_c00498{letter-spacing:0.050328px;}
.ls5_c00498{letter-spacing:0.144000px;}
.ls3_c00498{letter-spacing:0.208800px;}
.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:0.000000px;}
.ws0_c00498{word-spacing:0.192384px;}
._0_c00498{width:1.034064px;}
._1_c00498{width:27.720000px;}
.fc1_c00498{color:rgb(0,0,0);}
.fc0_c00498{color:rgb(32,31,30);}
.fs0_c00498{font-size:60.120000px;}
.fs1_c00498{font-size:72.000000px;}
.fs2_c00498{font-size:83.880000px;}
.y0_c00498{bottom:0.000000px;}
.y5_c00498{bottom:57.360450px;}
.y4_c00498{bottom:78.060450px;}
.y24_c00498{bottom:139.170450px;}
.y23_c00498{bottom:170.580450px;}
.y22_c00498{bottom:204.060450px;}
.y21_c00498{bottom:246.990450px;}
.y20_c00498{bottom:280.289910px;}
.y1f_c00498{bottom:309.270450px;}
.y1e_c00498{bottom:349.770450px;}
.y1d_c00498{bottom:381.000600px;}
.y1c_c00498{bottom:412.410450px;}
.y1b_c00498{bottom:443.820450px;}
.y1a_c00498{bottom:475.320450px;}
.y19_c00498{bottom:506.730450px;}
.y18_c00498{bottom:538.140450px;}
.y17_c00498{bottom:569.550450px;}
.y16_c00498{bottom:600.960450px;}
.y15_c00498{bottom:632.370450px;}
.y14_c00498{bottom:663.780450px;}
.y13_c00498{bottom:695.280450px;}
.y12_c00498{bottom:726.330450px;}
.y11_c00498{bottom:757.740450px;}
.y10_c00498{bottom:789.150450px;}
.yf_c00498{bottom:820.560450px;}
.ye_c00498{bottom:851.970450px;}
.yd_c00498{bottom:883.380450px;}
.yc_c00498{bottom:914.790600px;}
.yb_c00498{bottom:946.290600px;}
.ya_c00498{bottom:977.700450px;}
.y9_c00498{bottom:1009.110450px;}
.y8_c00498{bottom:1040.520450px;}
.y7_c00498{bottom:1074.000450px;}
.y6_c00498{bottom:1111.440450px;}
.y3_c00498{bottom:1132.140450px;}
.y2_c00498{bottom:1165.441023px;}
.y1_c00498{bottom:1196.040600px;}
.h1_c00498{height:52.898555px;}
.h2_c00498{height:63.175781px;}
.h3_c00498{height:63.949219px;}
.h4_c00498{height:74.500840px;}
.h0_c00498{height:1263.000000px;}
.w1_c00498{width:892.500000px;}
.w0_c00498{width:892.830000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:127.620000px;}
.x4_c00498{left:216.360000px;}
.x3_c00498{left:276.480000px;}
.x2_c00498{left:738.450000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls8_c00498{letter-spacing:-0.090848pt;}
.lsc_c00498{letter-spacing:-0.064000pt;}
.lsb_c00498{letter-spacing:-0.025600pt;}
.lsd_c00498{letter-spacing:-0.019200pt;}
.lse_c00498{letter-spacing:-0.012800pt;}
.lsa_c00498{letter-spacing:-0.006400pt;}
.ls9_c00498{letter-spacing:0.000000pt;}
.ls0_c00498{letter-spacing:0.006400pt;}
.ls6_c00498{letter-spacing:0.012800pt;}
.ls2_c00498{letter-spacing:0.019200pt;}
.ls1_c00498{letter-spacing:0.025600pt;}
.ls4_c00498{letter-spacing:0.032000pt;}
.ls7_c00498{letter-spacing:0.044736pt;}
.ls5_c00498{letter-spacing:0.128000pt;}
.ls3_c00498{letter-spacing:0.185600pt;}
.ws1_c00498{word-spacing:0.000000pt;}
.ws0_c00498{word-spacing:0.171008pt;}
._0_c00498{width:0.919168pt;}
._1_c00498{width:24.640000pt;}
.fs0_c00498{font-size:53.440000pt;}
.fs1_c00498{font-size:64.000000pt;}
.fs2_c00498{font-size:74.560000pt;}
.y0_c00498{bottom:0.000000pt;}
.y5_c00498{bottom:50.987067pt;}
.y4_c00498{bottom:69.387067pt;}
.y24_c00498{bottom:123.707067pt;}
.y23_c00498{bottom:151.627067pt;}
.y22_c00498{bottom:181.387067pt;}
.y21_c00498{bottom:219.547067pt;}
.y20_c00498{bottom:249.146587pt;}
.y1f_c00498{bottom:274.907067pt;}
.y1e_c00498{bottom:310.907067pt;}
.y1d_c00498{bottom:338.667200pt;}
.y1c_c00498{bottom:366.587067pt;}
.y1b_c00498{bottom:394.507067pt;}
.y1a_c00498{bottom:422.507067pt;}
.y19_c00498{bottom:450.427067pt;}
.y18_c00498{bottom:478.347067pt;}
.y17_c00498{bottom:506.267067pt;}
.y16_c00498{bottom:534.187067pt;}
.y15_c00498{bottom:562.107067pt;}
.y14_c00498{bottom:590.027067pt;}
.y13_c00498{bottom:618.027067pt;}
.y12_c00498{bottom:645.627067pt;}
.y11_c00498{bottom:673.547067pt;}
.y10_c00498{bottom:701.467067pt;}
.yf_c00498{bottom:729.387067pt;}
.ye_c00498{bottom:757.307067pt;}
.yd_c00498{bottom:785.227067pt;}
.yc_c00498{bottom:813.147200pt;}
.yb_c00498{bottom:841.147200pt;}
.ya_c00498{bottom:869.067067pt;}
.y9_c00498{bottom:896.987067pt;}
.y8_c00498{bottom:924.907067pt;}
.y7_c00498{bottom:954.667067pt;}
.y6_c00498{bottom:987.947067pt;}
.y3_c00498{bottom:1006.347067pt;}
.y2_c00498{bottom:1035.947576pt;}
.y1_c00498{bottom:1063.147200pt;}
.h1_c00498{height:47.020937pt;}
.h2_c00498{height:56.156250pt;}
.h3_c00498{height:56.843750pt;}
.h4_c00498{height:66.222969pt;}
.h0_c00498{height:1122.666667pt;}
.w1_c00498{width:793.333333pt;}
.w0_c00498{width:793.626667pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:113.440000pt;}
.x4_c00498{left:192.320000pt;}
.x3_c00498{left:245.760000pt;}
.x2_c00498{left:656.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_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_6669b7a15397657821bc5c2b.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.095703;font-style:normal;font-weight:normal;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_c44f8b9c404ae7bdb4bbdd19.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00499;src:url('chunks/assets/font_3a76c273bc24d787ae1e7333.woff2')format("woff");}.ff3_c00499{font-family:ff3_c00499;line-height:1.104004;font-style: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;}
.lsb_c00499{letter-spacing:-0.050400px;}
.ls7_c00499{letter-spacing:-0.048096px;}
.lsc_c00499{letter-spacing:-0.021600px;}
.lsa_c00499{letter-spacing:-0.014400px;}
.ls9_c00499{letter-spacing:-0.007200px;}
.ls8_c00499{letter-spacing:0.000000px;}
.ls0_c00499{letter-spacing:0.007200px;}
.ls3_c00499{letter-spacing:0.014400px;}
.ls1_c00499{letter-spacing:0.021600px;}
.ls4_c00499{letter-spacing:0.028800px;}
.ls5_c00499{letter-spacing:0.036000px;}
.ls6_c00499{letter-spacing:0.050400px;}
.ls2_c00499{letter-spacing:0.100800px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00499{word-spacing:0.000000px;}
.ws0_c00499{word-spacing:0.138276px;}
._2_c00499{margin-left:-1.188000px;}
._0_c00499{width:5.752800px;}
._1_c00499{width:129.225600px;}
.fc0_c00499{color:rgb(0,0,0);}
.fs0_c00499{font-size:60.120000px;}
.fs1_c00499{font-size:72.000000px;}
.y0_c00499{bottom:0.000000px;}
.y6_c00499{bottom:57.360450px;}
.y5_c00499{bottom:78.060450px;}
.y26_c00499{bottom:123.420450px;}
.y25_c00499{bottom:154.830450px;}
.y24_c00499{bottom:186.330450px;}
.y23_c00499{bottom:217.740450px;}
.y22_c00499{bottom:249.150450px;}
.y21_c00499{bottom:280.560450px;}
.y20_c00499{bottom:311.970450px;}
.y1f_c00499{bottom:343.380450px;}
.y1e_c00499{bottom:374.790600px;}
.y1d_c00499{bottom:406.290600px;}
.y1c_c00499{bottom:439.770600px;}
.y1b_c00499{bottom:482.700600px;}
.y1a_c00499{bottom:514.020600px;}
.y19_c00499{bottom:545.430450px;}
.y18_c00499{bottom:576.840450px;}
.y17_c00499{bottom:608.250450px;}
.y16_c00499{bottom:639.750450px;}
.y15_c00499{bottom:671.160450px;}
.y14_c00499{bottom:702.570450px;}
.y13_c00499{bottom:733.980450px;}
.y12_c00499{bottom:765.390450px;}
.y11_c00499{bottom:796.440450px;}
.y10_c00499{bottom:827.850450px;}
.yf_c00499{bottom:859.260450px;}
.ye_c00499{bottom:892.740450px;}
.yd_c00499{bottom:935.760450px;}
.yc_c00499{bottom:967.080450px;}
.yb_c00499{bottom:998.490450px;}
.ya_c00499{bottom:1029.900450px;}
.y9_c00499{bottom:1061.310450px;}
.y8_c00499{bottom:1092.360450px;}
.y7_c00499{bottom:1123.770450px;}
.y4_c00499{bottom:1144.380657px;}
.y3_c00499{bottom:1161.660648px;}
.y2_c00499{bottom:1178.850459px;}
.y1_c00499{bottom:1196.130450px;}
.h1_c00499{height:52.898555px;}
.h2_c00499{height:63.175781px;}
.h3_c00499{height:63.949219px;}
.h0_c00499{height:1263.000000px;}
.w1_c00499{width:892.500000px;}
.w0_c00499{width:892.830000px;}
.x0_c00499{left:0.000000px;}
.x4_c00499{left:127.620000px;}
.x5_c00499{left:216.360000px;}
.x7_c00499{left:284.400000px;}
.x6_c00499{left:331.560000px;}
.x1_c00499{left:649.620000px;}
.x3_c00499{left:738.450000px;}
.x2_c00499{left:765.450198px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.lsb_c00499{letter-spacing:-0.044800pt;}
.ls7_c00499{letter-spacing:-0.042752pt;}
.lsc_c00499{letter-spacing:-0.019200pt;}
.lsa_c00499{letter-spacing:-0.012800pt;}
.ls9_c00499{letter-spacing:-0.006400pt;}
.ls8_c00499{letter-spacing:0.000000pt;}
.ls0_c00499{letter-spacing:0.006400pt;}
.ls3_c00499{letter-spacing:0.012800pt;}
.ls1_c00499{letter-spacing:0.019200pt;}
.ls4_c00499{letter-spacing:0.025600pt;}
.ls5_c00499{letter-spacing:0.032000pt;}
.ls6_c00499{letter-spacing:0.044800pt;}
.ls2_c00499{letter-spacing:0.089600pt;}
.ws1_c00499{word-spacing:0.000000pt;}
.ws0_c00499{word-spacing:0.122912pt;}
._2_c00499{margin-left:-1.056000pt;}
._0_c00499{width:5.113600pt;}
._1_c00499{width:114.867200pt;}
.fs0_c00499{font-size:53.440000pt;}
.fs1_c00499{font-size:64.000000pt;}
.y0_c00499{bottom:0.000000pt;}
.y6_c00499{bottom:50.987067pt;}
.y5_c00499{bottom:69.387067pt;}
.y26_c00499{bottom:109.707067pt;}
.y25_c00499{bottom:137.627067pt;}
.y24_c00499{bottom:165.627067pt;}
.y23_c00499{bottom:193.547067pt;}
.y22_c00499{bottom:221.467067pt;}
.y21_c00499{bottom:249.387067pt;}
.y20_c00499{bottom:277.307067pt;}
.y1f_c00499{bottom:305.227067pt;}
.y1e_c00499{bottom:333.147200pt;}
.y1d_c00499{bottom:361.147200pt;}
.y1c_c00499{bottom:390.907200pt;}
.y1b_c00499{bottom:429.067200pt;}
.y1a_c00499{bottom:456.907200pt;}
.y19_c00499{bottom:484.827067pt;}
.y18_c00499{bottom:512.747067pt;}
.y17_c00499{bottom:540.667067pt;}
.y16_c00499{bottom:568.667067pt;}
.y15_c00499{bottom:596.587067pt;}
.y14_c00499{bottom:624.507067pt;}
.y13_c00499{bottom:652.427067pt;}
.y12_c00499{bottom:680.347067pt;}
.y11_c00499{bottom:707.947067pt;}
.y10_c00499{bottom:735.867067pt;}
.yf_c00499{bottom:763.787067pt;}
.ye_c00499{bottom:793.547067pt;}
.yd_c00499{bottom:831.787067pt;}
.yc_c00499{bottom:859.627067pt;}
.yb_c00499{bottom:887.547067pt;}
.ya_c00499{bottom:915.467067pt;}
.y9_c00499{bottom:943.387067pt;}
.y8_c00499{bottom:970.987067pt;}
.y7_c00499{bottom:998.907067pt;}
.y4_c00499{bottom:1017.227251pt;}
.y3_c00499{bottom:1032.587243pt;}
.y2_c00499{bottom:1047.867075pt;}
.y1_c00499{bottom:1063.227067pt;}
.h1_c00499{height:47.020937pt;}
.h2_c00499{height:56.156250pt;}
.h3_c00499{height:56.843750pt;}
.h0_c00499{height:1122.666667pt;}
.w1_c00499{width:793.333333pt;}
.w0_c00499{width:793.626667pt;}
.x0_c00499{left:0.000000pt;}
.x4_c00499{left:113.440000pt;}
.x5_c00499{left:192.320000pt;}
.x7_c00499{left:252.800000pt;}
.x6_c00499{left:294.720000pt;}
.x1_c00499{left:577.440000pt;}
.x3_c00499{left:656.400000pt;}
.x2_c00499{left:680.400176pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_582aa6b641d066f90f8d75c9.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.095703;font-style:normal;font-weight:normal;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_81b62309b1108c043fc2ab6d.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.093262;font-style:normal;font-weight:normal;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_5e0f5a4fa80398415d7084b3.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.104004;font-style:normal;font-weight:normal;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_44fb542d0adee831947c885c.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:0.896973;font-style:normal;font-weight:normal;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_f09e4f2696b51d36e12e7726.woff2')format("woff");}.ff5_c00001{font-family:ff5_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:ff6_c00001;src:url('chunks/assets/font_0ebed08154b6c8a3522ecf03.woff2')format("woff");}.ff6_c00001{font-family:ff6_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:ff7_c00001;src:url('chunks/assets/font_17b46c4165ed0fd07b18bc82.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_faa121913631f8df99abe784.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00001;src:url('chunks/assets/font_938176b7eb5b20af514b2ff6.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.093262;font-style: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:-20.880000px;}
.v4_c00001{vertical-align:-4.320000px;}
.v0_c00001{vertical-align:0.000000px;}
.v5_c00001{vertical-align:3.240000px;}
.v2_c00001{vertical-align:24.119400px;}
.v1_c00001{vertical-align:27.000000px;}
.v6_c00001{vertical-align:36.720000px;}
.ls9b_c00001{letter-spacing:-4.413600px;}
.ls97_c00001{letter-spacing:-4.320000px;}
.ls59_c00001{letter-spacing:-3.960000px;}
.ls57_c00001{letter-spacing:-3.600000px;}
.ls58_c00001{letter-spacing:-2.880000px;}
.ls39_c00001{letter-spacing:-2.520000px;}
.ls68_c00001{letter-spacing:-2.160000px;}
.ls2e_c00001{letter-spacing:-1.800000px;}
.ls9a_c00001{letter-spacing:-1.497600px;}
.ls93_c00001{letter-spacing:-1.123200px;}
.lsa0_c00001{letter-spacing:-1.080000px;}
.ls96_c00001{letter-spacing:-0.561600px;}
.ls2a_c00001{letter-spacing:-0.360000px;}
.lsa4_c00001{letter-spacing:-0.273600px;}
.ls7d_c00001{letter-spacing:-0.259200px;}
.ls99_c00001{letter-spacing:-0.252000px;}
.ls2d_c00001{letter-spacing:-0.237600px;}
.ls60_c00001{letter-spacing:-0.216000px;}
.lsa7_c00001{letter-spacing:-0.187200px;}
.ls54_c00001{letter-spacing:-0.180000px;}
.ls72_c00001{letter-spacing:-0.172800px;}
.ls3d_c00001{letter-spacing:-0.162324px;}
.ls35_c00001{letter-spacing:-0.158400px;}
.ls1a5_c00001{letter-spacing:-0.156600px;}
.ls3b_c00001{letter-spacing:-0.156312px;}
.ls7c_c00001{letter-spacing:-0.151200px;}
.ls3a_c00001{letter-spacing:-0.150300px;}
.lseb_c00001{letter-spacing:-0.145800px;}
.ls38_c00001{letter-spacing:-0.144000px;}
.lsc3_c00001{letter-spacing:-0.140400px;}
.lsb1_c00001{letter-spacing:-0.136800px;}
.lsb8_c00001{letter-spacing:-0.135000px;}
.lsba_c00001{letter-spacing:-0.129600px;}
.lsc2_c00001{letter-spacing:-0.124200px;}
.ls67_c00001{letter-spacing:-0.122400px;}
.lsb9_c00001{letter-spacing:-0.118800px;}
.ls8b_c00001{letter-spacing:-0.115200px;}
.lsc6_c00001{letter-spacing:-0.113400px;}
.ls37_c00001{letter-spacing:-0.108000px;}
.lsb5_c00001{letter-spacing:-0.102600px;}
.ls8_c00001{letter-spacing:-0.102204px;}
.ls78_c00001{letter-spacing:-0.100800px;}
.lsbc_c00001{letter-spacing:-0.097200px;}
.ls61_c00001{letter-spacing:-0.093600px;}
.ls137_c00001{letter-spacing:-0.092268px;}
.lsc7_c00001{letter-spacing:-0.091800px;}
.ls5c_c00001{letter-spacing:-0.090180px;}
.ls19_c00001{letter-spacing:-0.086400px;}
.ls178_c00001{letter-spacing:-0.083880px;}
.lsc4_c00001{letter-spacing:-0.081000px;}
.ls1b_c00001{letter-spacing:-0.079200px;}
.lsb6_c00001{letter-spacing:-0.075600px;}
.ls174_c00001{letter-spacing:-0.075492px;}
.ls5d_c00001{letter-spacing:-0.072144px;}
.ls95_c00001{letter-spacing:-0.072000px;}
.lsbd_c00001{letter-spacing:-0.070200px;}
.ls27_c00001{letter-spacing:-0.064800px;}
.lsb7_c00001{letter-spacing:-0.059400px;}
.ls12_c00001{letter-spacing:-0.057600px;}
.lsca_c00001{letter-spacing:-0.054000px;}
.ls15_c00001{letter-spacing:-0.050400px;}
.lsbb_c00001{letter-spacing:-0.048600px;}
.ls11_c00001{letter-spacing:-0.048096px;}
.ls18_c00001{letter-spacing:-0.043200px;}
.ls3c_c00001{letter-spacing:-0.042084px;}
.lsc0_c00001{letter-spacing:-0.037800px;}
.ls13_c00001{letter-spacing:-0.036000px;}
.lsb2_c00001{letter-spacing:-0.032400px;}
.ls14_c00001{letter-spacing:-0.028800px;}
.lsd6_c00001{letter-spacing:-0.027000px;}
.lsc_c00001{letter-spacing:-0.021600px;}
.lsb3_c00001{letter-spacing:-0.016200px;}
.lsb_c00001{letter-spacing:-0.014400px;}
.lsb0_c00001{letter-spacing:-0.010800px;}
.lsa_c00001{letter-spacing:-0.007200px;}
.lsbf_c00001{letter-spacing:-0.005400px;}
.ls9_c00001{letter-spacing:0.000000px;}
.lse2_c00001{letter-spacing:0.005400px;}
.ls5_c00001{letter-spacing:0.007200px;}
.ls15c_c00001{letter-spacing:0.008388px;}
.lsac_c00001{letter-spacing:0.010800px;}
.ls4_c00001{letter-spacing:0.014400px;}
.lsde_c00001{letter-spacing:0.016200px;}
.ls18f_c00001{letter-spacing:0.016776px;}
.ls34_c00001{letter-spacing:0.018036px;}
.ls3_c00001{letter-spacing:0.021600px;}
.ls145_c00001{letter-spacing:0.025164px;}
.lsaa_c00001{letter-spacing:0.027000px;}
.lsd_c00001{letter-spacing:0.028800px;}
.ls18e_c00001{letter-spacing:0.028836px;}
.lsad_c00001{letter-spacing:0.032400px;}
.ls6b_c00001{letter-spacing:0.033552px;}
.ls1_c00001{letter-spacing:0.036000px;}
.lsa9_c00001{letter-spacing:0.037800px;}
.ls22_c00001{letter-spacing:0.041940px;}
.ls0_c00001{letter-spacing:0.043200px;}
.lse3_c00001{letter-spacing:0.048600px;}
.ls10_c00001{letter-spacing:0.050328px;}
.ls2_c00001{letter-spacing:0.050400px;}
.ls11b_c00001{letter-spacing:0.054000px;}
.ls7_c00001{letter-spacing:0.057600px;}
.ls1d_c00001{letter-spacing:0.058716px;}
.ls198_c00001{letter-spacing:0.059400px;}
.ls6_c00001{letter-spacing:0.064800px;}
.ls149_c00001{letter-spacing:0.067104px;}
.lsc8_c00001{letter-spacing:0.070200px;}
.ls17_c00001{letter-spacing:0.072000px;}
.ls1f_c00001{letter-spacing:0.075492px;}
.ls5b_c00001{letter-spacing:0.078156px;}
.ls1a_c00001{letter-spacing:0.079200px;}
.lsd0_c00001{letter-spacing:0.081000px;}
.lsa1_c00001{letter-spacing:0.083880px;}
.ls3f_c00001{letter-spacing:0.084168px;}
.ls21_c00001{letter-spacing:0.086400px;}
.ls26_c00001{letter-spacing:0.092268px;}
.ls16_c00001{letter-spacing:0.093600px;}
.ls50_c00001{letter-spacing:0.096192px;}
.lse_c00001{letter-spacing:0.100800px;}
.ls29_c00001{letter-spacing:0.108000px;}
.ls10b_c00001{letter-spacing:0.113400px;}
.ls3e_c00001{letter-spacing:0.114228px;}
.ls6e_c00001{letter-spacing:0.115200px;}
.lscf_c00001{letter-spacing:0.118800px;}
.lsf_c00001{letter-spacing:0.122400px;}
.ls106_c00001{letter-spacing:0.124200px;}
.lsd9_c00001{letter-spacing:0.129600px;}
.lsf8_c00001{letter-spacing:0.135000px;}
.ls89_c00001{letter-spacing:0.136800px;}
.ls1c_c00001{letter-spacing:0.144000px;}
.ls13e_c00001{letter-spacing:0.145800px;}
.ls80_c00001{letter-spacing:0.151200px;}
.ls101_c00001{letter-spacing:0.156600px;}
.ls55_c00001{letter-spacing:0.158400px;}
.lsf3_c00001{letter-spacing:0.162000px;}
.ls69_c00001{letter-spacing:0.165600px;}
.ls156_c00001{letter-spacing:0.167400px;}
.ls94_c00001{letter-spacing:0.172800px;}
.ls5a_c00001{letter-spacing:0.174348px;}
.ls28_c00001{letter-spacing:0.176148px;}
.ls18d_c00001{letter-spacing:0.178200px;}
.ls70_c00001{letter-spacing:0.180000px;}
.ls36_c00001{letter-spacing:0.181944px;}
.ls155_c00001{letter-spacing:0.189000px;}
.lsbe_c00001{letter-spacing:0.205200px;}
.lsc9_c00001{letter-spacing:0.216000px;}
.ls91_c00001{letter-spacing:0.230400px;}
.lsd3_c00001{letter-spacing:0.259200px;}
.ls7f_c00001{letter-spacing:0.266400px;}
.ls20_c00001{letter-spacing:0.270000px;}
.ls4f_c00001{letter-spacing:0.360000px;}
.ls193_c00001{letter-spacing:0.437400px;}
.lsb4_c00001{letter-spacing:0.496800px;}
.lsa3_c00001{letter-spacing:0.540000px;}
.ls8e_c00001{letter-spacing:0.720000px;}
.ls5e_c00001{letter-spacing:1.034064px;}
.ls44_c00001{letter-spacing:1.080000px;}
.ls42_c00001{letter-spacing:1.123200px;}
.ls7a_c00001{letter-spacing:1.130400px;}
.ls41_c00001{letter-spacing:1.144800px;}
.ls40_c00001{letter-spacing:1.152000px;}
.ls73_c00001{letter-spacing:1.159200px;}
.ls46_c00001{letter-spacing:1.166400px;}
.ls43_c00001{letter-spacing:1.173600px;}
.ls4c_c00001{letter-spacing:1.180800px;}
.ls47_c00001{letter-spacing:1.188000px;}
.ls4d_c00001{letter-spacing:1.195200px;}
.ls49_c00001{letter-spacing:1.202400px;}
.ls4b_c00001{letter-spacing:1.209600px;}
.ls45_c00001{letter-spacing:1.224000px;}
.ls74_c00001{letter-spacing:1.245600px;}
.ls4a_c00001{letter-spacing:1.281600px;}
.ls48_c00001{letter-spacing:1.368000px;}
.ls76_c00001{letter-spacing:1.440000px;}
.ls52_c00001{letter-spacing:1.800000px;}
.ls2c_c00001{letter-spacing:2.037600px;}
.lsa8_c00001{letter-spacing:2.160000px;}
.ls6c_c00001{letter-spacing:2.520000px;}
.ls9c_c00001{letter-spacing:2.880000px;}
.ls7b_c00001{letter-spacing:2.995200px;}
.ls86_c00001{letter-spacing:3.168000px;}
.ls77_c00001{letter-spacing:3.600000px;}
.ls81_c00001{letter-spacing:3.960000px;}
.ls66_c00001{letter-spacing:4.680000px;}
.ls9f_c00001{letter-spacing:5.342400px;}
.ls75_c00001{letter-spacing:5.400000px;}
.ls63_c00001{letter-spacing:5.670000px;}
.ls64_c00001{letter-spacing:5.760000px;}
.ls88_c00001{letter-spacing:6.390000px;}
.ls31_c00001{letter-spacing:6.480000px;}
.ls25_c00001{letter-spacing:6.560424px;}
.ls23_c00001{letter-spacing:6.562944px;}
.ls6d_c00001{letter-spacing:6.796800px;}
.ls4e_c00001{letter-spacing:6.984000px;}
.ls71_c00001{letter-spacing:7.142400px;}
.lsa2_c00001{letter-spacing:7.200000px;}
.ls85_c00001{letter-spacing:7.560000px;}
.ls6f_c00001{letter-spacing:8.280000px;}
.lsa5_c00001{letter-spacing:8.640000px;}
.ls53_c00001{letter-spacing:9.000000px;}
.ls8a_c00001{letter-spacing:9.360000px;}
.lsa6_c00001{letter-spacing:10.440000px;}
.ls9d_c00001{letter-spacing:10.800000px;}
.ls92_c00001{letter-spacing:11.520000px;}
.ls84_c00001{letter-spacing:12.240000px;}
.ls131_c00001{letter-spacing:13.320000px;}
.ls90_c00001{letter-spacing:14.040000px;}
.ls82_c00001{letter-spacing:14.760000px;}
.ls32_c00001{letter-spacing:14.838372px;}
.ls115_c00001{letter-spacing:15.480000px;}
.ls98_c00001{letter-spacing:15.984000px;}
.ls83_c00001{letter-spacing:16.560000px;}
.ls8c_c00001{letter-spacing:17.640000px;}
.ls65_c00001{letter-spacing:17.910000px;}
.ls30_c00001{letter-spacing:18.360000px;}
.ls8f_c00001{letter-spacing:18.720000px;}
.ls24_c00001{letter-spacing:21.682980px;}
.ls56_c00001{letter-spacing:22.320000px;}
.ls2b_c00001{letter-spacing:27.000000px;}
.ls62_c00001{letter-spacing:28.800000px;}
.ls1e_c00001{letter-spacing:33.984000px;}
.ls87_c00001{letter-spacing:42.560712px;}
.ls33_c00001{letter-spacing:42.984000px;}
.ls5f_c00001{letter-spacing:51.561036px;}
.ls8d_c00001{letter-spacing:51.984000px;}
.ls2f_c00001{letter-spacing:54.864000px;}
.ls6a_c00001{letter-spacing:60.984000px;}
.ls79_c00001{letter-spacing:61.560000px;}
.ls51_c00001{letter-spacing:65.160000px;}
.ls7e_c00001{letter-spacing:66.384000px;}
.ls9e_c00001{letter-spacing:69.984000px;}
.ls112_c00001{letter-spacing:109.295400px;}
.ls1a1_c00001{letter-spacing:116.136000px;}
.lsf1_c00001{letter-spacing:118.295400px;}
.lse6_c00001{letter-spacing:118.655400px;}
.ls10c_c00001{letter-spacing:118.656000px;}
.ls19d_c00001{letter-spacing:121.175400px;}
.lsea_c00001{letter-spacing:123.336000px;}
.lsaf_c00001{letter-spacing:124.055400px;}
.ls100_c00001{letter-spacing:128.376600px;}
.lse0_c00001{letter-spacing:131.976000px;}
.ls130_c00001{letter-spacing:134.135400px;}
.ls110_c00001{letter-spacing:139.176000px;}
.ls10a_c00001{letter-spacing:144.936000px;}
.lsfb_c00001{letter-spacing:145.295400px;}
.ls1a0_c00001{letter-spacing:146.015400px;}
.lsee_c00001{letter-spacing:148.176000px;}
.lse1_c00001{letter-spacing:148.536000px;}
.ls129_c00001{letter-spacing:148.896000px;}
.ls12c_c00001{letter-spacing:149.255400px;}
.ls19c_c00001{letter-spacing:151.056000px;}
.ls18b_c00001{letter-spacing:152.136000px;}
.lsf7_c00001{letter-spacing:152.856000px;}
.ls105_c00001{letter-spacing:152.856600px;}
.lse7_c00001{letter-spacing:153.215400px;}
.lsab_c00001{letter-spacing:153.935400px;}
.ls181_c00001{letter-spacing:155.736000px;}
.ls188_c00001{letter-spacing:157.536000px;}
.ls14e_c00001{letter-spacing:158.256000px;}
.lsff_c00001{letter-spacing:158.256600px;}
.ls157_c00001{letter-spacing:158.615400px;}
.ls195_c00001{letter-spacing:159.696000px;}
.lsdd_c00001{letter-spacing:161.856000px;}
.ls139_c00001{letter-spacing:163.656000px;}
.ls12e_c00001{letter-spacing:164.016000px;}
.ls114_c00001{letter-spacing:164.736600px;}
.ls142_c00001{letter-spacing:166.175400px;}
.ls140_c00001{letter-spacing:166.176000px;}
.ls14b_c00001{letter-spacing:167.616000px;}
.ls13c_c00001{letter-spacing:167.976000px;}
.ls151_c00001{letter-spacing:168.336000px;}
.ls11f_c00001{letter-spacing:168.696000px;}
.ls17d_c00001{letter-spacing:169.415400px;}
.ls16e_c00001{letter-spacing:170.136000px;}
.ls161_c00001{letter-spacing:170.495400px;}
.ls186_c00001{letter-spacing:170.496000px;}
.ls1a7_c00001{letter-spacing:171.216000px;}
.ls197_c00001{letter-spacing:171.575400px;}
.ls146_c00001{letter-spacing:173.016600px;}
.ls177_c00001{letter-spacing:174.096600px;}
.ls17a_c00001{letter-spacing:174.816000px;}
.ls107_c00001{letter-spacing:174.816600px;}
.lsf9_c00001{letter-spacing:175.176000px;}
.ls173_c00001{letter-spacing:175.176600px;}
.ls190_c00001{letter-spacing:175.536600px;}
.ls121_c00001{letter-spacing:175.896000px;}
.ls135_c00001{letter-spacing:176.975400px;}
.ls1b4_c00001{letter-spacing:177.696600px;}
.ls126_c00001{letter-spacing:178.776000px;}
.ls1b8_c00001{letter-spacing:179.135400px;}
.ls12b_c00001{letter-spacing:179.136000px;}
.ls16b_c00001{letter-spacing:179.856000px;}
.ls168_c00001{letter-spacing:180.576600px;}
.ls192_c00001{letter-spacing:181.655400px;}
.ls166_c00001{letter-spacing:182.016000px;}
.lsf5_c00001{letter-spacing:182.736000px;}
.ls103_c00001{letter-spacing:182.736600px;}
.ls1ad_c00001{letter-spacing:184.536000px;}
.ls1a4_c00001{letter-spacing:184.896000px;}
.ls118_c00001{letter-spacing:186.696000px;}
.ls1b3_c00001{letter-spacing:188.495400px;}
.ls153_c00001{letter-spacing:191.016600px;}
.lsd2_c00001{letter-spacing:191.376000px;}
.ls15f_c00001{letter-spacing:192.456000px;}
.ls11d_c00001{letter-spacing:194.616000px;}
.ls1b0_c00001{letter-spacing:196.416000px;}
.ls1a9_c00001{letter-spacing:197.856000px;}
.ls11c_c00001{letter-spacing:198.576000px;}
.ls1b6_c00001{letter-spacing:200.016000px;}
.ls1b5_c00001{letter-spacing:202.896000px;}
.ls120_c00001{letter-spacing:205.775400px;}
.lsfd_c00001{letter-spacing:207.576000px;}
.ls19e_c00001{letter-spacing:212.256000px;}
.ls1b2_c00001{letter-spacing:214.776000px;}
.lsef_c00001{letter-spacing:215.496000px;}
.lse4_c00001{letter-spacing:215.856000px;}
.ls199_c00001{letter-spacing:216.216000px;}
.ls10d_c00001{letter-spacing:220.176000px;}
.ls18c_c00001{letter-spacing:220.896000px;}
.ls111_c00001{letter-spacing:221.256000px;}
.lse8_c00001{letter-spacing:222.336000px;}
.ls1af_c00001{letter-spacing:223.056000px;}
.lsd7_c00001{letter-spacing:223.776000px;}
.lsd4_c00001{letter-spacing:224.136000px;}
.ls132_c00001{letter-spacing:224.496000px;}
.ls122_c00001{letter-spacing:225.936000px;}
.lsec_c00001{letter-spacing:226.296000px;}
.ls16d_c00001{letter-spacing:227.376000px;}
.ls19f_c00001{letter-spacing:229.896000px;}
.lsda_c00001{letter-spacing:231.696000px;}
.lsf0_c00001{letter-spacing:233.496000px;}
.lse5_c00001{letter-spacing:234.216000px;}
.lsfc_c00001{letter-spacing:234.936000px;}
.ls19b_c00001{letter-spacing:236.736000px;}
.lscd_c00001{letter-spacing:237.095400px;}
.ls113_c00001{letter-spacing:238.536000px;}
.ls12a_c00001{letter-spacing:238.896000px;}
.ls10e_c00001{letter-spacing:239.256000px;}
.ls102_c00001{letter-spacing:240.696000px;}
.lse9_c00001{letter-spacing:241.416000px;}
.lsae_c00001{letter-spacing:242.136000px;}
.lsd8_c00001{letter-spacing:242.496000px;}
.lsd5_c00001{letter-spacing:242.856000px;}
.ls11e_c00001{letter-spacing:243.936000px;}
.ls182_c00001{letter-spacing:245.376000px;}
.ls189_c00001{letter-spacing:246.816000px;}
.lsfe_c00001{letter-spacing:248.256000px;}
.ls14f_c00001{letter-spacing:248.616000px;}
.ls159_c00001{letter-spacing:248.976000px;}
.lsdb_c00001{letter-spacing:251.136000px;}
.ls10f_c00001{letter-spacing:251.496000px;}
.lsdc_c00001{letter-spacing:253.296000px;}
.ls16c_c00001{letter-spacing:254.376000px;}
.ls17f_c00001{letter-spacing:254.736000px;}
.ls12f_c00001{letter-spacing:255.456000px;}
.ls13a_c00001{letter-spacing:256.896000px;}
.ls14a_c00001{letter-spacing:257.256000px;}
.ls116_c00001{letter-spacing:258.336000px;}
.ls162_c00001{letter-spacing:258.696000px;}
.ls143_c00001{letter-spacing:259.416000px;}
.ls141_c00001{letter-spacing:260.136000px;}
.ls172_c00001{letter-spacing:260.856000px;}
.ls13d_c00001{letter-spacing:261.576000px;}
.ls14c_c00001{letter-spacing:262.296000px;}
.ls152_c00001{letter-spacing:263.376000px;}
.ls127_c00001{letter-spacing:263.736000px;}
.ls16f_c00001{letter-spacing:264.816000px;}
.ls185_c00001{letter-spacing:265.536000px;}
.ls163_c00001{letter-spacing:265.896000px;}
.ls19a_c00001{letter-spacing:267.336000px;}
.ls148_c00001{letter-spacing:269.496000px;}
.ls179_c00001{letter-spacing:271.296000px;}
.lsfa_c00001{letter-spacing:272.016000px;}
.ls109_c00001{letter-spacing:272.376000px;}
.ls17b_c00001{letter-spacing:272.736000px;}
.ls17e_c00001{letter-spacing:273.096000px;}
.ls133_c00001{letter-spacing:274.536000px;}
.ls180_c00001{letter-spacing:275.616000px;}
.ls187_c00001{letter-spacing:277.056000px;}
.ls164_c00001{letter-spacing:277.416000px;}
.lsc1_c00001{letter-spacing:278.496000px;}
.ls158_c00001{letter-spacing:279.216000px;}
.ls1ba_c00001{letter-spacing:279.576600px;}
.ls194_c00001{letter-spacing:280.296000px;}
.ls169_c00001{letter-spacing:280.656000px;}
.ls11a_c00001{letter-spacing:281.736000px;}
.ls167_c00001{letter-spacing:282.456000px;}
.lsdf_c00001{letter-spacing:283.536000px;}
.ls104_c00001{letter-spacing:283.896000px;}
.lsf6_c00001{letter-spacing:284.256000px;}
.ls165_c00001{letter-spacing:285.696000px;}
.ls1ae_c00001{letter-spacing:286.056000px;}
.ls138_c00001{letter-spacing:287.136000px;}
.ls119_c00001{letter-spacing:289.296000px;}
.ls13f_c00001{letter-spacing:290.376000px;}
.ls171_c00001{letter-spacing:291.096000px;}
.ls16a_c00001{letter-spacing:292.536000px;}
.ls17c_c00001{letter-spacing:293.256000px;}
.ls150_c00001{letter-spacing:293.616000px;}
.ls154_c00001{letter-spacing:295.056000px;}
.ls160_c00001{letter-spacing:296.136000px;}
.lsd1_c00001{letter-spacing:296.496000px;}
.ls184_c00001{letter-spacing:296.856000px;}
.ls196_c00001{letter-spacing:297.216000px;}
.ls15d_c00001{letter-spacing:297.576000px;}
.ls1a6_c00001{letter-spacing:298.296000px;}
.ls15b_c00001{letter-spacing:298.656000px;}
.ls147_c00001{letter-spacing:299.736000px;}
.ls175_c00001{letter-spacing:301.176000px;}
.ls176_c00001{letter-spacing:301.536000px;}
.ls108_c00001{letter-spacing:302.616000px;}
.ls191_c00001{letter-spacing:302.976000px;}
.ls134_c00001{letter-spacing:304.416000px;}
.ls14d_c00001{letter-spacing:307.296000px;}
.ls128_c00001{letter-spacing:308.016000px;}
.ls18a_c00001{letter-spacing:314.856000px;}
.ls1ac_c00001{letter-spacing:316.296000px;}
.ls1a3_c00001{letter-spacing:317.376000px;}
.ls117_c00001{letter-spacing:319.536000px;}
.ls15e_c00001{letter-spacing:328.176000px;}
.ls15a_c00001{letter-spacing:328.896000px;}
.ls1b7_c00001{letter-spacing:342.216000px;}
.ls12d_c00001{letter-spacing:347.976000px;}
.ls1bd_c00001{letter-spacing:351.216000px;}
.lsce_c00001{letter-spacing:360.576000px;}
.ls1bb_c00001{letter-spacing:363.816000px;}
.ls170_c00001{letter-spacing:381.096000px;}
.ls1bc_c00001{letter-spacing:381.456000px;}
.ls124_c00001{letter-spacing:382.176000px;}
.lscc_c00001{letter-spacing:390.816000px;}
.ls123_c00001{letter-spacing:412.416000px;}
.ls1a2_c00001{letter-spacing:412.776000px;}
.lsc5_c00001{letter-spacing:413.856000px;}
.lscb_c00001{letter-spacing:415.656000px;}
.ls1b9_c00001{letter-spacing:452.376000px;}
.ls136_c00001{letter-spacing:765.720000px;}
.ls13b_c00001{letter-spacing:991.800000px;}
.lsf4_c00001{letter-spacing:1252.800000px;}
.lsed_c00001{letter-spacing:1288.080000px;}
.ls125_c00001{letter-spacing:1411.200000px;}
.lsf2_c00001{letter-spacing:1484.280000px;}
.ls1b1_c00001{letter-spacing:1573.200000px;}
.ls1ab_c00001{letter-spacing:1796.400000px;}
.ls1aa_c00001{letter-spacing:1895.040000px;}
.ls1a8_c00001{letter-spacing:1903.680000px;}
.ls144_c00001{letter-spacing:2585.880000px;}
.ls183_c00001{letter-spacing:2854.440000px;}
.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;}
}
.ws111_c00001{word-spacing:-396.108000px;}
.wsf1_c00001{word-spacing:-343.908000px;}
.wsa4_c00001{word-spacing:-334.548000px;}
.ws14f_c00001{word-spacing:-332.388000px;}
.ws15b_c00001{word-spacing:-331.308000px;}
.ws137_c00001{word-spacing:-317.988000px;}
.ws86_c00001{word-spacing:-317.628000px;}
.ws117_c00001{word-spacing:-316.548000px;}
.wsdc_c00001{word-spacing:-314.748000px;}
.ws151_c00001{word-spacing:-313.308000px;}
.wsf8_c00001{word-spacing:-311.148000px;}
.ws113_c00001{word-spacing:-306.108000px;}
.wsd0_c00001{word-spacing:-302.148000px;}
.ws57_c00001{word-spacing:-298.548000px;}
.ws12b_c00001{word-spacing:-292.068000px;}
.ws126_c00001{word-spacing:-290.628000px;}
.ws96_c00001{word-spacing:-266.508000px;}
.ws130_c00001{word-spacing:-211.068000px;}
.wsa8_c00001{word-spacing:-191.628000px;}
.ws12f_c00001{word-spacing:-180.828000px;}
.wsff_c00001{word-spacing:-163.908000px;}
.wsa7_c00001{word-spacing:-161.388000px;}
.ws38_c00001{word-spacing:-159.588000px;}
.wsfb_c00001{word-spacing:-149.148000px;}
.ws10c_c00001{word-spacing:-146.268000px;}
.ws80_c00001{word-spacing:-137.988000px;}
.ws7a_c00001{word-spacing:-134.748000px;}
.ws69_c00001{word-spacing:-131.148000px;}
.wsb6_c00001{word-spacing:-130.068000px;}
.wsc7_c00001{word-spacing:-128.988000px;}
.ws56_c00001{word-spacing:-128.628000px;}
.ws15e_c00001{word-spacing:-127.908000px;}
.ws141_c00001{word-spacing:-126.108000px;}
.ws161_c00001{word-spacing:-122.868000px;}
.wse_c00001{word-spacing:-72.000000px;}
.ws8_c00001{word-spacing:-21.146148px;}
.ws6_c00001{word-spacing:-21.011940px;}
.ws62_c00001{word-spacing:-20.080800px;}
.wsab_c00001{word-spacing:-20.037600px;}
.wsb1_c00001{word-spacing:-20.016000px;}
.ws7f_c00001{word-spacing:-20.008800px;}
.ws16c_c00001{word-spacing:-20.001600px;}
.ws160_c00001{word-spacing:-19.980000px;}
.ws99_c00001{word-spacing:-19.972800px;}
.ws5c_c00001{word-spacing:-19.965600px;}
.ws2f_c00001{word-spacing:-19.879200px;}
.wsbd_c00001{word-spacing:-19.864800px;}
.ws1c_c00001{word-spacing:-19.166400px;}
.ws1b_c00001{word-spacing:-19.152000px;}
.ws27_c00001{word-spacing:-19.144800px;}
.ws2c_c00001{word-spacing:-18.122400px;}
.ws28_c00001{word-spacing:-18.108000px;}
.ws1e_c00001{word-spacing:-18.100800px;}
.ws16_c00001{word-spacing:-18.093600px;}
.ws5_c00001{word-spacing:-18.086400px;}
.wsf_c00001{word-spacing:-18.079200px;}
.ws7_c00001{word-spacing:-18.072000px;}
.ws12_c00001{word-spacing:-18.064800px;}
.ws9_c00001{word-spacing:-18.057600px;}
.ws11_c00001{word-spacing:-18.050400px;}
.wsc_c00001{word-spacing:-18.043200px;}
.wsa_c00001{word-spacing:-18.036000px;}
.wsb_c00001{word-spacing:-18.028800px;}
.ws1d_c00001{word-spacing:-18.021600px;}
.wsd_c00001{word-spacing:-18.014400px;}
.ws14_c00001{word-spacing:-18.007200px;}
.ws4_c00001{word-spacing:-18.000000px;}
.ws13_c00001{word-spacing:-17.992800px;}
.ws26_c00001{word-spacing:-17.985600px;}
.ws10_c00001{word-spacing:-17.978400px;}
.ws17_c00001{word-spacing:-17.971200px;}
.ws22_c00001{word-spacing:-17.956800px;}
.ws20_c00001{word-spacing:-17.949600px;}
.ws21_c00001{word-spacing:-17.942400px;}
.ws1f_c00001{word-spacing:-17.935200px;}
.ws24_c00001{word-spacing:-17.906400px;}
.ws25_c00001{word-spacing:-17.877600px;}
.ws1a_c00001{word-spacing:-17.841600px;}
.ws2b_c00001{word-spacing:-17.827200px;}
.ws2e_c00001{word-spacing:-17.812800px;}
.ws2a_c00001{word-spacing:-17.640000px;}
.ws72_c00001{word-spacing:-15.147000px;}
.ws3f_c00001{word-spacing:-15.093000px;}
.ws166_c00001{word-spacing:-15.028200px;}
.ws36_c00001{word-spacing:-14.974200px;}
.wsb9_c00001{word-spacing:-14.963400px;}
.wsc9_c00001{word-spacing:-14.958000px;}
.ws23_c00001{word-spacing:-14.957856px;}
.ws32_c00001{word-spacing:-14.936400px;}
.wsac_c00001{word-spacing:-14.931000px;}
.ws76_c00001{word-spacing:-14.925600px;}
.ws4f_c00001{word-spacing:-14.920200px;}
.ws5d_c00001{word-spacing:-14.914800px;}
.ws30_c00001{word-spacing:-14.909400px;}
.ws31_c00001{word-spacing:-14.904000px;}
.wsf7_c00001{word-spacing:-14.898600px;}
.ws37_c00001{word-spacing:-14.893200px;}
.ws8b_c00001{word-spacing:-14.887800px;}
.ws48_c00001{word-spacing:-14.882400px;}
.ws149_c00001{word-spacing:-14.877000px;}
.ws19_c00001{word-spacing:-14.873688px;}
.ws15_c00001{word-spacing:-12.151944px;}
.ws18_c00001{word-spacing:-9.720000px;}
.ws29_c00001{word-spacing:-2.577600px;}
.ws2d_c00001{word-spacing:-2.275200px;}
.ws3_c00001{word-spacing:-0.021600px;}
.ws1_c00001{word-spacing:0.000000px;}
.ws2_c00001{word-spacing:0.138276px;}
.ws0_c00001{word-spacing:0.192384px;}
.ws164_c00001{word-spacing:40.579200px;}
.ws165_c00001{word-spacing:40.917600px;}
.ws14c_c00001{word-spacing:42.143400px;}
.ws146_c00001{word-spacing:59.783400px;}
.wsef_c00001{word-spacing:60.541200px;}
.ws91_c00001{word-spacing:106.884000px;}
.ws55_c00001{word-spacing:114.804000px;}
.ws9b_c00001{word-spacing:136.764000px;}
.ws90_c00001{word-spacing:136.764600px;}
.ws4d_c00001{word-spacing:138.924000px;}
.ws44_c00001{word-spacing:140.004000px;}
.ws51_c00001{word-spacing:144.683400px;}
.ws95_c00001{word-spacing:152.913600px;}
.ws97_c00001{word-spacing:154.404000px;}
.ws6a_c00001{word-spacing:160.524000px;}
.ws5e_c00001{word-spacing:161.244000px;}
.ws135_c00001{word-spacing:161.604000px;}
.ws6b_c00001{word-spacing:163.403400px;}
.ws8a_c00001{word-spacing:163.763400px;}
.ws5f_c00001{word-spacing:163.764000px;}
.ws132_c00001{word-spacing:164.124000px;}
.ws8d_c00001{word-spacing:164.844000px;}
.ws65_c00001{word-spacing:166.284000px;}
.ws4b_c00001{word-spacing:166.644000px;}
.ws34_c00001{word-spacing:167.004000px;}
.ws8e_c00001{word-spacing:167.004600px;}
.ws133_c00001{word-spacing:167.363400px;}
.ws45_c00001{word-spacing:167.364000px;}
.ws66_c00001{word-spacing:168.443400px;}
.ws125_c00001{word-spacing:168.753600px;}
.ws35_c00001{word-spacing:169.164000px;}
.ws12e_c00001{word-spacing:169.473600px;}
.ws7d_c00001{word-spacing:169.524000px;}
.ws46_c00001{word-spacing:170.244000px;}
.wse5_c00001{word-spacing:170.913600px;}
.ws127_c00001{word-spacing:170.964000px;}
.ws13d_c00001{word-spacing:172.353600px;}
.ws12c_c00001{word-spacing:172.764000px;}
.ws7e_c00001{word-spacing:173.484600px;}
.wsee_c00001{word-spacing:173.844000px;}
.ws53_c00001{word-spacing:174.923400px;}
.wsc5_c00001{word-spacing:176.364000px;}
.wscf_c00001{word-spacing:176.673600px;}
.ws58_c00001{word-spacing:177.084000px;}
.ws9f_c00001{word-spacing:177.444000px;}
.wsd9_c00001{word-spacing:177.804000px;}
.wsd1_c00001{word-spacing:178.884000px;}
.wsd6_c00001{word-spacing:179.193600px;}
.wsc6_c00001{word-spacing:179.244000px;}
.wsd2_c00001{word-spacing:179.604000px;}
.wsa0_c00001{word-spacing:179.964000px;}
.ws108_c00001{word-spacing:180.324000px;}
.wsb0_c00001{word-spacing:180.633600px;}
.ws11f_c00001{word-spacing:180.684000px;}
.wsea_c00001{word-spacing:180.993600px;}
.wsd8_c00001{word-spacing:181.404000px;}
.ws10e_c00001{word-spacing:181.764000px;}
.ws129_c00001{word-spacing:182.124000px;}
.wse2_c00001{word-spacing:182.844000px;}
.wsd3_c00001{word-spacing:183.203400px;}
.ws13f_c00001{word-spacing:183.204000px;}
.ws109_c00001{word-spacing:183.563400px;}
.wse8_c00001{word-spacing:183.564000px;}
.ws13e_c00001{word-spacing:183.873600px;}
.ws120_c00001{word-spacing:184.643400px;}
.ws10f_c00001{word-spacing:185.364600px;}
.wsf9_c00001{word-spacing:185.723400px;}
.ws12a_c00001{word-spacing:185.724000px;}
.ws152_c00001{word-spacing:186.444000px;}
.ws140_c00001{word-spacing:186.803400px;}
.ws78_c00001{word-spacing:186.804000px;}
.ws11d_c00001{word-spacing:187.164000px;}
.ws115_c00001{word-spacing:187.524000px;}
.wsdd_c00001{word-spacing:188.244000px;}
.wsca_c00001{word-spacing:188.604000px;}
.wscc_c00001{word-spacing:189.273600px;}
.ws118_c00001{word-spacing:189.324000px;}
.ws87_c00001{word-spacing:190.044000px;}
.ws121_c00001{word-spacing:190.403400px;}
.ws79_c00001{word-spacing:190.404000px;}
.ws116_c00001{word-spacing:190.404600px;}
.wsfd_c00001{word-spacing:190.764000px;}
.ws138_c00001{word-spacing:190.764600px;}
.wsfc_c00001{word-spacing:191.433600px;}
.wscb_c00001{word-spacing:192.204000px;}
.ws163_c00001{word-spacing:192.924600px;}
.wsbb_c00001{word-spacing:194.004000px;}
.wsfe_c00001{word-spacing:194.004600px;}
.wsc1_c00001{word-spacing:194.363400px;}
.ws102_c00001{word-spacing:194.364000px;}
.ws82_c00001{word-spacing:195.084000px;}
.ws10b_c00001{word-spacing:195.084600px;}
.ws70_c00001{word-spacing:195.444000px;}
.ws105_c00001{word-spacing:195.804000px;}
.ws13a_c00001{word-spacing:196.884000px;}
.ws103_c00001{word-spacing:197.244000px;}
.ws71_c00001{word-spacing:197.964000px;}
.ws83_c00001{word-spacing:197.964600px;}
.ws92_c00001{word-spacing:199.044000px;}
.ws8c_c00001{word-spacing:199.403400px;}
.ws9d_c00001{word-spacing:199.404000px;}
.ws15c_c00001{word-spacing:199.763400px;}
.ws150_c00001{word-spacing:200.124000px;}
.ws63_c00001{word-spacing:201.204000px;}
.wsa5_c00001{word-spacing:201.923400px;}
.ws6e_c00001{word-spacing:201.924000px;}
.ws93_c00001{word-spacing:202.644000px;}
.ws9e_c00001{word-spacing:203.364000px;}
.ws162_c00001{word-spacing:203.724000px;}
.ws142_c00001{word-spacing:204.083400px;}
.ws64_c00001{word-spacing:204.443400px;}
.wsaa_c00001{word-spacing:204.444000px;}
.wsf5_c00001{word-spacing:204.804000px;}
.ws6f_c00001{word-spacing:205.164000px;}
.wsf3_c00001{word-spacing:205.473600px;}
.ws98_c00001{word-spacing:205.883400px;}
.ws94_c00001{word-spacing:206.244000px;}
.ws41_c00001{word-spacing:206.603400px;}
.ws136_c00001{word-spacing:206.964000px;}
.wsf6_c00001{word-spacing:207.684000px;}
.ws15f_c00001{word-spacing:209.484000px;}
.wsc3_c00001{word-spacing:209.793600px;}
.wsf2_c00001{word-spacing:209.844600px;}
.wsad_c00001{word-spacing:210.204000px;}
.wsf0_c00001{word-spacing:210.564000px;}
.wsaf_c00001{word-spacing:210.873600px;}
.ws49_c00001{word-spacing:211.284000px;}
.ws15a_c00001{word-spacing:211.284600px;}
.ws13b_c00001{word-spacing:211.644000px;}
.wsc8_c00001{word-spacing:212.723400px;}
.ws143_c00001{word-spacing:212.724000px;}
.ws158_c00001{word-spacing:213.084600px;}
.wsae_c00001{word-spacing:213.803400px;}
.wsb7_c00001{word-spacing:214.164000px;}
.ws4a_c00001{word-spacing:214.884000px;}
.ws167_c00001{word-spacing:215.244000px;}
.ws168_c00001{word-spacing:218.124000px;}
.ws6c_c00001{word-spacing:218.484000px;}
.ws60_c00001{word-spacing:219.204000px;}
.ws114_c00001{word-spacing:220.284000px;}
.wsb5_c00001{word-spacing:221.004000px;}
.ws11a_c00001{word-spacing:222.444000px;}
.ws7b_c00001{word-spacing:222.803400px;}
.ws5a_c00001{word-spacing:223.524000px;}
.ws131_c00001{word-spacing:224.244000px;}
.wsb2_c00001{word-spacing:224.604000px;}
.ws11b_c00001{word-spacing:226.403400px;}
.ws67_c00001{word-spacing:226.404000px;}
.ws5b_c00001{word-spacing:227.123400px;}
.ws33_c00001{word-spacing:227.124000px;}
.ws43_c00001{word-spacing:227.844000px;}
.wsb3_c00001{word-spacing:228.203400px;}
.ws81_c00001{word-spacing:229.283400px;}
.ws84_c00001{word-spacing:229.644000px;}
.ws10a_c00001{word-spacing:230.004000px;}
.ws124_c00001{word-spacing:230.364000px;}
.ws12d_c00001{word-spacing:231.804000px;}
.ws7c_c00001{word-spacing:233.244000px;}
.wse4_c00001{word-spacing:233.604000px;}
.wsed_c00001{word-spacing:233.964000px;}
.ws169_c00001{word-spacing:234.993600px;}
.ws11e_c00001{word-spacing:235.044000px;}
.ws50_c00001{word-spacing:236.124000px;}
.wsa2_c00001{word-spacing:236.844000px;}
.ws59_c00001{word-spacing:238.284000px;}
.ws14a_c00001{word-spacing:239.004000px;}
.wsc2_c00001{word-spacing:239.364000px;}
.wsa3_c00001{word-spacing:240.443400px;}
.wsc4_c00001{word-spacing:240.444000px;}
.ws110_c00001{word-spacing:241.524000px;}
.wsce_c00001{word-spacing:241.884000px;}
.wsdf_c00001{word-spacing:242.244000px;}
.ws88_c00001{word-spacing:242.604000px;}
.ws123_c00001{word-spacing:242.964600px;}
.wsa1_c00001{word-spacing:243.324000px;}
.wsda_c00001{word-spacing:244.404000px;}
.wsd5_c00001{word-spacing:245.124000px;}
.ws144_c00001{word-spacing:245.793600px;}
.ws112_c00001{word-spacing:245.844000px;}
.ws89_c00001{word-spacing:246.563400px;}
.wsd4_c00001{word-spacing:246.564000px;}
.ws74_c00001{word-spacing:247.284000px;}
.wse9_c00001{word-spacing:248.364000px;}
.ws106_c00001{word-spacing:249.084000px;}
.ws6d_c00001{word-spacing:249.753600px;}
.ws10d_c00001{word-spacing:249.804000px;}
.ws61_c00001{word-spacing:250.473600px;}
.ws75_c00001{word-spacing:250.523400px;}
.wsb8_c00001{word-spacing:250.524000px;}
.wsfa_c00001{word-spacing:250.884000px;}
.wsbe_c00001{word-spacing:251.244000px;}
.ws3d_c00001{word-spacing:252.323400px;}
.wsf4_c00001{word-spacing:252.324000px;}
.ws107_c00001{word-spacing:253.044000px;}
.ws9a_c00001{word-spacing:253.764000px;}
.wsbf_c00001{word-spacing:254.124000px;}
.ws9c_c00001{word-spacing:254.433600px;}
.wsdb_c00001{word-spacing:254.484000px;}
.ws8f_c00001{word-spacing:254.793600px;}
.ws119_c00001{word-spacing:256.284000px;}
.ws77_c00001{word-spacing:257.004000px;}
.ws85_c00001{word-spacing:257.364000px;}
.ws68_c00001{word-spacing:257.673600px;}
.ws11c_c00001{word-spacing:257.724000px;}
.ws4c_c00001{word-spacing:258.033600px;}
.ws122_c00001{word-spacing:258.084000px;}
.ws47_c00001{word-spacing:259.113600px;}
.ws16a_c00001{word-spacing:262.713600px;}
.wse3_c00001{word-spacing:263.484000px;}
.wscd_c00001{word-spacing:263.844000px;}
.wsa9_c00001{word-spacing:264.204000px;}
.ws4e_c00001{word-spacing:264.564000px;}
.ws13c_c00001{word-spacing:265.284000px;}
.ws104_c00001{word-spacing:265.644000px;}
.ws52_c00001{word-spacing:266.364000px;}
.ws145_c00001{word-spacing:266.724000px;}
.ws54_c00001{word-spacing:267.033600px;}
.ws39_c00001{word-spacing:267.084600px;}
.ws101_c00001{word-spacing:267.444000px;}
.ws139_c00001{word-spacing:267.804000px;}
.ws14b_c00001{word-spacing:268.164000px;}
.ws3c_c00001{word-spacing:268.884000px;}
.ws73_c00001{word-spacing:269.244000px;}
.ws100_c00001{word-spacing:273.564000px;}
.wsa6_c00001{word-spacing:274.284000px;}
.wsd7_c00001{word-spacing:275.364000px;}
.ws14e_c00001{word-spacing:276.084000px;}
.wse6_c00001{word-spacing:277.164000px;}
.wse7_c00001{word-spacing:278.604000px;}
.wsba_c00001{word-spacing:278.964000px;}
.wsec_c00001{word-spacing:280.044000px;}
.wsc0_c00001{word-spacing:280.404000px;}
.ws128_c00001{word-spacing:282.203400px;}
.ws134_c00001{word-spacing:284.004000px;}
.wsde_c00001{word-spacing:291.204000px;}
.wse0_c00001{word-spacing:291.924000px;}
.ws16b_c00001{word-spacing:292.593600px;}
.wsbc_c00001{word-spacing:294.033600px;}
.wse1_c00001{word-spacing:294.804600px;}
.wseb_c00001{word-spacing:295.524000px;}
.ws148_c00001{word-spacing:297.324000px;}
.ws154_c00001{word-spacing:297.684000px;}
.ws15d_c00001{word-spacing:301.593600px;}
.ws14d_c00001{word-spacing:310.644000px;}
.ws40_c00001{word-spacing:311.364000px;}
.ws42_c00001{word-spacing:312.033600px;}
.ws156_c00001{word-spacing:312.084000px;}
.wsb4_c00001{word-spacing:315.324000px;}
.ws159_c00001{word-spacing:317.484000px;}
.ws157_c00001{word-spacing:319.284000px;}
.ws147_c00001{word-spacing:327.564000px;}
.ws153_c00001{word-spacing:327.924000px;}
.ws155_c00001{word-spacing:342.324000px;}
.ws3e_c00001{word-spacing:376.473600px;}
.ws16e_c00001{word-spacing:376.524000px;}
.ws16d_c00001{word-spacing:379.044000px;}
.ws3a_c00001{word-spacing:428.364000px;}
.ws3b_c00001{word-spacing:429.033600px;}
._208_c00001{margin-left:-2465.218200px;}
._218_c00001{margin-left:-2004.778200px;}
._54_c00001{margin-left:-1963.018800px;}
._236_c00001{margin-left:-1888.138800px;}
._21e_c00001{margin-left:-1879.858800px;}
._113_c00001{margin-left:-1869.058800px;}
._25d_c00001{margin-left:-1859.698200px;}
._7f_c00001{margin-left:-1858.258800px;}
._212_c00001{margin-left:-1845.658200px;}
._148_c00001{margin-left:-1843.858800px;}
._22c_c00001{margin-left:-1834.858800px;}
._242_c00001{margin-left:-1823.698200px;}
._227_c00001{margin-left:-1821.178800px;}
._17f_c00001{margin-left:-1806.058200px;}
._23d_c00001{margin-left:-1797.058800px;}
._262_c00001{margin-left:-1790.938800px;}
._23f_c00001{margin-left:-1785.538800px;}
._222_c00001{margin-left:-1768.258800px;}
._130_c00001{margin-left:-1741.978200px;}
._1a1_c00001{margin-left:-1736.218800px;}
._c1_c00001{margin-left:-1729.738200px;}
._239_c00001{margin-left:-1725.418200px;}
._231_c00001{margin-left:-1710.658800px;}
._124_c00001{margin-left:-1707.418200px;}
._24f_c00001{margin-left:-1680.418200px;}
._269_c00001{margin-left:-1666.738800px;}
._1fb_c00001{margin-left:-1663.138800px;}
._94_c00001{margin-left:-1659.178200px;}
._f4_c00001{margin-left:-1654.858800px;}
._1f4_c00001{margin-left:-1647.298800px;}
._1cf_c00001{margin-left:-1646.218800px;}
._ae_c00001{margin-left:-1641.898200px;}
._259_c00001{margin-left:-1632.898200px;}
._197_c00001{margin-left:-1617.778800px;}
._16b_c00001{margin-left:-1606.978800px;}
._246_c00001{margin-left:-1599.058800px;}
._192_c00001{margin-left:-1594.378800px;}
._175_c00001{margin-left:-1588.618800px;}
._6a_c00001{margin-left:-1586.458800px;}
._1f7_c00001{margin-left:-1568.458800px;}
._152_c00001{margin-left:-1565.578800px;}
._18a_c00001{margin-left:-1533.898800px;}
._1d6_c00001{margin-left:-1521.658800px;}
._1e7_c00001{margin-left:-1520.218800px;}
._20c_c00001{margin-left:-1512.658800px;}
._76_c00001{margin-left:-1507.258800px;}
._1c0_c00001{margin-left:-1492.858800px;}
._207_c00001{margin-left:-1470.178800px;}
._1c8_c00001{margin-left:-1439.938800px;}
._24a_c00001{margin-left:-1414.378200px;}
._9e_c00001{margin-left:-1202.698200px;}
._26f_c00001{margin-left:-991.018800px;}
._26b_c00001{margin-left:-951.058800px;}
._22d_c00001{margin-left:-124.528128px;}
._209_c00001{margin-left:-108.948600px;}
._186_c00001{margin-left:-106.197336px;}
._146_c00001{margin-left:-100.845000px;}
._1eb_c00001{margin-left:-99.217800px;}
._1db_c00001{margin-left:-96.809400px;}
._bd_c00001{margin-left:-94.680000px;}
._244_c00001{margin-left:-92.505600px;}
._167_c00001{margin-left:-83.546064px;}
._27f_c00001{margin-left:-68.062536px;}
._23_c00001{margin-left:-64.641600px;}
._22_c00001{margin-left:-63.432000px;}
._36_c00001{margin-left:-61.041600px;}
._35_c00001{margin-left:-59.832000px;}
._2a_c00001{margin-left:-29.524464px;}
._17_c00001{margin-left:-28.094400px;}
._16_c00001{margin-left:-26.589600px;}
._29_c00001{margin-left:-23.544000px;}
._28_c00001{margin-left:-21.808800px;}
._1e_c00001{margin-left:-19.526400px;}
._1f_c00001{margin-left:-18.201600px;}
._38_c00001{margin-left:-16.641648px;}
._3b_c00001{margin-left:-15.633000px;}
._3c_c00001{margin-left:-13.640436px;}
._39_c00001{margin-left:-12.384000px;}
._3a_c00001{margin-left:-11.318400px;}
._26_c00001{margin-left:-10.022400px;}
._25_c00001{margin-left:-8.668800px;}
._2c_c00001{margin-left:-7.390656px;}
._2b_c00001{margin-left:-6.177024px;}
._1d_c00001{margin-left:-5.011200px;}
._a_c00001{margin-left:-3.988800px;}
._5_c00001{margin-left:-2.980800px;}
._2_c00001{margin-left:-1.368000px;}
._0_c00001{width:1.034064px;}
._e_c00001{width:2.894400px;}
._1b_c00001{width:3.938400px;}
._f_c00001{width:5.040000px;}
._10_c00001{width:6.777504px;}
._1c_c00001{width:7.884000px;}
._d_c00001{width:8.985600px;}
._1_c00001{width:10.425600px;}
._13_c00001{width:12.247380px;}
._12_c00001{width:13.485420px;}
._11_c00001{width:14.499396px;}
._15_c00001{width:16.174008px;}
._253_c00001{width:17.602272px;}
._2f_c00001{width:19.065600px;}
._19_c00001{width:20.131200px;}
._37_c00001{width:21.226608px;}
._27_c00001{width:22.276800px;}
._31_c00001{width:23.385600px;}
._24_c00001{width:24.703200px;}
._1a_c00001{width:25.855200px;}
._b_c00001{width:26.913600px;}
._c_c00001{width:28.051200px;}
._3_c00001{width:29.217600px;}
._14_c00001{width:30.470400px;}
._18_c00001{width:32.160996px;}
._30_c00001{width:33.811200px;}
._9_c00001{width:37.785600px;}
._6_c00001{width:39.232800px;}
._3d_c00001{width:40.658400px;}
._2d_c00001{width:43.862400px;}
._2e_c00001{width:45.360000px;}
._254_c00001{width:48.091536px;}
._193_c00001{width:54.162000px;}
._20_c00001{width:55.749600px;}
._7_c00001{width:56.851200px;}
._1be_c00001{width:58.510800px;}
._14a_c00001{width:59.648400px;}
._34_c00001{width:61.165152px;}
._33_c00001{width:62.773056px;}
._32_c00001{width:63.823536px;}
._21_c00001{width:64.900944px;}
._15c_c00001{width:67.063200px;}
._176_c00001{width:68.142600px;}
._dd_c00001{width:69.942600px;}
._116_c00001{width:71.784936px;}
._de_c00001{width:74.676600px;}
._b0_c00001{width:77.054400px;}
._165_c00001{width:78.363000px;}
._96_c00001{width:79.574400px;}
._19d_c00001{width:82.049400px;}
._cc_c00001{width:83.167200px;}
._219_c00001{width:84.393000px;}
._fe_c00001{width:85.563000px;}
._155_c00001{width:87.127200px;}
._126_c00001{width:88.574400px;}
._3f_c00001{width:89.647200px;}
._8f_c00001{width:90.727200px;}
._c3_c00001{width:92.174400px;}
._12c_c00001{width:93.967200px;}
._13e_c00001{width:95.196600px;}
._a4_c00001{width:96.847200px;}
._b5_c00001{width:98.647200px;}
._104_c00001{width:99.815400px;}
._19b_c00001{width:101.239200px;}
._145_c00001{width:102.581400px;}
._11c_c00001{width:103.662000px;}
._180_c00001{width:105.215400px;}
._af_c00001{width:106.295400px;}
._1ad_c00001{width:107.781936px;}
._95_c00001{width:109.175400px;}
._137_c00001{width:110.502000px;}
._149_c00001{width:111.967200px;}
._19c_c00001{width:113.634000px;}
._115_c00001{width:115.574400px;}
._125_c00001{width:117.095400px;}
._1b9_c00001{width:119.174400px;}
._c2_c00001{width:121.055400px;}
._131_c00001{width:122.855400px;}
._10c_c00001{width:125.287200px;}
._13d_c00001{width:127.175400px;}
._4_c00001{width:129.225600px;}
._56_c00001{width:131.774400px;}
._1d7_c00001{width:132.854400px;}
._9f_c00001{width:134.654400px;}
._8_c00001{width:137.131200px;}
._169_c00001{width:138.374136px;}
._80_c00001{width:139.782600px;}
._213_c00001{width:140.855400px;}
._1f8_c00001{width:142.294536px;}
._25e_c00001{width:143.735400px;}
._114_c00001{width:144.815400px;}
._db_c00001{width:146.558736px;}
._1b8_c00001{width:148.055400px;}
._174_c00001{width:149.666400px;}
._f3_c00001{width:151.574400px;}
._53_c00001{width:152.812800px;}
._fd_c00001{width:155.073600px;}
._26a_c00001{width:156.240936px;}
._ac_c00001{width:157.694400px;}
._c0_c00001{width:159.134400px;}
._55_c00001{width:161.015400px;}
._17d_c00001{width:162.433800px;}
._18b_c00001{width:163.895400px;}
._77_c00001{width:164.982600px;}
._221_c00001{width:166.140864px;}
._22b_c00001{width:167.434200px;}
._1d4_c00001{width:168.494400px;}
._1af_c00001{width:169.574400px;}
._123_c00001{width:172.095264px;}
._235_c00001{width:173.175264px;}
._144_c00001{width:174.425736px;}
._217_c00001{width:175.793400px;}
._47_c00001{width:177.399000px;}
._12b_c00001{width:179.121600px;}
._112_c00001{width:181.087200px;}
._44_c00001{width:182.534400px;}
._158_c00001{width:183.613536px;}
._fa_c00001{width:184.953600px;}
._12e_c00001{width:186.041736px;}
._a9_c00001{width:187.934400px;}
._b9_c00001{width:189.374400px;}
._109_c00001{width:191.205936px;}
._6b_c00001{width:192.342600px;}
._1e5_c00001{width:193.345200px;}
._1bc_c00001{width:194.409000px;}
._1de_c00001{width:195.678864px;}
._229_c00001{width:197.214864px;}
._1d0_c00001{width:198.414000px;}
._99_c00001{width:200.174400px;}
._1ea_c00001{width:201.672000px;}
._11e_c00001{width:203.091264px;}
._195_c00001{width:204.405336px;}
._11b_c00001{width:206.429664px;}
._52_c00001{width:208.706400px;}
._110_c00001{width:210.778200px;}
._c7_c00001{width:212.414400px;}
._b3_c00001{width:213.584400px;}
._f5_c00001{width:215.469336px;}
._fb_c00001{width:216.765936px;}
._10a_c00001{width:218.289600px;}
._b7_c00001{width:219.842064px;}
._1ce_c00001{width:221.716800px;}
._4b_c00001{width:223.488000px;}
._1ba_c00001{width:224.694936px;}
._4d_c00001{width:226.566000px;}
._ef_c00001{width:228.087936px;}
._121_c00001{width:230.378400px;}
._48_c00001{width:231.404400px;}
._1f2_c00001{width:232.441200px;}
._141_c00001{width:233.546400px;}
._1e9_c00001{width:234.633600px;}
._49_c00001{width:235.638000px;}
._166_c00001{width:236.655000px;}
._46_c00001{width:237.700800px;}
._42_c00001{width:238.946400px;}
._102_c00001{width:240.588000px;}
._23c_c00001{width:241.812000px;}
._135_c00001{width:243.036000px;}
._4f_c00001{width:244.483200px;}
._ce_c00001{width:246.120336px;}
._f1_c00001{width:247.131000px;}
._ff_c00001{width:249.067800px;}
._bc_c00001{width:250.082064px;}
._159_c00001{width:251.172000px;}
._59_c00001{width:252.374400px;}
._7d_c00001{width:254.174400px;}
._156_c00001{width:255.201336px;}
._1ff_c00001{width:256.235400px;}
._41_c00001{width:257.306400px;}
._90_c00001{width:258.386400px;}
._6f_c00001{width:259.825800px;}
._45_c00001{width:260.906400px;}
._a7_c00001{width:261.936000px;}
._100_c00001{width:263.096064px;}
._c8_c00001{width:264.351600px;}
._d1_c00001{width:265.618800px;}
._a6_c00001{width:266.666400px;}
._4a_c00001{width:267.770736px;}
._ba_c00001{width:268.826400px;}
._bb_c00001{width:269.906400px;}
._1c2_c00001{width:270.936000px;}
._43_c00001{width:272.016000px;}
._40_c00001{width:273.546000px;}
._92_c00001{width:274.557600px;}
._b6_c00001{width:275.832000px;}
._4c_c00001{width:277.401600px;}
._10f_c00001{width:278.928864px;}
._e1_c00001{width:279.986400px;}
._a8_c00001{width:281.376000px;}
._ad_c00001{width:282.463200px;}
._b8_c00001{width:284.054400px;}
._1ec_c00001{width:285.166800px;}
._1cb_c00001{width:286.285464px;}
._be_c00001{width:287.290800px;}
._11f_c00001{width:288.729000px;}
._6d_c00001{width:290.066400px;}
._1cc_c00001{width:291.170736px;}
._f9_c00001{width:292.586400px;}
._98_c00001{width:294.026400px;}
._101_c00001{width:295.122600px;}
._172_c00001{width:296.298936px;}
._216_c00001{width:297.408936px;}
._139_c00001{width:299.084400px;}
._ee_c00001{width:300.134736px;}
._153_c00001{width:301.207536px;}
._d7_c00001{width:302.474736px;}
._13a_c00001{width:303.745800px;}
._91_c00001{width:304.999200px;}
._15f_c00001{width:306.626400px;}
._179_c00001{width:307.972800px;}
._d8_c00001{width:308.984400px;}
._c6_c00001{width:310.946400px;}
._8b_c00001{width:312.746400px;}
._10d_c00001{width:314.030664px;}
._10e_c00001{width:315.848664px;}
._20a_c00001{width:316.894800px;}
._50_c00001{width:318.668400px;}
._15e_c00001{width:320.616000px;}
._4e_c00001{width:321.984000px;}
._e0_c00001{width:323.136000px;}
._9b_c00001{width:324.266400px;}
._108_c00001{width:325.556064px;}
._1c4_c00001{width:327.847536px;}
._184_c00001{width:329.117328px;}
._138_c00001{width:330.339600px;}
._1a7_c00001{width:331.776600px;}
._5f_c00001{width:333.738000px;}
._127_c00001{width:335.826000px;}
._129_c00001{width:336.988800px;}
._97_c00001{width:338.616000px;}
._14b_c00001{width:339.918264px;}
._c9_c00001{width:341.186400px;}
._1a4_c00001{width:342.979200px;}
._134_c00001{width:344.426400px;}
._118_c00001{width:345.505800px;}
._1d2_c00001{width:348.163200px;}
._162_c00001{width:349.653600px;}
._18f_c00001{width:351.378936px;}
._164_c00001{width:352.652736px;}
._278_c00001{width:353.736000px;}
._c5_c00001{width:355.536000px;}
._1a2_c00001{width:356.983200px;}
._183_c00001{width:359.241264px;}
._f0_c00001{width:360.439200px;}
._12d_c00001{width:362.066400px;}
._142_c00001{width:363.093264px;}
._13f_c00001{width:364.146336px;}
._140_c00001{width:365.285664px;}
._14f_c00001{width:366.417000px;}
._58_c00001{width:367.826400px;}
._119_c00001{width:369.144000px;}
._7c_c00001{width:370.405464px;}
._1d1_c00001{width:371.450736px;}
._1a9_c00001{width:372.888000px;}
._181_c00001{width:374.201136px;}
._60_c00001{width:375.723000px;}
._82_c00001{width:377.186400px;}
._f6_c00001{width:378.927936px;}
._17c_c00001{width:380.615400px;}
._1d9_c00001{width:382.536000px;}
._a2_c00001{width:383.616000px;}
._257_c00001{width:385.596000px;}
._168_c00001{width:386.643600px;}
._25f_c00001{width:387.780336px;}
._117_c00001{width:389.241336px;}
._c4_c00001{width:391.392000px;}
._e5_c00001{width:392.598936px;}
._15a_c00001{width:393.676200px;}
._16c_c00001{width:395.667000px;}
._5d_c00001{width:398.065800px;}
._15d_c00001{width:399.393000px;}
._79_c00001{width:401.305800px;}
._ca_c00001{width:402.850800px;}
._19e_c00001{width:404.041536px;}
._14e_c00001{width:405.573336px;}
._133_c00001{width:407.530800px;}
._1ef_c00001{width:408.834936px;}
._a5_c00001{width:411.771600px;}
._a0_c00001{width:413.459664px;}
._266_c00001{width:414.756000px;}
._5b_c00001{width:416.439000px;}
._aa_c00001{width:417.970800px;}
._dc_c00001{width:420.479136px;}
._87_c00001{width:422.496000px;}
._247_c00001{width:423.529200px;}
._d3_c00001{width:425.905200px;}
._14c_c00001{width:427.663800px;}
._202_c00001{width:428.976000px;}
._d9_c00001{width:430.867800px;}
._25a_c00001{width:432.396000px;}
._106_c00001{width:434.082600px;}
._1dc_c00001{width:435.774600px;}
._84_c00001{width:436.927536px;}
._3e_c00001{width:438.332736px;}
._e9_c00001{width:439.994736px;}
._198_c00001{width:441.901800px;}
._d2_c00001{width:443.098800px;}
._70_c00001{width:444.919536px;}
._ea_c00001{width:446.504400px;}
._23a_c00001{width:448.585200px;}
._cd_c00001{width:450.021600px;}
._120_c00001{width:451.400400px;}
._279_c00001{width:452.448000px;}
._9a_c00001{width:453.679200px;}
._187_c00001{width:455.286600px;}
._16d_c00001{width:456.372000px;}
._204_c00001{width:458.443800px;}
._1fd_c00001{width:459.576000px;}
._28f_c00001{width:461.359800px;}
._62_c00001{width:462.528000px;}
._64_c00001{width:465.606000px;}
._cf_c00001{width:468.133200px;}
._85_c00001{width:469.368000px;}
._5c_c00001{width:470.444400px;}
._1a3_c00001{width:471.654000px;}
._17a_c00001{width:472.992336px;}
._5e_c00001{width:474.678000px;}
._5a_c00001{width:476.740800px;}
._214_c00001{width:478.378800px;}
._1ab_c00001{width:480.139200px;}
._20e_c00001{width:481.173336px;}
._11d_c00001{width:482.434200px;}
._66_c00001{width:483.523200px;}
._f8_c00001{width:484.797600px;}
._157_c00001{width:486.280800px;}
._d6_c00001{width:488.313000px;}
._150_c00001{width:490.212000px;}
._132_c00001{width:491.306400px;}
._1c3_c00001{width:492.601536px;}
._1f0_c00001{width:494.046936px;}
._67_c00001{width:495.446400px;}
._188_c00001{width:497.228400px;}
._1b3_c00001{width:498.847536px;}
._171_c00001{width:500.292000px;}
._264_c00001{width:502.486200px;}
._d0_c00001{width:503.892000px;}
._1a8_c00001{width:505.201536px;}
._61_c00001{width:506.810736px;}
._d4_c00001{width:509.130000px;}
._f7_c00001{width:511.279200px;}
._57_c00001{width:512.586000px;}
._21a_c00001{width:514.231200px;}
._d5_c00001{width:515.259000px;}
._63_c00001{width:516.441600px;}
._13c_c00001{width:518.039136px;}
._b1_c00001{width:519.411600px;}
._1e1_c00001{width:521.740800px;}
._223_c00001{width:523.242000px;}
._177_c00001{width:524.592000px;}
._b2_c00001{width:525.610800px;}
._1e0_c00001{width:527.103072px;}
._1d8_c00001{width:528.418800px;}
._1fe_c00001{width:530.139600px;}
._1b4_c00001{width:531.288000px;}
._211_c00001{width:532.293336px;}
._1e4_c00001{width:536.072400px;}
._1b1_c00001{width:537.519600px;}
._182_c00001{width:540.095400px;}
._290_c00001{width:542.754000px;}
._128_c00001{width:545.000400px;}
._73_c00001{width:547.416000px;}
._293_c00001{width:549.734400px;}
._22f_c00001{width:550.825200px;}
._267_c00001{width:552.526200px;}
._18c_c00001{width:554.309136px;}
._16e_c00001{width:556.563600px;}
._68_c00001{width:557.708400px;}
._194_c00001{width:558.919800px;}
._65_c00001{width:561.024000px;}
._8d_c00001{width:563.608800px;}
._1fc_c00001{width:565.908264px;}
._eb_c00001{width:568.387800px;}
._240_c00001{width:569.948400px;}
._1ed_c00001{width:572.286672px;}
._275_c00001{width:575.179200px;}
._88_c00001{width:576.619200px;}
._19f_c00001{width:578.394000px;}
._161_c00001{width:579.534336px;}
._e4_c00001{width:580.618800px;}
._215_c00001{width:582.333336px;}
._224_c00001{width:584.060400px;}
._1c1_c00001{width:585.559800px;}
._df_c00001{width:587.541600px;}
._105_c00001{width:588.663000px;}
._296_c00001{width:590.868000px;}
._107_c00001{width:592.556400px;}
._71_c00001{width:594.288000px;}
._203_c00001{width:595.715400px;}
._1a6_c00001{width:598.159800px;}
._273_c00001{width:600.241536px;}
._83_c00001{width:601.681536px;}
._160_c00001{width:603.280800px;}
._28a_c00001{width:604.314000px;}
._e2_c00001{width:605.653200px;}
._e3_c00001{width:607.618800px;}
._24b_c00001{width:611.316936px;}
._ec_c00001{width:612.997200px;}
._8a_c00001{width:617.495400px;}
._178_c00001{width:620.172000px;}
._16f_c00001{width:621.644400px;}
._1c9_c00001{width:622.895400px;}
._e8_c00001{width:625.833000px;}
._27c_c00001{width:628.655400px;}
._25b_c00001{width:632.228400px;}
._25c_c00001{width:635.571000px;}
._1b6_c00001{width:638.539200px;}
._8c_c00001{width:641.174400px;}
._201_c00001{width:643.705200px;}
._18e_c00001{width:645.006600px;}
._e6_c00001{width:646.650000px;}
._292_c00001{width:647.931936px;}
._256_c00001{width:648.932400px;}
._e7_c00001{width:652.779000px;}
._1e3_c00001{width:656.341200px;}
._1df_c00001{width:660.301200px;}
._1b2_c00001{width:663.601536px;}
._1c5_c00001{width:666.954000px;}
._255_c00001{width:669.792600px;}
._18d_c00001{width:672.390000px;}
._295_c00001{width:673.603200px;}
._147_c00001{width:675.421200px;}
._1aa_c00001{width:679.554000px;}
._7b_c00001{width:682.048800px;}
._232_c00001{width:685.105200px;}
._190_c00001{width:686.948400px;}
._13b_c00001{width:690.181200px;}
._272_c00001{width:693.199800px;}
._81_c00001{width:694.639800px;}
._250_c00001{width:696.793536px;}
._24c_c00001{width:698.140800px;}
._19a_c00001{width:700.057872px;}
._74_c00001{width:701.539200px;}
._1e6_c00001{width:706.021200px;}
._1f3_c00001{width:707.821200px;}
._226_c00001{width:708.901200px;}
._277_c00001{width:713.174400px;}
._21c_c00001{width:716.461200px;}
._28e_c00001{width:718.623936px;}
._24e_c00001{width:720.061200px;}
._28c_c00001{width:721.503936px;}
._206_c00001{width:722.941200px;}
._22a_c00001{width:724.741200px;}
._6e_c00001{width:726.601536px;}
._27a_c00001{width:728.874000px;}
._78_c00001{width:735.935400px;}
._26c_c00001{width:738.815400px;}
._241_c00001{width:743.821200px;}
._234_c00001{width:752.461200px;}
._1b0_c00001{width:756.559800px;}
._111_c00001{width:758.581200px;}
._7a_c00001{width:759.614400px;}
._26d_c00001{width:762.494400px;}
._29a_c00001{width:763.722000px;}
._1f9_c00001{width:768.124800px;}
._1d5_c00001{width:769.381200px;}
._274_c00001{width:774.594000px;}
._86_c00001{width:776.034000px;}
._20b_c00001{width:777.301200px;}
._252_c00001{width:782.701200px;}
._bf_c00001{width:785.221200px;}
._1dd_c00001{width:787.021200px;}
._245_c00001{width:791.701200px;}
._299_c00001{width:793.098000px;}
._a1_c00001{width:799.671600px;}
._283_c00001{width:806.855400px;}
._21b_c00001{width:808.261200px;}
._238_c00001{width:811.141200px;}
._20f_c00001{width:814.021200px;}
._6c_c00001{width:819.559800px;}
._263_c00001{width:829.501200px;}
._270_c00001{width:830.615400px;}
._51_c00001{width:831.661200px;}
._1b5_c00001{width:837.954000px;}
._12f_c00001{width:839.221200px;}
._200_c00001{width:840.301200px;}
._1f6_c00001{width:843.901200px;}
._220_c00001{width:848.581200px;}
._122_c00001{width:855.061200px;}
._287_c00001{width:858.627936px;}
._1bd_c00001{width:863.203800px;}
._285_c00001{width:865.107336px;}
._17e_c00001{width:866.941200px;}
._281_c00001{width:876.267936px;}
._1cd_c00001{width:877.381200px;}
._14d_c00001{width:880.261200px;}
._228_c00001{width:883.141200px;}
._230_c00001{width:885.661200px;}
._2a2_c00001{width:888.523200px;}
._2a3_c00001{width:890.028000px;}
._21d_c00001{width:897.901200px;}
._72_c00001{width:900.954000px;}
._f2_c00001{width:909.781200px;}
._29c_c00001{width:913.928400px;}
._2a0_c00001{width:916.243200px;}
._298_c00001{width:918.162000px;}
._21f_c00001{width:924.181200px;}
._29b_c00001{width:925.668000px;}
._16a_c00001{width:933.901200px;}
._103_c00001{width:943.621200px;}
._243_c00001{width:947.221200px;}
._265_c00001{width:951.901200px;}
._11a_c00001{width:956.581200px;}
._22e_c00001{width:960.901200px;}
._ab_c00001{width:961.981200px;}
._23b_c00001{width:964.861200px;}
._1e2_c00001{width:976.021200px;}
._143_c00001{width:978.181200px;}
._da_c00001{width:980.341200px;}
._151_c00001{width:983.581200px;}
._20d_c00001{width:986.461200px;}
._23e_c00001{width:992.941200px;}
._12a_c00001{width:998.701200px;}
._173_c00001{width:1000.501200px;}
._15b_c00001{width:1002.661200px;}
._cb_c00001{width:1004.101200px;}
._237_c00001{width:1005.901200px;}
._1bb_c00001{width:1009.861200px;}
._9d_c00001{width:1018.501200px;}
._93_c00001{width:1021.381200px;}
._189_c00001{width:1022.821200px;}
._28d_c00001{width:1026.781200px;}
._1bf_c00001{width:1032.541200px;}
._1ae_c00001{width:1038.301200px;}
._1c7_c00001{width:1040.101200px;}
._1d3_c00001{width:1042.261200px;}
._1e8_c00001{width:1045.141200px;}
._260_c00001{width:1056.301200px;}
._297_c00001{width:1067.101200px;}
._1da_c00001{width:1072.861200px;}
._225_c00001{width:1075.741200px;}
._294_c00001{width:1077.181200px;}
._29e_c00001{width:1078.603200px;}
._1ee_c00001{width:1080.061200px;}
._233_c00001{width:1081.141200px;}
._291_c00001{width:1086.901200px;}
._210_c00001{width:1090.501200px;}
._136_c00001{width:1101.661200px;}
._249_c00001{width:1117.501200px;}
._199_c00001{width:1127.941200px;}
._27d_c00001{width:1138.021200px;}
._261_c00001{width:1141.261200px;}
._280_c00001{width:1143.061200px;}
._185_c00001{width:1147.741200px;}
._fc_c00001{width:1149.181200px;}
._1f5_c00001{width:1155.661200px;}
._b4_c00001{width:1156.741200px;}
._1f1_c00001{width:1165.741200px;}
._1a0_c00001{width:1171.861200px;}
._251_c00001{width:1175.461200px;}
._10b_c00001{width:1176.901200px;}
._288_c00001{width:1181.941200px;}
._286_c00001{width:1186.621200px;}
._154_c00001{width:1188.781200px;}
._1a5_c00001{width:1191.301200px;}
._8e_c00001{width:1207.141200px;}
._163_c00001{width:1208.581200px;}
._17b_c00001{width:1210.381200px;}
._268_c00001{width:1211.461200px;}
._289_c00001{width:1213.261200px;}
._26e_c00001{width:1216.501200px;}
._ed_c00001{width:1220.101200px;}
._28b_c00001{width:1224.061200px;}
._170_c00001{width:1228.741200px;}
._248_c00001{width:1234.501200px;}
._258_c00001{width:1241.701200px;}
._2a4_c00001{width:1265.101200px;}
._9c_c00001{width:1280.221200px;}
._205_c00001{width:1282.381200px;}
._196_c00001{width:1284.901200px;}
._1ac_c00001{width:1291.021200px;}
._2a1_c00001{width:1292.461200px;}
._1ca_c00001{width:1297.501200px;}
._69_c00001{width:1306.861200px;}
._284_c00001{width:1311.541200px;}
._27b_c00001{width:1328.461200px;}
._1fa_c00001{width:1341.061200px;}
._271_c00001{width:1351.501200px;}
._191_c00001{width:1355.461200px;}
._29d_c00001{width:1356.901200px;}
._1c6_c00001{width:1359.421200px;}
._282_c00001{width:1434.301200px;}
._24d_c00001{width:1440.781200px;}
._89_c00001{width:1462.021200px;}
._7e_c00001{width:1474.621200px;}
._276_c00001{width:1482.541200px;}
._29f_c00001{width:1553.821200px;}
._1b7_c00001{width:1559.581200px;}
._a3_c00001{width:1584.781200px;}
._75_c00001{width:1674.421200px;}
._27e_c00001{width:1839.987936px;}
.fc3_c00001{color:rgb(38,74,96);}
.fc2_c00001{color:rgb(1,2,5);}
.fc1_c00001{color:rgb(0,0,0);}
.fc4_c00001{color:transparent;}
.fc0_c00001{color:rgb(32,31,30);}
.fs5_c00001{font-size:38.880000px;}
.fs4_c00001{font-size:47.880000px;}
.fs6_c00001{font-size:54.000000px;}
.fs0_c00001{font-size:60.120000px;}
.fs1_c00001{font-size:72.000000px;}
.fs2_c00001{font-size:83.880000px;}
.fs7_c00001{font-size:96.120000px;}
.fs3_c00001{font-size:108.000000px;}
.fs8_c00001{font-size:168.120000px;}
.y0_c00001{bottom:0.000000px;}
.y5_c00001{bottom:57.360450px;}
.y4_c00001{bottom:78.060450px;}
.y1aa_c00001{bottom:109.920639px;}
.y137_c00001{bottom:111.000450px;}
.yd3f_c00001{bottom:111.900450px;}
.y2a6_c00001{bottom:112.260450px;}
.y294_c00001{bottom:112.530450px;}
.y1e3_c00001{bottom:112.710450px;}
.y2ce_c00001{bottom:112.710600px;}
.y750_c00001{bottom:113.520450px;}
.y347_c00001{bottom:113.700450px;}
.y704_c00001{bottom:113.790600px;}
.y8f8_c00001{bottom:113.970450px;}
.y156_c00001{bottom:114.600450px;}
.y6ea_c00001{bottom:114.690450px;}
.y702_c00001{bottom:114.870600px;}
.y320_c00001{bottom:114.960600px;}
.y1cb_c00001{bottom:115.140450px;}
.y453_c00001{bottom:115.230450px;}
.y967_c00001{bottom:115.410450px;}
.y6e8_c00001{bottom:115.770450px;}
.y83a_c00001{bottom:115.773132px;}
.y884_c00001{bottom:116.400600px;}
.y9fd_c00001{bottom:116.760450px;}
.yd42_c00001{bottom:116.940450px;}
.y946_c00001{bottom:117.032556px;}
.y540_c00001{bottom:117.210450px;}
.y6bf_c00001{bottom:117.300450px;}
.yb29_c00001{bottom:117.660450px;}
.y762_c00001{bottom:117.660600px;}
.y2b5_c00001{bottom:117.750450px;}
.y221_c00001{bottom:117.930450px;}
.y91a_c00001{bottom:118.374411px;}
.y4d6_c00001{bottom:118.470450px;}
.y5c7_c00001{bottom:118.830450px;}
.y4ec_c00001{bottom:119.010450px;}
.y4a9_c00001{bottom:120.000450px;}
.y63b_c00001{bottom:120.270450px;}
.yd77_c00001{bottom:120.990450px;}
.ye04_c00001{bottom:121.800450px;}
.y67f_c00001{bottom:122.430450px;}
.y5ac_c00001{bottom:122.790450px;}
.y6d7_c00001{bottom:122.880450px;}
.yc26_c00001{bottom:123.150450px;}
.ydf2_c00001{bottom:123.690450px;}
.ya3e_c00001{bottom:123.780450px;}
.y6d5_c00001{bottom:124.050450px;}
.y824_c00001{bottom:124.320450px;}
.y854_c00001{bottom:124.500450px;}
.y484_c00001{bottom:125.130450px;}
.ybae_c00001{bottom:125.400450px;}
.y2c1_c00001{bottom:125.670450px;}
.ydbe_c00001{bottom:125.760450px;}
.y32d_c00001{bottom:126.126360px;}
.y955_c00001{bottom:126.480450px;}
.y739_c00001{bottom:126.660450px;}
.y7ad_c00001{bottom:126.750450px;}
.y930_c00001{bottom:126.840450px;}
.y608_c00001{bottom:126.930450px;}
.y64_c00001{bottom:127.020450px;}
.y1ca_c00001{bottom:127.110459px;}
.y244_c00001{bottom:127.110657px;}
.y773_c00001{bottom:127.290450px;}
.y590_c00001{bottom:128.190450px;}
.y40f_c00001{bottom:128.640450px;}
.y621_c00001{bottom:129.180450px;}
.yd90_c00001{bottom:129.270450px;}
.y86b_c00001{bottom:130.352997px;}
.y222_c00001{bottom:130.800450px;}
.y285_c00001{bottom:130.980450px;}
.y6a8_c00001{bottom:131.070450px;}
.y1a9_c00001{bottom:132.330450px;}
.y366_c00001{bottom:132.420450px;}
.yb67_c00001{bottom:132.600450px;}
.y9a2_c00001{bottom:132.870600px;}
.y637_c00001{bottom:133.500450px;}
.y4c2_c00001{bottom:133.770450px;}
.y74f_c00001{bottom:134.220450px;}
.y346_c00001{bottom:134.400450px;}
.y8ad_c00001{bottom:134.670450px;}
.yda7_c00001{bottom:134.850450px;}
.yde1_c00001{bottom:135.210600px;}
.yd3e_c00001{bottom:135.750450px;}
.y410_c00001{bottom:135.930450px;}
.y966_c00001{bottom:136.110450px;}
.y896_c00001{bottom:136.198983px;}
.yce_c00001{bottom:136.200450px;}
.y7e_c00001{bottom:136.560450px;}
.y25_c00001{bottom:137.100450px;}
.y883_c00001{bottom:137.100600px;}
.y43e_c00001{bottom:137.190450px;}
.y703_c00001{bottom:137.730450px;}
.y8f7_c00001{bottom:138.000450px;}
.y761_c00001{bottom:138.360600px;}
.y696_c00001{bottom:138.450450px;}
.y6eb_c00001{bottom:138.720450px;}
.y5c6_c00001{bottom:139.530450px;}
.y839_c00001{bottom:139.892826px;}
.yb4_c00001{bottom:140.250450px;}
.y174_c00001{bottom:140.520450px;}
.y802_c00001{bottom:140.610450px;}
.y9fc_c00001{bottom:140.790600px;}
.y31f_c00001{bottom:141.060450px;}
.y945_c00001{bottom:141.152250px;}
.y4d5_c00001{bottom:142.500450px;}
.y6bd_c00001{bottom:142.860450px;}
.yb28_c00001{bottom:143.130450px;}
.y738_c00001{bottom:143.220450px;}
.y2a5_c00001{bottom:143.310450px;}
.y5ab_c00001{bottom:143.490450px;}
.y1e2_c00001{bottom:143.760450px;}
.y20a_c00001{bottom:143.760600px;}
.y6bb_c00001{bottom:143.940450px;}
.y4a8_c00001{bottom:144.030450px;}
.y1c9_c00001{bottom:144.390450px;}
.y1a8_c00001{bottom:144.390459px;}
.y243_c00001{bottom:144.390648px;}
.y4eb_c00001{bottom:144.480450px;}
.yaa4_c00001{bottom:144.840450px;}
.yd76_c00001{bottom:144.930450px;}
.y823_c00001{bottom:145.020450px;}
.y853_c00001{bottom:145.200450px;}
.y136_c00001{bottom:145.290450px;}
.yd2b_c00001{bottom:145.290600px;}
.y155_c00001{bottom:145.650450px;}
.y263_c00001{bottom:145.920450px;}
.yaed_c00001{bottom:146.280450px;}
.y48_c00001{bottom:146.820450px;}
.y6d8_c00001{bottom:146.910450px;}
.ye03_c00001{bottom:147.270450px;}
.y7ac_c00001{bottom:147.450450px;}
.y92f_c00001{bottom:147.540450px;}
.y477_c00001{bottom:147.720450px;}
.y816_c00001{bottom:147.810450px;}
.ydb2_c00001{bottom:147.990450px;}
.y67e_c00001{bottom:148.080450px;}
.y919_c00001{bottom:148.344735px;}
.y724_c00001{bottom:148.350450px;}
.yc25_c00001{bottom:148.620600px;}
.y2b4_c00001{bottom:148.800450px;}
.y58f_c00001{bottom:148.890450px;}
.y220_c00001{bottom:148.980450px;}
.ya3d_c00001{bottom:149.250450px;}
.ybad_c00001{bottom:149.340450px;}
.ydbf_c00001{bottom:149.700600px;}
.yb89_c00001{bottom:151.140450px;}
.ya86_c00001{bottom:151.950600px;}
.y2ea_c00001{bottom:152.040450px;}
.y718_c00001{bottom:152.220450px;}
.yd64_c00001{bottom:152.400450px;}
.y97_c00001{bottom:152.490450px;}
.yd0f_c00001{bottom:153.120600px;}
.yd8f_c00001{bottom:153.210600px;}
.y607_c00001{bottom:153.660450px;}
.y9dd_c00001{bottom:154.380450px;}
.y86a_c00001{bottom:154.472691px;}
.y40e_c00001{bottom:154.830450px;}
.y74e_c00001{bottom:154.920450px;}
.y345_c00001{bottom:155.100450px;}
.y2e1_c00001{bottom:155.190450px;}
.ybcc_c00001{bottom:155.550450px;}
.y11c_c00001{bottom:156.090450px;}
.y620_c00001{bottom:156.180450px;}
.y40d_c00001{bottom:156.360450px;}
.y1f8_c00001{bottom:156.540450px;}
.y452_c00001{bottom:156.630450px;}
.y2c0_c00001{bottom:156.720450px;}
.y965_c00001{bottom:156.810450px;}
.y563_c00001{bottom:157.260450px;}
.y636_c00001{bottom:157.440450px;}
.y882_c00001{bottom:157.800600px;}
.y365_c00001{bottom:157.980450px;}
.ye8_c00001{bottom:158.070450px;}
.y9a1_c00001{bottom:158.340450px;}
.y63_c00001{bottom:158.430450px;}
.yc36_c00001{bottom:158.610450px;}
.yda6_c00001{bottom:158.790600px;}
.y760_c00001{bottom:159.060600px;}
.y279_c00001{bottom:159.240450px;}
.y7cf_c00001{bottom:159.780450px;}
.y908_c00001{bottom:159.870600px;}
.y5c5_c00001{bottom:160.230450px;}
.yb66_c00001{bottom:160.320450px;}
.y8ac_c00001{bottom:160.590450px;}
.ybdd_c00001{bottom:160.770450px;}
.y242_c00001{bottom:161.670639px;}
.y211_c00001{bottom:161.850450px;}
.y284_c00001{bottom:162.030450px;}
.y1c8_c00001{bottom:162.300450px;}
.y695_c00001{bottom:162.480450px;}
.y6e9_c00001{bottom:162.660450px;}
.y43d_c00001{bottom:162.750450px;}
.y701_c00001{bottom:162.840450px;}
.y838_c00001{bottom:164.102691px;}
.y5aa_c00001{bottom:164.190450px;}
.y801_c00001{bottom:164.640450px;}
.y944_c00001{bottom:165.362115px;}
.y667_c00001{bottom:165.450600px;}
.y822_c00001{bottom:165.720450px;}
.y852_c00001{bottom:165.900450px;}
.y895_c00001{bottom:166.169307px;}
.y4d4_c00001{bottom:166.710600px;}
.y6be_c00001{bottom:166.800450px;}
.y1a7_c00001{bottom:166.890450px;}
.y31e_c00001{bottom:167.160450px;}
.y4c1_c00001{bottom:167.430450px;}
.y9fb_c00001{bottom:167.610450px;}
.ycd_c00001{bottom:167.700600px;}
.y7d_c00001{bottom:167.970450px;}
.y7ab_c00001{bottom:168.150450px;}
.y92e_c00001{bottom:168.240450px;}
.y24_c00001{bottom:168.600450px;}
.yd75_c00001{bottom:168.780450px;}
.yc60_c00001{bottom:169.320450px;}
.y58e_c00001{bottom:169.590450px;}
.y32c_c00001{bottom:169.865586px;}
.y4ea_c00001{bottom:169.950600px;}
.y4a7_c00001{bottom:170.220450px;}
.y772_c00001{bottom:170.310450px;}
.y6d6_c00001{bottom:170.940450px;}
.y173_c00001{bottom:171.570450px;}
.yb3_c00001{bottom:171.660450px;}
.y476_c00001{bottom:171.750450px;}
.yaec_c00001{bottom:171.840450px;}
.y190_c00001{bottom:172.200450px;}
.ye02_c00001{bottom:172.830450px;}
.yd63_c00001{bottom:173.100450px;}
.ydf1_c00001{bottom:173.190450px;}
.ya3c_c00001{bottom:173.280450px;}
.ydae_c00001{bottom:173.550450px;}
.ydbd_c00001{bottom:173.730450px;}
.y102_c00001{bottom:173.820450px;}
.ya51_c00001{bottom:173.910450px;}
.yc24_c00001{bottom:174.090450px;}
.y2a4_c00001{bottom:174.360450px;}
.ydad_c00001{bottom:174.630450px;}
.y209_c00001{bottom:174.630600px;}
.y67d_c00001{bottom:174.720450px;}
.y1e1_c00001{bottom:174.810450px;}
.y2cd_c00001{bottom:174.810600px;}
.ybac_c00001{bottom:174.900450px;}
.yb88_c00001{bottom:175.170450px;}
.y74d_c00001{bottom:175.620450px;}
.y3ce_c00001{bottom:175.710600px;}
.y344_c00001{bottom:175.800450px;}
.yd80_c00001{bottom:175.980450px;}
.y717_c00001{bottom:176.250450px;}
.y154_c00001{bottom:176.700450px;}
.y262_c00001{bottom:176.970450px;}
.yd8e_c00001{bottom:177.060450px;}
.y451_c00001{bottom:177.330450px;}
.y815_c00001{bottom:177.420600px;}
.y964_c00001{bottom:177.510450px;}
.yca2_c00001{bottom:177.600450px;}
.y8b9_c00001{bottom:177.690450px;}
.ya0d_c00001{bottom:177.870600px;}
.y562_c00001{bottom:177.960450px;}
.y47_c00001{bottom:178.230450px;}
.y918_c00001{bottom:178.315059px;}
.ya85_c00001{bottom:178.320450px;}
.ye24_c00001{bottom:178.500450px;}
.y881_c00001{bottom:178.500600px;}
.y869_c00001{bottom:178.592385px;}
.yd0e_c00001{bottom:178.680450px;}
.y67b_c00001{bottom:178.950600px;}
.y606_c00001{bottom:179.220450px;}
.y723_c00001{bottom:179.400450px;}
.y1a6_c00001{bottom:179.580450px;}
.y135_c00001{bottom:179.670450px;}
.y75f_c00001{bottom:179.760600px;}
.y2b3_c00001{bottom:179.850450px;}
.y9dc_c00001{bottom:179.940450px;}
.y21f_c00001{bottom:180.030450px;}
.y40c_c00001{bottom:180.300450px;}
.y3b9_c00001{bottom:180.840450px;}
.y5c4_c00001{bottom:180.930450px;}
.yc8b_c00001{bottom:181.020450px;}
.ybcb_c00001{bottom:181.110450px;}
.ya21_c00001{bottom:181.920450px;}
.y6a6_c00001{bottom:182.100450px;}
.y3b8_c00001{bottom:182.370600px;}
.y307_c00001{bottom:182.550450px;}
.yda5_c00001{bottom:182.640450px;}
.y61f_c00001{bottom:183.180450px;}
.y364_c00001{bottom:183.450600px;}
.yd2a_c00001{bottom:183.540600px;}
.yd3d_c00001{bottom:183.810450px;}
.y96_c00001{bottom:183.990450px;}
.y241_c00001{bottom:184.080450px;}
.yddf_c00001{bottom:184.710600px;}
.yb78_c00001{bottom:184.800450px;}
.y5a9_c00001{bottom:184.890450px;}
.y483_c00001{bottom:185.160450px;}
.y907_c00001{bottom:185.340450px;}
.yc35_c00001{bottom:185.520450px;}
.yb65_c00001{bottom:185.790600px;}
.yddd_c00001{bottom:185.880450px;}
.y821_c00001{bottom:186.420450px;}
.y905_c00001{bottom:186.510450px;}
.y851_c00001{bottom:186.600450px;}
.y700_c00001{bottom:186.690450px;}
.y8f6_c00001{bottom:187.050450px;}
.ybdc_c00001{bottom:187.230450px;}
.ybf1_c00001{bottom:187.320450px;}
.y1f7_c00001{bottom:187.590450px;}
.y2bf_c00001{bottom:187.770450px;}
.y837_c00001{bottom:188.222385px;}
.y800_c00001{bottom:188.400450px;}
.y43c_c00001{bottom:188.490450px;}
.y694_c00001{bottom:188.670450px;}
.y7aa_c00001{bottom:188.850450px;}
.y92d_c00001{bottom:188.940450px;}
.ye7_c00001{bottom:189.300450px;}
.y943_c00001{bottom:189.481809px;}
.y2e0_c00001{bottom:189.570450px;}
.ycd2_c00001{bottom:189.660450px;}
.y62_c00001{bottom:189.840450px;}
.y693_c00001{bottom:190.110450px;}
.y278_c00001{bottom:190.290450px;}
.y6bc_c00001{bottom:190.830450px;}
.y4d3_c00001{bottom:190.920450px;}
.y666_c00001{bottom:191.010450px;}
.y31d_c00001{bottom:192.630450px;}
.yd74_c00001{bottom:192.720450px;}
.y210_c00001{bottom:192.900450px;}
.y283_c00001{bottom:193.080450px;}
.yd62_c00001{bottom:193.800450px;}
.y11b_c00001{bottom:193.890450px;}
.yaa3_c00001{bottom:194.340450px;}
.yc5f_c00001{bottom:194.790600px;}
.y4e9_c00001{bottom:195.510450px;}
.y4a6_c00001{bottom:195.690450px;}
.yaeb_c00001{bottom:195.780600px;}
.y6d4_c00001{bottom:195.960600px;}
.y894_c00001{bottom:196.139631px;}
.y74c_c00001{bottom:196.320450px;}
.y343_c00001{bottom:196.500450px;}
.y240_c00001{bottom:196.770450px;}
.y475_c00001{bottom:197.220450px;}
.ydaf_c00001{bottom:197.490450px;}
.y450_c00001{bottom:198.030450px;}
.y814_c00001{bottom:198.120600px;}
.y963_c00001{bottom:198.210450px;}
.y561_c00001{bottom:198.660450px;}
.ydf0_c00001{bottom:198.750450px;}
.ybab_c00001{bottom:198.840450px;}
.ycc_c00001{bottom:199.110450px;}
.y880_c00001{bottom:199.200600px;}
.y7c_c00001{bottom:199.380450px;}
.ya3b_c00001{bottom:199.650450px;}
.yd7f_c00001{bottom:199.740450px;}
.y23_c00001{bottom:200.010450px;}
.ydbc_c00001{bottom:200.100450px;}
.ya50_c00001{bottom:200.280600px;}
.y716_c00001{bottom:200.460600px;}
.yd8d_c00001{bottom:201.000450px;}
.y3cd_c00001{bottom:201.180450px;}
.y67c_c00001{bottom:201.450600px;}
.y5c3_c00001{bottom:201.630450px;}
.yac7_c00001{bottom:202.350450px;}
.y172_c00001{bottom:202.620450px;}
.y868_c00001{bottom:202.802250px;}
.y67a_c00001{bottom:202.980450px;}
.yb2_c00001{bottom:203.070450px;}
.yca1_c00001{bottom:203.160450px;}
.y18f_c00001{bottom:203.340450px;}
.ya0c_c00001{bottom:203.700600px;}
.y7eb_c00001{bottom:203.880450px;}
.yca0_c00001{bottom:204.600450px;}
.ya84_c00001{bottom:204.690450px;}
.ycc3_c00001{bottom:204.780600px;}
.ybca_c00001{bottom:205.050450px;}
.y2a3_c00001{bottom:205.410450px;}
.y5a8_c00001{bottom:205.590450px;}
.y208_c00001{bottom:205.680600px;}
.y1e0_c00001{bottom:205.860450px;}
.y2cc_c00001{bottom:205.860600px;}
.y605_c00001{bottom:205.950600px;}
.y6a7_c00001{bottom:206.130450px;}
.y3b7_c00001{bottom:206.310450px;}
.y4ac_c00001{bottom:206.490450px;}
.yda4_c00001{bottom:206.850450px;}
.y408_c00001{bottom:206.940450px;}
.y820_c00001{bottom:207.120450px;}
.y850_c00001{bottom:207.300450px;}
.y4c0_c00001{bottom:207.390450px;}
.y153_c00001{bottom:207.750450px;}
.y261_c00001{bottom:208.020450px;}
.y917_c00001{bottom:208.375554px;}
.y9a0_c00001{bottom:208.650450px;}
.yde0_c00001{bottom:208.740450px;}
.y363_c00001{bottom:208.920450px;}
.y61e_c00001{bottom:209.010450px;}
.y906_c00001{bottom:209.370600px;}
.y7a9_c00001{bottom:209.550450px;}
.y46_c00001{bottom:209.640450px;}
.yb64_c00001{bottom:209.820450px;}
.y635_c00001{bottom:210.000450px;}
.y99f_c00001{bottom:210.090450px;}
.y6ff_c00001{bottom:210.630450px;}
.y224_c00001{bottom:210.900450px;}
.y58d_c00001{bottom:210.990450px;}
.y21e_c00001{bottom:211.080450px;}
.yb77_c00001{bottom:211.170450px;}
.yb63_c00001{bottom:211.350450px;}
.yc34_c00001{bottom:211.440450px;}
.y4d2_c00001{bottom:211.620450px;}
.y101_c00001{bottom:211.620600px;}
.y836_c00001{bottom:212.342079px;}
.y7ff_c00001{bottom:212.610450px;}
.ybdb_c00001{bottom:212.700600px;}
.ybf0_c00001{bottom:212.790600px;}
.yb0e_c00001{bottom:212.880450px;}
.yb49_c00001{bottom:213.150450px;}
.y771_c00001{bottom:213.420450px;}
.y32b_c00001{bottom:213.514641px;}
.y942_c00001{bottom:213.601503px;}
.y134_c00001{bottom:213.960450px;}
.y692_c00001{bottom:214.140450px;}
.y43b_c00001{bottom:214.320450px;}
.yc0c_c00001{bottom:214.500450px;}
.yced_c00001{bottom:214.770450px;}
.ycd1_c00001{bottom:215.220450px;}
.y95_c00001{bottom:215.400450px;}
.y6ba_c00001{bottom:215.940450px;}
.y665_c00001{bottom:216.480450px;}
.yd73_c00001{bottom:216.930450px;}
.y74b_c00001{bottom:217.020450px;}
.y9fa_c00001{bottom:217.110450px;}
.y342_c00001{bottom:217.200450px;}
.ya63_c00001{bottom:217.650450px;}
.y2c5_c00001{bottom:218.640450px;}
.y31c_c00001{bottom:218.730450px;}
.y1f6_c00001{bottom:218.820450px;}
.y813_c00001{bottom:218.820600px;}
.y962_c00001{bottom:218.910450px;}
.yb27_c00001{bottom:219.000450px;}
.y560_c00001{bottom:219.360450px;}
.y4a5_c00001{bottom:219.720450px;}
.yaa2_c00001{bottom:219.810450px;}
.y6d3_c00001{bottom:219.900450px;}
.ye6_c00001{bottom:220.710600px;}
.y4e8_c00001{bottom:220.980450px;}
.y7ce_c00001{bottom:221.070450px;}
.yc74_c00001{bottom:221.160450px;}
.y75e_c00001{bottom:221.160600px;}
.y61_c00001{bottom:221.250450px;}
.y277_c00001{bottom:221.340450px;}
.ydb1_c00001{bottom:221.520450px;}
.y7cb_c00001{bottom:222.150450px;}
.y5c2_c00001{bottom:222.330450px;}
.y796_c00001{bottom:222.960600px;}
.yd29_c00001{bottom:223.410450px;}
.y722_c00001{bottom:223.680450px;}
.y2df_c00001{bottom:223.860450px;}
.y1c7_c00001{bottom:223.950450px;}
.y282_c00001{bottom:224.130450px;}
.ydef_c00001{bottom:224.220450px;}
.ybaa_c00001{bottom:224.400450px;}
.y715_c00001{bottom:224.490450px;}
.yc23_c00001{bottom:225.120600px;}
.y3cc_c00001{bottom:225.210600px;}
.ydee_c00001{bottom:225.750450px;}
.y893_c00001{bottom:226.200126px;}
.y5a7_c00001{bottom:226.200450px;}
.ya4f_c00001{bottom:226.650450px;}
.y679_c00001{bottom:226.920450px;}
.y867_c00001{bottom:226.921944px;}
.ydbb_c00001{bottom:227.010450px;}
.yd41_c00001{bottom:227.100450px;}
.yda3_c00001{bottom:227.460450px;}
.y81f_c00001{bottom:227.820450px;}
.yac6_c00001{bottom:227.910450px;}
.y84f_c00001{bottom:228.000450px;}
.y7ea_c00001{bottom:228.090450px;}
.y3ca_c00001{bottom:228.180450px;}
.y4d1_c00001{bottom:228.270450px;}
.y8b8_c00001{bottom:228.450450px;}
.yb87_c00001{bottom:228.540600px;}
.yc9f_c00001{bottom:228.630450px;}
.y989_c00001{bottom:229.440450px;}
.ya0b_c00001{bottom:229.620600px;}
.y40a_c00001{bottom:229.800450px;}
.y6a5_c00001{bottom:230.070450px;}
.y7a8_c00001{bottom:230.250450px;}
.y3b6_c00001{bottom:230.340450px;}
.ycb_c00001{bottom:230.520450px;}
.ybc9_c00001{bottom:230.610450px;}
.yd0d_c00001{bottom:230.700600px;}
.y7b_c00001{bottom:230.880450px;}
.y22_c00001{bottom:231.420450px;}
.y11a_c00001{bottom:231.690450px;}
.yab4_c00001{bottom:232.320450px;}
.y604_c00001{bottom:232.590450px;}
.ydde_c00001{bottom:232.770450px;}
.y7fe_c00001{bottom:233.310450px;}
.ye1c_c00001{bottom:233.400450px;}
.y306_c00001{bottom:233.490450px;}
.y171_c00001{bottom:233.670450px;}
.y99e_c00001{bottom:234.120600px;}
.y18e_c00001{bottom:234.390450px;}
.yb1_c00001{bottom:234.480450px;}
.y6fe_c00001{bottom:234.840450px;}
.y8f5_c00001{bottom:234.930450px;}
.yd61_c00001{bottom:235.200450px;}
.yb62_c00001{bottom:235.290600px;}
.y1a5_c00001{bottom:235.740600px;}
.y6e7_c00001{bottom:235.830600px;}
.y61d_c00001{bottom:236.010450px;}
.y2a2_c00001{bottom:236.460450px;}
.y835_c00001{bottom:236.551944px;}
.yb76_c00001{bottom:236.640450px;}
.y634_c00001{bottom:236.730450px;}
.ybef_c00001{bottom:236.820450px;}
.y1df_c00001{bottom:236.910450px;}
.y207_c00001{bottom:236.910600px;}
.yb48_c00001{bottom:237.090450px;}
.yd72_c00001{bottom:237.630450px;}
.y74a_c00001{bottom:237.720450px;}
.y941_c00001{bottom:237.811368px;}
.y341_c00001{bottom:237.900450px;}
.y633_c00001{bottom:238.260450px;}
.y916_c00001{bottom:238.345878px;}
.yb0d_c00001{bottom:238.350450px;}
.y152_c00001{bottom:238.800450px;}
.y260_c00001{bottom:239.070450px;}
.y44f_c00001{bottom:239.430450px;}
.yd5a_c00001{bottom:239.520450px;}
.y812_c00001{bottom:239.520600px;}
.y690_c00001{bottom:239.610450px;}
.y43a_c00001{bottom:239.790600px;}
.yc0b_c00001{bottom:239.970450px;}
.y55f_c00001{bottom:240.060450px;}
.ycec_c00001{bottom:240.330450px;}
.ycd0_c00001{bottom:240.690450px;}
.y68e_c00001{bottom:240.780600px;}
.y75d_c00001{bottom:241.860600px;}
.y2b2_c00001{bottom:241.950450px;}
.y664_c00001{bottom:241.950600px;}
.y21d_c00001{bottom:242.130450px;}
.ya92_c00001{bottom:242.400450px;}
.y9f9_c00001{bottom:242.580450px;}
.y5c1_c00001{bottom:243.030450px;}
.y45_c00001{bottom:243.120600px;}
.ya62_c00001{bottom:243.210600px;}
.y9f6_c00001{bottom:243.750450px;}
.y6d2_c00001{bottom:243.840450px;}
.y9eb_c00001{bottom:244.020450px;}
.yc5e_c00001{bottom:244.290600px;}
.yd7e_c00001{bottom:244.650450px;}
.y31b_c00001{bottom:244.830450px;}
.y7cd_c00001{bottom:245.010450px;}
.y8b7_c00001{bottom:245.100450px;}
.y4a4_c00001{bottom:245.190450px;}
.yb26_c00001{bottom:245.460600px;}
.ydb0_c00001{bottom:245.550450px;}
.yaea_c00001{bottom:246.180450px;}
.y4e7_c00001{bottom:246.450600px;}
.y954_c00001{bottom:246.540450px;}
.y474_c00001{bottom:246.720450px;}
.y94_c00001{bottom:246.810450px;}
.y92c_c00001{bottom:246.900450px;}
.yc73_c00001{bottom:247.440450px;}
.yd8c_c00001{bottom:247.530450px;}
.ye01_c00001{bottom:247.800450px;}
.y133_c00001{bottom:248.340450px;}
.y795_c00001{bottom:248.520450px;}
.y84e_c00001{bottom:248.700450px;}
.y714_c00001{bottom:248.700600px;}
.y7e9_c00001{bottom:249.144735px;}
.yc22_c00001{bottom:249.150450px;}
.y100_c00001{bottom:249.420450px;}
.ye23_c00001{bottom:249.510450px;}
.y2c4_c00001{bottom:249.690450px;}
.y5ec_c00001{bottom:249.780450px;}
.y1f5_c00001{bottom:249.870450px;}
.y3cb_c00001{bottom:250.680450px;}
.y7a7_c00001{bottom:250.950450px;}
.y866_c00001{bottom:251.041638px;}
.y38e_c00001{bottom:251.490450px;}
.ya3a_c00001{bottom:251.580450px;}
.yac5_c00001{bottom:251.850450px;}
.ye5_c00001{bottom:252.120450px;}
.y3c9_c00001{bottom:252.210450px;}
.y276_c00001{bottom:252.390450px;}
.y678_c00001{bottom:252.480450px;}
.yb86_c00001{bottom:252.570450px;}
.y60_c00001{bottom:252.750450px;}
.y4bf_c00001{bottom:253.020450px;}
.y676_c00001{bottom:253.560450px;}
.y40b_c00001{bottom:253.830450px;}
.y7fd_c00001{bottom:254.010450px;}
.yc9d_c00001{bottom:254.100450px;}
.ycc2_c00001{bottom:254.280450px;}
.y4ab_c00001{bottom:254.550450px;}
.y988_c00001{bottom:254.910450px;}
.y1c6_c00001{bottom:255.000450px;}
.ya0a_c00001{bottom:255.090450px;}
.y281_c00001{bottom:255.180450px;}
.yc9c_c00001{bottom:255.270450px;}
.y6fd_c00001{bottom:255.540450px;}
.y3b4_c00001{bottom:255.810450px;}
.y44e_c00001{bottom:255.990450px;}
.y892_c00001{bottom:256.170450px;}
.y5a6_c00001{bottom:256.260450px;}
.y770_c00001{bottom:256.440450px;}
.y6e6_c00001{bottom:256.530600px;}
.ya83_c00001{bottom:256.620450px;}
.ya20_c00001{bottom:256.890450px;}
.y3b1_c00001{bottom:256.980450px;}
.y32a_c00001{bottom:257.253867px;}
.ycc1_c00001{bottom:257.340450px;}
.yda2_c00001{bottom:257.520450px;}
.yddc_c00001{bottom:257.790450px;}
.y2de_c00001{bottom:258.240450px;}
.yd71_c00001{bottom:258.330450px;}
.y749_c00001{bottom:258.420450px;}
.y340_c00001{bottom:258.600450px;}
.ye1b_c00001{bottom:258.870450px;}
.y305_c00001{bottom:259.050450px;}
.yb35_c00001{bottom:259.230450px;}
.y8f4_c00001{bottom:259.495059px;}
.y5c0_c00001{bottom:259.590450px;}
.yd30_c00001{bottom:259.680450px;}
.y362_c00001{bottom:259.950450px;}
.y811_c00001{bottom:260.220600px;}
.y961_c00001{bottom:260.310450px;}
.y834_c00001{bottom:260.671638px;}
.y55e_c00001{bottom:260.760450px;}
.yb60_c00001{bottom:260.850450px;}
.yc92_c00001{bottom:261.120450px;}
.yc55_c00001{bottom:261.660450px;}
.yb5e_c00001{bottom:261.930450px;}
.y940_c00001{bottom:261.931062px;}
.y9b0_c00001{bottom:262.110450px;}
.y632_c00001{bottom:262.200450px;}
.yb0c_c00001{bottom:262.380450px;}
.y75c_c00001{bottom:262.560600px;}
.ybee_c00001{bottom:262.650450px;}
.y21_c00001{bottom:262.830450px;}
.y360_c00001{bottom:262.920450px;}
.y61c_c00001{bottom:263.010450px;}
.ybda_c00001{bottom:263.100450px;}
.yd28_c00001{bottom:263.370450px;}
.yb47_c00001{bottom:263.460450px;}
.y691_c00001{bottom:263.640450px;}
.yd1d_c00001{bottom:263.910450px;}
.yca_c00001{bottom:264.000450px;}
.y6b9_c00001{bottom:264.000600px;}
.ybed_c00001{bottom:264.180450px;}
.y7a_c00001{bottom:264.360450px;}
.ycaf_c00001{bottom:264.630450px;}
.y170_c00001{bottom:264.720450px;}
.yb46_c00001{bottom:264.900450px;}
.yc33_c00001{bottom:265.260450px;}
.y18d_c00001{bottom:265.440450px;}
.y439_c00001{bottom:265.620450px;}
.yceb_c00001{bottom:265.800450px;}
.yccf_c00001{bottom:266.160450px;}
.y9f8_c00001{bottom:266.610450px;}
.y721_c00001{bottom:266.700450px;}
.y1a4_c00001{bottom:266.790600px;}
.ya61_c00001{bottom:267.150450px;}
.y2a1_c00001{bottom:267.510450px;}
.yb0_c00001{bottom:267.960450px;}
.y206_c00001{bottom:267.960600px;}
.y6d1_c00001{bottom:268.050450px;}
.y915_c00001{bottom:268.316202px;}
.yc5d_c00001{bottom:268.320450px;}
.yad8_c00001{bottom:268.410450px;}
.ya91_c00001{bottom:268.770450px;}
.y4a3_c00001{bottom:269.220450px;}
.y84d_c00001{bottom:269.400450px;}
.y713_c00001{bottom:269.400600px;}
.y119_c00001{bottom:269.490450px;}
.yd59_c00001{bottom:269.580450px;}
.y151_c00001{bottom:269.850450px;}
.y25f_c00001{bottom:269.940450px;}
.y8e5_c00001{bottom:270.120450px;}
.y31a_c00001{bottom:270.300450px;}
.y473_c00001{bottom:270.750450px;}
.yb25_c00001{bottom:270.930450px;}
.y7a6_c00001{bottom:271.650450px;}
.y4e5_c00001{bottom:272.010450px;}
.ya72_c00001{bottom:272.370450px;}
.y953_c00001{bottom:272.460450px;}
.y3a4_c00001{bottom:272.550450px;}
.y293_c00001{bottom:272.910450px;}
.yc72_c00001{bottom:273.000450px;}
.y21c_c00001{bottom:273.090450px;}
.ye00_c00001{bottom:273.270450px;}
.yae9_c00001{bottom:273.720450px;}
.yb9a_c00001{bottom:273.810450px;}
.yba9_c00001{bottom:273.900450px;}
.y794_c00001{bottom:273.990450px;}
.ydba_c00001{bottom:274.170450px;}
.yc68_c00001{bottom:274.260450px;}
.yaa1_c00001{bottom:274.530450px;}
.yc21_c00001{bottom:274.620450px;}
.y7fc_c00001{bottom:274.710450px;}
.y4aa_c00001{bottom:275.160450px;}
.ydec_c00001{bottom:275.250450px;}
.y865_c00001{bottom:275.251503px;}
.y3c8_c00001{bottom:276.150450px;}
.y6fc_c00001{bottom:276.240450px;}
.ydea_c00001{bottom:276.330450px;}
.y5eb_c00001{bottom:276.420450px;}
.yd60_c00001{bottom:276.510450px;}
.y9bb_c00001{bottom:276.780450px;}
.y38d_c00001{bottom:276.960450px;}
.y6e5_c00001{bottom:277.230600px;}
.y44_c00001{bottom:277.320450px;}
.yac4_c00001{bottom:277.500450px;}
.y409_c00001{bottom:277.860450px;}
.ya39_c00001{bottom:277.950450px;}
.yb85_c00001{bottom:278.040450px;}
.yc9e_c00001{bottom:278.130450px;}
.y93_c00001{bottom:278.220450px;}
.ya4e_c00001{bottom:278.580450px;}
.y519_c00001{bottom:278.850450px;}
.y6a4_c00001{bottom:279.030450px;}
.y748_c00001{bottom:279.120450px;}
.y7e8_c00001{bottom:279.205230px;}
.y33f_c00001{bottom:279.300450px;}
.ya38_c00001{bottom:279.480450px;}
.y3b3_c00001{bottom:279.840450px;}
.ybc8_c00001{bottom:280.110450px;}
.y9da_c00001{bottom:280.380450px;}
.y987_c00001{bottom:280.470450px;}
.ya08_c00001{bottom:280.560450px;}
.y1f4_c00001{bottom:280.740450px;}
.y2be_c00001{bottom:280.920450px;}
.y810_c00001{bottom:280.920600px;}
.y960_c00001{bottom:281.010450px;}
.ycc0_c00001{bottom:281.280450px;}
.y55d_c00001{bottom:281.460450px;}
.y9d8_c00001{bottom:281.550450px;}
.yddb_c00001{bottom:281.640450px;}
.y891_c00001{bottom:281.730450px;}
.yd0c_c00001{bottom:282.270450px;}
.yaf8_c00001{bottom:282.360450px;}
.y904_c00001{bottom:282.450450px;}
.y132_c00001{bottom:282.630450px;}
.ya82_c00001{bottom:282.990450px;}
.y75b_c00001{bottom:283.260600px;}
.y275_c00001{bottom:283.440450px;}
.ye4_c00001{bottom:283.530450px;}
.y99c_c00001{bottom:283.620450px;}
.yab3_c00001{bottom:284.070450px;}
.y5f_c00001{bottom:284.160450px;}
.ye1a_c00001{bottom:284.430450px;}
.y304_c00001{bottom:284.520450px;}
.ybc5_c00001{bottom:284.610450px;}
.y6b8_c00001{bottom:284.700600px;}
.yb61_c00001{bottom:284.790450px;}
.y833_c00001{bottom:284.791332px;}
.y603_c00001{bottom:284.880450px;}
.y361_c00001{bottom:285.420450px;}
.yb34_c00001{bottom:285.600450px;}
.y1c5_c00001{bottom:286.050450px;}
.y93f_c00001{bottom:286.050756px;}
.y7cc_c00001{bottom:286.680450px;}
.y35f_c00001{bottom:286.950450px;}
.yc54_c00001{bottom:287.130450px;}
.yff_c00001{bottom:287.220450px;}
.yda1_c00001{bottom:287.490450px;}
.y68f_c00001{bottom:287.670450px;}
.y631_c00001{bottom:287.760450px;}
.ybec_c00001{bottom:288.210450px;}
.y23f_c00001{bottom:288.390450px;}
.yb0b_c00001{bottom:288.570450px;}
.y6d0_c00001{bottom:288.750450px;}
.y62e_c00001{bottom:288.840450px;}
.y61b_c00001{bottom:288.930450px;}
.yb75_c00001{bottom:289.290450px;}
.yd1c_c00001{bottom:289.380450px;}
.y8f3_c00001{bottom:289.465383px;}
.y58c_c00001{bottom:289.650450px;}
.yc0a_c00001{bottom:289.830450px;}
.y81e_c00001{bottom:289.920450px;}
.y84c_c00001{bottom:290.100450px;}
.y712_c00001{bottom:290.100600px;}
.yd8b_c00001{bottom:290.550450px;}
.y9f7_c00001{bottom:290.640450px;}
.yc32_c00001{bottom:290.820450px;}
.ycea_c00001{bottom:291.270450px;}
.yc09_c00001{bottom:291.360450px;}
.y438_c00001{bottom:291.450450px;}
.ycdf_c00001{bottom:291.630450px;}
.ycce_c00001{bottom:291.720450px;}
.y7a5_c00001{bottom:292.350450px;}
.y2dd_c00001{bottom:292.530450px;}
.ya60_c00001{bottom:292.710450px;}
.y437_c00001{bottom:292.890450px;}
.y663_c00001{bottom:292.980450px;}
.y5a5_c00001{bottom:293.520450px;}
.yad7_c00001{bottom:293.880450px;}
.y20_c00001{bottom:294.240450px;}
.ydac_c00001{bottom:294.600450px;}
.y4a2_c00001{bottom:294.690450px;}
.yc9_c00001{bottom:294.870450px;}
.y9ea_c00001{bottom:294.960450px;}
.ya90_c00001{bottom:295.230450px;}
.y7fb_c00001{bottom:295.410450px;}
.ye10_c00001{bottom:295.590450px;}
.y747_c00001{bottom:295.680450px;}
.y16f_c00001{bottom:295.770450px;}
.y4e6_c00001{bottom:295.950450px;}
.y472_c00001{bottom:296.220450px;}
.y319_c00001{bottom:296.400450px;}
.y6fb_c00001{bottom:296.940450px;}
.yd5f_c00001{bottom:297.210450px;}
.yb22_c00001{bottom:297.570450px;}
.y1a3_c00001{bottom:297.840600px;}
.ya71_c00001{bottom:297.930450px;}
.y6e4_c00001{bottom:297.930600px;}
.y3a3_c00001{bottom:298.110450px;}
.yc67_c00001{bottom:298.200450px;}
.y914_c00001{bottom:298.376697px;}
.y2a0_c00001{bottom:298.560450px;}
.yaf_c00001{bottom:298.830450px;}
.y1de_c00001{bottom:299.010450px;}
.y205_c00001{bottom:299.010600px;}
.yded_c00001{bottom:299.190450px;}
.yba6_c00001{bottom:299.370450px;}
.y864_c00001{bottom:299.371197px;}
.y76f_c00001{bottom:299.460450px;}
.y793_c00001{bottom:299.460600px;}
.yc43_c00001{bottom:299.550450px;}
.ya2a_c00001{bottom:299.640450px;}
.yd70_c00001{bottom:299.730450px;}
.yb99_c00001{bottom:300.000450px;}
.yc20_c00001{bottom:300.090450px;}
.ydff_c00001{bottom:300.270450px;}
.y677_c00001{bottom:300.450450px;}
.y8e4_c00001{bottom:300.540450px;}
.y150_c00001{bottom:300.900450px;}
.y38c_c00001{bottom:300.990450px;}
.y329_c00001{bottom:300.993093px;}
.y25e_c00001{bottom:301.170450px;}
.yae8_c00001{bottom:301.260450px;}
.yd27_c00001{bottom:301.620450px;}
.y80f_c00001{bottom:301.620600px;}
.y95f_c00001{bottom:301.710450px;}
.y3c7_c00001{bottom:301.710600px;}
.y5ea_c00001{bottom:301.980450px;}
.yb84_c00001{bottom:302.070450px;}
.y55c_c00001{bottom:302.160450px;}
.y9ba_c00001{bottom:302.340450px;}
.y3c5_c00001{bottom:302.790450px;}
.y407_c00001{bottom:302.880450px;}
.y6a3_c00001{bottom:302.970450px;}
.yac3_c00001{bottom:303.150450px;}
.ya37_c00001{bottom:303.510450px;}
.y3b5_c00001{bottom:303.870450px;}
.y292_c00001{bottom:303.960450px;}
.y75a_c00001{bottom:303.960600px;}
.y21b_c00001{bottom:304.140450px;}
.y518_c00001{bottom:304.320450px;}
.y9db_c00001{bottom:304.410450px;}
.ya09_c00001{bottom:304.590450px;}
.yac2_c00001{bottom:304.680450px;}
.ya4d_c00001{bottom:304.950450px;}
.ycbf_c00001{bottom:305.310450px;}
.y6b7_c00001{bottom:305.400600px;}
.ybc7_c00001{bottom:305.580450px;}
.ydda_c00001{bottom:305.850450px;}
.y986_c00001{bottom:305.940450px;}
.ya1f_c00001{bottom:306.390450px;}
.y81d_c00001{bottom:306.570450px;}
.y79_c00001{bottom:307.290450px;}
.y99d_c00001{bottom:307.650450px;}
.yaf7_c00001{bottom:307.920450px;}
.yd0b_c00001{bottom:308.280450px;}
.ye19_c00001{bottom:308.370450px;}
.y18c_c00001{bottom:308.460450px;}
.ya81_c00001{bottom:308.550450px;}
.yc8a_c00001{bottom:308.820450px;}
.y832_c00001{bottom:309.001197px;}
.y7e7_c00001{bottom:309.175554px;}
.yd40_c00001{bottom:309.180450px;}
.yc15_c00001{bottom:309.270450px;}
.y33e_c00001{bottom:309.360450px;}
.y6cf_c00001{bottom:309.450450px;}
.y92_c00001{bottom:309.630450px;}
.y720_c00001{bottom:309.810450px;}
.yb5f_c00001{bottom:309.900450px;}
.y303_c00001{bottom:309.990450px;}
.y93e_c00001{bottom:310.170450px;}
.yab2_c00001{bottom:310.440450px;}
.y43_c00001{bottom:310.620450px;}
.y84b_c00001{bottom:310.800450px;}
.y711_c00001{bottom:310.800600px;}
.y35e_c00001{bottom:310.980450px;}
.yd09_c00001{bottom:311.250450px;}
.yd8a_c00001{bottom:311.340450px;}
.y602_c00001{bottom:311.610450px;}
.y630_c00001{bottom:311.700450px;}
.y2c3_c00001{bottom:311.790450px;}
.y1f3_c00001{bottom:311.970450px;}
.y903_c00001{bottom:312.420450px;}
.y68d_c00001{bottom:312.690450px;}
.y7a4_c00001{bottom:313.050450px;}
.y9af_c00001{bottom:313.140450px;}
.yc53_c00001{bottom:313.320450px;}
.yd1b_c00001{bottom:313.410450px;}
.ybe9_c00001{bottom:313.680450px;}
.ycae_c00001{bottom:314.130450px;}
.yb45_c00001{bottom:314.400450px;}
.y274_c00001{bottom:314.490450px;}
.yb0a_c00001{bottom:314.760450px;}
.ye3_c00001{bottom:314.940450px;}
.ybd9_c00001{bottom:315.030450px;}
.yc08_c00001{bottom:315.390450px;}
.y5e_c00001{bottom:315.570450px;}
.y9f5_c00001{bottom:315.660450px;}
.y61a_c00001{bottom:315.930450px;}
.y7fa_c00001{bottom:316.110450px;}
.yb09_c00001{bottom:316.200450px;}
.y9c9_c00001{bottom:316.470450px;}
.ya5f_c00001{bottom:316.650450px;}
.yce9_c00001{bottom:316.830450px;}
.y28d_c00001{bottom:316.920450px;}
.y131_c00001{bottom:317.010450px;}
.y1c4_c00001{bottom:317.100450px;}
.yccd_c00001{bottom:317.190450px;}
.y280_c00001{bottom:317.280450px;}
.yda0_c00001{bottom:317.550450px;}
.y6fa_c00001{bottom:317.640450px;}
.yd5e_c00001{bottom:317.910450px;}
.y661_c00001{bottom:318.450450px;}
.ycde_c00001{bottom:318.630450px;}
.y6e3_c00001{bottom:318.630600px;}
.y4a1_c00001{bottom:318.720450px;}
.y23e_c00001{bottom:319.440450px;}
.y8f2_c00001{bottom:319.525878px;}
.y65f_c00001{bottom:319.620450px;}
.y4e4_c00001{bottom:319.980450px;}
.yad6_c00001{bottom:320.070450px;}
.y471_c00001{bottom:320.250450px;}
.yb24_c00001{bottom:320.430450px;}
.y53f_c00001{bottom:320.520450px;}
.ya8f_c00001{bottom:320.700450px;}
.yc5c_c00001{bottom:320.970450px;}
.ye0f_c00001{bottom:321.150450px;}
.y3a2_c00001{bottom:322.050450px;}
.yc7e_c00001{bottom:322.320450px;}
.y80e_c00001{bottom:322.320600px;}
.y95e_c00001{bottom:322.410450px;}
.y318_c00001{bottom:322.500600px;}
.y55b_c00001{bottom:322.770450px;}
.ydeb_c00001{bottom:323.220450px;}
.yc71_c00001{bottom:323.310450px;}
.yba7_c00001{bottom:323.400450px;}
.yc42_c00001{bottom:323.490450px;}
.y863_c00001{bottom:323.490891px;}
.yc66_c00001{bottom:323.760450px;}
.yaa0_c00001{bottom:324.030450px;}
.ya70_c00001{bottom:324.120450px;}
.ydfe_c00001{bottom:324.300450px;}
.yd88_c00001{bottom:324.390600px;}
.y759_c00001{bottom:324.660600px;}
.y38b_c00001{bottom:325.020450px;}
.ya9f_c00001{bottom:325.200450px;}
.yb52_c00001{bottom:325.470450px;}
.y675_c00001{bottom:325.560450px;}
.y1f_c00001{bottom:325.650450px;}
.y33d_c00001{bottom:325.920450px;}
.y8e3_c00001{bottom:326.100450px;}
.y6b6_c00001{bottom:326.100600px;}
.yb98_c00001{bottom:326.190450px;}
.ydd9_c00001{bottom:326.550450px;}
.y406_c00001{bottom:326.730450px;}
.y16e_c00001{bottom:326.820450px;}
.y2dc_c00001{bottom:326.910450px;}
.yfe_c00001{bottom:327.000600px;}
.y6a2_c00001{bottom:327.180450px;}
.y84a_c00001{bottom:327.360450px;}
.yb83_c00001{bottom:327.540450px;}
.y3b2_c00001{bottom:327.810450px;}
.yd89_c00001{bottom:327.900450px;}
.y913_c00001{bottom:328.347021px;}
.y517_c00001{bottom:328.350450px;}
.y9d9_c00001{bottom:328.440450px;}
.ya07_c00001{bottom:328.620450px;}
.yac1_c00001{bottom:328.710600px;}
.y1a2_c00001{bottom:328.890600px;}
.ya35_c00001{bottom:328.980450px;}
.yd58_c00001{bottom:329.520450px;}
.y29f_c00001{bottom:329.610450px;}
.y1dd_c00001{bottom:330.060450px;}
.y204_c00001{bottom:330.060600px;}
.y6ce_c00001{bottom:330.150450px;}
.ya4c_c00001{bottom:330.510450px;}
.yd7d_c00001{bottom:330.600450px;}
.ycbc_c00001{bottom:330.780450px;}
.ybc6_c00001{bottom:331.050450px;}
.y985_c00001{bottom:331.410450px;}
.y710_c00001{bottom:331.500600px;}
.y99b_c00001{bottom:331.590450px;}
.y14f_c00001{bottom:331.950450px;}
.y25d_c00001{bottom:332.220450px;}
.ya80_c00001{bottom:332.490450px;}
.ybc4_c00001{bottom:332.580450px;}
.y831_c00001{bottom:333.120891px;}
.yaf6_c00001{bottom:333.390450px;}
.y7a3_c00001{bottom:333.750450px;}
.yd0a_c00001{bottom:333.750600px;}
.y93d_c00001{bottom:333.930450px;}
.yd9f_c00001{bottom:334.110450px;}
.y291_c00001{bottom:335.010450px;}
.y21a_c00001{bottom:335.190450px;}
.yd08_c00001{bottom:335.280450px;}
.y302_c00001{bottom:335.550450px;}
.y62f_c00001{bottom:335.730450px;}
.yc91_c00001{bottom:336.180450px;}
.y35c_c00001{bottom:336.450450px;}
.y68c_c00001{bottom:336.540450px;}
.yab1_c00001{bottom:336.720450px;}
.y7f9_c00001{bottom:336.810450px;}
.yc14_c00001{bottom:336.990450px;}
.yd6f_c00001{bottom:337.080450px;}
.y601_c00001{bottom:337.170450px;}
.y35a_c00001{bottom:337.530450px;}
.ybea_c00001{bottom:337.710600px;}
.yc8_c00001{bottom:337.980450px;}
.ycad_c00001{bottom:338.070450px;}
.y6f9_c00001{bottom:338.340450px;}
.yb44_c00001{bottom:338.430450px;}
.y78_c00001{bottom:338.610450px;}
.yd1a_c00001{bottom:338.880450px;}
.y95d_c00001{bottom:338.970450px;}
.y7e6_c00001{bottom:339.145878px;}
.y6e2_c00001{bottom:339.330600px;}
.yc52_c00001{bottom:339.510450px;}
.y18b_c00001{bottom:339.600450px;}
.y9f4_c00001{bottom:339.780450px;}
.yd26_c00001{bottom:339.870450px;}
.yb08_c00001{bottom:340.230450px;}
.y5ff_c00001{bottom:340.320450px;}
.ybd8_c00001{bottom:340.500600px;}
.y91_c00001{bottom:340.680450px;}
.yc07_c00001{bottom:340.860450px;}
.yb73_c00001{bottom:341.400450px;}
.yc31_c00001{bottom:341.670450px;}
.yae_c00001{bottom:341.850450px;}
.y130_c00001{bottom:341.940450px;}
.y9c8_c00001{bottom:342.030450px;}
.yce8_c00001{bottom:342.300450px;}
.y435_c00001{bottom:342.390450px;}
.y662_c00001{bottom:342.480450px;}
.y76e_c00001{bottom:342.570450px;}
.yccc_c00001{bottom:342.660450px;}
.y619_c00001{bottom:342.930450px;}
.y1f2_c00001{bottom:343.020450px;}
.y80d_c00001{bottom:343.020600px;}
.y433_c00001{bottom:343.560450px;}
.y4a0_c00001{bottom:344.190450px;}
.y618_c00001{bottom:344.370450px;}
.yb23_c00001{bottom:344.460600px;}
.ya5e_c00001{bottom:344.550450px;}
.y328_c00001{bottom:344.732319px;}
.y4e3_c00001{bottom:345.090450px;}
.yd87_c00001{bottom:345.090600px;}
.y758_c00001{bottom:345.360600px;}
.y273_c00001{bottom:345.540450px;}
.ybb9_c00001{bottom:345.630450px;}
.y470_c00001{bottom:345.720450px;}
.y9e9_c00001{bottom:345.990450px;}
.yad5_c00001{bottom:346.260450px;}
.ye2_c00001{bottom:346.440450px;}
.y6b5_c00001{bottom:346.800600px;}
.ye22_c00001{bottom:346.890450px;}
.y5d_c00001{bottom:346.980450px;}
.y118_c00001{bottom:347.070450px;}
.ydd8_c00001{bottom:347.250450px;}
.yba8_c00001{bottom:347.340450px;}
.y3a1_c00001{bottom:347.610450px;}
.y862_c00001{bottom:347.700756px;}
.y6a1_c00001{bottom:347.880450px;}
.y28c_c00001{bottom:347.970450px;}
.y317_c00001{bottom:348.060450px;}
.y1c3_c00001{bottom:348.150450px;}
.y27f_c00001{bottom:348.330450px;}
.yc7d_c00001{bottom:348.600450px;}
.y674_c00001{bottom:349.410450px;}
.y8f1_c00001{bottom:349.496202px;}
.yc1f_c00001{bottom:349.590450px;}
.y3c6_c00001{bottom:349.680450px;}
.ydfb_c00001{bottom:349.770450px;}
.yc65_c00001{bottom:350.040600px;}
.ya6f_c00001{bottom:350.220450px;}
.y23d_c00001{bottom:350.490450px;}
.y405_c00001{bottom:350.760450px;}
.y6cd_c00001{bottom:350.850450px;}
.ydf9_c00001{bottom:350.940450px;}
.yc9b_c00001{bottom:351.030450px;}
.yc70_c00001{bottom:351.120450px;}
.yb51_c00001{bottom:351.390450px;}
.y8e2_c00001{bottom:351.570450px;}
.yb97_c00001{bottom:351.660450px;}
.y70f_c00001{bottom:352.200600px;}
.yae7_c00001{bottom:352.290600px;}
.y5e9_c00001{bottom:352.650450px;}
.y55a_c00001{bottom:352.830450px;}
.ya36_c00001{bottom:353.010450px;}
.y9b9_c00001{bottom:353.280450px;}
.yae4_c00001{bottom:353.370450px;}
.y9d7_c00001{bottom:353.460600px;}
.ya06_c00001{bottom:353.640450px;}
.yd25_c00001{bottom:354.090450px;}
.yabf_c00001{bottom:354.180450px;}
.y516_c00001{bottom:354.270450px;}
.y7a2_c00001{bottom:354.450450px;}
.ydb9_c00001{bottom:354.540450px;}
.ycbd_c00001{bottom:354.810450px;}
.yabe_c00001{bottom:355.260450px;}
.yd57_c00001{bottom:355.440450px;}
.yb16_c00001{bottom:355.620450px;}
.y53e_c00001{bottom:355.800450px;}
.ya4a_c00001{bottom:355.980450px;}
.y42_c00001{bottom:356.610450px;}
.y99a_c00001{bottom:356.700450px;}
.y984_c00001{bottom:356.970450px;}
.y1e_c00001{bottom:357.060450px;}
.y830_c00001{bottom:357.240585px;}
.ya1e_c00001{bottom:357.420450px;}
.y7f8_c00001{bottom:357.510450px;}
.y514_c00001{bottom:357.600450px;}
.y16d_c00001{bottom:357.870450px;}
.ya7f_c00001{bottom:358.050450px;}
.y912_c00001{bottom:358.317345px;}
.yaf5_c00001{bottom:358.860450px;}
.y6f8_c00001{bottom:359.040450px;}
.y7ca_c00001{bottom:359.040600px;}
.ya7c_c00001{bottom:359.130450px;}
.yd07_c00001{bottom:359.220450px;}
.yd5d_c00001{bottom:359.310450px;}
.ye18_c00001{bottom:359.400450px;}
.y3b0_c00001{bottom:359.940450px;}
.yaf4_c00001{bottom:360.030450px;}
.y6e1_c00001{bottom:360.030600px;}
.y35d_c00001{bottom:360.480450px;}
.y29e_c00001{bottom:360.660450px;}
.y68b_c00001{bottom:360.750450px;}
.yc89_c00001{bottom:360.750600px;}
.y62d_c00001{bottom:360.840450px;}
.y301_c00001{bottom:361.020450px;}
.y1dc_c00001{bottom:361.110450px;}
.y203_c00001{bottom:361.110600px;}
.y2db_c00001{bottom:361.200450px;}
.ybeb_c00001{bottom:361.650450px;}
.yc90_c00001{bottom:362.100450px;}
.yab0_c00001{bottom:362.280450px;}
.yb43_c00001{bottom:362.460600px;}
.y600_c00001{bottom:362.730450px;}
.y14e_c00001{bottom:363.000450px;}
.y25c_c00001{bottom:363.270450px;}
.ybfc_c00001{bottom:363.360450px;}
.ycaa_c00001{bottom:363.630450px;}
.y80c_c00001{bottom:363.720600px;}
.yb33_c00001{bottom:363.900450px;}
.y9ae_c00001{bottom:364.170450px;}
.yb74_c00001{bottom:364.260450px;}
.y5fe_c00001{bottom:364.350450px;}
.yfd_c00001{bottom:364.440450px;}
.yca8_c00001{bottom:364.710600px;}
.yc06_c00001{bottom:364.890450px;}
.yc51_c00001{bottom:364.980450px;}
.y9ac_c00001{bottom:365.250600px;}
.yb07_c00001{bottom:365.700450px;}
.yd86_c00001{bottom:365.790600px;}
.yc13_c00001{bottom:365.880450px;}
.ybd6_c00001{bottom:365.970450px;}
.y290_c00001{bottom:366.060450px;}
.y757_c00001{bottom:366.060600px;}
.y219_c00001{bottom:366.240450px;}
.y1a1_c00001{bottom:366.240600px;}
.y436_c00001{bottom:366.420450px;}
.y660_c00001{bottom:366.510450px;}
.yb04_c00001{bottom:366.870450px;}
.ybd4_c00001{bottom:367.140450px;}
.yc30_c00001{bottom:367.230450px;}
.y6b4_c00001{bottom:367.500600px;}
.yce7_c00001{bottom:367.770450px;}
.ydd7_c00001{bottom:367.950450px;}
.ycdd_c00001{bottom:368.130450px;}
.y49f_c00001{bottom:368.220450px;}
.y617_c00001{bottom:368.400450px;}
.ya5d_c00001{bottom:368.490450px;}
.y6a0_c00001{bottom:368.580450px;}
.y4e2_c00001{bottom:368.850450px;}
.y7e5_c00001{bottom:369.206373px;}
.yc7_c00001{bottom:369.300450px;}
.yb21_c00001{bottom:369.480450px;}
.y46f_c00001{bottom:369.750600px;}
.y77_c00001{bottom:370.020450px;}
.y18a_c00001{bottom:370.650450px;}
.yce6_c00001{bottom:370.830600px;}
.yba5_c00001{bottom:371.370450px;}
.y3a0_c00001{bottom:371.550450px;}
.yad4_c00001{bottom:371.730450px;}
.y861_c00001{bottom:371.820450px;}
.yc5a_c00001{bottom:372.000600px;}
.y90_c00001{bottom:372.090450px;}
.y506_c00001{bottom:372.180450px;}
.y902_c00001{bottom:372.450450px;}
.y70e_c00001{bottom:372.900600px;}
.yc59_c00001{bottom:373.080600px;}
.yad_c00001{bottom:373.350450px;}
.y673_c00001{bottom:373.440450px;}
.ya8e_c00001{bottom:373.530450px;}
.ydfc_c00001{bottom:373.800450px;}
.y2bd_c00001{bottom:374.070450px;}
.y1f1_c00001{bottom:374.070600px;}
.y316_c00001{bottom:374.160450px;}
.ybb8_c00001{bottom:374.250600px;}
.ydb4_c00001{bottom:374.430450px;}
.y38a_c00001{bottom:374.520450px;}
.y3c4_c00001{bottom:374.790600px;}
.yc9a_c00001{bottom:375.060450px;}
.y7a1_c00001{bottom:375.150450px;}
.ya6e_c00001{bottom:375.780450px;}
.yc41_c00001{bottom:375.870450px;}
.y792_c00001{bottom:375.960600px;}
.yae6_c00001{bottom:376.230450px;}
.y7d9_c00001{bottom:376.410450px;}
.y272_c00001{bottom:376.590450px;}
.yb50_c00001{bottom:376.860450px;}
.ya34_c00001{bottom:376.950450px;}
.y8e1_c00001{bottom:377.040600px;}
.yb95_c00001{bottom:377.220450px;}
.y9b8_c00001{bottom:377.310450px;}
.yc40_c00001{bottom:377.400450px;}
.ya05_c00001{bottom:377.490450px;}
.ye1_c00001{bottom:377.850450px;}
.yd24_c00001{bottom:378.120450px;}
.y7f7_c00001{bottom:378.210450px;}
.yac0_c00001{bottom:378.210600px;}
.yb93_c00001{bottom:378.300450px;}
.y5c_c00001{bottom:378.390450px;}
.ydab_c00001{bottom:378.480600px;}
.ycbe_c00001{bottom:378.840450px;}
.y28b_c00001{bottom:379.020450px;}
.y1c2_c00001{bottom:379.200450px;}
.y27e_c00001{bottom:379.380450px;}
.y8f0_c00001{bottom:379.466526px;}
.y6f7_c00001{bottom:379.740450px;}
.ya4b_c00001{bottom:380.010450px;}
.y515_c00001{bottom:380.100450px;}
.y999_c00001{bottom:380.550450px;}
.ya29_c00001{bottom:380.640450px;}
.y6e0_c00001{bottom:380.730600px;}
.ye21_c00001{bottom:381.270450px;}
.y68a_c00001{bottom:381.450450px;}
.y23c_c00001{bottom:381.540450px;}
.y513_c00001{bottom:381.630450px;}
.yb15_c00001{bottom:381.810450px;}
.ya7e_c00001{bottom:381.990450px;}
.ybc2_c00001{bottom:382.080600px;}
.y983_c00001{bottom:382.440450px;}
.y756_c00001{bottom:382.710600px;}
.ya1d_c00001{bottom:382.890450px;}
.ybc0_c00001{bottom:383.160450px;}
.y64f_c00001{bottom:383.700450px;}
.ya1a_c00001{bottom:384.060450px;}
.y35b_c00001{bottom:384.420450px;}
.y80b_c00001{bottom:384.420600px;}
.y117_c00001{bottom:384.510600px;}
.yb5d_c00001{bottom:384.600450px;}
.yc88_c00001{bottom:384.690450px;}
.yd04_c00001{bottom:384.780450px;}
.y62c_c00001{bottom:384.870450px;}
.y3de_c00001{bottom:385.320450px;}
.y76d_c00001{bottom:385.590450px;}
.ybe8_c00001{bottom:385.680600px;}
.yd02_c00001{bottom:385.860600px;}
.y300_c00001{bottom:386.490450px;}
.yd85_c00001{bottom:386.490600px;}
.y8d3_c00001{bottom:386.670450px;}
.yb42_c00001{bottom:387.480450px;}
.ycab_c00001{bottom:387.570450px;}
.yaae_c00001{bottom:387.750600px;}
.y41_c00001{bottom:387.930600px;}
.yc8f_c00001{bottom:388.020600px;}
.y9ad_c00001{bottom:388.110600px;}
.y6b3_c00001{bottom:388.200600px;}
.y5fd_c00001{bottom:388.290600px;}
.y911_c00001{bottom:388.377840px;}
.y327_c00001{bottom:388.471545px;}
.y1d_c00001{bottom:388.560450px;}
.ydd6_c00001{bottom:388.650450px;}
.yaac_c00001{bottom:388.830450px;}
.y16c_c00001{bottom:388.920450px;}
.y69f_c00001{bottom:389.280450px;}
.y53d_c00001{bottom:389.550450px;}
.yb06_c00001{bottom:389.730450px;}
.yd19_c00001{bottom:389.910450px;}
.ybd7_c00001{bottom:390.000600px;}
.yb32_c00001{bottom:390.270600px;}
.y434_c00001{bottom:390.450600px;}
.yc2f_c00001{bottom:391.170450px;}
.y860_c00001{bottom:391.440450px;}
.y65e_c00001{bottom:391.530450px;}
.yc4e_c00001{bottom:391.620600px;}
.y29d_c00001{bottom:391.710450px;}
.y1db_c00001{bottom:392.160450px;}
.y202_c00001{bottom:392.160600px;}
.y6cc_c00001{bottom:392.250450px;}
.y3af_c00001{bottom:392.250600px;}
.ycfb_c00001{bottom:392.700600px;}
.y9f3_c00001{bottom:392.794464px;}
.y9c7_c00001{bottom:392.970450px;}
.y4e1_c00001{bottom:393.060600px;}
.yb20_c00001{bottom:393.330450px;}
.yc12_c00001{bottom:393.510450px;}
.y70d_c00001{bottom:393.600600px;}
.y615_c00001{bottom:393.870600px;}
.y14d_c00001{bottom:394.050450px;}
.ycfa_c00001{bottom:394.140450px;}
.y25b_c00001{bottom:394.320450px;}
.y49e_c00001{bottom:394.410450px;}
.yce5_c00001{bottom:394.770600px;}
.y613_c00001{bottom:395.040600px;}
.ya5a_c00001{bottom:395.130450px;}
.y2da_c00001{bottom:395.580450px;}
.y46e_c00001{bottom:395.670450px;}
.y71f_c00001{bottom:395.850450px;}
.yc5b_c00001{bottom:395.940450px;}
.ye0e_c00001{bottom:396.120600px;}
.yba4_c00001{bottom:396.480450px;}
.y28f_c00001{bottom:397.110450px;}
.y39f_c00001{bottom:397.110600px;}
.yad2_c00001{bottom:397.200600px;}
.y218_c00001{bottom:397.290450px;}
.y1a0_c00001{bottom:397.290600px;}
.y672_c00001{bottom:397.650450px;}
.ydfd_c00001{bottom:397.830450px;}
.yad0_c00001{bottom:398.370600px;}
.y3c3_c00001{bottom:398.550450px;}
.y7f6_c00001{bottom:398.910450px;}
.ya8d_c00001{bottom:399.000600px;}
.ye0c_c00001{bottom:399.090600px;}
.y7e4_c00001{bottom:399.176697px;}
.y12f_c00001{bottom:399.630450px;}
.y389_c00001{bottom:399.990450px;}
.y315_c00001{bottom:400.260450px;}
.y6f6_c00001{bottom:400.440450px;}
.yc1e_c00001{bottom:400.620600px;}
.yc6_c00001{bottom:400.710600px;}
.yae5_c00001{bottom:400.890450px;}
.y82f_c00001{bottom:401.070450px;}
.yb96_c00001{bottom:401.160450px;}
.ya6d_c00001{bottom:401.250600px;}
.yc3f_c00001{bottom:401.340600px;}
.y76_c00001{bottom:401.430600px;}
.y791_c00001{bottom:401.520600px;}
.ya04_c00001{bottom:401.610450px;}
.y189_c00001{bottom:401.700450px;}
.ybb7_c00001{bottom:401.700600px;}
.y9d6_c00001{bottom:401.879955px;}
.yfc_c00001{bottom:401.880450px;}
.y7d8_c00001{bottom:401.970450px;}
.ya33_c00001{bottom:402.060450px;}
.y689_c00001{bottom:402.150450px;}
.y76c_c00001{bottom:402.240450px;}
.ya6b_c00001{bottom:402.330450px;}
.y901_c00001{bottom:402.420450px;}
.y8e0_c00001{bottom:402.600450px;}
.y9b6_c00001{bottom:402.780450px;}
.y386_c00001{bottom:402.960600px;}
.y8f_c00001{bottom:403.500600px;}
.yd21_c00001{bottom:403.590600px;}
.y8de_c00001{bottom:403.680600px;}
.y9b5_c00001{bottom:403.950600px;}
.y998_c00001{bottom:404.490450px;}
.yd20_c00001{bottom:404.670450px;}
.yac_c00001{bottom:404.760450px;}
.y5e8_c00001{bottom:404.850450px;}
.y2bc_c00001{bottom:405.120450px;}
.y1f0_c00001{bottom:405.120600px;}
.y512_c00001{bottom:405.570450px;}
.ya7d_c00001{bottom:406.020600px;}
.ybc3_c00001{bottom:406.110600px;}
.ya1c_c00001{bottom:406.920450px;}
.yd84_c00001{bottom:407.190600px;}
.y271_c00001{bottom:407.550450px;}
.y982_c00001{bottom:407.910450px;}
.ya28_c00001{bottom:408.000600px;}
.ydaa_c00001{bottom:408.450600px;}
.yd05_c00001{bottom:408.720450px;}
.y6b2_c00001{bottom:408.900600px;}
.ye0_c00001{bottom:409.260450px;}
.ydd5_c00001{bottom:409.350450px;}
.y8ef_c00001{bottom:409.527021px;}
.y359_c00001{bottom:409.530450px;}
.y4e0_c00001{bottom:409.620600px;}
.y64e_c00001{bottom:409.980450px;}
.y28a_c00001{bottom:410.070450px;}
.y1c1_c00001{bottom:410.250450px;}
.yc86_c00001{bottom:410.250600px;}
.y27d_c00001{bottom:410.430450px;}
.ye17_c00001{bottom:410.430600px;}
.ybe7_c00001{bottom:410.790600px;}
.yb41_c00001{bottom:411.330450px;}
.ycac_c00001{bottom:411.600450px;}
.ydb3_c00001{bottom:411.690450px;}
.yaaf_c00001{bottom:411.780450px;}
.y5b_c00001{bottom:411.870600px;}
.y2ff_c00001{bottom:412.050450px;}
.y8d2_c00001{bottom:412.140450px;}
.y23b_c00001{bottom:412.590450px;}
.yc05_c00001{bottom:412.860600px;}
.y6cb_c00001{bottom:412.950450px;}
.y9ab_c00001{bottom:413.220450px;}
.yb72_c00001{bottom:413.400450px;}
.yb05_c00001{bottom:413.760450px;}
.y5fa_c00001{bottom:413.850450px;}
.ybd5_c00001{bottom:414.030450px;}
.yb5c_c00001{bottom:414.120450px;}
.y70c_c00001{bottom:414.300600px;}
.ybfb_c00001{bottom:414.390450px;}
.yc50_c00001{bottom:414.480450px;}
.y5f9_c00001{bottom:414.930600px;}
.y65d_c00001{bottom:415.380450px;}
.y432_c00001{bottom:415.470450px;}
.yb31_c00001{bottom:415.830450px;}
.yccb_c00001{bottom:416.190450px;}
.y3ae_c00001{bottom:416.280450px;}
.yd16_c00001{bottom:416.460600px;}
.y7a0_c00001{bottom:416.550450px;}
.yc2e_c00001{bottom:417.090600px;}
.y377_c00001{bottom:417.450600px;}
.y616_c00001{bottom:417.900450px;}
.ya5c_c00001{bottom:417.990450px;}
.ycf9_c00001{bottom:418.170450px;}
.y910_c00001{bottom:418.348164px;}
.y671_c00001{bottom:418.350450px;}
.y9c6_c00001{bottom:418.530450px;}
.yce4_c00001{bottom:418.800450px;}
.y9e8_c00001{bottom:418.890450px;}
.yc11_c00001{bottom:419.070450px;}
.y40_c00001{bottom:419.340600px;}
.y7f5_c00001{bottom:419.610450px;}
.y9c4_c00001{bottom:419.610600px;}
.y49d_c00001{bottom:419.880450px;}
.y1c_c00001{bottom:419.970450px;}
.yc0f_c00001{bottom:420.150450px;}
.yba3_c00001{bottom:420.240450px;}
.ya9e_c00001{bottom:420.960600px;}
.y39e_c00001{bottom:421.050450px;}
.y46d_c00001{bottom:421.140450px;}
.yad3_c00001{bottom:421.230450px;}
.yc99_c00001{bottom:421.500450px;}
.ye0d_c00001{bottom:421.590600px;}
.ydfa_c00001{bottom:421.770600px;}
.y116_c00001{bottom:421.950600px;}
.y3c2_c00001{bottom:422.580450px;}
.y29c_c00001{bottom:422.760450px;}
.y688_c00001{bottom:422.850450px;}
.ye0b_c00001{bottom:423.120600px;}
.y1da_c00001{bottom:423.210450px;}
.y201_c00001{bottom:423.210600px;}
.yd83_c00001{bottom:423.750600px;}
.y388_c00001{bottom:424.020600px;}
.y39c_c00001{bottom:424.110600px;}
.ye20_c00001{bottom:424.290450px;}
.ya8b_c00001{bottom:424.470450px;}
.yc6f_c00001{bottom:424.650450px;}
.y53c_c00001{bottom:424.740450px;}
.y14c_c00001{bottom:425.100450px;}
.yb94_c00001{bottom:425.190450px;}
.y25a_c00001{bottom:425.280450px;}
.y259_c00001{bottom:425.281140px;}
.yde9_c00001{bottom:425.370600px;}
.ya89_c00001{bottom:425.640450px;}
.y314_c00001{bottom:425.730450px;}
.y80a_c00001{bottom:425.820600px;}
.ya32_c00001{bottom:425.910600px;}
.yae3_c00001{bottom:426.000600px;}
.yc1d_c00001{bottom:426.090600px;}
.yb4f_c00001{bottom:426.360600px;}
.y8df_c00001{bottom:426.540600px;}
.yc7c_c00001{bottom:426.720450px;}
.y9b7_c00001{bottom:426.810450px;}
.y62b_c00001{bottom:426.810600px;}
.yc3e_c00001{bottom:426.900450px;}
.y385_c00001{bottom:426.990450px;}
.yabd_c00001{bottom:427.260450px;}
.yc64_c00001{bottom:427.350450px;}
.y7d7_c00001{bottom:427.440450px;}
.yd22_c00001{bottom:427.620600px;}
.ycbb_c00001{bottom:427.710600px;}
.y790_c00001{bottom:427.980450px;}
.y223_c00001{bottom:428.160450px;}
.yc7b_c00001{bottom:428.250600px;}
.y217_c00001{bottom:428.340450px;}
.y19f_c00001{bottom:428.340600px;}
.yc63_c00001{bottom:428.430600px;}
.y3f6_c00001{bottom:428.520600px;}
.y5e7_c00001{bottom:428.880450px;}
.ya49_c00001{bottom:429.060450px;}
.y7e3_c00001{bottom:429.147021px;}
.y997_c00001{bottom:429.150276px;}
.y6b1_c00001{bottom:429.600600px;}
.y2d9_c00001{bottom:429.870450px;}
.ybc1_c00001{bottom:430.050450px;}
.ybb6_c00001{bottom:430.320450px;}
.y69e_c00001{bottom:430.680450px;}
.y70b_c00001{bottom:430.860600px;}
.ya1b_c00001{bottom:430.950600px;}
.y50f_c00001{bottom:431.130450px;}
.ya03_c00001{bottom:431.670450px;}
.y9d5_c00001{bottom:431.940450px;}
.yc5_c00001{bottom:432.120600px;}
.y50d_c00001{bottom:432.210600px;}
.y900_c00001{bottom:432.390450px;}
.yd06_c00001{bottom:432.750600px;}
.y75_c00001{bottom:432.840600px;}
.y358_c00001{bottom:433.380450px;}
.y981_c00001{bottom:433.470450px;}
.y6ca_c00001{bottom:433.650450px;}
.y520_c00001{bottom:434.100450px;}
.yc87_c00001{bottom:434.190450px;}
.y97f_c00001{bottom:434.550450px;}
.y8e_c00001{bottom:434.910600px;}
.y64d_c00001{bottom:435.540600px;}
.yca9_c00001{bottom:435.630450px;}
.yaad_c00001{bottom:435.720450px;}
.yab_c00001{bottom:435.810450px;}
.yb40_c00001{bottom:435.897021px;}
.ye16_c00001{bottom:435.900450px;}
.y1ef_c00001{bottom:436.170450px;}
.y7f4_c00001{bottom:436.260450px;}
.y9aa_c00001{bottom:437.070450px;}
.yb71_c00001{bottom:437.160600px;}
.y79f_c00001{bottom:437.250450px;}
.y12e_c00001{bottom:437.250600px;}
.y3dd_c00001{bottom:437.340600px;}
.y2fe_c00001{bottom:437.520600px;}
.y5fb_c00001{bottom:437.790600px;}
.yc04_c00001{bottom:437.970450px;}
.yc4f_c00001{bottom:438.510450px;}
.yda9_c00001{bottom:438.510600px;}
.yb03_c00001{bottom:438.780450px;}
.y71e_c00001{bottom:438.870450px;}
.y670_c00001{bottom:439.050450px;}
.y431_c00001{bottom:439.320450px;}
.yd17_c00001{bottom:439.410600px;}
.y8ee_c00001{bottom:439.497345px;}
.yfb_c00001{bottom:439.500600px;}
.y65c_c00001{bottom:439.590450px;}
.ybfa_c00001{bottom:439.860600px;}
.y9f2_c00001{bottom:440.943681px;}
.ycdc_c00001{bottom:441.210600px;}
.y1c0_c00001{bottom:441.300450px;}
.y270_c00001{bottom:441.480450px;}
.y6f5_c00001{bottom:441.840450px;}
.y614_c00001{bottom:441.930600px;}
.ya5b_c00001{bottom:442.020600px;}
.yb2e_c00001{bottom:442.380450px;}
.y9c5_c00001{bottom:442.470450px;}
.ydf_c00001{bottom:442.740450px;}
.y977_c00001{bottom:442.830450px;}
.y9e7_c00001{bottom:443.010450px;}
.y687_c00001{bottom:443.550450px;}
.y23a_c00001{bottom:443.640450px;}
.yc10_c00001{bottom:444.000450px;}
.yb5b_c00001{bottom:444.090450px;}
.yba2_c00001{bottom:444.270600px;}
.y188_c00001{bottom:444.630450px;}
.y376_c00001{bottom:444.810450px;}
.yc58_c00001{bottom:445.080450px;}
.yad1_c00001{bottom:445.260450px;}
.y530_c00001{bottom:445.350450px;}
.yce2_c00001{bottom:445.440600px;}
.ya9d_c00001{bottom:445.532997px;}
.y49c_c00001{bottom:446.070450px;}
.y809_c00001{bottom:446.520600px;}
.y39d_c00001{bottom:446.610600px;}
.y3c1_c00001{bottom:446.700450px;}
.ydf8_c00001{bottom:446.880450px;}
.y46c_c00001{bottom:446.970450px;}
.ye0a_c00001{bottom:447.150450px;}
.y404_c00001{bottom:447.330450px;}
.yb1f_c00001{bottom:447.957516px;}
.y39b_c00001{bottom:448.050450px;}
.y90f_c00001{bottom:448.318488px;}
.ya8c_c00001{bottom:448.500450px;}
.yc6e_c00001{bottom:448.590600px;}
.ya6c_c00001{bottom:449.220450px;}
.y387_c00001{bottom:449.490450px;}
.y4f9_c00001{bottom:449.940600px;}
.yb92_c00001{bottom:450.300450px;}
.y6b0_c00001{bottom:450.300600px;}
.yb4e_c00001{bottom:450.390450px;}
.ya31_c00001{bottom:450.480276px;}
.yae2_c00001{bottom:450.750450px;}
.y3f_c00001{bottom:450.840600px;}
.y16b_c00001{bottom:451.020450px;}
.y384_c00001{bottom:451.020600px;}
.yabc_c00001{bottom:451.110600px;}
.y1b_c00001{bottom:451.380450px;}
.yd23_c00001{bottom:451.560450px;}
.y8dd_c00001{bottom:451.650450px;}
.ycba_c00001{bottom:451.740450px;}
.y313_c00001{bottom:451.830450px;}
.yb82_c00001{bottom:452.100126px;}
.yc7a_c00001{bottom:452.280600px;}
.yc1a_c00001{bottom:452.730450px;}
.y7d6_c00001{bottom:452.910450px;}
.y29b_c00001{bottom:453.810450px;}
.y3f5_c00001{bottom:454.080450px;}
.y1d9_c00001{bottom:454.260450px;}
.y200_c00001{bottom:454.260600px;}
.y6c9_c00001{bottom:454.350450px;}
.y78f_c00001{bottom:454.440600px;}
.y5a_c00001{bottom:454.800450px;}
.ya7b_c00001{bottom:454.890450px;}
.y510_c00001{bottom:455.070450px;}
.ybbf_c00001{bottom:455.160450px;}
.y5e6_c00001{bottom:455.520600px;}
.yaf3_c00001{bottom:455.790600px;}
.ya19_c00001{bottom:455.970450px;}
.y14b_c00001{bottom:456.150450px;}
.yde8_c00001{bottom:456.510600px;}
.yd03_c00001{bottom:456.780600px;}
.y311_c00001{bottom:456.960600px;}
.y980_c00001{bottom:457.410450px;}
.y357_c00001{bottom:457.590600px;}
.ybb5_c00001{bottom:457.770600px;}
.y79e_c00001{bottom:457.950450px;}
.y62a_c00001{bottom:457.950600px;}
.y7c9_c00001{bottom:458.130450px;}
.y3ad_c00001{bottom:458.220450px;}
.ybe6_c00001{bottom:458.580450px;}
.ya26_c00001{bottom:459.030600px;}
.y996_c00001{bottom:459.120600px;}
.y7e2_c00001{bottom:459.207516px;}
.y258_c00001{bottom:459.210450px;}
.y216_c00001{bottom:459.390450px;}
.y64c_c00001{bottom:459.480450px;}
.y115_c00001{bottom:459.570450px;}
.y51f_c00001{bottom:459.660450px;}
.y5e5_c00001{bottom:459.750450px;}
.y53b_c00001{bottom:460.020600px;}
.ya24_c00001{bottom:460.110600px;}
.y65b_c00001{bottom:460.290450px;}
.y3e8_c00001{bottom:460.650450px;}
.yaab_c00001{bottom:460.830450px;}
.y9a9_c00001{bottom:461.190450px;}
.yb70_c00001{bottom:461.370450px;}
.y3dc_c00001{bottom:461.370600px;}
.y2fd_c00001{bottom:461.550450px;}
.ya02_c00001{bottom:461.640450px;}
.yc03_c00001{bottom:461.730450px;}
.y5fc_c00001{bottom:461.820450px;}
.y8d1_c00001{bottom:462.000450px;}
.y8ff_c00001{bottom:462.450450px;}
.y6f4_c00001{bottom:462.540450px;}
.ye13_c00001{bottom:462.540600px;}
.yb02_c00001{bottom:462.630450px;}
.y3db_c00001{bottom:462.810450px;}
.ybd3_c00001{bottom:462.900450px;}
.yd18_c00001{bottom:463.350450px;}
.y430_c00001{bottom:463.530450px;}
.y8d0_c00001{bottom:463.530600px;}
.yc4_c00001{bottom:463.620600px;}
.y2d8_c00001{bottom:464.250450px;}
.y74_c00001{bottom:464.340600px;}
.yda8_c00001{bottom:464.430600px;}
.yc98_c00001{bottom:464.520450px;}
.ycca_c00001{bottom:465.060450px;}
.yb30_c00001{bottom:465.330450px;}
.ybf9_c00001{bottom:465.420450px;}
.yb3f_c00001{bottom:465.957516px;}
.y8d_c00001{bottom:466.410450px;}
.ybf7_c00001{bottom:466.500600px;}
.y6af_c00001{bottom:466.860600px;}
.y612_c00001{bottom:466.950600px;}
.ya59_c00001{bottom:467.130450px;}
.yaa_c00001{bottom:467.220450px;}
.y808_c00001{bottom:467.220600px;}
.ye1f_c00001{bottom:467.310450px;}
.y9c3_c00001{bottom:467.580450px;}
.ycf8_c00001{bottom:467.670450px;}
.yce3_c00001{bottom:468.300450px;}
.y976_c00001{bottom:468.390450px;}
.yc57_c00001{bottom:468.840600px;}
.yba1_c00001{bottom:468.841062px;}
.y52f_c00001{bottom:469.380450px;}
.y8ed_c00001{bottom:469.467669px;}
.yca7_c00001{bottom:469.470450px;}
.ya9c_c00001{bottom:469.742862px;}
.yc0e_c00001{bottom:470.100450px;}
.y375_c00001{bottom:470.280600px;}
.ydf7_c00001{bottom:470.730450px;}
.yc2d_c00001{bottom:470.910450px;}
.y39a_c00001{bottom:472.080450px;}
.y49b_c00001{bottom:472.260450px;}
.y1bf_c00001{bottom:472.350450px;}
.yc2c_c00001{bottom:472.440600px;}
.y26f_c00001{bottom:472.530450px;}
.ya8a_c00001{bottom:472.530600px;}
.ye09_c00001{bottom:472.620600px;}
.y403_c00001{bottom:472.800450px;}
.y46b_c00001{bottom:472.890450px;}
.y9e6_c00001{bottom:473.070450px;}
.y19e_c00001{bottom:473.520600px;}
.y326_c00001{bottom:473.700450px;}
.y49a_c00001{bottom:473.700600px;}
.yb91_c00001{bottom:474.060450px;}
.yb5a_c00001{bottom:474.150450px;}
.y505_c00001{bottom:474.330450px;}
.y46a_c00001{bottom:474.420450px;}
.y239_c00001{bottom:474.690450px;}
.y27c_c00001{bottom:474.690600px;}
.yc3d_c00001{bottom:474.870600px;}
.y383_c00001{bottom:474.960600px;}
.y12d_c00001{bottom:475.050450px;}
.yae1_c00001{bottom:475.322691px;}
.y4f8_c00001{bottom:475.410450px;}
.y8dc_c00001{bottom:475.500600px;}
.yc1b_c00001{bottom:475.590600px;}
.yabb_c00001{bottom:475.680126px;}
.y187_c00001{bottom:475.770450px;}
.y9b4_c00001{bottom:475.860600px;}
.ycb9_c00001{bottom:475.950450px;}
.y3c0_c00001{bottom:476.760450px;}
.ya48_c00001{bottom:477.030450px;}
.yfa_c00001{bottom:477.300450px;}
.yc78_c00001{bottom:477.750600px;}
.yb1e_c00001{bottom:477.927840px;}
.y312_c00001{bottom:477.930600px;}
.y90e_c00001{bottom:478.378983px;}
.y7d5_c00001{bottom:478.470450px;}
.y356_c00001{bottom:478.650450px;}
.yc76_c00001{bottom:478.830450px;}
.ybbe_c00001{bottom:479.010450px;}
.y511_c00001{bottom:479.100450px;}
.y3f4_c00001{bottom:479.550450px;}
.ya18_c00001{bottom:479.820450px;}
.y78e_c00001{bottom:479.910450px;}
.yde_c00001{bottom:480.180600px;}
.y66f_c00001{bottom:480.450450px;}
.ya30_c00001{bottom:480.450600px;}
.y310_c00001{bottom:480.900450px;}
.y65a_c00001{bottom:480.990450px;}
.yd01_c00001{bottom:481.800450px;}
.y71d_c00001{bottom:481.980450px;}
.y16a_c00001{bottom:482.070450px;}
.y9d4_c00001{bottom:482.250450px;}
.y3e_c00001{bottom:482.250600px;}
.y97e_c00001{bottom:482.520600px;}
.ybe5_c00001{bottom:482.610600px;}
.y1a_c00001{bottom:482.790600px;}
.ya27_c00001{bottom:482.970450px;}
.y6f3_c00001{bottom:483.240450px;}
.ybb4_c00001{bottom:483.330450px;}
.y5e4_c00001{bottom:483.780600px;}
.y42f_c00001{bottom:484.230450px;}
.ybb2_c00001{bottom:484.410450px;}
.yaaa_c00001{bottom:484.680600px;}
.y686_c00001{bottom:484.950450px;}
.y1d8_c00001{bottom:485.130450px;}
.y2c9_c00001{bottom:485.310450px;}
.y1ff_c00001{bottom:485.310600px;}
.ye15_c00001{bottom:485.400450px;}
.yc02_c00001{bottom:485.760450px;}
.y51e_c00001{bottom:485.850450px;}
.y59_c00001{bottom:486.210600px;}
.y3e7_c00001{bottom:486.480450px;}
.y3da_c00001{bottom:486.840600px;}
.ybd2_c00001{bottom:486.930600px;}
.y2fc_c00001{bottom:487.020600px;}
.yb01_c00001{bottom:487.198164px;}
.y14a_c00001{bottom:487.200450px;}
.yc4d_c00001{bottom:487.380450px;}
.y8cf_c00001{bottom:487.470450px;}
.y54f_c00001{bottom:487.560450px;}
.yde7_c00001{bottom:487.560600px;}
.y807_c00001{bottom:487.920600px;}
.y995_c00001{bottom:488.730450px;}
.y629_c00001{bottom:489.000600px;}
.ycc9_c00001{bottom:489.090600px;}
.y7e1_c00001{bottom:489.177840px;}
.y9f1_c00001{bottom:489.183069px;}
.y7c8_c00001{bottom:489.270450px;}
.yb2f_c00001{bottom:489.270600px;}
.ybf8_c00001{bottom:489.360600px;}
.yc8e_c00001{bottom:490.080450px;}
.ya7a_c00001{bottom:490.170450px;}
.y257_c00001{bottom:490.260450px;}
.y215_c00001{bottom:490.440450px;}
.ya58_c00001{bottom:490.890450px;}
.y611_c00001{bottom:491.160450px;}
.y29a_c00001{bottom:491.430450px;}
.y9c2_c00001{bottom:491.430600px;}
.ya01_c00001{bottom:491.610450px;}
.y53a_c00001{bottom:492.240450px;}
.y975_c00001{bottom:492.330450px;}
.y8fe_c00001{bottom:492.420450px;}
.y69d_c00001{bottom:492.780450px;}
.ycf7_c00001{bottom:492.780600px;}
.yc56_c00001{bottom:492.870600px;}
.ya9b_c00001{bottom:493.862556px;}
.yacf_c00001{bottom:494.130450px;}
.y374_c00001{bottom:494.310450px;}
.y52e_c00001{bottom:494.850450px;}
.ydf6_c00001{bottom:494.940450px;}
.yc3_c00001{bottom:495.030600px;}
.y6c8_c00001{bottom:495.750450px;}
.y73_c00001{bottom:495.750600px;}
.yb3e_c00001{bottom:495.927840px;}
.y399_c00001{bottom:496.110600px;}
.yc2b_c00001{bottom:496.470450px;}
.yc0d_c00001{bottom:496.560450px;}
.ycb8_c00001{bottom:496.650450px;}
.y3ac_c00001{bottom:496.830450px;}
.y114_c00001{bottom:497.370600px;}
.y54d_c00001{bottom:497.460600px;}
.ya88_c00001{bottom:497.550450px;}
.y499_c00001{bottom:497.730450px;}
.y8c_c00001{bottom:497.820450px;}
.y1ee_c00001{bottom:498.180450px;}
.ya6a_c00001{bottom:498.180600px;}
.yb90_c00001{bottom:498.270450px;}
.y469_c00001{bottom:498.360600px;}
.y2d7_c00001{bottom:498.540450px;}
.ya9_c00001{bottom:498.630450px;}
.y382_c00001{bottom:498.990450px;}
.y425_c00001{bottom:499.260450px;}
.y79d_c00001{bottom:499.350450px;}
.y4f7_c00001{bottom:499.440600px;}
.yae0_c00001{bottom:499.442385px;}
.y8ec_c00001{bottom:499.528164px;}
.y8db_c00001{bottom:499.620450px;}
.yc1c_c00001{bottom:499.620600px;}
.y9b3_c00001{bottom:499.710600px;}
.yc3c_c00001{bottom:499.980450px;}
.yc62_c00001{bottom:500.430600px;}
.y504_c00001{bottom:500.700600px;}
.y66e_c00001{bottom:501.150450px;}
.y659_c00001{bottom:501.690450px;}
.yc79_c00001{bottom:501.780600px;}
.yb6f_c00001{bottom:502.770450px;}
.y9d3_c00001{bottom:502.950450px;}
.ybbd_c00001{bottom:502.950600px;}
.y9e5_c00001{bottom:503.040450px;}
.y50e_c00001{bottom:503.130450px;}
.y289_c00001{bottom:503.220450px;}
.y1be_c00001{bottom:503.400450px;}
.yca6_c00001{bottom:503.490450px;}
.y26e_c00001{bottom:503.580450px;}
.y6f2_c00001{bottom:503.940450px;}
.y78d_c00001{bottom:503.940600px;}
.yb59_c00001{bottom:504.120450px;}
.yde6_c00001{bottom:504.120600px;}
.ya17_c00001{bottom:504.392385px;}
.y42e_c00001{bottom:504.930450px;}
.y30f_c00001{bottom:504.930600px;}
.y7d3_c00001{bottom:505.020600px;}
.y685_c00001{bottom:505.650450px;}
.y238_c00001{bottom:505.740450px;}
.y97d_c00001{bottom:506.370600px;}
.ybe4_c00001{bottom:506.550450px;}
.y3bf_c00001{bottom:506.730450px;}
.y186_c00001{bottom:506.820450px;}
.yb14_c00001{bottom:507.000600px;}
.ya47_c00001{bottom:507.090450px;}
.yc85_c00001{bottom:507.090600px;}
.ya25_c00001{bottom:507.360600px;}
.y5e3_c00001{bottom:507.720450px;}
.yb1d_c00001{bottom:507.898164px;}
.ybb3_c00001{bottom:508.080450px;}
.y355_c00001{bottom:508.260450px;}
.y90d_c00001{bottom:508.349307px;}
.yf9_c00001{bottom:508.350450px;}
.y806_c00001{bottom:508.620600px;}
.yaa9_c00001{bottom:508.800450px;}
.y994_c00001{bottom:509.430450px;}
.ye14_c00001{bottom:509.430600px;}
.yc01_c00001{bottom:509.880450px;}
.yaf2_c00001{bottom:509.970450px;}
.ya2f_c00001{bottom:510.060450px;}
.ye1e_c00001{bottom:510.420450px;}
.y5f8_c00001{bottom:510.870600px;}
.y2fb_c00001{bottom:511.050450px;}
.ydd_c00001{bottom:511.410450px;}
.yc4c_c00001{bottom:511.590450px;}
.yd1f_c00001{bottom:511.590600px;}
.yb81_c00001{bottom:511.680450px;}
.y3e6_c00001{bottom:511.950600px;}
.y64b_c00001{bottom:512.130450px;}
.y325_c00001{bottom:512.220450px;}
.y3d7_c00001{bottom:512.310450px;}
.y6c7_c00001{bottom:512.400450px;}
.y12c_c00001{bottom:512.850450px;}
.y8cc_c00001{bottom:513.030600px;}
.y169_c00001{bottom:513.120450px;}
.y628_c00001{bottom:513.120600px;}
.ycdb_c00001{bottom:513.300450px;}
.y3d5_c00001{bottom:513.480450px;}
.y3d_c00001{bottom:513.660450px;}
.ya79_c00001{bottom:513.930450px;}
.y19d_c00001{bottom:514.020450px;}
.y8ca_c00001{bottom:514.110600px;}
.y19_c00001{bottom:514.200600px;}
.yb2d_c00001{bottom:514.380450px;}
.ybf6_c00001{bottom:514.470450px;}
.y27b_c00001{bottom:514.920450px;}
.y610_c00001{bottom:515.190600px;}
.y9c1_c00001{bottom:515.550450px;}
.y1d7_c00001{bottom:516.360450px;}
.ycf6_c00001{bottom:516.540600px;}
.yba0_c00001{bottom:517.081062px;}
.yb00_c00001{bottom:517.258659px;}
.ycb7_c00001{bottom:517.350450px;}
.y58_c00001{bottom:517.620600px;}
.y538_c00001{bottom:517.800450px;}
.y974_c00001{bottom:517.890450px;}
.ya9a_c00001{bottom:517.982250px;}
.y149_c00001{bottom:518.250450px;}
.yace_c00001{bottom:518.340450px;}
.y1fe_c00001{bottom:518.430450px;}
.y2f6_c00001{bottom:518.520600px;}
.y52d_c00001{bottom:518.880450px;}
.y7e0_c00001{bottom:519.148164px;}
.y79c_c00001{bottom:520.050450px;}
.y7c7_c00001{bottom:520.320450px;}
.ye08_c00001{bottom:520.590600px;}
.y9a8_c00001{bottom:521.220450px;}
.y256_c00001{bottom:521.310450px;}
.ya87_c00001{bottom:521.400450px;}
.y214_c00001{bottom:521.490450px;}
.y398_c00001{bottom:521.580450px;}
.y373_c00001{bottom:521.670450px;}
.y66d_c00001{bottom:521.850450px;}
.yc29_c00001{bottom:521.940600px;}
.ya69_c00001{bottom:522.300450px;}
.y658_c00001{bottom:522.390450px;}
.y299_c00001{bottom:522.480450px;}
.y396_c00001{bottom:522.660450px;}
.y54c_c00001{bottom:523.020600px;}
.y497_c00001{bottom:523.200600px;}
.y737_c00001{bottom:523.470450px;}
.y9d2_c00001{bottom:523.650450px;}
.yadf_c00001{bottom:523.652250px;}
.yc3b_c00001{bottom:523.740450px;}
.y466_c00001{bottom:523.920450px;}
.y9b2_c00001{bottom:524.279955px;}
.yc61_c00001{bottom:524.280600px;}
.y495_c00001{bottom:524.370600px;}
.y37f_c00001{bottom:524.460600px;}
.y6f1_c00001{bottom:524.640450px;}
.y354_c00001{bottom:524.820450px;}
.y54e_c00001{bottom:524.910450px;}
.y71c_c00001{bottom:525.000450px;}
.y464_c00001{bottom:525.000600px;}
.y402_c00001{bottom:525.180600px;}
.y37d_c00001{bottom:525.630450px;}
.yc77_c00001{bottom:525.720450px;}
.yb3d_c00001{bottom:525.898164px;}
.y503_c00001{bottom:526.170450px;}
.y684_c00001{bottom:526.350450px;}
.yc2_c00001{bottom:526.440450px;}
.y4f6_c00001{bottom:526.620450px;}
.y401_c00001{bottom:526.710450px;}
.y72_c00001{bottom:527.160450px;}
.yca5_c00001{bottom:527.520450px;}
.ya46_c00001{bottom:527.790450px;}
.y7c1_c00001{bottom:527.970450px;}
.y50c_c00001{bottom:528.150450px;}
.yb8f_c00001{bottom:528.240450px;}
.ya16_c00001{bottom:528.602250px;}
.y30e_c00001{bottom:528.960450px;}
.y2bb_c00001{bottom:529.050450px;}
.y8b_c00001{bottom:529.230450px;}
.y78c_c00001{bottom:529.410450px;}
.y8eb_c00001{bottom:529.498488px;}
.y8da_c00001{bottom:529.590450px;}
.yd00_c00001{bottom:529.680450px;}
.ya8_c00001{bottom:530.040450px;}
.y993_c00001{bottom:530.130450px;}
.y97c_c00001{bottom:530.490450px;}
.ybe3_c00001{bottom:530.760450px;}
.yc84_c00001{bottom:531.120450px;}
.yb13_c00001{bottom:532.110450px;}
.yc4b_c00001{bottom:532.290450px;}
.yb80_c00001{bottom:532.380450px;}
.ya23_c00001{bottom:532.470450px;}
.y2d6_c00001{bottom:532.920450px;}
.y9e4_c00001{bottom:533.010450px;}
.y5e1_c00001{bottom:533.280450px;}
.y63a_c00001{bottom:533.820450px;}
.ybb1_c00001{bottom:533.910450px;}
.ycda_c00001{bottom:534.000450px;}
.yb58_c00001{bottom:534.090450px;}
.y69c_c00001{bottom:534.180450px;}
.yc97_c00001{bottom:534.270450px;}
.y5df_c00001{bottom:534.360450px;}
.y1bd_c00001{bottom:534.450450px;}
.ya78_c00001{bottom:534.630450px;}
.y5f7_c00001{bottom:534.810450px;}
.y113_c00001{bottom:535.170450px;}
.yaba_c00001{bottom:535.260450px;}
.y3ab_c00001{bottom:535.350450px;}
.ycc8_c00001{bottom:535.530450px;}
.y3e5_c00001{bottom:535.980450px;}
.y3d8_c00001{bottom:536.340450px;}
.yd15_c00001{bottom:536.430450px;}
.y2fa_c00001{bottom:536.520450px;}
.y3be_c00001{bottom:536.700450px;}
.y237_c00001{bottom:536.790450px;}
.y8cd_c00001{bottom:536.970450px;}
.y9f0_c00001{bottom:537.422457px;}
.y3e4_c00001{bottom:537.510450px;}
.y64a_c00001{bottom:537.690450px;}
.yb1c_c00001{bottom:537.958659px;}
.ycb6_c00001{bottom:538.050450px;}
.yb2c_c00001{bottom:538.230450px;}
.y90c_c00001{bottom:538.319631px;}
.ybf5_c00001{bottom:538.320450px;}
.yaa8_c00001{bottom:538.770450px;}
.ya57_c00001{bottom:539.040450px;}
.y60f_c00001{bottom:539.400450px;}
.yaf1_c00001{bottom:539.940450px;}
.ya2e_c00001{bottom:540.030450px;}
.yc00_c00001{bottom:540.390450px;}
.ycf5_c00001{bottom:540.570450px;}
.y79b_c00001{bottom:540.750450px;}
.ybd1_c00001{bottom:541.020450px;}
.yce1_c00001{bottom:541.200450px;}
.y539_c00001{bottom:541.740450px;}
.ya99_c00001{bottom:542.192115px;}
.y2f5_c00001{bottom:542.550450px;}
.ydc_c00001{bottom:542.820450px;}
.y657_c00001{bottom:543.090450px;}
.y973_c00001{bottom:543.360450px;}
.y168_c00001{bottom:544.080450px;}
.yb6e_c00001{bottom:544.170450px;}
.y52c_c00001{bottom:544.350450px;}
.y3c_c00001{bottom:545.070450px;}
.y6f0_c00001{bottom:545.250450px;}
.y9c0_c00001{bottom:545.520450px;}
.y18_c00001{bottom:545.610450px;}
.yc6d_c00001{bottom:545.700450px;}
.yc2a_c00001{bottom:545.970450px;}
.yf8_c00001{bottom:546.150450px;}
.y42d_c00001{bottom:546.330450px;}
.y54b_c00001{bottom:546.960450px;}
.y683_c00001{bottom:547.050450px;}
.yaff_c00001{bottom:547.228983px;}
.y498_c00001{bottom:547.230450px;}
.y1d6_c00001{bottom:547.410450px;}
.yade_c00001{bottom:547.771944px;}
.y467_c00001{bottom:547.860450px;}
.yc3a_c00001{bottom:548.400126px;}
.y8fd_c00001{bottom:548.400450px;}
.y380_c00001{bottom:548.490450px;}
.yc19_c00001{bottom:548.670450px;}
.y424_c00001{bottom:548.760450px;}
.y57_c00001{bottom:549.030450px;}
.y7df_c00001{bottom:549.208659px;}
.y148_c00001{bottom:549.300450px;}
.y2cb_c00001{bottom:549.480450px;}
.y639_c00001{bottom:550.470450px;}
.y372_c00001{bottom:550.560450px;}
.y12b_c00001{bottom:550.650450px;}
.y992_c00001{bottom:550.830450px;}
.y9a7_c00001{bottom:551.190450px;}
.y7c6_c00001{bottom:551.280450px;}
.y501_c00001{bottom:551.640450px;}
.y7d4_c00001{bottom:551.910450px;}
.y185_c00001{bottom:552.000450px;}
.ya68_c00001{bottom:552.270450px;}
.y255_c00001{bottom:552.360450px;}
.y1fd_c00001{bottom:552.540450px;}
.ya15_c00001{bottom:552.721944px;}
.y4ff_c00001{bottom:552.810450px;}
.yc4a_c00001{bottom:552.990450px;}
.y3f3_c00001{bottom:553.080450px;}
.y78b_c00001{bottom:553.440450px;}
.y298_c00001{bottom:553.530450px;}
.y4f5_c00001{bottom:553.710450px;}
.y9b1_c00001{bottom:554.340450px;}
.y30d_c00001{bottom:554.430450px;}
.y3f2_c00001{bottom:554.520450px;}
.ycd9_c00001{bottom:554.700450px;}
.y69b_c00001{bottom:554.880450px;}
.y324_c00001{bottom:555.240450px;}
.ya77_c00001{bottom:555.330450px;}
.y30b_c00001{bottom:555.510450px;}
.yb12_c00001{bottom:555.870450px;}
.yb3c_c00001{bottom:555.958659px;}
.y60e_c00001{bottom:555.960450px;}
.ycc7_c00001{bottom:556.320450px;}
.ya22_c00001{bottom:557.040450px;}
.y5e2_c00001{bottom:557.220450px;}
.ybbc_c00001{bottom:557.760450px;}
.yc1_c00001{bottom:557.850450px;}
.yb8e_c00001{bottom:558.210450px;}
.yd1e_c00001{bottom:558.300450px;}
.y71_c00001{bottom:558.570450px;}
.yd2f_c00001{bottom:558.660450px;}
.ycb5_c00001{bottom:558.750450px;}
.y5f6_c00001{bottom:558.840450px;}
.y8ea_c00001{bottom:559.468812px;}
.y8d9_c00001{bottom:559.650450px;}
.yacd_c00001{bottom:559.740450px;}
.ybb0_c00001{bottom:560.010450px;}
.y2ba_c00001{bottom:560.100450px;}
.y1ed_c00001{bottom:560.280450px;}
.y3d9_c00001{bottom:560.370450px;}
.y97b_c00001{bottom:560.460450px;}
.y8a_c00001{bottom:560.640450px;}
.ybe2_c00001{bottom:560.730450px;}
.y8ce_c00001{bottom:561.000450px;}
.ya7_c00001{bottom:561.450450px;}
.y2f9_c00001{bottom:561.990450px;}
.yc8d_c00001{bottom:562.080450px;}
.yb2b_c00001{bottom:562.350450px;}
.ybf4_c00001{bottom:562.440450px;}
.y786_c00001{bottom:562.890450px;}
.y51d_c00001{bottom:562.980450px;}
.y9e3_c00001{bottom:563.070450px;}
.y648_c00001{bottom:563.160450px;}
.y66c_c00001{bottom:563.250450px;}
.y656_c00001{bottom:563.790450px;}
.y51c_c00001{bottom:564.060450px;}
.yb57_c00001{bottom:564.150450px;}
.y646_c00001{bottom:564.240450px;}
.ycf4_c00001{bottom:564.780450px;}
.yb6d_c00001{bottom:564.870450px;}
.y9d1_c00001{bottom:565.050450px;}
.yab9_c00001{bottom:565.230450px;}
.yb9f_c00001{bottom:565.320450px;}
.y1bc_c00001{bottom:565.500450px;}
.y26d_c00001{bottom:565.680450px;}
.ydf5_c00001{bottom:566.310450px;}
.ya98_c00001{bottom:566.311809px;}
.yc6c_c00001{bottom:566.400450px;}
.y2f4_c00001{bottom:566.490450px;}
.y3bd_c00001{bottom:566.760450px;}
.y42c_c00001{bottom:567.030450px;}
.y2d5_c00001{bottom:567.210450px;}
.y972_c00001{bottom:567.390450px;}
.y682_c00001{bottom:567.750450px;}
.y236_c00001{bottom:567.840450px;}
.yb1b_c00001{bottom:567.928983px;}
.y71b_c00001{bottom:568.020450px;}
.y5d9_c00001{bottom:568.200450px;}
.y90b_c00001{bottom:568.380126px;}
.ya56_c00001{bottom:568.650450px;}
.yaa7_c00001{bottom:568.830450px;}
.ya45_c00001{bottom:569.190450px;}
.y397_c00001{bottom:569.550450px;}
.y52b_c00001{bottom:569.820450px;}
.yaf0_c00001{bottom:569.910450px;}
.ya2d_c00001{bottom:570.000450px;}
.ybd0_c00001{bottom:571.080450px;}
.y6ef_c00001{bottom:571.170450px;}
.y496_c00001{bottom:571.260450px;}
.y52a_c00001{bottom:571.350450px;}
.y991_c00001{bottom:571.530450px;}
.y468_c00001{bottom:571.890450px;}
.yadd_c00001{bottom:571.891638px;}
.y381_c00001{bottom:572.520450px;}
.y112_c00001{bottom:572.970450px;}
.y54a_c00001{bottom:573.150450px;}
.yc49_c00001{bottom:573.690450px;}
.yb7f_c00001{bottom:573.780450px;}
.y3aa_c00001{bottom:573.870450px;}
.ydb_c00001{bottom:574.230450px;}
.y423_c00001{bottom:574.320450px;}
.y371_c00001{bottom:574.500450px;}
.yc75_c00001{bottom:574.680450px;}
.y736_c00001{bottom:574.950450px;}
.ycd8_c00001{bottom:575.310450px;}
.y69a_c00001{bottom:575.580450px;}
.y502_c00001{bottom:575.670450px;}
.y50b_c00001{bottom:576.030450px;}
.y3ff_c00001{bottom:576.210450px;}
.y3b_c00001{bottom:576.480450px;}
.ya14_c00001{bottom:576.841638px;}
.y17_c00001{bottom:577.020450px;}
.yafe_c00001{bottom:577.199307px;}
.yf7_c00001{bottom:577.200450px;}
.y3fd_c00001{bottom:577.290450px;}
.y167_c00001{bottom:578.010450px;}
.yc39_c00001{bottom:578.370450px;}
.y1d5_c00001{bottom:578.460450px;}
.y3f1_c00001{bottom:578.550450px;}
.y78a_c00001{bottom:578.910450px;}
.y7c0_c00001{bottom:579.000450px;}
.y7de_c00001{bottom:579.178983px;}
.y4f4_c00001{bottom:579.270450px;}
.ycb4_c00001{bottom:579.450450px;}
.yb11_c00001{bottom:580.080450px;}
.y147_c00001{bottom:580.350450px;}
.y56_c00001{bottom:580.440450px;}
.y537_c00001{bottom:580.800450px;}
.y9a6_c00001{bottom:581.160450px;}
.y5e0_c00001{bottom:581.250450px;}
.ya00_c00001{bottom:581.610450px;}
.y79a_c00001{bottom:582.060450px;}
.y7c5_c00001{bottom:582.330450px;}
.y19c_c00001{bottom:582.510450px;}
.y5f5_c00001{bottom:583.050450px;}
.y254_c00001{bottom:583.320450px;}
.y253_c00001{bottom:583.320990px;}
.y2b1_c00001{bottom:583.410450px;}
.y1fc_c00001{bottom:583.590450px;}
.y66b_c00001{bottom:583.950450px;}
.y3d6_c00001{bottom:584.310450px;}
.y655_c00001{bottom:584.490450px;}
.y297_c00001{bottom:584.580450px;}
.y71a_c00001{bottom:584.670450px;}
.y8cb_c00001{bottom:585.030450px;}
.ycf3_c00001{bottom:585.480450px;}
.yb6c_c00001{bottom:585.570450px;}
.y9ef_c00001{bottom:585.661845px;}
.y9d0_c00001{bottom:585.750450px;}
.yb3b_c00001{bottom:585.928983px;}
.yc8c_c00001{bottom:585.930450px;}
.y323_c00001{bottom:586.380450px;}
.y785_c00001{bottom:586.920450px;}
.y3e2_c00001{bottom:587.010450px;}
.y649_c00001{bottom:587.190450px;}
.y2f8_c00001{bottom:587.550450px;}
.y42b_c00001{bottom:587.730450px;}
.y3e0_c00001{bottom:588.090450px;}
.yb8d_c00001{bottom:588.270450px;}
.y12a_c00001{bottom:588.450450px;}
.yce0_c00001{bottom:589.440450px;}
.y8e9_c00001{bottom:589.529307px;}
.y8d8_c00001{bottom:589.620450px;}
.ya44_c00001{bottom:589.890450px;}
.y70_c00001{bottom:589.980450px;}
.ya97_c00001{bottom:590.431503px;}
.y2f3_c00001{bottom:590.520450px;}
.ybe1_c00001{bottom:590.700450px;}
.yc0_c00001{bottom:591.330450px;}
.y89_c00001{bottom:592.050450px;}
.y990_c00001{bottom:592.230450px;}
.yb2a_c00001{bottom:592.320450px;}
.y184_c00001{bottom:592.410450px;}
.y971_c00001{bottom:592.860450px;}
.ya6_c00001{bottom:592.950450px;}
.y9e2_c00001{bottom:593.040450px;}
.y5d8_c00001{bottom:593.760450px;}
.yb56_c00001{bottom:594.120450px;}
.yc48_c00001{bottom:594.390450px;}
.yb7e_c00001{bottom:594.480450px;}
.y395_c00001{bottom:594.660450px;}
.yc28_c00001{bottom:595.020450px;}
.yab8_c00001{bottom:595.200450px;}
.y529_c00001{bottom:595.380450px;}
.y465_c00001{bottom:595.920450px;}
.ycd7_c00001{bottom:596.010450px;}
.yadc_c00001{bottom:596.101503px;}
.y494_c00001{bottom:596.280450px;}
.yc6b_c00001{bottom:596.370450px;}
.y37e_c00001{bottom:596.460450px;}
.y1bb_c00001{bottom:596.550450px;}
.y26c_c00001{bottom:596.730450px;}
.ycff_c00001{bottom:596.910450px;}
.yc18_c00001{bottom:597.090450px;}
.ycc6_c00001{bottom:597.720450px;}
.yb1a_c00001{bottom:597.899307px;}
.y90a_c00001{bottom:598.350450px;}
.ya55_c00001{bottom:598.620450px;}
.yaa6_c00001{bottom:598.800450px;}
.y235_c00001{bottom:598.890450px;}
.y735_c00001{bottom:598.980450px;}
.y549_c00001{bottom:599.340450px;}
.y500_c00001{bottom:599.700450px;}
.yaef_c00001{bottom:599.970450px;}
.y36f_c00001{bottom:600.060450px;}
.y400_c00001{bottom:600.150450px;}
.y422_c00001{bottom:600.420450px;}
.y548_c00001{bottom:600.870450px;}
.ybcf_c00001{bottom:601.050450px;}
.ya13_c00001{bottom:601.051503px;}
.y36d_c00001{bottom:601.140450px;}
.y2d4_c00001{bottom:601.590450px;}
.y8ab_c00001{bottom:601.680450px;}
.y30c_c00001{bottom:602.400450px;}
.y799_c00001{bottom:602.760450px;}
.ye12_c00001{bottom:603.120450px;}
.y5f4_c00001{bottom:603.750450px;}
.y3ee_c00001{bottom:604.020450px;}
.y7bf_c00001{bottom:604.470450px;}
.y66a_c00001{bottom:604.560450px;}
.y4f3_c00001{bottom:604.740450px;}
.y3ec_c00001{bottom:605.190450px;}
.y789_c00001{bottom:605.370450px;}
.y9bf_c00001{bottom:605.550450px;}
.yda_c00001{bottom:605.640450px;}
.y4f0_c00001{bottom:605.820450px;}
.ycf2_c00001{bottom:606.180450px;}
.yb6b_c00001{bottom:606.270450px;}
.y5de_c00001{bottom:606.360450px;}
.yafd_c00001{bottom:607.259802px;}
.ydf4_c00001{bottom:607.710450px;}
.y3a_c00001{bottom:607.890450px;}
.yd14_c00001{bottom:608.250450px;}
.y42a_c00001{bottom:608.430450px;}
.y16_c00001{bottom:608.520450px;}
.y166_c00001{bottom:609.060450px;}
.y7dd_c00001{bottom:609.149307px;}
.y3d4_c00001{bottom:609.420450px;}
.y2c8_c00001{bottom:609.510450px;}
.y8c9_c00001{bottom:610.050450px;}
.ya43_c00001{bottom:610.590450px;}
.y784_c00001{bottom:610.860450px;}
.y3e3_c00001{bottom:610.950450px;}
.y647_c00001{bottom:611.130450px;}
.y9a5_c00001{bottom:611.220450px;}
.y146_c00001{bottom:611.309388px;}
.yb9e_c00001{bottom:611.310450px;}
.y1d4_c00001{bottom:611.580450px;}
.y9ff_c00001{bottom:611.670450px;}
.y55_c00001{bottom:611.850450px;}
.ya67_c00001{bottom:612.300450px;}
.y3a9_c00001{bottom:612.390450px;}
.y536_c00001{bottom:612.660450px;}
.y111_c00001{bottom:612.840450px;}
.y98f_c00001{bottom:612.930450px;}
.y2f7_c00001{bottom:613.020450px;}
.yb4d_c00001{bottom:613.470450px;}
.y19b_c00001{bottom:613.560450px;}
.y2b0_c00001{bottom:614.460450px;}
.y2f2_c00001{bottom:614.550450px;}
.ya96_c00001{bottom:614.551197px;}
.y1fb_c00001{bottom:614.640450px;}
.y7c4_c00001{bottom:614.730450px;}
.yf6_c00001{bottom:615.000450px;}
.yc47_c00001{bottom:615.090450px;}
.yb7d_c00001{bottom:615.180450px;}
.y296_c00001{bottom:615.630450px;}
.yb3a_c00001{bottom:615.899307px;}
.ycd6_c00001{bottom:616.710450px;}
.y699_c00001{bottom:616.980450px;}
.y252_c00001{bottom:617.250450px;}
.y322_c00001{bottom:617.430450px;}
.y5d7_c00001{bottom:617.700450px;}
.y50a_c00001{bottom:617.970450px;}
.yb8c_c00001{bottom:618.240450px;}
.y970_c00001{bottom:618.330450px;}
.ycc5_c00001{bottom:618.420450px;}
.y394_c00001{bottom:618.510450px;}
.yc27_c00001{bottom:619.230450px;}
.y8e8_c00001{bottom:619.499631px;}
.y8d7_c00001{bottom:619.590450px;}
.y493_c00001{bottom:620.130450px;}
.yadb_c00001{bottom:620.221197px;}
.y97a_c00001{bottom:620.490450px;}
.ybe0_c00001{bottom:620.760450px;}
.y528_c00001{bottom:620.850450px;}
.y463_c00001{bottom:620.940450px;}
.y6f_c00001{bottom:621.390450px;}
.y37c_c00001{bottom:621.570450px;}
.yacc_c00001{bottom:621.840450px;}
.y525_c00001{bottom:621.930450px;}
.y1ec_c00001{bottom:622.380450px;}
.ybf3_c00001{bottom:622.470450px;}
.y3bc_c00001{bottom:622.650450px;}
.y9e1_c00001{bottom:623.010450px;}
.y88_c00001{bottom:623.460450px;}
.y370_c00001{bottom:624.000450px;}
.yb55_c00001{bottom:624.090450px;}
.y3fe_c00001{bottom:624.180450px;}
.ya5_c00001{bottom:624.360450px;}
.y5f3_c00001{bottom:624.450450px;}
.y4fe_c00001{bottom:624.720450px;}
.y547_c00001{bottom:624.810450px;}
.y734_c00001{bottom:624.900450px;}
.y7d2_c00001{bottom:625.080450px;}
.ya12_c00001{bottom:625.171197px;}
.y669_c00001{bottom:625.260450px;}
.yc96_c00001{bottom:625.800450px;}
.y654_c00001{bottom:625.890450px;}
.y421_c00001{bottom:625.980450px;}
.y129_c00001{bottom:626.250450px;}
.yc6a_c00001{bottom:626.340450px;}
.yc83_c00001{bottom:626.700450px;}
.ycf1_c00001{bottom:626.880450px;}
.yb6a_c00001{bottom:626.970450px;}
.y9cf_c00001{bottom:627.060450px;}
.y8aa_c00001{bottom:627.150450px;}
.y30a_c00001{bottom:627.510450px;}
.y1ba_c00001{bottom:627.600450px;}
.yb19_c00001{bottom:627.959802px;}
.y3ef_c00001{bottom:628.050450px;}
.ydf3_c00001{bottom:628.410450px;}
.ya54_c00001{bottom:628.590450px;}
.y4f2_c00001{bottom:628.770450px;}
.y429_c00001{bottom:629.130450px;}
.y234_c00001{bottom:629.940450px;}
.y7be_c00001{bottom:630.030450px;}
.y5dd_c00001{bottom:630.210450px;}
.ybce_c00001{bottom:631.020450px;}
.ya42_c00001{bottom:631.290450px;}
.y788_c00001{bottom:631.920450px;}
.ybff_c00001{bottom:632.010450px;}
.yd13_c00001{bottom:632.460450px;}
.ye11_c00001{bottom:633.180450px;}
.y3d3_c00001{bottom:633.270450px;}
.y698_c00001{bottom:633.540450px;}
.y98e_c00001{bottom:633.630450px;}
.y8c8_c00001{bottom:633.900450px;}
.y9ee_c00001{bottom:633.901233px;}
.ybf_c00001{bottom:634.260450px;}
.y783_c00001{bottom:634.890450px;}
.y3e1_c00001{bottom:634.980450px;}
.y9be_c00001{bottom:635.520450px;}
.yc46_c00001{bottom:635.790450px;}
.yb7c_c00001{bottom:635.880450px;}
.y2d3_c00001{bottom:635.970450px;}
.y51b_c00001{bottom:636.060450px;}
.y645_c00001{bottom:636.240450px;}
.yafc_c00001{bottom:637.230126px;}
.ycd5_c00001{bottom:637.410450px;}
.yc38_c00001{bottom:637.950450px;}
.ya76_c00001{bottom:638.130450px;}
.y2f1_c00001{bottom:638.490450px;}
.ya95_c00001{bottom:638.761062px;}
.yd9_c00001{bottom:639.120450px;}
.y7dc_c00001{bottom:639.209802px;}
.y39_c00001{bottom:639.300450px;}
.ye1d_c00001{bottom:639.570450px;}
.y15_c00001{bottom:639.930450px;}
.yb10_c00001{bottom:640.020450px;}
.y165_c00001{bottom:640.110450px;}
.y2c7_c00001{bottom:640.560450px;}
.y9a4_c00001{bottom:641.190450px;}
.ycb3_c00001{bottom:641.460450px;}
.y7d1_c00001{bottom:641.640450px;}
.ya66_c00001{bottom:642.270450px;}
.y393_c00001{bottom:642.450450px;}
.yacb_c00001{bottom:642.540450px;}
.y54_c00001{bottom:643.260450px;}
.yb4c_c00001{bottom:643.440450px;}
.yb69_c00001{bottom:643.620450px;}
.y110_c00001{bottom:643.890450px;}
.y798_c00001{bottom:644.160450px;}
.y492_c00001{bottom:644.340450px;}
.yada_c00001{bottom:644.340891px;}
.yca4_c00001{bottom:644.520450px;}
.y462_c00001{bottom:644.790450px;}
.y527_c00001{bottom:644.880450px;}
.y5f2_c00001{bottom:645.060450px;}
.y37b_c00001{bottom:645.420450px;}
.y2af_c00001{bottom:645.510450px;}
.y1d3_c00001{bottom:645.690450px;}
.yb39_c00001{bottom:645.959802px;}
.y668_c00001{bottom:645.960450px;}
.y653_c00001{bottom:646.590450px;}
.y19a_c00001{bottom:646.680450px;}
.ycf0_c00001{bottom:647.580450px;}
.yc17_c00001{bottom:647.759820px;}
.y9ce_c00001{bottom:647.760450px;}
.y535_c00001{bottom:648.120450px;}
.yb8b_c00001{bottom:648.210450px;}
.y251_c00001{bottom:648.300450px;}
.y36e_c00001{bottom:648.390450px;}
.y4fd_c00001{bottom:648.570450px;}
.y3fc_c00001{bottom:649.290450px;}
.ya11_c00001{bottom:649.290891px;}
.y8e7_c00001{bottom:649.469955px;}
.y8d6_c00001{bottom:649.650450px;}
.y428_c00001{bottom:649.830450px;}
.y546_c00001{bottom:650.370450px;}
.y979_c00001{bottom:650.460450px;}
.ybdf_c00001{bottom:650.730450px;}
.y733_c00001{bottom:650.820450px;}
.y3a8_c00001{bottom:651.000450px;}
.y8a9_c00001{bottom:651.180450px;}
.y309_c00001{bottom:651.360450px;}
.y543_c00001{bottom:651.450450px;}
.ya41_c00001{bottom:651.990450px;}
.y3f0_c00001{bottom:652.080450px;}
.y420_c00001{bottom:652.170450px;}
.y6e_c00001{bottom:652.440450px;}
.y4f1_c00001{bottom:652.710450px;}
.yf5_c00001{bottom:652.800450px;}
.y9e0_c00001{bottom:653.070450px;}
.yd12_c00001{bottom:653.160450px;}
.y1eb_c00001{bottom:653.430450px;}
.yb54_c00001{bottom:654.150450px;}
.y5dc_c00001{bottom:654.240450px;}
.y98d_c00001{bottom:654.330450px;}
.y183_c00001{bottom:654.510450px;}
.y87_c00001{bottom:654.870450px;}
.yab7_c00001{bottom:655.230450px;}
.y7bd_c00001{bottom:655.500450px;}
.ya4_c00001{bottom:655.770450px;}
.yc69_c00001{bottom:656.400450px;}
.y509_c00001{bottom:656.490450px;}
.yb7b_c00001{bottom:656.580450px;}
.yc82_c00001{bottom:656.760450px;}
.ycfe_c00001{bottom:656.940450px;}
.y145_c00001{bottom:657.120450px;}
.y321_c00001{bottom:657.210450px;}
.y787_c00001{bottom:657.390450px;}
.y3d2_c00001{bottom:657.480450px;}
.yb18_c00001{bottom:657.930126px;}
.y8c7_c00001{bottom:657.930450px;}
.ycd4_c00001{bottom:658.110450px;}
.y295_c00001{bottom:658.560450px;}
.y1b9_c00001{bottom:658.650450px;}
.ya75_c00001{bottom:658.830450px;}
.y782_c00001{bottom:658.920450px;}
.y5d6_c00001{bottom:659.550450px;}
.ycc4_c00001{bottom:659.820450px;}
.y51a_c00001{bottom:659.910450px;}
.ya2c_c00001{bottom:660.000450px;}
.y3df_c00001{bottom:660.090450px;}
.y233_c00001{bottom:660.990450px;}
.ybcd_c00001{bottom:661.080450px;}
.ycb2_c00001{bottom:662.160450px;}
.ya94_c00001{bottom:662.880756px;}
.yb9d_c00001{bottom:663.150450px;}
.yaca_c00001{bottom:663.240450px;}
.y128_c00001{bottom:664.050450px;}
.y797_c00001{bottom:664.860450px;}
.y491_c00001{bottom:664.950450px;}
.y2ee_c00001{bottom:665.130450px;}
.y9bd_c00001{bottom:665.580450px;}
.y5f1_c00001{bottom:665.760450px;}
.y392_c00001{bottom:666.660450px;}
.y87f_c00001{bottom:666.930450px;}
.ye07_c00001{bottom:667.020450px;}
.yafb_c00001{bottom:667.200450px;}
.y652_c00001{bottom:667.290450px;}
.y9fe_c00001{bottom:667.560450px;}
.yc37_c00001{bottom:667.920450px;}
.ycef_c00001{bottom:668.280450px;}
.y9cd_c00001{bottom:668.460450px;}
.yad9_c00001{bottom:668.550756px;}
.y526_c00001{bottom:668.820450px;}
.y461_c00001{bottom:669.000450px;}
.y7db_c00001{bottom:669.180126px;}
.y37a_c00001{bottom:669.360450px;}
.yb0f_c00001{bottom:670.080450px;}
.y2d2_c00001{bottom:670.260450px;}
.y427_c00001{bottom:670.530450px;}
.y38_c00001{bottom:670.710450px;}
.y164_c00001{bottom:671.070450px;}
.y9a3_c00001{bottom:671.160450px;}
.y14_c00001{bottom:671.340450px;}
.ya65_c00001{bottom:672.330450px;}
.ya40_c00001{bottom:672.690450px;}
.y4fc_c00001{bottom:672.780450px;}
.y3fb_c00001{bottom:673.050450px;}
.yb4b_c00001{bottom:673.410450px;}
.y36c_c00001{bottom:673.500450px;}
.ya10_c00001{bottom:673.500756px;}
.y2c6_c00001{bottom:673.680450px;}
.yd11_c00001{bottom:673.860450px;}
.y545_c00001{bottom:674.310450px;}
.yca3_c00001{bottom:674.580450px;}
.y53_c00001{bottom:674.670450px;}
.y4d0_c00001{bottom:674.940450px;}
.y98c_c00001{bottom:675.030450px;}
.y308_c00001{bottom:675.300450px;}
.y534_c00001{bottom:675.660450px;}
.yb38_c00001{bottom:675.930126px;}
.y3ed_c00001{bottom:676.020450px;}
.y5a4_c00001{bottom:676.110450px;}
.y732_c00001{bottom:676.380450px;}
.yd8_c00001{bottom:676.560450px;}
.y8a8_c00001{bottom:676.650450px;}
.y1d2_c00001{bottom:676.740450px;}
.yc45_c00001{bottom:677.190450px;}
.yb7a_c00001{bottom:677.280450px;}
.ybe_c00001{bottom:677.370450px;}
.ybbb_c00001{bottom:677.730450px;}
.y4ef_c00001{bottom:677.820450px;}
.y41f_c00001{bottom:678.270450px;}
.y5db_c00001{bottom:678.450450px;}
.ycd3_c00001{bottom:678.810450px;}
.y92b_c00001{bottom:678.900450px;}
.y482_c00001{bottom:679.080450px;}
.y250_c00001{bottom:679.350450px;}
.y8e6_c00001{bottom:679.530450px;}
.y8d5_c00001{bottom:679.620450px;}
.y5bf_c00001{bottom:680.520450px;}
.ybde_c00001{bottom:680.700450px;}
.y7bc_c00001{bottom:680.970450px;}
.y10f_c00001{bottom:681.240450px;}
.y9ed_c00001{bottom:682.050450px;}
.ybf2_c00001{bottom:682.410450px;}
.y8c6_c00001{bottom:682.500126px;}
.y781_c00001{bottom:682.860450px;}
.y9df_c00001{bottom:683.040450px;}
.y199_c00001{bottom:683.760450px;}
.y6d_c00001{bottom:683.850450px;}
.yac9_c00001{bottom:683.940450px;}
.yb53_c00001{bottom:684.120450px;}
.y1ea_c00001{bottom:684.480450px;}
.yaa5_c00001{bottom:684.750450px;}
.y8b6_c00001{bottom:684.930450px;}
.yab6_c00001{bottom:685.200450px;}
.y182_c00001{bottom:685.560450px;}
.yc95_c00001{bottom:685.740450px;}
.yaee_c00001{bottom:685.920450px;}
.y86_c00001{bottom:686.370450px;}
.y5f0_c00001{bottom:686.460450px;}
.y2b9_c00001{bottom:686.640450px;}
.yc81_c00001{bottom:686.730450px;}
.ycfd_c00001{bottom:686.910450px;}
.ya93_c00001{bottom:687.000450px;}
.ya3_c00001{bottom:687.180450px;}
.y391_c00001{bottom:687.360450px;}
.y508_c00001{bottom:687.630450px;}
.ye06_c00001{bottom:687.810450px;}
.yb17_c00001{bottom:687.900450px;}
.y2ef_c00001{bottom:687.990450px;}
.ya53_c00001{bottom:688.620450px;}
.ycee_c00001{bottom:688.980450px;}
.y9cc_c00001{bottom:689.160450px;}
.ya3f_c00001{bottom:689.250450px;}
.y3a7_c00001{bottom:689.520450px;}
.y1b8_c00001{bottom:689.700450px;}
.y7c3_c00001{bottom:689.970450px;}
.ya2b_c00001{bottom:690.060450px;}
.y144_c00001{bottom:690.330450px;}
.y426_c00001{bottom:691.230450px;}
.y9bc_c00001{bottom:691.500450px;}
.y232_c00001{bottom:692.040450px;}
.yf4_c00001{bottom:692.670450px;}
.yb9c_c00001{bottom:693.120450px;}
.y87e_c00001{bottom:693.210450px;}
.y4fb_c00001{bottom:693.480450px;}
.yc44_c00001{bottom:693.750450px;}
.y524_c00001{bottom:693.930450px;}
.ybfe_c00001{bottom:694.110450px;}
.yd10_c00001{bottom:694.560450px;}
.y96e_c00001{bottom:694.830450px;}
.yb8a_c00001{bottom:694.920450px;}
.y490_c00001{bottom:695.010450px;}
.y5da_c00001{bottom:695.100450px;}
.y98b_c00001{bottom:695.730450px;}
.y3d1_c00001{bottom:695.910450px;}
.y96c_c00001{bottom:696.000450px;}
.y4be_c00001{bottom:696.270450px;}
.y533_c00001{bottom:696.360450px;}
.yafa_c00001{bottom:696.810450px;}
.y3fa_c00001{bottom:697.080450px;}
.y978_c00001{bottom:697.170450px;}
.ya0f_c00001{bottom:697.620450px;}
.yb79_c00001{bottom:697.980450px;}
.y36b_c00001{bottom:698.070450px;}
.ya64_c00001{bottom:698.250450px;}
.y544_c00001{bottom:698.340450px;}
.y7da_c00001{bottom:699.150450px;}
.yb4a_c00001{bottom:699.420450px;}
.y5d5_c00001{bottom:699.690450px;}
.ya74_c00001{bottom:700.230450px;}
.y731_c00001{bottom:700.320450px;}
.y4cf_c00001{bottom:700.410450px;}
.yac8_c00001{bottom:700.500450px;}
.y3eb_c00001{bottom:701.130450px;}
.y5a3_c00001{bottom:701.580450px;}
.y127_c00001{bottom:701.850450px;}
.y4ee_c00001{bottom:702.120450px;}
.y37_c00001{bottom:702.210450px;}
.y44d_c00001{bottom:702.570450px;}
.y13_c00001{bottom:702.750450px;}
.y8a7_c00001{bottom:703.020450px;}
.ycb1_c00001{bottom:703.560450px;}
.y41e_c00001{bottom:703.830450px;}
.ye05_c00001{bottom:704.370450px;}
.y92a_c00001{bottom:704.460450px;}
.y2d1_c00001{bottom:704.640450px;}
.y163_c00001{bottom:705.000450px;}
.y8d4_c00001{bottom:705.540450px;}
.y9ec_c00001{bottom:705.810450px;}
.yb37_c00001{bottom:705.900450px;}
.y52_c00001{bottom:706.170450px;}
.y7c2_c00001{bottom:706.620450px;}
.y7bb_c00001{bottom:706.800450px;}
.y5ef_c00001{bottom:707.160450px;}
.y5be_c00001{bottom:707.250450px;}
.y27a_c00001{bottom:707.610450px;}
.ybba_c00001{bottom:707.700450px;}
.yd7_c00001{bottom:707.790450px;}
.y390_c00001{bottom:708.060450px;}
.y77e_c00001{bottom:708.420450px;}
.y651_c00001{bottom:708.690450px;}
.y9de_c00001{bottom:709.050450px;}
.y481_c00001{bottom:709.500450px;}
.y9cb_c00001{bottom:709.860450px;}
.y4fa_c00001{bottom:710.040450px;}
.y24f_c00001{bottom:710.400450px;}
.yab5_c00001{bottom:711.120450px;}
.y507_c00001{bottom:711.750450px;}
.y2f0_c00001{bottom:712.020450px;}
.y98a_c00001{bottom:712.290450px;}
.y8c5_c00001{bottom:712.470450px;}
.ycfc_c00001{bottom:712.920450px;}
.yaf9_c00001{bottom:713.370450px;}
.ya52_c00001{bottom:714.540450px;}
.ybfd_c00001{bottom:714.810450px;}
.y6c_c00001{bottom:715.260450px;}
.y1e9_c00001{bottom:715.530450px;}
.yc94_c00001{bottom:715.800450px;}
.y181_c00001{bottom:716.610450px;}
.yc80_c00001{bottom:716.700450px;}
.ya73_c00001{bottom:716.790450px;}
.y532_c00001{bottom:717.060450px;}
.ya0e_c00001{bottom:717.240450px;}
.y85_c00001{bottom:717.780450px;}
.y10e_c00001{bottom:718.680450px;}
.y87d_c00001{bottom:718.770450px;}
.y96f_c00001{bottom:718.860450px;}
.yb9b_c00001{bottom:719.040450px;}
.y379_c00001{bottom:719.940450px;}
.ycb0_c00001{bottom:720.120450px;}
.ybd_c00001{bottom:720.390450px;}
.ya2_c00001{bottom:720.660450px;}
.y1b7_c00001{bottom:720.750450px;}
.y26b_c00001{bottom:720.930450px;}
.y3f9_c00001{bottom:721.110450px;}
.y4bd_c00001{bottom:721.740450px;}
.y4ed_c00001{bottom:722.190450px;}
.y36a_c00001{bottom:722.280450px;}
.y542_c00001{bottom:722.370450px;}
.y231_c00001{bottom:723.090450px;}
.yc16_c00001{bottom:723.540450px;}
.y143_c00001{bottom:724.440450px;}
.y38f_c00001{bottom:724.620450px;}
.y3ea_c00001{bottom:724.980450px;}
.y650_c00001{bottom:725.250450px;}
.y890_c00001{bottom:726.060450px;}
.y730_c00001{bottom:726.330450px;}
.y9ca_c00001{bottom:726.420450px;}
.y198_c00001{bottom:726.780450px;}
.y3d0_c00001{bottom:726.960450px;}
.y5a2_c00001{bottom:727.050450px;}
.y952_c00001{bottom:727.680450px;}
.y41d_c00001{bottom:727.770450px;}
.y5ee_c00001{bottom:727.860450px;}
.y3a6_c00001{bottom:728.130450px;}
.y58b_c00001{bottom:728.490450px;}
.y72e_c00001{bottom:729.300450px;}
.y929_c00001{bottom:729.930450px;}
.yf3_c00001{bottom:730.020450px;}
.y8a6_c00001{bottom:730.830450px;}
.y460_c00001{bottom:731.100450px;}
.yb36_c00001{bottom:731.370450px;}
.y77f_c00001{bottom:732.360450px;}
.y7ba_c00001{bottom:732.630450px;}
.y531_c00001{bottom:733.620450px;}
.y5bd_c00001{bottom:734.070450px;}
.y12_c00001{bottom:734.160450px;}
.y480_c00001{bottom:734.970450px;}
.y36_c00001{bottom:735.690450px;}
.y8b5_c00001{bottom:735.960450px;}
.y162_c00001{bottom:736.050450px;}
.y51_c00001{bottom:737.580450px;}
.y2ae_c00001{bottom:738.660450px;}
.y1d1_c00001{bottom:738.840450px;}
.y2d0_c00001{bottom:738.930450px;}
.yd6_c00001{bottom:739.200450px;}
.y126_c00001{bottom:739.650450px;}
.yc93_c00001{bottom:741.720450px;}
.y523_c00001{bottom:741.990450px;}
.y8c4_c00001{bottom:742.080450px;}
.yc7f_c00001{bottom:742.620450px;}
.y96d_c00001{bottom:742.890450px;}
.y369_c00001{bottom:742.980450px;}
.y746_c00001{bottom:743.520450px;}
.y24e_c00001{bottom:743.790450px;}
.y87c_c00001{bottom:744.240450px;}
.y3f8_c00001{bottom:745.050450px;}
.y4bc_c00001{bottom:745.770450px;}
.y1e8_c00001{bottom:746.580450px;}
.y6b_c00001{bottom:746.760450px;}
.y541_c00001{bottom:747.210450px;}
.y180_c00001{bottom:747.660450px;}
.yd4f_c00001{bottom:747.930450px;}
.y5ed_c00001{bottom:748.560450px;}
.y33c_c00001{bottom:748.830450px;}
.y84_c00001{bottom:749.190450px;}
.y81c_c00001{bottom:750.450450px;}
.y3cf_c00001{bottom:751.170450px;}
.y88f_c00001{bottom:751.530450px;}
.y288_c00001{bottom:751.620450px;}
.ybc_c00001{bottom:751.710450px;}
.y1b6_c00001{bottom:751.800450px;}
.y3a5_c00001{bottom:752.250450px;}
.y5a1_c00001{bottom:752.610450px;}
.y72d_c00001{bottom:753.330450px;}
.y44c_c00001{bottom:753.600450px;}
.y928_c00001{bottom:753.960450px;}
.y230_c00001{bottom:754.140450px;}
.y5d4_c00001{bottom:754.500450px;}
.y8a5_c00001{bottom:754.770450px;}
.y48f_c00001{bottom:754.950450px;}
.y58a_c00001{bottom:755.220450px;}
.y142_c00001{bottom:755.490450px;}
.y10d_c00001{bottom:756.300450px;}
.y780_c00001{bottom:756.390450px;}
.y95c_c00001{bottom:757.470450px;}
.y197_c00001{bottom:757.920450px;}
.y7b9_c00001{bottom:758.100450px;}
.ya1_c00001{bottom:758.100600px;}
.y378_c00001{bottom:758.460450px;}
.y47f_c00001{bottom:759.000450px;}
.y368_c00001{bottom:759.540450px;}
.y5bc_c00001{bottom:759.720450px;}
.y2ed_c00001{bottom:761.070450px;}
.y4ce_c00001{bottom:761.250450px;}
.y8b4_c00001{bottom:761.430450px;}
.y849_c00001{bottom:761.880450px;}
.y522_c00001{bottom:762.690450px;}
.y3f7_c00001{bottom:765.120450px;}
.y11_c00001{bottom:765.570450px;}
.y3e9_c00001{bottom:765.750450px;}
.y161_c00001{bottom:767.100450px;}
.yf2_c00001{bottom:767.640450px;}
.y96b_c00001{bottom:767.910450px;}
.y87b_c00001{bottom:768.270450px;}
.yd9e_c00001{bottom:768.360600px;}
.y50_c00001{bottom:768.990450px;}
.y2ad_c00001{bottom:769.710450px;}
.y1d0_c00001{bottom:769.890450px;}
.y745_c00001{bottom:770.250450px;}
.yd7c_c00001{bottom:770.430450px;}
.yd5_c00001{bottom:770.610600px;}
.y4bb_c00001{bottom:771.240450px;}
.y8c3_c00001{bottom:772.050450px;}
.y45f_c00001{bottom:772.500450px;}
.yd4e_c00001{bottom:773.400450px;}
.y93c_c00001{bottom:773.580450px;}
.y72f_c00001{bottom:775.830450px;}
.y2cf_c00001{bottom:776.280450px;}
.y88e_c00001{bottom:777.090450px;}
.y41c_c00001{bottom:777.270450px;}
.yd3c_c00001{bottom:777.360600px;}
.y125_c00001{bottom:777.450450px;}
.y1e7_c00001{bottom:777.630450px;}
.y33b_c00001{bottom:777.720450px;}
.y927_c00001{bottom:777.900450px;}
.y5a0_c00001{bottom:778.080450px;}
.y6a_c00001{bottom:778.170450px;}
.y5d3_c00001{bottom:778.440450px;}
.y35_c00001{bottom:778.620450px;}
.y17f_c00001{bottom:778.710450px;}
.y44b_c00001{bottom:779.070450px;}
.y521_c00001{bottom:779.250450px;}
.yd6e_c00001{bottom:779.790600px;}
.y8a3_c00001{bottom:780.330450px;}
.y77d_c00001{bottom:780.420450px;}
.y83_c00001{bottom:780.600450px;}
.y589_c00001{bottom:780.780450px;}
.y81b_c00001{bottom:780.960450px;}
.y8a1_c00001{bottom:781.410450px;}
.y287_c00001{bottom:782.670450px;}
.y1b5_c00001{bottom:782.850450px;}
.y95b_c00001{bottom:783.030450px;}
.ybb_c00001{bottom:783.120450px;}
.y7b8_c00001{bottom:783.930450px;}
.y47e_c00001{bottom:784.470450px;}
.y2ec_c00001{bottom:784.920450px;}
.y48e_c00001{bottom:785.010450px;}
.y22f_c00001{bottom:785.190450px;}
.y141_c00001{bottom:786.450450px;}
.y4cd_c00001{bottom:786.720450px;}
.y8b3_c00001{bottom:786.900450px;}
.y848_c00001{bottom:787.350450px;}
.yd56_c00001{bottom:787.530450px;}
.y196_c00001{bottom:788.970450px;}
.y96a_c00001{bottom:791.760450px;}
.y45e_c00001{bottom:793.200450px;}
.y10c_c00001{bottom:794.100450px;}
.yd5c_c00001{bottom:794.460450px;}
.y87a_c00001{bottom:794.550450px;}
.y4ba_c00001{bottom:795.270450px;}
.ya0_c00001{bottom:795.540600px;}
.y744_c00001{bottom:795.810450px;}
.yd7b_c00001{bottom:795.900450px;}
.y879_c00001{bottom:796.080450px;}
.y10_c00001{bottom:796.980450px;}
.y160_c00001{bottom:798.150450px;}
.ydb8_c00001{bottom:798.510450px;}
.yd4d_c00001{bottom:798.960450px;}
.yd9d_c00001{bottom:799.230450px;}
.y93b_c00001{bottom:799.860600px;}
.y4f_c00001{bottom:800.040600px;}
.y2ac_c00001{bottom:800.760450px;}
.y1cf_c00001{bottom:800.940450px;}
.y72c_c00001{bottom:801.300450px;}
.y8c2_c00001{bottom:802.020450px;}
.yd4_c00001{bottom:802.110600px;}
.y88d_c00001{bottom:802.560450px;}
.y41b_c00001{bottom:802.830450px;}
.y926_c00001{bottom:803.460450px;}
.y951_c00001{bottom:804.090450px;}
.y8a4_c00001{bottom:804.270450px;}
.y44a_c00001{bottom:804.630450px;}
.yf1_c00001{bottom:805.440450px;}
.y950_c00001{bottom:805.530450px;}
.y588_c00001{bottom:806.250450px;}
.y81a_c00001{bottom:806.520450px;}
.y33a_c00001{bottom:806.610600px;}
.y47d_c00001{bottom:808.500450px;}
.y1e6_c00001{bottom:808.680450px;}
.y85f_c00001{bottom:808.860600px;}
.y2eb_c00001{bottom:808.950450px;}
.yd6d_c00001{bottom:809.040600px;}
.y5bb_c00001{bottom:809.220450px;}
.y7b7_c00001{bottom:809.400450px;}
.y69_c00001{bottom:809.580450px;}
.y17e_c00001{bottom:809.760450px;}
.y34_c00001{bottom:809.940450px;}
.y4cc_c00001{bottom:810.750450px;}
.y847_c00001{bottom:811.380450px;}
.y8b2_c00001{bottom:812.460450px;}
.yd55_c00001{bottom:813.000450px;}
.y1b4_c00001{bottom:813.900450px;}
.y82_c00001{bottom:814.080450px;}
.yba_c00001{bottom:814.530450px;}
.y48d_c00001{bottom:814.980450px;}
.y124_c00001{bottom:815.250450px;}
.yd3b_c00001{bottom:815.610600px;}
.y969_c00001{bottom:815.880450px;}
.y22e_c00001{bottom:816.240450px;}
.y5d2_c00001{bottom:818.580450px;}
.ydce_c00001{bottom:819.660450px;}
.yd5b_c00001{bottom:819.930600px;}
.y195_c00001{bottom:820.020450px;}
.y878_c00001{bottom:820.110600px;}
.y140_c00001{bottom:820.380450px;}
.y578_c00001{bottom:820.560450px;}
.y4b9_c00001{bottom:820.740450px;}
.yd7a_c00001{bottom:821.460450px;}
.y743_c00001{bottom:822.450600px;}
.yd4c_c00001{bottom:822.900450px;}
.y93a_c00001{bottom:825.420450px;}
.y9f_c00001{bottom:826.770450px;}
.y5d0_c00001{bottom:826.860600px;}
.y59f_c00001{bottom:827.580450px;}
.y72a_c00001{bottom:827.940450px;}
.y88c_c00001{bottom:828.030450px;}
.y8a2_c00001{bottom:828.300450px;}
.yf_c00001{bottom:828.390450px;}
.yd9c_c00001{bottom:828.660450px;}
.y925_c00001{bottom:828.930600px;}
.y15f_c00001{bottom:829.200450px;}
.y77c_c00001{bottom:829.290600px;}
.y94f_c00001{bottom:829.560450px;}
.y587_c00001{bottom:830.280450px;}
.y449_c00001{bottom:830.370450px;}
.y819_c00001{bottom:830.460450px;}
.y4e_c00001{bottom:831.450450px;}
.y755_c00001{bottom:831.540600px;}
.y2ab_c00001{bottom:831.810450px;}
.y1ce_c00001{bottom:831.990450px;}
.y8c1_c00001{bottom:832.080450px;}
.y7b6_c00001{bottom:833.430600px;}
.yd3_c00001{bottom:833.520450px;}
.y10b_c00001{bottom:833.970450px;}
.y85e_c00001{bottom:834.330450px;}
.y45d_c00001{bottom:834.600450px;}
.y339_c00001{bottom:835.500450px;}
.y5ba_c00001{bottom:835.950450px;}
.y846_c00001{bottom:837.120450px;}
.y4df_c00001{bottom:837.660450px;}
.y8b1_c00001{bottom:837.930600px;}
.yd6c_c00001{bottom:838.290600px;}
.yd54_c00001{bottom:838.470450px;}
.y8af_c00001{bottom:839.010450px;}
.y24d_c00001{bottom:839.730450px;}
.y17d_c00001{bottom:840.810450px;}
.y68_c00001{bottom:840.990450px;}
.y33_c00001{bottom:841.350450px;}
.y2ca_c00001{bottom:841.890450px;}
.y1e5_c00001{bottom:842.160450px;}
.yf0_c00001{bottom:843.240450px;}
.y2c2_c00001{bottom:844.770450px;}
.y1b3_c00001{bottom:844.950450px;}
.y26a_c00001{bottom:845.130450px;}
.y82e_c00001{bottom:845.400450px;}
.y876_c00001{bottom:845.580450px;}
.yb9_c00001{bottom:845.940450px;}
.y577_c00001{bottom:846.030450px;}
.y968_c00001{bottom:846.390450px;}
.y874_c00001{bottom:846.660450px;}
.y22d_c00001{bottom:847.200450px;}
.y76b_c00001{bottom:847.740450px;}
.y81_c00001{bottom:848.280450px;}
.yd4b_c00001{bottom:848.460450px;}
.y4cb_c00001{bottom:849.180600px;}
.y939_c00001{bottom:849.360600px;}
.y41a_c00001{bottom:850.800450px;}
.y194_c00001{bottom:851.070450px;}
.y2e9_c00001{bottom:852.510450px;}
.y123_c00001{bottom:853.050450px;}
.y77b_c00001{bottom:853.320450px;}
.y8a0_c00001{bottom:853.410450px;}
.y88b_c00001{bottom:853.590450px;}
.y13f_c00001{bottom:854.220450px;}
.y924_c00001{bottom:854.400450px;}
.y94e_c00001{bottom:855.030450px;}
.y45c_c00001{bottom:855.300450px;}
.yd3a_c00001{bottom:855.390450px;}
.y448_c00001{bottom:855.930600px;}
.y94d_c00001{bottom:856.200450px;}
.y586_c00001{bottom:856.920450px;}
.y818_c00001{bottom:857.100450px;}
.y59c_c00001{bottom:857.730450px;}
.y754_c00001{bottom:857.820450px;}
.y47c_c00001{bottom:858.000600px;}
.y9e_c00001{bottom:858.180600px;}
.y5d1_c00001{bottom:858.720450px;}
.y7b5_c00001{bottom:858.900450px;}
.ye_c00001{bottom:859.440450px;}
.y95a_c00001{bottom:859.530450px;}
.y85d_c00001{bottom:859.800450px;}
.y15e_c00001{bottom:860.250450px;}
.y5b9_c00001{bottom:861.600450px;}
.y8b0_c00001{bottom:861.960450px;}
.y8c0_c00001{bottom:862.050450px;}
.y2aa_c00001{bottom:862.860450px;}
.y4d_c00001{bottom:862.860600px;}
.y1cd_c00001{bottom:863.040450px;}
.y338_c00001{bottom:863.130450px;}
.y845_c00001{bottom:864.030450px;}
.yd2_c00001{bottom:864.930600px;}
.y10a_c00001{bottom:865.020450px;}
.y7b1_c00001{bottom:865.470450px;}
.yd6b_c00001{bottom:867.540600px;}
.y4b8_c00001{bottom:868.800450px;}
.y877_c00001{bottom:869.610600px;}
.y576_c00001{bottom:870.060450px;}
.ydcd_c00001{bottom:870.600450px;}
.y24c_c00001{bottom:870.780450px;}
.y82d_c00001{bottom:870.960450px;}
.y6df_c00001{bottom:871.410450px;}
.y17c_c00001{bottom:871.860450px;}
.y67_c00001{bottom:872.400450px;}
.y32_c00001{bottom:872.760450px;}
.yd4a_c00001{bottom:873.930600px;}
.y76a_c00001{bottom:874.110600px;}
.y742_c00001{bottom:874.740450px;}
.y5cf_c00001{bottom:874.830450px;}
.y938_c00001{bottom:874.920450px;}
.y48c_c00001{bottom:875.010450px;}
.y2b8_c00001{bottom:875.820450px;}
.y1e4_c00001{bottom:876.000450px;}
.y1b2_c00001{bottom:876.000600px;}
.y269_c00001{bottom:876.180450px;}
.y419_c00001{bottom:876.990450px;}
.y89f_c00001{bottom:877.170450px;}
.yb8_c00001{bottom:877.440450px;}
.y70a_c00001{bottom:877.530450px;}
.yd9b_c00001{bottom:878.160450px;}
.y22c_c00001{bottom:878.250450px;}
.y59e_c00001{bottom:878.700450px;}
.y888_c00001{bottom:879.060450px;}
.y80_c00001{bottom:879.240450px;}
.ydd4_c00001{bottom:879.510450px;}
.y921_c00001{bottom:879.960450px;}
.y886_c00001{bottom:880.140450px;}
.ydb7_c00001{bottom:880.500600px;}
.yef_c00001{bottom:881.040600px;}
.y447_c00001{bottom:881.400450px;}
.y59b_c00001{bottom:881.760450px;}
.y193_c00001{bottom:882.120450px;}
.y585_c00001{bottom:882.570450px;}
.y817_c00001{bottom:882.660450px;}
.y7f3_c00001{bottom:882.840450px;}
.y753_c00001{bottom:883.380450px;}
.y353_c00001{bottom:883.470450px;}
.y122_c00001{bottom:884.100450px;}
.y7b4_c00001{bottom:884.730450px;}
.y959_c00001{bottom:885.000600px;}
.y85c_c00001{bottom:885.360600px;}
.y4ca_c00001{bottom:885.990450px;}
.y958_c00001{bottom:886.080450px;}
.y8ae_c00001{bottom:886.980450px;}
.y4de_c00001{bottom:887.160450px;}
.yd53_c00001{bottom:887.970450px;}
.y13e_c00001{bottom:888.150450px;}
.y5b8_c00001{bottom:888.420450px;}
.y582_c00001{bottom:889.410450px;}
.y7b0_c00001{bottom:889.500600px;}
.y9d_c00001{bottom:889.590450px;}
.yd_c00001{bottom:890.940450px;}
.y2e8_c00001{bottom:891.030450px;}
.y15d_c00001{bottom:891.210450px;}
.y337_c00001{bottom:892.020450px;}
.y844_c00001{bottom:892.470450px;}
.y5b6_c00001{bottom:892.650450px;}
.y875_c00001{bottom:893.550450px;}
.y213_c00001{bottom:893.910450px;}
.y1cc_c00001{bottom:894.090450px;}
.y4b7_c00001{bottom:894.450450px;}
.ydcc_c00001{bottom:894.630450px;}
.y575_c00001{bottom:895.530450px;}
.y4c_c00001{bottom:896.340450px;}
.y82c_c00001{bottom:896.430450px;}
.y45b_c00001{bottom:896.700450px;}
.y6de_c00001{bottom:898.140450px;}
.y72b_c00001{bottom:898.770450px;}
.y5ce_c00001{bottom:898.860450px;}
.y336_c00001{bottom:899.400450px;}
.y769_c00001{bottom:899.580450px;}
.y77a_c00001{bottom:899.760450px;}
.y937_c00001{bottom:901.200450px;}
.y89e_c00001{bottom:901.380450px;}
.y741_c00001{bottom:901.470450px;}
.y24b_c00001{bottom:901.830450px;}
.y109_c00001{bottom:902.460450px;}
.y17b_c00001{bottom:902.910450px;}
.y709_c00001{bottom:903.000450px;}
.y889_c00001{bottom:903.090450px;}
.yd9a_c00001{bottom:903.720450px;}
.y66_c00001{bottom:903.810450px;}
.y922_c00001{bottom:903.900450px;}
.y31_c00001{bottom:904.170450px;}
.y59d_c00001{bottom:904.260450px;}
.y6ae_c00001{bottom:904.530450px;}
.yd6a_c00001{bottom:904.620450px;}
.y48b_c00001{bottom:904.980450px;}
.y446_c00001{bottom:905.430450px;}
.y59a_c00001{bottom:905.700450px;}
.ydb6_c00001{bottom:905.970450px;}
.y286_c00001{bottom:906.870450px;}
.y1b1_c00001{bottom:907.050450px;}
.y268_c00001{bottom:907.230450px;}
.y752_c00001{bottom:907.320450px;}
.y47b_c00001{bottom:907.500450px;}
.y7f2_c00001{bottom:908.310450px;}
.yb7_c00001{bottom:908.850450px;}
.y352_c00001{bottom:909.030450px;}
.y584_c00001{bottom:909.210450px;}
.y22b_c00001{bottom:909.300450px;}
.y7b3_c00001{bottom:910.470450px;}
.y85b_c00001{bottom:910.830450px;}
.y88a_c00001{bottom:911.550450px;}
.y192_c00001{bottom:913.170450px;}
.y581_c00001{bottom:913.440450px;}
.y7af_c00001{bottom:913.530450px;}
.y4dd_c00001{bottom:914.250450px;}
.y5b7_c00001{bottom:915.150450px;}
.y843_c00001{bottom:916.410450px;}
.y5b5_c00001{bottom:916.680450px;}
.y45a_c00001{bottom:917.400450px;}
.y873_c00001{bottom:918.660450px;}
.yd37_c00001{bottom:919.110450px;}
.y13d_c00001{bottom:919.200450px;}
.y4b6_c00001{bottom:920.010450px;}
.ydcb_c00001{bottom:920.100450px;}
.yd36_c00001{bottom:920.190450px;}
.yee_c00001{bottom:920.910450px;}
.y9c_c00001{bottom:921.000450px;}
.y121_c00001{bottom:921.900450px;}
.y559_c00001{bottom:921.990450px;}
.y8bf_c00001{bottom:922.080450px;}
.yc_c00001{bottom:922.350450px;}
.y7f_c00001{bottom:922.440450px;}
.y89d_c00001{bottom:922.528164px;}
.y335_c00001{bottom:923.340450px;}
.yd49_c00001{bottom:923.430450px;}
.y6dd_c00001{bottom:923.610450px;}
.y729_c00001{bottom:923.880450px;}
.y5cc_c00001{bottom:924.330450px;}
.y4c9_c00001{bottom:924.420450px;}
.y212_c00001{bottom:924.960450px;}
.y15c_c00001{bottom:925.140450px;}
.y5c9_c00001{bottom:925.410450px;}
.y768_c00001{bottom:925.950450px;}
.yd47_c00001{bottom:926.400450px;}
.y418_c00001{bottom:926.490450px;}
.y936_c00001{bottom:926.670450px;}
.y887_c00001{bottom:927.030450px;}
.yd99_c00001{bottom:927.660450px;}
.y923_c00001{bottom:927.930450px;}
.y94c_c00001{bottom:928.110450px;}
.y740_c00001{bottom:928.200450px;}
.y708_c00001{bottom:928.470450px;}
.yd69_c00001{bottom:928.650450px;}
.y2e7_c00001{bottom:929.550450px;}
.y73f_c00001{bottom:929.640450px;}
.y599_c00001{bottom:929.730450px;}
.yd1_c00001{bottom:929.820450px;}
.y6ad_c00001{bottom:930.000450px;}
.y779_c00001{bottom:930.900450px;}
.y445_c00001{bottom:931.170450px;}
.y7f1_c00001{bottom:932.340450px;}
.y24a_c00001{bottom:932.880450px;}
.y47a_c00001{bottom:932.970450px;}
.y751_c00001{bottom:933.690450px;}
.y17a_c00001{bottom:933.960450px;}
.y957_c00001{bottom:934.050450px;}
.y351_c00001{bottom:934.500450px;}
.y48a_c00001{bottom:934.950450px;}
.y65_c00001{bottom:935.220450px;}
.y30_c00001{bottom:935.670450px;}
.y583_c00001{bottom:935.940450px;}
.y7b2_c00001{bottom:936.030450px;}
.y85a_c00001{bottom:936.300450px;}
.y6c6_c00001{bottom:936.570450px;}
.y580_c00001{bottom:937.470450px;}
.y2b7_c00001{bottom:937.920450px;}
.ydd3_c00001{bottom:938.010450px;}
.y1b0_c00001{bottom:938.100450px;}
.y267_c00001{bottom:938.280450px;}
.y4b_c00001{bottom:939.270450px;}
.y108_c00001{bottom:940.080450px;}
.y22a_c00001{bottom:940.350450px;}
.y5b4_c00001{bottom:940.620450px;}
.y4dc_c00001{bottom:941.250450px;}
.y841_c00001{bottom:941.970450px;}
.yb6_c00001{bottom:942.330450px;}
.y872_c00001{bottom:942.510450px;}
.yde5_c00001{bottom:942.960450px;}
.y83f_c00001{bottom:943.050450px;}
.y4b5_c00001{bottom:943.950450px;}
.y574_c00001{bottom:945.030450px;}
.ydca_c00001{bottom:945.660450px;}
.yd79_c00001{bottom:945.930450px;}
.ydc9_c00001{bottom:947.100450px;}
.y334_c00001{bottom:947.370450px;}
.y558_c00001{bottom:947.460450px;}
.y6dc_c00001{bottom:947.640450px;}
.y728_c00001{bottom:947.730450px;}
.y5cb_c00001{bottom:948.360450px;}
.yd48_c00001{bottom:948.900450px;}
.y13c_c00001{bottom:950.160450px;}
.yd46_c00001{bottom:950.430450px;}
.y417_c00001{bottom:951.960450px;}
.y8be_c00001{bottom:952.050450px;}
.y885_c00001{bottom:952.140450px;}
.y767_c00001{bottom:952.230450px;}
.y9b_c00001{bottom:952.410450px;}
.y89c_c00001{bottom:952.498488px;}
.yd95_c00001{bottom:953.220450px;}
.y934_c00001{bottom:953.310450px;}
.y73e_c00001{bottom:953.670450px;}
.yb_c00001{bottom:953.760450px;}
.y707_c00001{bottom:954.030450px;}
.yd67_c00001{bottom:954.120450px;}
.yd93_c00001{bottom:954.300450px;}
.y596_c00001{bottom:955.200450px;}
.yd65_c00001{bottom:955.290600px;}
.y6ac_c00001{bottom:955.470450px;}
.y28e_c00001{bottom:956.010450px;}
.y191_c00001{bottom:956.100450px;}
.y15b_c00001{bottom:956.190450px;}
.y594_c00001{bottom:956.370450px;}
.y444_c00001{bottom:956.730450px;}
.y479_c00001{bottom:957.000450px;}
.y7f0_c00001{bottom:957.810450px;}
.y956_c00001{bottom:957.900450px;}
.yed_c00001{bottom:958.350450px;}
.yd82_c00001{bottom:958.530450px;}
.y459_c00001{bottom:958.800450px;}
.y120_c00001{bottom:959.700450px;}
.y350_c00001{bottom:959.970450px;}
.yd0_c00001{bottom:960.870450px;}
.y627_c00001{bottom:961.230450px;}
.y57f_c00001{bottom:961.410450px;}
.y34f_c00001{bottom:961.500450px;}
.y858_c00001{bottom:961.860450px;}
.y778_c00001{bottom:961.950450px;}
.y6c5_c00001{bottom:962.040600px;}
.y4c8_c00001{bottom:962.760450px;}
.y856_c00001{bottom:962.940450px;}
.yd52_c00001{bottom:963.030450px;}
.y638_c00001{bottom:963.570450px;}
.y249_c00001{bottom:963.930450px;}
.yd51_c00001{bottom:964.110450px;}
.y179_c00001{bottom:964.920450px;}
.y489_c00001{bottom:965.010450px;}
.y842_c00001{bottom:965.910450px;}
.y5b2_c00001{bottom:966.180450px;}
.y871_c00001{bottom:966.450450px;}
.y2f_c00001{bottom:966.720450px;}
.y4db_c00001{bottom:966.810450px;}
.yd39_c00001{bottom:967.080450px;}
.y5b0_c00001{bottom:967.260450px;}
.y2e6_c00001{bottom:968.070450px;}
.y805_c00001{bottom:968.430450px;}
.y2b6_c00001{bottom:968.970450px;}
.y1af_c00001{bottom:969.150450px;}
.y266_c00001{bottom:969.330450px;}
.y4b4_c00001{bottom:969.510450px;}
.y573_c00001{bottom:970.500450px;}
.ydc8_c00001{bottom:971.130450px;}
.yd78_c00001{bottom:971.400450px;}
.y5cd_c00001{bottom:972.300450px;}
.y332_c00001{bottom:972.840450px;}
.y82b_c00001{bottom:972.930450px;}
.y557_c00001{bottom:973.650450px;}
.y330_c00001{bottom:974.010450px;}
.y6db_c00001{bottom:974.370450px;}
.yd45_c00001{bottom:974.460450px;}
.y416_c00001{bottom:975.990450px;}
.y935_c00001{bottom:976.170450px;}
.y60d_c00001{bottom:976.800450px;}
.y920_c00001{bottom:976.980450px;}
.yd96_c00001{bottom:977.160450px;}
.y766_c00001{bottom:977.700450px;}
.y229_c00001{bottom:977.790450px;}
.y107_c00001{bottom:977.880450px;}
.yd68_c00001{bottom:978.150450px;}
.y73c_c00001{bottom:979.140450px;}
.y597_c00001{bottom:979.230450px;}
.y458_c00001{bottom:979.500450px;}
.y73b_c00001{bottom:980.310450px;}
.y443_c00001{bottom:980.670450px;}
.ydb5_c00001{bottom:981.030450px;}
.y7ef_c00001{bottom:981.840450px;}
.y8bd_c00001{bottom:982.020450px;}
.y4a_c00001{bottom:982.380450px;}
.y89b_c00001{bottom:982.468812px;}
.y478_c00001{bottom:982.470450px;}
.y9a_c00001{bottom:983.820450px;}
.yd81_c00001{bottom:984.000450px;}
.y13b_c00001{bottom:984.090450px;}
.ya_c00001{bottom:985.170450px;}
.yb5_c00001{bottom:985.260450px;}
.y34e_c00001{bottom:985.530450px;}
.y859_c00001{bottom:985.800450px;}
.y6c4_c00001{bottom:986.070450px;}
.y57d_c00001{bottom:986.970450px;}
.y2a9_c00001{bottom:987.060450px;}
.y15a_c00001{bottom:987.240450px;}
.y57b_c00001{bottom:988.050450px;}
.y7ae_c00001{bottom:988.140450px;}
.y626_c00001{bottom:988.230450px;}
.y840_c00001{bottom:989.940450px;}
.y5b3_c00001{bottom:990.120450px;}
.y8fc_c00001{bottom:990.480450px;}
.y644_c00001{bottom:990.570450px;}
.y870_c00001{bottom:990.660450px;}
.y4da_c00001{bottom:990.750450px;}
.yd38_c00001{bottom:991.110450px;}
.ydd2_c00001{bottom:991.200450px;}
.y6ee_c00001{bottom:992.010450px;}
.yde4_c00001{bottom:992.460450px;}
.y777_c00001{bottom:993.000450px;}
.y804_c00001{bottom:993.900450px;}
.y727_c00001{bottom:994.170450px;}
.y248_c00001{bottom:994.980450px;}
.y4b3_c00001{bottom:995.250450px;}
.yec_c00001{bottom:995.970450px;}
.y572_c00001{bottom:996.060450px;}
.ydc4_c00001{bottom:996.600450px;}
.y333_c00001{bottom:996.870450px;}
.y719_c00001{bottom:996.960450px;}
.y178_c00001{bottom:997.320450px;}
.y11f_c00001{bottom:997.500450px;}
.ydc2_c00001{bottom:997.770450px;}
.y2e_c00001{bottom:998.130450px;}
.ycf_c00001{bottom:998.310450px;}
.y82a_c00001{bottom:998.400450px;}
.y2e5_c00001{bottom:999.210450px;}
.y4c7_c00001{bottom:999.570450px;}
.y5ca_c00001{bottom:999.750450px;}
.y556_c00001{bottom:999.840450px;}
.yd44_c00001{bottom:999.930450px;}
.y20f_c00001{bottom:1000.020450px;}
.y1ae_c00001{bottom:1000.200450px;}
.y56f_c00001{bottom:1000.560450px;}
.y94b_c00001{bottom:1000.561809px;}
.y91f_c00001{bottom:1000.830450px;}
.y6da_c00001{bottom:1001.010450px;}
.yd98_c00001{bottom:1001.190450px;}
.y933_c00001{bottom:1001.280450px;}
.y415_c00001{bottom:1002.180450px;}
.y265_c00001{bottom:1002.450450px;}
.y73d_c00001{bottom:1003.170450px;}
.y598_c00001{bottom:1003.260450px;}
.y60c_c00001{bottom:1003.530450px;}
.y764_c00001{bottom:1004.340450px;}
.y6ab_c00001{bottom:1004.970450px;}
.y442_c00001{bottom:1006.500450px;}
.y7ee_c00001{bottom:1008.030450px;}
.y228_c00001{bottom:1008.840450px;}
.y7ed_c00001{bottom:1009.470450px;}
.y857_c00001{bottom:1009.830450px;}
.y57e_c00001{bottom:1010.910450px;}
.y34c_c00001{bottom:1011.000450px;}
.y86f_c00001{bottom:1011.721332px;}
.y34a_c00001{bottom:1012.080450px;}
.y4c6_c00001{bottom:1012.440450px;}
.y89a_c00001{bottom:1012.529307px;}
.y6c3_c00001{bottom:1012.800450px;}
.y5b1_c00001{bottom:1014.150450px;}
.y625_c00001{bottom:1014.600450px;}
.y83e_c00001{bottom:1015.050450px;}
.y106_c00001{bottom:1015.680450px;}
.y8fb_c00001{bottom:1015.950450px;}
.y9_c00001{bottom:1016.580450px;}
.y49_c00001{bottom:1016.670450px;}
.y643_c00001{bottom:1016.850450px;}
.y13a_c00001{bottom:1017.480450px;}
.y4d9_c00001{bottom:1017.840450px;}
.yde3_c00001{bottom:1017.930450px;}
.y2a8_c00001{bottom:1018.110450px;}
.y159_c00001{bottom:1018.290450px;}
.y7d0_c00001{bottom:1018.650450px;}
.y803_c00001{bottom:1019.460450px;}
.ydd1_c00001{bottom:1020.360450px;}
.ydc5_c00001{bottom:1020.630450px;}
.y457_c00001{bottom:1020.810450px;}
.y4b2_c00001{bottom:1020.900450px;}
.y571_c00001{bottom:1021.530450px;}
.y4b1_c00001{bottom:1022.430450px;}
.y99_c00001{bottom:1023.690450px;}
.y828_c00001{bottom:1023.960450px;}
.y331_c00001{bottom:1024.050450px;}
.y56e_c00001{bottom:1024.500450px;}
.yd2e_c00001{bottom:1024.590450px;}
.y94a_c00001{bottom:1024.681503px;}
.y488_c00001{bottom:1024.950450px;}
.y827_c00001{bottom:1025.040450px;}
.y932_c00001{bottom:1025.130450px;}
.yd97_c00001{bottom:1025.220450px;}
.y555_c00001{bottom:1025.310450px;}
.y91e_c00001{bottom:1025.399307px;}
.ybaf_c00001{bottom:1025.580450px;}
.y247_c00001{bottom:1026.030450px;}
.yd66_c00001{bottom:1026.120450px;}
.y681_c00001{bottom:1026.570450px;}
.y595_c00001{bottom:1027.200450px;}
.y414_c00001{bottom:1027.650450px;}
.y177_c00001{bottom:1028.370450px;}
.y60b_c00001{bottom:1029.270450px;}
.y2d_c00001{bottom:1029.540450px;}
.y6aa_c00001{bottom:1030.530450px;}
.y20e_c00001{bottom:1030.980450px;}
.y1ad_c00001{bottom:1031.160450px;}
.y441_c00001{bottom:1031.970450px;}
.y706_c00001{bottom:1033.500450px;}
.yeb_c00001{bottom:1033.770450px;}
.y57c_c00001{bottom:1034.940450px;}
.y34d_c00001{bottom:1035.030450px;}
.y11e_c00001{bottom:1035.300450px;}
.y776_c00001{bottom:1035.930450px;}
.y86e_c00001{bottom:1035.931197px;}
.y4c5_c00001{bottom:1036.470450px;}
.y726_c00001{bottom:1037.190450px;}
.y5c8_c00001{bottom:1037.730450px;}
.y624_c00001{bottom:1038.540450px;}
.y83d_c00001{bottom:1039.080450px;}
.y5af_c00001{bottom:1039.260450px;}
.y6c2_c00001{bottom:1039.440450px;}
.y227_c00001{bottom:1039.890450px;}
.y8fa_c00001{bottom:1039.980450px;}
.y456_c00001{bottom:1041.510450px;}
.y8bc_c00001{bottom:1042.050450px;}
.y642_c00001{bottom:1042.410450px;}
.y899_c00001{bottom:1042.499631px;}
.y264_c00001{bottom:1042.770450px;}
.y6ed_c00001{bottom:1043.400450px;}
.y2e4_c00001{bottom:1043.490450px;}
.ydc7_c00001{bottom:1044.660450px;}
.y4d8_c00001{bottom:1044.930450px;}
.yd2d_c00001{bottom:1045.200450px;}
.y4b0_c00001{bottom:1046.460450px;}
.y570_c00001{bottom:1047.000450px;}
.y829_c00001{bottom:1047.900450px;}
.y8_c00001{bottom:1047.990450px;}
.ydd0_c00001{bottom:1048.350450px;}
.y56d_c00001{bottom:1048.530450px;}
.y949_c00001{bottom:1048.801197px;}
.y2a7_c00001{bottom:1049.160450px;}
.y158_c00001{bottom:1049.340450px;}
.y32f_c00001{bottom:1050.150450px;}
.y553_c00001{bottom:1050.870450px;}
.y765_c00001{bottom:1051.230450px;}
.y3bb_c00001{bottom:1051.950450px;}
.y73a_c00001{bottom:1052.220450px;}
.y593_c00001{bottom:1052.310450px;}
.yd35_c00001{bottom:1052.850450px;}
.y60a_c00001{bottom:1053.210450px;}
.y6d9_c00001{bottom:1053.300450px;}
.y105_c00001{bottom:1053.480450px;}
.y413_c00001{bottom:1053.840450px;}
.y909_c00001{bottom:1054.470450px;}
.y487_c00001{bottom:1055.010450px;}
.y91d_c00001{bottom:1055.459802px;}
.y440_c00001{bottom:1056.000450px;}
.y246_c00001{bottom:1057.080450px;}
.y6a9_c00001{bottom:1057.530450px;}
.y855_c00001{bottom:1058.700450px;}
.y34b_c00001{bottom:1058.970450px;}
.y176_c00001{bottom:1059.420450px;}
.y57a_c00001{bottom:1060.050450px;}
.y86d_c00001{bottom:1060.050891px;}
.y2c_c00001{bottom:1060.950450px;}
.y98_c00001{bottom:1061.130450px;}
.yd94_c00001{bottom:1061.580450px;}
.y4c3_c00001{bottom:1061.940450px;}
.y20d_c00001{bottom:1062.030450px;}
.y1ac_c00001{bottom:1062.210450px;}
.y83c_c00001{bottom:1063.020450px;}
.y5ae_c00001{bottom:1063.200450px;}
.y623_c00001{bottom:1064.460450px;}
.y6c1_c00001{bottom:1065.000450px;}
.y8f9_c00001{bottom:1066.440450px;}
.yde2_c00001{bottom:1067.430450px;}
.ydc6_c00001{bottom:1068.600450px;}
.y641_c00001{bottom:1068.690450px;}
.y697_c00001{bottom:1068.960450px;}
.y931_c00001{bottom:1070.040450px;}
.y4d7_c00001{bottom:1070.400450px;}
.yea_c00001{bottom:1071.570450px;}
.y4ae_c00001{bottom:1071.930450px;}
.y8bb_c00001{bottom:1072.020450px;}
.y898_c00001{bottom:1072.469955px;}
.y56c_c00001{bottom:1072.560450px;}
.y948_c00001{bottom:1073.011062px;}
.y11d_c00001{bottom:1073.100450px;}
.y554_c00001{bottom:1074.810450px;}
.yd2c_c00001{bottom:1075.260450px;}
.y592_c00001{bottom:1076.160450px;}
.y763_c00001{bottom:1076.340450px;}
.y32e_c00001{bottom:1076.610450px;}
.ydcf_c00001{bottom:1077.510450px;}
.y2e3_c00001{bottom:1077.780450px;}
.yb68_c00001{bottom:1077.870450px;}
.y680_c00001{bottom:1078.770450px;}
.y775_c00001{bottom:1078.950450px;}
.y7_c00001{bottom:1079.400450px;}
.y609_c00001{bottom:1079.940450px;}
.y412_c00001{bottom:1080.030450px;}
.y1fa_c00001{bottom:1080.210450px;}
.y725_c00001{bottom:1080.300450px;}
.y157_c00001{bottom:1080.390450px;}
.y43f_c00001{bottom:1081.470450px;}
.y455_c00001{bottom:1082.910450px;}
.y7ec_c00001{bottom:1083.000450px;}
.y579_c00001{bottom:1083.900450px;}
.y349_c00001{bottom:1084.080450px;}
.y86c_c00001{bottom:1084.170585px;}
.y104_c00001{bottom:1084.530450px;}
.y486_c00001{bottom:1084.980450px;}
.y226_c00001{bottom:1085.070909px;}
.y91c_c00001{bottom:1085.430126px;}
.y4c4_c00001{bottom:1085.970450px;}
.y5ad_c00001{bottom:1087.230450px;}
.yd34_c00001{bottom:1087.680450px;}
.y245_c00001{bottom:1088.130450px;}
.yd92_c00001{bottom:1089.390450px;}
.y175_c00001{bottom:1090.380450px;}
.y139_c00001{bottom:1090.740450px;}
.y622_c00001{bottom:1091.460450px;}
.y6c0_c00001{bottom:1091.730450px;}
.y2b_c00001{bottom:1092.360450px;}
.ydc3_c00001{bottom:1092.630450px;}
.y6ec_c00001{bottom:1092.900450px;}
.y20c_c00001{bottom:1093.080450px;}
.y1ab_c00001{bottom:1093.260450px;}
.y3ba_c00001{bottom:1094.430450px;}
.y640_c00001{bottom:1095.060450px;}
.y4ad_c00001{bottom:1095.960450px;}
.y826_c00001{bottom:1097.040450px;}
.y947_c00001{bottom:1097.130756px;}
.y56a_c00001{bottom:1098.030450px;}
.y552_c00001{bottom:1098.840450px;}
.y567_c00001{bottom:1099.110450px;}
.y591_c00001{bottom:1100.100450px;}
.y8ba_c00001{bottom:1102.080450px;}
.y897_c00001{bottom:1102.530450px;}
.y2e2_c00001{bottom:1102.800450px;}
.y454_c00001{bottom:1103.610450px;}
.y411_c00001{bottom:1105.500450px;}
.y705_c00001{bottom:1107.030450px;}
.y348_c00001{bottom:1107.930450px;}
.yd50_c00001{bottom:1108.110450px;}
.y83b_c00001{bottom:1108.380450px;}
.y774_c00001{bottom:1110.090450px;}
.y6_c00001{bottom:1110.900450px;}
.y1f9_c00001{bottom:1111.260450px;}
.ye9_c00001{bottom:1111.440450px;}
.yd33_c00001{bottom:1111.710450px;}
.y485_c00001{bottom:1114.950450px;}
.y91b_c00001{bottom:1115.400450px;}
.y138_c00001{bottom:1115.760450px;}
.ydc1_c00001{bottom:1117.740450px;}
.y367_c00001{bottom:1118.460450px;}
.yd91_c00001{bottom:1118.550450px;}
.y4af_c00001{bottom:1119.900450px;}
.y63f_c00001{bottom:1120.530450px;}
.y825_c00001{bottom:1120.800450px;}
.yd43_c00001{bottom:1120.980450px;}
.y225_c00001{bottom:1121.250450px;}
.y569_c00001{bottom:1122.060450px;}
.y2a_c00001{bottom:1123.770450px;}
.y551_c00001{bottom:1123.950450px;}
.y20b_c00001{bottom:1124.130450px;}
.y103_c00001{bottom:1124.310450px;}
.y3_c00001{bottom:1132.140450px;}
.yd32_c00001{bottom:1135.650450px;}
.ye25_c00001{bottom:1140.060450px;}
.ydc0_c00001{bottom:1141.500450px;}
.y29_c00001{bottom:1144.380657px;}
.y56b_c00001{bottom:1146.000450px;}
.y63d_c00001{bottom:1147.170450px;}
.y550_c00001{bottom:1147.710450px;}
.yd31_c00001{bottom:1159.680450px;}
.y28_c00001{bottom:1161.660648px;}
.y2_c00001{bottom:1165.441023px;}
.y568_c00001{bottom:1170.030450px;}
.y27_c00001{bottom:1178.850459px;}
.y63e_c00001{bottom:1194.060450px;}
.y566_c00001{bottom:1195.140450px;}
.y1_c00001{bottom:1196.040600px;}
.y26_c00001{bottom:1196.130450px;}
.y565_c00001{bottom:1218.900450px;}
.y63c_c00001{bottom:1219.080450px;}
.y564_c00001{bottom:1242.930450px;}
.hc_c00001{height:34.114922px;}
.h13_c00001{height:48.410156px;}
.h5_c00001{height:49.042969px;}
.hd_c00001{height:52.751777px;}
.h1_c00001{height:52.898555px;}
.h2_c00001{height:63.175781px;}
.h16_c00001{height:63.351562px;}
.h3_c00001{height:63.949219px;}
.h9_c00001{height:64.546875px;}
.h8_c00001{height:65.003906px;}
.hb_c00001{height:66.645630px;}
.h11_c00001{height:66.646230px;}
.ha_c00001{height:69.011895px;}
.he_c00001{height:73.599785px;}
.hf_c00001{height:74.500240px;}
.h4_c00001{height:74.500840px;}
.h10_c00001{height:74.501440px;}
.h12_c00001{height:75.197109px;}
.h7_c00001{height:75.729551px;}
.h14_c00001{height:85.130156px;}
.h15_c00001{height:85.372207px;}
.h6_c00001{height:95.923828px;}
.h17_c00001{height:114.925781px;}
.h0_c00001{height:1263.000000px;}
.w1_c00001{width:892.500000px;}
.w0_c00001{width:892.830000px;}
.x0_c00001{left:0.000000px;}
.xee_c00001{left:4.500000px;}
.x14e_c00001{left:6.750000px;}
.x1f9_c00001{left:10.170000px;}
.x150_c00001{left:11.250000px;}
.x38_c00001{left:12.780000px;}
.x65_c00001{left:14.490000px;}
.x93_c00001{left:16.110000px;}
.x3e_c00001{left:17.280000px;}
.x75_c00001{left:18.990000px;}
.x64_c00001{left:20.880000px;}
.x113_c00001{left:22.860000px;}
.x164_c00001{left:24.030000px;}
.x41_c00001{left:25.920000px;}
.xb8_c00001{left:27.540000px;}
.x46_c00001{left:30.420000px;}
.xc6_c00001{left:32.040000px;}
.xd7_c00001{left:33.570000px;}
.x40_c00001{left:35.280000px;}
.x81_c00001{left:36.810000px;}
.x24_c00001{left:38.250000px;}
.x52_c00001{left:40.320000px;}
.x34_c00001{left:42.750000px;}
.x56_c00001{left:44.820000px;}
.x1ed_c00001{left:46.710000px;}
.x122_c00001{left:47.790000px;}
.xa6_c00001{left:48.960000px;}
.x13b_c00001{left:50.490000px;}
.x161_c00001{left:53.910000px;}
.x51_c00001{left:58.050000px;}
.x1b7_c00001{left:60.840000px;}
.x1bc_c00001{left:62.640000px;}
.x1f1_c00001{left:65.880000px;}
.xe6_c00001{left:67.590000px;}
.xf8_c00001{left:68.670000px;}
.x13f_c00001{left:70.110000px;}
.x19c_c00001{left:71.280000px;}
.x1aa_c00001{left:72.360000px;}
.x36_c00001{left:74.430000px;}
.x1a0_c00001{left:75.780000px;}
.x1ab_c00001{left:76.860000px;}
.x15e_c00001{left:78.030000px;}
.x146_c00001{left:79.110000px;}
.x19b_c00001{left:80.910000px;}
.x160_c00001{left:82.530000px;}
.x149_c00001{left:83.610000px;}
.x14a_c00001{left:84.780000px;}
.x1ae_c00001{left:85.860000px;}
.x1fa_c00001{left:87.210000px;}
.x157_c00001{left:88.740000px;}
.xd6_c00001{left:89.820000px;}
.x7a_c00001{left:90.990000px;}
.x22_c00001{left:92.340000px;}
.x8f_c00001{left:94.860000px;}
.x23_c00001{left:96.390000px;}
.x114_c00001{left:98.820000px;}
.x1dd_c00001{left:100.170000px;}
.x11b_c00001{left:101.610000px;}
.x1d9_c00001{left:102.870000px;}
.x1c0_c00001{left:105.300000px;}
.x1e7_c00001{left:106.470000px;}
.x1c7_c00001{left:108.540000px;}
.x1ad_c00001{left:111.780000px;}
.x11f_c00001{left:113.220000px;}
.x1db_c00001{left:114.390000px;}
.x8a_c00001{left:117.720000px;}
.x78_c00001{left:120.330000px;}
.x1cf_c00001{left:122.940000px;}
.x1a4_c00001{left:124.110000px;}
.x1dc_c00001{left:125.190000px;}
.x1_c00001{left:127.620000px;}
.x1cc_c00001{left:129.870000px;}
.x4e_c00001{left:132.120000px;}
.xd3_c00001{left:134.550000px;}
.x132_c00001{left:137.070000px;}
.x1e9_c00001{left:138.240000px;}
.x1ee_c00001{left:140.580000px;}
.x177_c00001{left:141.750000px;}
.x1e4_c00001{left:143.550000px;}
.x76_c00001{left:144.900000px;}
.x88_c00001{left:146.700000px;}
.x143_c00001{left:148.680000px;}
.xdf_c00001{left:150.210000px;}
.x1fd_c00001{left:151.290000px;}
.xb0_c00001{left:153.000000px;}
.x1a_c00001{left:154.620000px;}
.x1cd_c00001{left:155.700000px;}
.x20_c00001{left:156.870000px;}
.x1e_c00001{left:159.480000px;}
.x1c_c00001{left:161.370000px;}
.x21_c00001{left:163.620000px;}
.x145_c00001{left:164.790000px;}
.x1df_c00001{left:166.590000px;}
.x35_c00001{left:168.030000px;}
.x1ef_c00001{left:170.190000px;}
.x15c_c00001{left:172.260000px;}
.x165_c00001{left:173.520000px;}
.x168_c00001{left:174.690000px;}
.xd5_c00001{left:176.850000px;}
.x180_c00001{left:180.000000px;}
.x1b_c00001{left:181.620000px;}
.x1e0_c00001{left:183.060000px;}
.x1f_c00001{left:186.480000px;}
.x1bd_c00001{left:188.460000px;}
.x1a7_c00001{left:189.810000px;}
.x1b6_c00001{left:191.250000px;}
.x37_c00001{left:192.510000px;}
.x1c2_c00001{left:194.040000px;}
.x1d_c00001{left:195.120000px;}
.xb2_c00001{left:197.280000px;}
.x123_c00001{left:199.890000px;}
.x3f_c00001{left:201.600000px;}
.x59_c00001{left:203.130000px;}
.x1fc_c00001{left:204.210000px;}
.xe7_c00001{left:205.560000px;}
.x110_c00001{left:207.000000px;}
.x16b_c00001{left:208.620000px;}
.x17e_c00001{left:209.880000px;}
.xf9_c00001{left:211.320000px;}
.x1be_c00001{left:213.030000px;}
.x7_c00001{left:216.360000px;}
.x1b9_c00001{left:217.710000px;}
.x57_c00001{left:220.320000px;}
.x49_c00001{left:222.030000px;}
.x9_c00001{left:223.650000px;}
.x17_c00001{left:224.820000px;}
.x47_c00001{left:227.790000px;}
.x115_c00001{left:229.230000px;}
.xfa_c00001{left:230.850000px;}
.x103_c00001{left:232.020000px;}
.x12d_c00001{left:233.640000px;}
.xa8_c00001{left:234.720000px;}
.xf_c00001{left:236.610000px;}
.xf0_c00001{left:237.870000px;}
.x18_c00001{left:240.030000px;}
.x1c3_c00001{left:241.200000px;}
.xf6_c00001{left:242.280000px;}
.x14c_c00001{left:243.450000px;}
.x158_c00001{left:245.610000px;}
.xa9_c00001{left:247.500000px;}
.x190_c00001{left:248.670000px;}
.x25_c00001{left:249.840000px;}
.x101_c00001{left:252.090000px;}
.x1d3_c00001{left:253.440000px;}
.xe8_c00001{left:254.880000px;}
.x112_c00001{left:256.140000px;}
.x1d1_c00001{left:257.220000px;}
.x95_c00001{left:259.380000px;}
.x111_c00001{left:261.450000px;}
.x26_c00001{left:262.620000px;}
.x82_c00001{left:264.420000px;}
.xb_c00001{left:266.400000px;}
.xe3_c00001{left:267.840000px;}
.x198_c00001{left:269.370000px;}
.xb1_c00001{left:270.450000px;}
.x96_c00001{left:272.160000px;}
.x68_c00001{left:273.330000px;}
.x83_c00001{left:274.950000px;}
.xbb_c00001{left:276.930000px;}
.x12c_c00001{left:278.190000px;}
.x90_c00001{left:279.810000px;}
.x16_c00001{left:280.980000px;}
.x19_c00001{left:282.690000px;}
.x3_c00001{left:284.400000px;}
.x69_c00001{left:286.110000px;}
.x84_c00001{left:287.730000px;}
.xbc_c00001{left:289.710000px;}
.x15_c00001{left:291.690000px;}
.xaa_c00001{left:293.400000px;}
.x9d_c00001{left:294.930000px;}
.xd4_c00001{left:296.550000px;}
.x19e_c00001{left:298.080000px;}
.x8b_c00001{left:299.340000px;}
.xe_c00001{left:300.420000px;}
.x172_c00001{left:301.950000px;}
.x16e_c00001{left:303.210000px;}
.x105_c00001{left:304.560000px;}
.x28_c00001{left:306.000000px;}
.x77_c00001{left:308.160000px;}
.x89_c00001{left:309.690000px;}
.x27_c00001{left:311.310000px;}
.x178_c00001{left:312.660000px;}
.x18e_c00001{left:315.360000px;}
.x15d_c00001{left:316.530000px;}
.x4f_c00001{left:317.880000px;}
.xa_c00001{left:320.310000px;}
.x193_c00001{left:321.570000px;}
.x97_c00001{left:323.010000px;}
.x1af_c00001{left:324.270000px;}
.x13_c00001{left:325.890000px;}
.x6_c00001{left:327.060000px;}
.xd9_c00001{left:328.410000px;}
.x6b_c00001{left:329.850000px;}
.x8_c00001{left:331.560000px;}
.xd8_c00001{left:333.720000px;}
.x6a_c00001{left:335.160000px;}
.x179_c00001{left:336.330000px;}
.x12_c00001{left:337.590000px;}
.x118_c00001{left:339.570000px;}
.x79_c00001{left:341.460000px;}
.x10_c00001{left:342.900000px;}
.xc_c00001{left:344.430000px;}
.x13c_c00001{left:346.590000px;}
.x16c_c00001{left:348.390000px;}
.x133_c00001{left:349.560000px;}
.x1d7_c00001{left:351.090000px;}
.x1a8_c00001{left:352.170000px;}
.x1ca_c00001{left:353.430000px;}
.xcd_c00001{left:354.600000px;}
.xfb_c00001{left:355.680000px;}
.x1d2_c00001{left:357.210000px;}
.x14_c00001{left:358.830000px;}
.x94_c00001{left:359.910000px;}
.x182_c00001{left:361.620000px;}
.xb9_c00001{left:363.600000px;}
.x11d_c00001{left:365.310000px;}
.x66_c00001{left:367.110000px;}
.x11_c00001{left:369.180000px;}
.x173_c00001{left:371.430000px;}
.x184_c00001{left:372.780000px;}
.x13d_c00001{left:374.850000px;}
.x1cb_c00001{left:377.010000px;}
.x29_c00001{left:378.540000px;}
.x18f_c00001{left:380.340000px;}
.x1b4_c00001{left:381.600000px;}
.x194_c00001{left:383.940000px;}
.x189_c00001{left:385.020000px;}
.xd_c00001{left:386.550000px;}
.x1a5_c00001{left:388.350000px;}
.x17a_c00001{left:389.520000px;}
.x98_c00001{left:390.870000px;}
.x1c5_c00001{left:392.130000px;}
.x14d_c00001{left:393.300000px;}
.xb7_c00001{left:394.380000px;}
.x136_c00001{left:395.460000px;}
.x154_c00001{left:397.890000px;}
.x2a_c00001{left:399.150000px;}
.x162_c00001{left:401.490000px;}
.x6c_c00001{left:402.570000px;}
.x85_c00001{left:403.830000px;}
.xbd_c00001{left:405.540000px;}
.x1a9_c00001{left:407.520000px;}
.xcf_c00001{left:411.030000px;}
.x141_c00001{left:413.550000px;}
.x5d_c00001{left:414.630000px;}
.xda_c00001{left:416.160000px;}
.xa4_c00001{left:417.870000px;}
.xbe_c00001{left:419.490000px;}
.x19f_c00001{left:421.290000px;}
.x6d_c00001{left:423.180000px;}
.x86_c00001{left:424.530000px;}
.x170_c00001{left:426.510000px;}
.xe9_c00001{left:427.860000px;}
.x11e_c00001{left:430.470000px;}
.x1b2_c00001{left:431.730000px;}
.xfd_c00001{left:432.900000px;}
.x5c_c00001{left:434.250000px;}
.x117_c00001{left:436.410000px;}
.x181_c00001{left:437.490000px;}
.x17c_c00001{left:439.200000px;}
.x138_c00001{left:441.090000px;}
.xac_c00001{left:443.070000px;}
.xfc_c00001{left:444.510000px;}
.x10a_c00001{left:446.580000px;}
.x1c8_c00001{left:447.660000px;}
.x120_c00001{left:448.830000px;}
.x2c_c00001{left:450.180000px;}
.xab_c00001{left:451.350000px;}
.x159_c00001{left:452.880000px;}
.x140_c00001{left:455.040000px;}
.x14f_c00001{left:456.390000px;}
.x2b_c00001{left:458.460000px;}
.xe4_c00001{left:460.170000px;}
.xd0_c00001{left:462.060000px;}
.x9e_c00001{left:464.040000px;}
.x99_c00001{left:466.290000px;}
.xdc_c00001{left:468.630000px;}
.xad_c00001{left:470.790000px;}
.xc0_c00001{left:472.140000px;}
.x1e8_c00001{left:473.310000px;}
.x62_c00001{left:475.290000px;}
.xdb_c00001{left:476.910000px;}
.x2d_c00001{left:477.990000px;}
.x106_c00001{left:479.340000px;}
.xbf_c00001{left:480.420000px;}
.x166_c00001{left:481.770000px;}
.x6e_c00001{left:482.850000px;}
.x87_c00001{left:483.930000px;}
.x1f4_c00001{left:485.010000px;}
.x54_c00001{left:486.720000px;}
.x155_c00001{left:488.520000px;}
.xd1_c00001{left:489.780000px;}
.x1d4_c00001{left:491.940000px;}
.x153_c00001{left:493.470000px;}
.x55_c00001{left:494.910000px;}
.x7b_c00001{left:496.980000px;}
.x1e5_c00001{left:498.780000px;}
.xc1_c00001{left:499.860000px;}
.x5e_c00001{left:502.200000px;}
.x42_c00001{left:504.090000px;}
.x142_c00001{left:507.420000px;}
.xea_c00001{left:508.770000px;}
.x185_c00001{left:509.850000px;}
.x53_c00001{left:511.290000px;}
.xc8_c00001{left:513.630000px;}
.xeb_c00001{left:515.520000px;}
.x186_c00001{left:516.600000px;}
.x5a_c00001{left:518.490000px;}
.x195_c00001{left:519.750000px;}
.x12e_c00001{left:521.010000px;}
.xfe_c00001{left:522.360000px;}
.x1e2_c00001{left:523.800000px;}
.x91_c00001{left:524.880000px;}
.x196_c00001{left:526.410000px;}
.x2e_c00001{left:528.840000px;}
.x199_c00001{left:530.640000px;}
.x44_c00001{left:531.990000px;}
.x1d0_c00001{left:533.430000px;}
.x2f_c00001{left:535.590000px;}
.x1c6_c00001{left:537.120000px;}
.x107_c00001{left:538.470000px;}
.x45_c00001{left:540.180000px;}
.x13e_c00001{left:541.350000px;}
.x16f_c00001{left:542.880000px;}
.xdd_c00001{left:545.130000px;}
.x9a_c00001{left:547.200000px;}
.xc2_c00001{left:548.820000px;}
.x1c9_c00001{left:549.900000px;}
.x4a_c00001{left:552.150000px;}
.x6f_c00001{left:553.410000px;}
.xc3_c00001{left:555.480000px;}
.x3a_c00001{left:557.370000px;}
.x137_c00001{left:558.990000px;}
.x70_c00001{left:560.070000px;}
.x119_c00001{left:561.240000px;}
.x125_c00001{left:562.680000px;}
.x151_c00001{left:564.030000px;}
.xa1_c00001{left:566.550000px;}
.x1b8_c00001{left:567.810000px;}
.xb4_c00001{left:569.520000px;}
.x102_c00001{left:571.950000px;}
.xf2_c00001{left:573.750000px;}
.x15b_c00001{left:575.640000px;}
.xa0_c00001{left:576.720000px;}
.x4c_c00001{left:580.230000px;}
.x3b_c00001{left:582.120000px;}
.x5f_c00001{left:584.190000px;}
.x15a_c00001{left:585.810000px;}
.x4d_c00001{left:588.420000px;}
.x156_c00001{left:590.310000px;}
.x1c4_c00001{left:591.570000px;}
.x1d6_c00001{left:593.010000px;}
.xb5_c00001{left:594.180000px;}
.x10c_c00001{left:595.260000px;}
.x1f8_c00001{left:597.330000px;}
.xf3_c00001{left:598.500000px;}
.x7e_c00001{left:599.940000px;}
.x1e6_c00001{left:601.920000px;}
.x127_c00001{left:603.000000px;}
.xe1_c00001{left:604.350000px;}
.x17b_c00001{left:605.610000px;}
.x1b0_c00001{left:606.870000px;}
.x1b1_c00001{left:608.310000px;}
.x7d_c00001{left:610.110000px;}
.x1bb_c00001{left:611.910000px;}
.x126_c00001{left:613.170000px;}
.x60_c00001{left:614.610000px;}
.x1ce_c00001{left:616.050000px;}
.x135_c00001{left:617.670000px;}
.x10d_c00001{left:619.920000px;}
.x139_c00001{left:621.090000px;}
.x18b_c00001{left:622.800000px;}
.xc9_c00001{left:624.690000px;}
.x134_c00001{left:627.840000px;}
.x176_c00001{left:629.730000px;}
.x169_c00001{left:631.170000px;}
.x131_c00001{left:633.240000px;}
.x12f_c00001{left:635.130000px;}
.x1f0_c00001{left:637.200000px;}
.x1ea_c00001{left:639.180000px;}
.x1eb_c00001{left:640.620000px;}
.x8d_c00001{left:643.500000px;}
.x187_c00001{left:645.030000px;}
.x17d_c00001{left:646.110000px;}
.x8e_c00001{left:647.640000px;}
.x4_c00001{left:649.620000px;}
.x11a_c00001{left:651.060000px;}
.xec_c00001{left:652.770000px;}
.x148_c00001{left:653.850000px;}
.x30_c00001{left:655.110000px;}
.x31_c00001{left:656.550000px;}
.x130_c00001{left:658.710000px;}
.x163_c00001{left:659.790000px;}
.xff_c00001{left:661.230000px;}
.x100_c00001{left:662.670000px;}
.x1e1_c00001{left:664.200000px;}
.x15f_c00001{left:665.550000px;}
.xa2_c00001{left:666.990000px;}
.xde_c00001{left:669.240000px;}
.xa3_c00001{left:671.130000px;}
.xc4_c00001{left:673.380000px;}
.x121_c00001{left:674.910000px;}
.x9b_c00001{left:677.250000px;}
.x9c_c00001{left:678.690000px;}
.x71_c00001{left:680.040000px;}
.x72_c00001{left:681.480000px;}
.x3c_c00001{left:683.730000px;}
.xb6_c00001{left:685.710000px;}
.x3d_c00001{left:687.870000px;}
.x1f5_c00001{left:689.490000px;}
.x174_c00001{left:691.290000px;}
.x61_c00001{left:693.360000px;}
.xf4_c00001{left:694.530000px;}
.xf5_c00001{left:698.580000px;}
.x7f_c00001{left:701.550000px;}
.x128_c00001{left:702.900000px;}
.x80_c00001{left:705.600000px;}
.xe2_c00001{left:706.680000px;}
.x10e_c00001{left:708.210000px;}
.x1f2_c00001{left:709.290000px;}
.x1f6_c00001{left:710.730000px;}
.xca_c00001{left:712.530000px;}
.x1b3_c00001{left:713.610000px;}
.x63_c00001{left:714.870000px;}
.xcb_c00001{left:716.580000px;}
.x1fb_c00001{left:717.750000px;}
.x10f_c00001{left:720.180000px;}
.x1f7_c00001{left:722.250000px;}
.x1ec_c00001{left:724.410000px;}
.x188_c00001{left:727.290000px;}
.xf7_c00001{left:728.370000px;}
.x50_c00001{left:729.450000px;}
.x58_c00001{left:730.620000px;}
.x1de_c00001{left:731.970000px;}
.x32_c00001{left:734.490000px;}
.x175_c00001{left:736.020000px;}
.xae_c00001{left:737.280000px;}
.x2_c00001{left:738.450000px;}
.x108_c00001{left:740.969850px;}
.xed_c00001{left:742.409850px;}
.xa5_c00001{left:744.120000px;}
.xd2_c00001{left:745.560000px;}
.x1bf_c00001{left:746.639850px;}
.x33_c00001{left:748.710000px;}
.x8c_c00001{left:749.969850px;}
.xaf_c00001{left:751.409850px;}
.x18a_c00001{left:752.940000px;}
.x109_c00001{left:755.190000px;}
.x9f_c00001{left:756.719850px;}
.x1e3_c00001{left:757.889850px;}
.x73_c00001{left:759.240000px;}
.x147_c00001{left:760.950000px;}
.xc5_c00001{left:763.110000px;}
.x11c_c00001{left:764.370000px;}
.x5_c00001{left:765.450198px;}
.x43_c00001{left:766.800000px;}
.x92_c00001{left:768.870000px;}
.x12a_c00001{left:770.129850px;}
.x5b_c00001{left:772.019850px;}
.x74_c00001{left:773.460000px;}
.xb3_c00001{left:775.889850px;}
.x19d_c00001{left:780.929850px;}
.x18c_c00001{left:783.179850px;}
.x124_c00001{left:784.530000px;}
.x197_c00001{left:787.050000px;}
.x39_c00001{left:790.110000px;}
.x7c_c00001{left:792.179850px;}
.x12b_c00001{left:794.339850px;}
.xf1_c00001{left:795.960000px;}
.x4b_c00001{left:801.990000px;}
.x10b_c00001{left:803.159850px;}
.x1d5_c00001{left:805.680000px;}
.x183_c00001{left:807.749850px;}
.x144_c00001{left:811.890000px;}
.x1a2_c00001{left:813.510000px;}
.x192_c00001{left:814.949850px;}
.xa7_c00001{left:816.300000px;}
.x104_c00001{left:818.999850px;}
.x116_c00001{left:820.620000px;}
.xce_c00001{left:822.150000px;}
.xba_c00001{left:823.949850px;}
.x1da_c00001{left:826.290000px;}
.x18d_c00001{left:828.269850px;}
.x16d_c00001{left:830.339850px;}
.x129_c00001{left:831.870000px;}
.x48_c00001{left:834.120000px;}
.x67_c00001{left:836.190000px;}
.x1a3_c00001{left:838.620000px;}
.x1b5_c00001{left:839.700000px;}
.x152_c00001{left:840.870000px;}
.x1f3_c00001{left:843.120000px;}
.x1d8_c00001{left:845.370000px;}
.xef_c00001{left:846.449850px;}
.x1ba_c00001{left:847.620000px;}
.x1a6_c00001{left:850.139850px;}
.x1c1_c00001{left:852.120000px;}
.x1a1_c00001{left:854.370000px;}
.x1ac_c00001{left:856.620000px;}
.xe5_c00001{left:859.680000px;}
.x19a_c00001{left:861.569850px;}
.xc7_c00001{left:863.460000px;}
.x171_c00001{left:865.620000px;}
.x191_c00001{left:867.870000px;}
.x14b_c00001{left:871.110000px;}
.xe0_c00001{left:873.089850px;}
.x17f_c00001{left:874.980000px;}
.x16a_c00001{left:876.870000px;}
.xcc_c00001{left:879.120000px;}
.x13a_c00001{left:881.370000px;}
.x167_c00001{left:883.620000px;}
@media print{
.v3_c00001{vertical-align:-18.560000pt;}
.v4_c00001{vertical-align:-3.840000pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v5_c00001{vertical-align:2.880000pt;}
.v2_c00001{vertical-align:21.439467pt;}
.v1_c00001{vertical-align:24.000000pt;}
.v6_c00001{vertical-align:32.640000pt;}
.ls9b_c00001{letter-spacing:-3.923200pt;}
.ls97_c00001{letter-spacing:-3.840000pt;}
.ls59_c00001{letter-spacing:-3.520000pt;}
.ls57_c00001{letter-spacing:-3.200000pt;}
.ls58_c00001{letter-spacing:-2.560000pt;}
.ls39_c00001{letter-spacing:-2.240000pt;}
.ls68_c00001{letter-spacing:-1.920000pt;}
.ls2e_c00001{letter-spacing:-1.600000pt;}
.ls9a_c00001{letter-spacing:-1.331200pt;}
.ls93_c00001{letter-spacing:-0.998400pt;}
.lsa0_c00001{letter-spacing:-0.960000pt;}
.ls96_c00001{letter-spacing:-0.499200pt;}
.ls2a_c00001{letter-spacing:-0.320000pt;}
.lsa4_c00001{letter-spacing:-0.243200pt;}
.ls7d_c00001{letter-spacing:-0.230400pt;}
.ls99_c00001{letter-spacing:-0.224000pt;}
.ls2d_c00001{letter-spacing:-0.211200pt;}
.ls60_c00001{letter-spacing:-0.192000pt;}
.lsa7_c00001{letter-spacing:-0.166400pt;}
.ls54_c00001{letter-spacing:-0.160000pt;}
.ls72_c00001{letter-spacing:-0.153600pt;}
.ls3d_c00001{letter-spacing:-0.144288pt;}
.ls35_c00001{letter-spacing:-0.140800pt;}
.ls1a5_c00001{letter-spacing:-0.139200pt;}
.ls3b_c00001{letter-spacing:-0.138944pt;}
.ls7c_c00001{letter-spacing:-0.134400pt;}
.ls3a_c00001{letter-spacing:-0.133600pt;}
.lseb_c00001{letter-spacing:-0.129600pt;}
.ls38_c00001{letter-spacing:-0.128000pt;}
.lsc3_c00001{letter-spacing:-0.124800pt;}
.lsb1_c00001{letter-spacing:-0.121600pt;}
.lsb8_c00001{letter-spacing:-0.120000pt;}
.lsba_c00001{letter-spacing:-0.115200pt;}
.lsc2_c00001{letter-spacing:-0.110400pt;}
.ls67_c00001{letter-spacing:-0.108800pt;}
.lsb9_c00001{letter-spacing:-0.105600pt;}
.ls8b_c00001{letter-spacing:-0.102400pt;}
.lsc6_c00001{letter-spacing:-0.100800pt;}
.ls37_c00001{letter-spacing:-0.096000pt;}
.lsb5_c00001{letter-spacing:-0.091200pt;}
.ls8_c00001{letter-spacing:-0.090848pt;}
.ls78_c00001{letter-spacing:-0.089600pt;}
.lsbc_c00001{letter-spacing:-0.086400pt;}
.ls61_c00001{letter-spacing:-0.083200pt;}
.ls137_c00001{letter-spacing:-0.082016pt;}
.lsc7_c00001{letter-spacing:-0.081600pt;}
.ls5c_c00001{letter-spacing:-0.080160pt;}
.ls19_c00001{letter-spacing:-0.076800pt;}
.ls178_c00001{letter-spacing:-0.074560pt;}
.lsc4_c00001{letter-spacing:-0.072000pt;}
.ls1b_c00001{letter-spacing:-0.070400pt;}
.lsb6_c00001{letter-spacing:-0.067200pt;}
.ls174_c00001{letter-spacing:-0.067104pt;}
.ls5d_c00001{letter-spacing:-0.064128pt;}
.ls95_c00001{letter-spacing:-0.064000pt;}
.lsbd_c00001{letter-spacing:-0.062400pt;}
.ls27_c00001{letter-spacing:-0.057600pt;}
.lsb7_c00001{letter-spacing:-0.052800pt;}
.ls12_c00001{letter-spacing:-0.051200pt;}
.lsca_c00001{letter-spacing:-0.048000pt;}
.ls15_c00001{letter-spacing:-0.044800pt;}
.lsbb_c00001{letter-spacing:-0.043200pt;}
.ls11_c00001{letter-spacing:-0.042752pt;}
.ls18_c00001{letter-spacing:-0.038400pt;}
.ls3c_c00001{letter-spacing:-0.037408pt;}
.lsc0_c00001{letter-spacing:-0.033600pt;}
.ls13_c00001{letter-spacing:-0.032000pt;}
.lsb2_c00001{letter-spacing:-0.028800pt;}
.ls14_c00001{letter-spacing:-0.025600pt;}
.lsd6_c00001{letter-spacing:-0.024000pt;}
.lsc_c00001{letter-spacing:-0.019200pt;}
.lsb3_c00001{letter-spacing:-0.014400pt;}
.lsb_c00001{letter-spacing:-0.012800pt;}
.lsb0_c00001{letter-spacing:-0.009600pt;}
.lsa_c00001{letter-spacing:-0.006400pt;}
.lsbf_c00001{letter-spacing:-0.004800pt;}
.ls9_c00001{letter-spacing:0.000000pt;}
.lse2_c00001{letter-spacing:0.004800pt;}
.ls5_c00001{letter-spacing:0.006400pt;}
.ls15c_c00001{letter-spacing:0.007456pt;}
.lsac_c00001{letter-spacing:0.009600pt;}
.ls4_c00001{letter-spacing:0.012800pt;}
.lsde_c00001{letter-spacing:0.014400pt;}
.ls18f_c00001{letter-spacing:0.014912pt;}
.ls34_c00001{letter-spacing:0.016032pt;}
.ls3_c00001{letter-spacing:0.019200pt;}
.ls145_c00001{letter-spacing:0.022368pt;}
.lsaa_c00001{letter-spacing:0.024000pt;}
.lsd_c00001{letter-spacing:0.025600pt;}
.ls18e_c00001{letter-spacing:0.025632pt;}
.lsad_c00001{letter-spacing:0.028800pt;}
.ls6b_c00001{letter-spacing:0.029824pt;}
.ls1_c00001{letter-spacing:0.032000pt;}
.lsa9_c00001{letter-spacing:0.033600pt;}
.ls22_c00001{letter-spacing:0.037280pt;}
.ls0_c00001{letter-spacing:0.038400pt;}
.lse3_c00001{letter-spacing:0.043200pt;}
.ls10_c00001{letter-spacing:0.044736pt;}
.ls2_c00001{letter-spacing:0.044800pt;}
.ls11b_c00001{letter-spacing:0.048000pt;}
.ls7_c00001{letter-spacing:0.051200pt;}
.ls1d_c00001{letter-spacing:0.052192pt;}
.ls198_c00001{letter-spacing:0.052800pt;}
.ls6_c00001{letter-spacing:0.057600pt;}
.ls149_c00001{letter-spacing:0.059648pt;}
.lsc8_c00001{letter-spacing:0.062400pt;}
.ls17_c00001{letter-spacing:0.064000pt;}
.ls1f_c00001{letter-spacing:0.067104pt;}
.ls5b_c00001{letter-spacing:0.069472pt;}
.ls1a_c00001{letter-spacing:0.070400pt;}
.lsd0_c00001{letter-spacing:0.072000pt;}
.lsa1_c00001{letter-spacing:0.074560pt;}
.ls3f_c00001{letter-spacing:0.074816pt;}
.ls21_c00001{letter-spacing:0.076800pt;}
.ls26_c00001{letter-spacing:0.082016pt;}
.ls16_c00001{letter-spacing:0.083200pt;}
.ls50_c00001{letter-spacing:0.085504pt;}
.lse_c00001{letter-spacing:0.089600pt;}
.ls29_c00001{letter-spacing:0.096000pt;}
.ls10b_c00001{letter-spacing:0.100800pt;}
.ls3e_c00001{letter-spacing:0.101536pt;}
.ls6e_c00001{letter-spacing:0.102400pt;}
.lscf_c00001{letter-spacing:0.105600pt;}
.lsf_c00001{letter-spacing:0.108800pt;}
.ls106_c00001{letter-spacing:0.110400pt;}
.lsd9_c00001{letter-spacing:0.115200pt;}
.lsf8_c00001{letter-spacing:0.120000pt;}
.ls89_c00001{letter-spacing:0.121600pt;}
.ls1c_c00001{letter-spacing:0.128000pt;}
.ls13e_c00001{letter-spacing:0.129600pt;}
.ls80_c00001{letter-spacing:0.134400pt;}
.ls101_c00001{letter-spacing:0.139200pt;}
.ls55_c00001{letter-spacing:0.140800pt;}
.lsf3_c00001{letter-spacing:0.144000pt;}
.ls69_c00001{letter-spacing:0.147200pt;}
.ls156_c00001{letter-spacing:0.148800pt;}
.ls94_c00001{letter-spacing:0.153600pt;}
.ls5a_c00001{letter-spacing:0.154976pt;}
.ls28_c00001{letter-spacing:0.156576pt;}
.ls18d_c00001{letter-spacing:0.158400pt;}
.ls70_c00001{letter-spacing:0.160000pt;}
.ls36_c00001{letter-spacing:0.161728pt;}
.ls155_c00001{letter-spacing:0.168000pt;}
.lsbe_c00001{letter-spacing:0.182400pt;}
.lsc9_c00001{letter-spacing:0.192000pt;}
.ls91_c00001{letter-spacing:0.204800pt;}
.lsd3_c00001{letter-spacing:0.230400pt;}
.ls7f_c00001{letter-spacing:0.236800pt;}
.ls20_c00001{letter-spacing:0.240000pt;}
.ls4f_c00001{letter-spacing:0.320000pt;}
.ls193_c00001{letter-spacing:0.388800pt;}
.lsb4_c00001{letter-spacing:0.441600pt;}
.lsa3_c00001{letter-spacing:0.480000pt;}
.ls8e_c00001{letter-spacing:0.640000pt;}
.ls5e_c00001{letter-spacing:0.919168pt;}
.ls44_c00001{letter-spacing:0.960000pt;}
.ls42_c00001{letter-spacing:0.998400pt;}
.ls7a_c00001{letter-spacing:1.004800pt;}
.ls41_c00001{letter-spacing:1.017600pt;}
.ls40_c00001{letter-spacing:1.024000pt;}
.ls73_c00001{letter-spacing:1.030400pt;}
.ls46_c00001{letter-spacing:1.036800pt;}
.ls43_c00001{letter-spacing:1.043200pt;}
.ls4c_c00001{letter-spacing:1.049600pt;}
.ls47_c00001{letter-spacing:1.056000pt;}
.ls4d_c00001{letter-spacing:1.062400pt;}
.ls49_c00001{letter-spacing:1.068800pt;}
.ls4b_c00001{letter-spacing:1.075200pt;}
.ls45_c00001{letter-spacing:1.088000pt;}
.ls74_c00001{letter-spacing:1.107200pt;}
.ls4a_c00001{letter-spacing:1.139200pt;}
.ls48_c00001{letter-spacing:1.216000pt;}
.ls76_c00001{letter-spacing:1.280000pt;}
.ls52_c00001{letter-spacing:1.600000pt;}
.ls2c_c00001{letter-spacing:1.811200pt;}
.lsa8_c00001{letter-spacing:1.920000pt;}
.ls6c_c00001{letter-spacing:2.240000pt;}
.ls9c_c00001{letter-spacing:2.560000pt;}
.ls7b_c00001{letter-spacing:2.662400pt;}
.ls86_c00001{letter-spacing:2.816000pt;}
.ls77_c00001{letter-spacing:3.200000pt;}
.ls81_c00001{letter-spacing:3.520000pt;}
.ls66_c00001{letter-spacing:4.160000pt;}
.ls9f_c00001{letter-spacing:4.748800pt;}
.ls75_c00001{letter-spacing:4.800000pt;}
.ls63_c00001{letter-spacing:5.040000pt;}
.ls64_c00001{letter-spacing:5.120000pt;}
.ls88_c00001{letter-spacing:5.680000pt;}
.ls31_c00001{letter-spacing:5.760000pt;}
.ls25_c00001{letter-spacing:5.831488pt;}
.ls23_c00001{letter-spacing:5.833728pt;}
.ls6d_c00001{letter-spacing:6.041600pt;}
.ls4e_c00001{letter-spacing:6.208000pt;}
.ls71_c00001{letter-spacing:6.348800pt;}
.lsa2_c00001{letter-spacing:6.400000pt;}
.ls85_c00001{letter-spacing:6.720000pt;}
.ls6f_c00001{letter-spacing:7.360000pt;}
.lsa5_c00001{letter-spacing:7.680000pt;}
.ls53_c00001{letter-spacing:8.000000pt;}
.ls8a_c00001{letter-spacing:8.320000pt;}
.lsa6_c00001{letter-spacing:9.280000pt;}
.ls9d_c00001{letter-spacing:9.600000pt;}
.ls92_c00001{letter-spacing:10.240000pt;}
.ls84_c00001{letter-spacing:10.880000pt;}
.ls131_c00001{letter-spacing:11.840000pt;}
.ls90_c00001{letter-spacing:12.480000pt;}
.ls82_c00001{letter-spacing:13.120000pt;}
.ls32_c00001{letter-spacing:13.189664pt;}
.ls115_c00001{letter-spacing:13.760000pt;}
.ls98_c00001{letter-spacing:14.208000pt;}
.ls83_c00001{letter-spacing:14.720000pt;}
.ls8c_c00001{letter-spacing:15.680000pt;}
.ls65_c00001{letter-spacing:15.920000pt;}
.ls30_c00001{letter-spacing:16.320000pt;}
.ls8f_c00001{letter-spacing:16.640000pt;}
.ls24_c00001{letter-spacing:19.273760pt;}
.ls56_c00001{letter-spacing:19.840000pt;}
.ls2b_c00001{letter-spacing:24.000000pt;}
.ls62_c00001{letter-spacing:25.600000pt;}
.ls1e_c00001{letter-spacing:30.208000pt;}
.ls87_c00001{letter-spacing:37.831744pt;}
.ls33_c00001{letter-spacing:38.208000pt;}
.ls5f_c00001{letter-spacing:45.832032pt;}
.ls8d_c00001{letter-spacing:46.208000pt;}
.ls2f_c00001{letter-spacing:48.768000pt;}
.ls6a_c00001{letter-spacing:54.208000pt;}
.ls79_c00001{letter-spacing:54.720000pt;}
.ls51_c00001{letter-spacing:57.920000pt;}
.ls7e_c00001{letter-spacing:59.008000pt;}
.ls9e_c00001{letter-spacing:62.208000pt;}
.ls112_c00001{letter-spacing:97.151467pt;}
.ls1a1_c00001{letter-spacing:103.232000pt;}
.lsf1_c00001{letter-spacing:105.151467pt;}
.lse6_c00001{letter-spacing:105.471467pt;}
.ls10c_c00001{letter-spacing:105.472000pt;}
.ls19d_c00001{letter-spacing:107.711467pt;}
.lsea_c00001{letter-spacing:109.632000pt;}
.lsaf_c00001{letter-spacing:110.271467pt;}
.ls100_c00001{letter-spacing:114.112533pt;}
.lse0_c00001{letter-spacing:117.312000pt;}
.ls130_c00001{letter-spacing:119.231467pt;}
.ls110_c00001{letter-spacing:123.712000pt;}
.ls10a_c00001{letter-spacing:128.832000pt;}
.lsfb_c00001{letter-spacing:129.151467pt;}
.ls1a0_c00001{letter-spacing:129.791467pt;}
.lsee_c00001{letter-spacing:131.712000pt;}
.lse1_c00001{letter-spacing:132.032000pt;}
.ls129_c00001{letter-spacing:132.352000pt;}
.ls12c_c00001{letter-spacing:132.671467pt;}
.ls19c_c00001{letter-spacing:134.272000pt;}
.ls18b_c00001{letter-spacing:135.232000pt;}
.lsf7_c00001{letter-spacing:135.872000pt;}
.ls105_c00001{letter-spacing:135.872533pt;}
.lse7_c00001{letter-spacing:136.191467pt;}
.lsab_c00001{letter-spacing:136.831467pt;}
.ls181_c00001{letter-spacing:138.432000pt;}
.ls188_c00001{letter-spacing:140.032000pt;}
.ls14e_c00001{letter-spacing:140.672000pt;}
.lsff_c00001{letter-spacing:140.672533pt;}
.ls157_c00001{letter-spacing:140.991467pt;}
.ls195_c00001{letter-spacing:141.952000pt;}
.lsdd_c00001{letter-spacing:143.872000pt;}
.ls139_c00001{letter-spacing:145.472000pt;}
.ls12e_c00001{letter-spacing:145.792000pt;}
.ls114_c00001{letter-spacing:146.432533pt;}
.ls142_c00001{letter-spacing:147.711467pt;}
.ls140_c00001{letter-spacing:147.712000pt;}
.ls14b_c00001{letter-spacing:148.992000pt;}
.ls13c_c00001{letter-spacing:149.312000pt;}
.ls151_c00001{letter-spacing:149.632000pt;}
.ls11f_c00001{letter-spacing:149.952000pt;}
.ls17d_c00001{letter-spacing:150.591467pt;}
.ls16e_c00001{letter-spacing:151.232000pt;}
.ls161_c00001{letter-spacing:151.551467pt;}
.ls186_c00001{letter-spacing:151.552000pt;}
.ls1a7_c00001{letter-spacing:152.192000pt;}
.ls197_c00001{letter-spacing:152.511467pt;}
.ls146_c00001{letter-spacing:153.792533pt;}
.ls177_c00001{letter-spacing:154.752533pt;}
.ls17a_c00001{letter-spacing:155.392000pt;}
.ls107_c00001{letter-spacing:155.392533pt;}
.lsf9_c00001{letter-spacing:155.712000pt;}
.ls173_c00001{letter-spacing:155.712533pt;}
.ls190_c00001{letter-spacing:156.032533pt;}
.ls121_c00001{letter-spacing:156.352000pt;}
.ls135_c00001{letter-spacing:157.311467pt;}
.ls1b4_c00001{letter-spacing:157.952533pt;}
.ls126_c00001{letter-spacing:158.912000pt;}
.ls1b8_c00001{letter-spacing:159.231467pt;}
.ls12b_c00001{letter-spacing:159.232000pt;}
.ls16b_c00001{letter-spacing:159.872000pt;}
.ls168_c00001{letter-spacing:160.512533pt;}
.ls192_c00001{letter-spacing:161.471467pt;}
.ls166_c00001{letter-spacing:161.792000pt;}
.lsf5_c00001{letter-spacing:162.432000pt;}
.ls103_c00001{letter-spacing:162.432533pt;}
.ls1ad_c00001{letter-spacing:164.032000pt;}
.ls1a4_c00001{letter-spacing:164.352000pt;}
.ls118_c00001{letter-spacing:165.952000pt;}
.ls1b3_c00001{letter-spacing:167.551467pt;}
.ls153_c00001{letter-spacing:169.792533pt;}
.lsd2_c00001{letter-spacing:170.112000pt;}
.ls15f_c00001{letter-spacing:171.072000pt;}
.ls11d_c00001{letter-spacing:172.992000pt;}
.ls1b0_c00001{letter-spacing:174.592000pt;}
.ls1a9_c00001{letter-spacing:175.872000pt;}
.ls11c_c00001{letter-spacing:176.512000pt;}
.ls1b6_c00001{letter-spacing:177.792000pt;}
.ls1b5_c00001{letter-spacing:180.352000pt;}
.ls120_c00001{letter-spacing:182.911467pt;}
.lsfd_c00001{letter-spacing:184.512000pt;}
.ls19e_c00001{letter-spacing:188.672000pt;}
.ls1b2_c00001{letter-spacing:190.912000pt;}
.lsef_c00001{letter-spacing:191.552000pt;}
.lse4_c00001{letter-spacing:191.872000pt;}
.ls199_c00001{letter-spacing:192.192000pt;}
.ls10d_c00001{letter-spacing:195.712000pt;}
.ls18c_c00001{letter-spacing:196.352000pt;}
.ls111_c00001{letter-spacing:196.672000pt;}
.lse8_c00001{letter-spacing:197.632000pt;}
.ls1af_c00001{letter-spacing:198.272000pt;}
.lsd7_c00001{letter-spacing:198.912000pt;}
.lsd4_c00001{letter-spacing:199.232000pt;}
.ls132_c00001{letter-spacing:199.552000pt;}
.ls122_c00001{letter-spacing:200.832000pt;}
.lsec_c00001{letter-spacing:201.152000pt;}
.ls16d_c00001{letter-spacing:202.112000pt;}
.ls19f_c00001{letter-spacing:204.352000pt;}
.lsda_c00001{letter-spacing:205.952000pt;}
.lsf0_c00001{letter-spacing:207.552000pt;}
.lse5_c00001{letter-spacing:208.192000pt;}
.lsfc_c00001{letter-spacing:208.832000pt;}
.ls19b_c00001{letter-spacing:210.432000pt;}
.lscd_c00001{letter-spacing:210.751467pt;}
.ls113_c00001{letter-spacing:212.032000pt;}
.ls12a_c00001{letter-spacing:212.352000pt;}
.ls10e_c00001{letter-spacing:212.672000pt;}
.ls102_c00001{letter-spacing:213.952000pt;}
.lse9_c00001{letter-spacing:214.592000pt;}
.lsae_c00001{letter-spacing:215.232000pt;}
.lsd8_c00001{letter-spacing:215.552000pt;}
.lsd5_c00001{letter-spacing:215.872000pt;}
.ls11e_c00001{letter-spacing:216.832000pt;}
.ls182_c00001{letter-spacing:218.112000pt;}
.ls189_c00001{letter-spacing:219.392000pt;}
.lsfe_c00001{letter-spacing:220.672000pt;}
.ls14f_c00001{letter-spacing:220.992000pt;}
.ls159_c00001{letter-spacing:221.312000pt;}
.lsdb_c00001{letter-spacing:223.232000pt;}
.ls10f_c00001{letter-spacing:223.552000pt;}
.lsdc_c00001{letter-spacing:225.152000pt;}
.ls16c_c00001{letter-spacing:226.112000pt;}
.ls17f_c00001{letter-spacing:226.432000pt;}
.ls12f_c00001{letter-spacing:227.072000pt;}
.ls13a_c00001{letter-spacing:228.352000pt;}
.ls14a_c00001{letter-spacing:228.672000pt;}
.ls116_c00001{letter-spacing:229.632000pt;}
.ls162_c00001{letter-spacing:229.952000pt;}
.ls143_c00001{letter-spacing:230.592000pt;}
.ls141_c00001{letter-spacing:231.232000pt;}
.ls172_c00001{letter-spacing:231.872000pt;}
.ls13d_c00001{letter-spacing:232.512000pt;}
.ls14c_c00001{letter-spacing:233.152000pt;}
.ls152_c00001{letter-spacing:234.112000pt;}
.ls127_c00001{letter-spacing:234.432000pt;}
.ls16f_c00001{letter-spacing:235.392000pt;}
.ls185_c00001{letter-spacing:236.032000pt;}
.ls163_c00001{letter-spacing:236.352000pt;}
.ls19a_c00001{letter-spacing:237.632000pt;}
.ls148_c00001{letter-spacing:239.552000pt;}
.ls179_c00001{letter-spacing:241.152000pt;}
.lsfa_c00001{letter-spacing:241.792000pt;}
.ls109_c00001{letter-spacing:242.112000pt;}
.ls17b_c00001{letter-spacing:242.432000pt;}
.ls17e_c00001{letter-spacing:242.752000pt;}
.ls133_c00001{letter-spacing:244.032000pt;}
.ls180_c00001{letter-spacing:244.992000pt;}
.ls187_c00001{letter-spacing:246.272000pt;}
.ls164_c00001{letter-spacing:246.592000pt;}
.lsc1_c00001{letter-spacing:247.552000pt;}
.ls158_c00001{letter-spacing:248.192000pt;}
.ls1ba_c00001{letter-spacing:248.512533pt;}
.ls194_c00001{letter-spacing:249.152000pt;}
.ls169_c00001{letter-spacing:249.472000pt;}
.ls11a_c00001{letter-spacing:250.432000pt;}
.ls167_c00001{letter-spacing:251.072000pt;}
.lsdf_c00001{letter-spacing:252.032000pt;}
.ls104_c00001{letter-spacing:252.352000pt;}
.lsf6_c00001{letter-spacing:252.672000pt;}
.ls165_c00001{letter-spacing:253.952000pt;}
.ls1ae_c00001{letter-spacing:254.272000pt;}
.ls138_c00001{letter-spacing:255.232000pt;}
.ls119_c00001{letter-spacing:257.152000pt;}
.ls13f_c00001{letter-spacing:258.112000pt;}
.ls171_c00001{letter-spacing:258.752000pt;}
.ls16a_c00001{letter-spacing:260.032000pt;}
.ls17c_c00001{letter-spacing:260.672000pt;}
.ls150_c00001{letter-spacing:260.992000pt;}
.ls154_c00001{letter-spacing:262.272000pt;}
.ls160_c00001{letter-spacing:263.232000pt;}
.lsd1_c00001{letter-spacing:263.552000pt;}
.ls184_c00001{letter-spacing:263.872000pt;}
.ls196_c00001{letter-spacing:264.192000pt;}
.ls15d_c00001{letter-spacing:264.512000pt;}
.ls1a6_c00001{letter-spacing:265.152000pt;}
.ls15b_c00001{letter-spacing:265.472000pt;}
.ls147_c00001{letter-spacing:266.432000pt;}
.ls175_c00001{letter-spacing:267.712000pt;}
.ls176_c00001{letter-spacing:268.032000pt;}
.ls108_c00001{letter-spacing:268.992000pt;}
.ls191_c00001{letter-spacing:269.312000pt;}
.ls134_c00001{letter-spacing:270.592000pt;}
.ls14d_c00001{letter-spacing:273.152000pt;}
.ls128_c00001{letter-spacing:273.792000pt;}
.ls18a_c00001{letter-spacing:279.872000pt;}
.ls1ac_c00001{letter-spacing:281.152000pt;}
.ls1a3_c00001{letter-spacing:282.112000pt;}
.ls117_c00001{letter-spacing:284.032000pt;}
.ls15e_c00001{letter-spacing:291.712000pt;}
.ls15a_c00001{letter-spacing:292.352000pt;}
.ls1b7_c00001{letter-spacing:304.192000pt;}
.ls12d_c00001{letter-spacing:309.312000pt;}
.ls1bd_c00001{letter-spacing:312.192000pt;}
.lsce_c00001{letter-spacing:320.512000pt;}
.ls1bb_c00001{letter-spacing:323.392000pt;}
.ls170_c00001{letter-spacing:338.752000pt;}
.ls1bc_c00001{letter-spacing:339.072000pt;}
.ls124_c00001{letter-spacing:339.712000pt;}
.lscc_c00001{letter-spacing:347.392000pt;}
.ls123_c00001{letter-spacing:366.592000pt;}
.ls1a2_c00001{letter-spacing:366.912000pt;}
.lsc5_c00001{letter-spacing:367.872000pt;}
.lscb_c00001{letter-spacing:369.472000pt;}
.ls1b9_c00001{letter-spacing:402.112000pt;}
.ls136_c00001{letter-spacing:680.640000pt;}
.ls13b_c00001{letter-spacing:881.600000pt;}
.lsf4_c00001{letter-spacing:1113.600000pt;}
.lsed_c00001{letter-spacing:1144.960000pt;}
.ls125_c00001{letter-spacing:1254.400000pt;}
.lsf2_c00001{letter-spacing:1319.360000pt;}
.ls1b1_c00001{letter-spacing:1398.400000pt;}
.ls1ab_c00001{letter-spacing:1596.800000pt;}
.ls1aa_c00001{letter-spacing:1684.480000pt;}
.ls1a8_c00001{letter-spacing:1692.160000pt;}
.ls144_c00001{letter-spacing:2298.560000pt;}
.ls183_c00001{letter-spacing:2537.280000pt;}
.ws111_c00001{word-spacing:-352.096000pt;}
.wsf1_c00001{word-spacing:-305.696000pt;}
.wsa4_c00001{word-spacing:-297.376000pt;}
.ws14f_c00001{word-spacing:-295.456000pt;}
.ws15b_c00001{word-spacing:-294.496000pt;}
.ws137_c00001{word-spacing:-282.656000pt;}
.ws86_c00001{word-spacing:-282.336000pt;}
.ws117_c00001{word-spacing:-281.376000pt;}
.wsdc_c00001{word-spacing:-279.776000pt;}
.ws151_c00001{word-spacing:-278.496000pt;}
.wsf8_c00001{word-spacing:-276.576000pt;}
.ws113_c00001{word-spacing:-272.096000pt;}
.wsd0_c00001{word-spacing:-268.576000pt;}
.ws57_c00001{word-spacing:-265.376000pt;}
.ws12b_c00001{word-spacing:-259.616000pt;}
.ws126_c00001{word-spacing:-258.336000pt;}
.ws96_c00001{word-spacing:-236.896000pt;}
.ws130_c00001{word-spacing:-187.616000pt;}
.wsa8_c00001{word-spacing:-170.336000pt;}
.ws12f_c00001{word-spacing:-160.736000pt;}
.wsff_c00001{word-spacing:-145.696000pt;}
.wsa7_c00001{word-spacing:-143.456000pt;}
.ws38_c00001{word-spacing:-141.856000pt;}
.wsfb_c00001{word-spacing:-132.576000pt;}
.ws10c_c00001{word-spacing:-130.016000pt;}
.ws80_c00001{word-spacing:-122.656000pt;}
.ws7a_c00001{word-spacing:-119.776000pt;}
.ws69_c00001{word-spacing:-116.576000pt;}
.wsb6_c00001{word-spacing:-115.616000pt;}
.wsc7_c00001{word-spacing:-114.656000pt;}
.ws56_c00001{word-spacing:-114.336000pt;}
.ws15e_c00001{word-spacing:-113.696000pt;}
.ws141_c00001{word-spacing:-112.096000pt;}
.ws161_c00001{word-spacing:-109.216000pt;}
.wse_c00001{word-spacing:-64.000000pt;}
.ws8_c00001{word-spacing:-18.796576pt;}
.ws6_c00001{word-spacing:-18.677280pt;}
.ws62_c00001{word-spacing:-17.849600pt;}
.wsab_c00001{word-spacing:-17.811200pt;}
.wsb1_c00001{word-spacing:-17.792000pt;}
.ws7f_c00001{word-spacing:-17.785600pt;}
.ws16c_c00001{word-spacing:-17.779200pt;}
.ws160_c00001{word-spacing:-17.760000pt;}
.ws99_c00001{word-spacing:-17.753600pt;}
.ws5c_c00001{word-spacing:-17.747200pt;}
.ws2f_c00001{word-spacing:-17.670400pt;}
.wsbd_c00001{word-spacing:-17.657600pt;}
.ws1c_c00001{word-spacing:-17.036800pt;}
.ws1b_c00001{word-spacing:-17.024000pt;}
.ws27_c00001{word-spacing:-17.017600pt;}
.ws2c_c00001{word-spacing:-16.108800pt;}
.ws28_c00001{word-spacing:-16.096000pt;}
.ws1e_c00001{word-spacing:-16.089600pt;}
.ws16_c00001{word-spacing:-16.083200pt;}
.ws5_c00001{word-spacing:-16.076800pt;}
.wsf_c00001{word-spacing:-16.070400pt;}
.ws7_c00001{word-spacing:-16.064000pt;}
.ws12_c00001{word-spacing:-16.057600pt;}
.ws9_c00001{word-spacing:-16.051200pt;}
.ws11_c00001{word-spacing:-16.044800pt;}
.wsc_c00001{word-spacing:-16.038400pt;}
.wsa_c00001{word-spacing:-16.032000pt;}
.wsb_c00001{word-spacing:-16.025600pt;}
.ws1d_c00001{word-spacing:-16.019200pt;}
.wsd_c00001{word-spacing:-16.012800pt;}
.ws14_c00001{word-spacing:-16.006400pt;}
.ws4_c00001{word-spacing:-16.000000pt;}
.ws13_c00001{word-spacing:-15.993600pt;}
.ws26_c00001{word-spacing:-15.987200pt;}
.ws10_c00001{word-spacing:-15.980800pt;}
.ws17_c00001{word-spacing:-15.974400pt;}
.ws22_c00001{word-spacing:-15.961600pt;}
.ws20_c00001{word-spacing:-15.955200pt;}
.ws21_c00001{word-spacing:-15.948800pt;}
.ws1f_c00001{word-spacing:-15.942400pt;}
.ws24_c00001{word-spacing:-15.916800pt;}
.ws25_c00001{word-spacing:-15.891200pt;}
.ws1a_c00001{word-spacing:-15.859200pt;}
.ws2b_c00001{word-spacing:-15.846400pt;}
.ws2e_c00001{word-spacing:-15.833600pt;}
.ws2a_c00001{word-spacing:-15.680000pt;}
.ws72_c00001{word-spacing:-13.464000pt;}
.ws3f_c00001{word-spacing:-13.416000pt;}
.ws166_c00001{word-spacing:-13.358400pt;}
.ws36_c00001{word-spacing:-13.310400pt;}
.wsb9_c00001{word-spacing:-13.300800pt;}
.wsc9_c00001{word-spacing:-13.296000pt;}
.ws23_c00001{word-spacing:-13.295872pt;}
.ws32_c00001{word-spacing:-13.276800pt;}
.wsac_c00001{word-spacing:-13.272000pt;}
.ws76_c00001{word-spacing:-13.267200pt;}
.ws4f_c00001{word-spacing:-13.262400pt;}
.ws5d_c00001{word-spacing:-13.257600pt;}
.ws30_c00001{word-spacing:-13.252800pt;}
.ws31_c00001{word-spacing:-13.248000pt;}
.wsf7_c00001{word-spacing:-13.243200pt;}
.ws37_c00001{word-spacing:-13.238400pt;}
.ws8b_c00001{word-spacing:-13.233600pt;}
.ws48_c00001{word-spacing:-13.228800pt;}
.ws149_c00001{word-spacing:-13.224000pt;}
.ws19_c00001{word-spacing:-13.221056pt;}
.ws15_c00001{word-spacing:-10.801728pt;}
.ws18_c00001{word-spacing:-8.640000pt;}
.ws29_c00001{word-spacing:-2.291200pt;}
.ws2d_c00001{word-spacing:-2.022400pt;}
.ws3_c00001{word-spacing:-0.019200pt;}
.ws1_c00001{word-spacing:0.000000pt;}
.ws2_c00001{word-spacing:0.122912pt;}
.ws0_c00001{word-spacing:0.171008pt;}
.ws164_c00001{word-spacing:36.070400pt;}
.ws165_c00001{word-spacing:36.371200pt;}
.ws14c_c00001{word-spacing:37.460800pt;}
.ws146_c00001{word-spacing:53.140800pt;}
.wsef_c00001{word-spacing:53.814400pt;}
.ws91_c00001{word-spacing:95.008000pt;}
.ws55_c00001{word-spacing:102.048000pt;}
.ws9b_c00001{word-spacing:121.568000pt;}
.ws90_c00001{word-spacing:121.568533pt;}
.ws4d_c00001{word-spacing:123.488000pt;}
.ws44_c00001{word-spacing:124.448000pt;}
.ws51_c00001{word-spacing:128.607467pt;}
.ws95_c00001{word-spacing:135.923200pt;}
.ws97_c00001{word-spacing:137.248000pt;}
.ws6a_c00001{word-spacing:142.688000pt;}
.ws5e_c00001{word-spacing:143.328000pt;}
.ws135_c00001{word-spacing:143.648000pt;}
.ws6b_c00001{word-spacing:145.247467pt;}
.ws8a_c00001{word-spacing:145.567467pt;}
.ws5f_c00001{word-spacing:145.568000pt;}
.ws132_c00001{word-spacing:145.888000pt;}
.ws8d_c00001{word-spacing:146.528000pt;}
.ws65_c00001{word-spacing:147.808000pt;}
.ws4b_c00001{word-spacing:148.128000pt;}
.ws34_c00001{word-spacing:148.448000pt;}
.ws8e_c00001{word-spacing:148.448533pt;}
.ws133_c00001{word-spacing:148.767467pt;}
.ws45_c00001{word-spacing:148.768000pt;}
.ws66_c00001{word-spacing:149.727467pt;}
.ws125_c00001{word-spacing:150.003200pt;}
.ws35_c00001{word-spacing:150.368000pt;}
.ws12e_c00001{word-spacing:150.643200pt;}
.ws7d_c00001{word-spacing:150.688000pt;}
.ws46_c00001{word-spacing:151.328000pt;}
.wse5_c00001{word-spacing:151.923200pt;}
.ws127_c00001{word-spacing:151.968000pt;}
.ws13d_c00001{word-spacing:153.203200pt;}
.ws12c_c00001{word-spacing:153.568000pt;}
.ws7e_c00001{word-spacing:154.208533pt;}
.wsee_c00001{word-spacing:154.528000pt;}
.ws53_c00001{word-spacing:155.487467pt;}
.wsc5_c00001{word-spacing:156.768000pt;}
.wscf_c00001{word-spacing:157.043200pt;}
.ws58_c00001{word-spacing:157.408000pt;}
.ws9f_c00001{word-spacing:157.728000pt;}
.wsd9_c00001{word-spacing:158.048000pt;}
.wsd1_c00001{word-spacing:159.008000pt;}
.wsd6_c00001{word-spacing:159.283200pt;}
.wsc6_c00001{word-spacing:159.328000pt;}
.wsd2_c00001{word-spacing:159.648000pt;}
.wsa0_c00001{word-spacing:159.968000pt;}
.ws108_c00001{word-spacing:160.288000pt;}
.wsb0_c00001{word-spacing:160.563200pt;}
.ws11f_c00001{word-spacing:160.608000pt;}
.wsea_c00001{word-spacing:160.883200pt;}
.wsd8_c00001{word-spacing:161.248000pt;}
.ws10e_c00001{word-spacing:161.568000pt;}
.ws129_c00001{word-spacing:161.888000pt;}
.wse2_c00001{word-spacing:162.528000pt;}
.wsd3_c00001{word-spacing:162.847467pt;}
.ws13f_c00001{word-spacing:162.848000pt;}
.ws109_c00001{word-spacing:163.167467pt;}
.wse8_c00001{word-spacing:163.168000pt;}
.ws13e_c00001{word-spacing:163.443200pt;}
.ws120_c00001{word-spacing:164.127467pt;}
.ws10f_c00001{word-spacing:164.768533pt;}
.wsf9_c00001{word-spacing:165.087467pt;}
.ws12a_c00001{word-spacing:165.088000pt;}
.ws152_c00001{word-spacing:165.728000pt;}
.ws140_c00001{word-spacing:166.047467pt;}
.ws78_c00001{word-spacing:166.048000pt;}
.ws11d_c00001{word-spacing:166.368000pt;}
.ws115_c00001{word-spacing:166.688000pt;}
.wsdd_c00001{word-spacing:167.328000pt;}
.wsca_c00001{word-spacing:167.648000pt;}
.wscc_c00001{word-spacing:168.243200pt;}
.ws118_c00001{word-spacing:168.288000pt;}
.ws87_c00001{word-spacing:168.928000pt;}
.ws121_c00001{word-spacing:169.247467pt;}
.ws79_c00001{word-spacing:169.248000pt;}
.ws116_c00001{word-spacing:169.248533pt;}
.wsfd_c00001{word-spacing:169.568000pt;}
.ws138_c00001{word-spacing:169.568533pt;}
.wsfc_c00001{word-spacing:170.163200pt;}
.wscb_c00001{word-spacing:170.848000pt;}
.ws163_c00001{word-spacing:171.488533pt;}
.wsbb_c00001{word-spacing:172.448000pt;}
.wsfe_c00001{word-spacing:172.448533pt;}
.wsc1_c00001{word-spacing:172.767467pt;}
.ws102_c00001{word-spacing:172.768000pt;}
.ws82_c00001{word-spacing:173.408000pt;}
.ws10b_c00001{word-spacing:173.408533pt;}
.ws70_c00001{word-spacing:173.728000pt;}
.ws105_c00001{word-spacing:174.048000pt;}
.ws13a_c00001{word-spacing:175.008000pt;}
.ws103_c00001{word-spacing:175.328000pt;}
.ws71_c00001{word-spacing:175.968000pt;}
.ws83_c00001{word-spacing:175.968533pt;}
.ws92_c00001{word-spacing:176.928000pt;}
.ws8c_c00001{word-spacing:177.247467pt;}
.ws9d_c00001{word-spacing:177.248000pt;}
.ws15c_c00001{word-spacing:177.567467pt;}
.ws150_c00001{word-spacing:177.888000pt;}
.ws63_c00001{word-spacing:178.848000pt;}
.wsa5_c00001{word-spacing:179.487467pt;}
.ws6e_c00001{word-spacing:179.488000pt;}
.ws93_c00001{word-spacing:180.128000pt;}
.ws9e_c00001{word-spacing:180.768000pt;}
.ws162_c00001{word-spacing:181.088000pt;}
.ws142_c00001{word-spacing:181.407467pt;}
.ws64_c00001{word-spacing:181.727467pt;}
.wsaa_c00001{word-spacing:181.728000pt;}
.wsf5_c00001{word-spacing:182.048000pt;}
.ws6f_c00001{word-spacing:182.368000pt;}
.wsf3_c00001{word-spacing:182.643200pt;}
.ws98_c00001{word-spacing:183.007467pt;}
.ws94_c00001{word-spacing:183.328000pt;}
.ws41_c00001{word-spacing:183.647467pt;}
.ws136_c00001{word-spacing:183.968000pt;}
.wsf6_c00001{word-spacing:184.608000pt;}
.ws15f_c00001{word-spacing:186.208000pt;}
.wsc3_c00001{word-spacing:186.483200pt;}
.wsf2_c00001{word-spacing:186.528533pt;}
.wsad_c00001{word-spacing:186.848000pt;}
.wsf0_c00001{word-spacing:187.168000pt;}
.wsaf_c00001{word-spacing:187.443200pt;}
.ws49_c00001{word-spacing:187.808000pt;}
.ws15a_c00001{word-spacing:187.808533pt;}
.ws13b_c00001{word-spacing:188.128000pt;}
.wsc8_c00001{word-spacing:189.087467pt;}
.ws143_c00001{word-spacing:189.088000pt;}
.ws158_c00001{word-spacing:189.408533pt;}
.wsae_c00001{word-spacing:190.047467pt;}
.wsb7_c00001{word-spacing:190.368000pt;}
.ws4a_c00001{word-spacing:191.008000pt;}
.ws167_c00001{word-spacing:191.328000pt;}
.ws168_c00001{word-spacing:193.888000pt;}
.ws6c_c00001{word-spacing:194.208000pt;}
.ws60_c00001{word-spacing:194.848000pt;}
.ws114_c00001{word-spacing:195.808000pt;}
.wsb5_c00001{word-spacing:196.448000pt;}
.ws11a_c00001{word-spacing:197.728000pt;}
.ws7b_c00001{word-spacing:198.047467pt;}
.ws5a_c00001{word-spacing:198.688000pt;}
.ws131_c00001{word-spacing:199.328000pt;}
.wsb2_c00001{word-spacing:199.648000pt;}
.ws11b_c00001{word-spacing:201.247467pt;}
.ws67_c00001{word-spacing:201.248000pt;}
.ws5b_c00001{word-spacing:201.887467pt;}
.ws33_c00001{word-spacing:201.888000pt;}
.ws43_c00001{word-spacing:202.528000pt;}
.wsb3_c00001{word-spacing:202.847467pt;}
.ws81_c00001{word-spacing:203.807467pt;}
.ws84_c00001{word-spacing:204.128000pt;}
.ws10a_c00001{word-spacing:204.448000pt;}
.ws124_c00001{word-spacing:204.768000pt;}
.ws12d_c00001{word-spacing:206.048000pt;}
.ws7c_c00001{word-spacing:207.328000pt;}
.wse4_c00001{word-spacing:207.648000pt;}
.wsed_c00001{word-spacing:207.968000pt;}
.ws169_c00001{word-spacing:208.883200pt;}
.ws11e_c00001{word-spacing:208.928000pt;}
.ws50_c00001{word-spacing:209.888000pt;}
.wsa2_c00001{word-spacing:210.528000pt;}
.ws59_c00001{word-spacing:211.808000pt;}
.ws14a_c00001{word-spacing:212.448000pt;}
.wsc2_c00001{word-spacing:212.768000pt;}
.wsa3_c00001{word-spacing:213.727467pt;}
.wsc4_c00001{word-spacing:213.728000pt;}
.ws110_c00001{word-spacing:214.688000pt;}
.wsce_c00001{word-spacing:215.008000pt;}
.wsdf_c00001{word-spacing:215.328000pt;}
.ws88_c00001{word-spacing:215.648000pt;}
.ws123_c00001{word-spacing:215.968533pt;}
.wsa1_c00001{word-spacing:216.288000pt;}
.wsda_c00001{word-spacing:217.248000pt;}
.wsd5_c00001{word-spacing:217.888000pt;}
.ws144_c00001{word-spacing:218.483200pt;}
.ws112_c00001{word-spacing:218.528000pt;}
.ws89_c00001{word-spacing:219.167467pt;}
.wsd4_c00001{word-spacing:219.168000pt;}
.ws74_c00001{word-spacing:219.808000pt;}
.wse9_c00001{word-spacing:220.768000pt;}
.ws106_c00001{word-spacing:221.408000pt;}
.ws6d_c00001{word-spacing:222.003200pt;}
.ws10d_c00001{word-spacing:222.048000pt;}
.ws61_c00001{word-spacing:222.643200pt;}
.ws75_c00001{word-spacing:222.687467pt;}
.wsb8_c00001{word-spacing:222.688000pt;}
.wsfa_c00001{word-spacing:223.008000pt;}
.wsbe_c00001{word-spacing:223.328000pt;}
.ws3d_c00001{word-spacing:224.287467pt;}
.wsf4_c00001{word-spacing:224.288000pt;}
.ws107_c00001{word-spacing:224.928000pt;}
.ws9a_c00001{word-spacing:225.568000pt;}
.wsbf_c00001{word-spacing:225.888000pt;}
.ws9c_c00001{word-spacing:226.163200pt;}
.wsdb_c00001{word-spacing:226.208000pt;}
.ws8f_c00001{word-spacing:226.483200pt;}
.ws119_c00001{word-spacing:227.808000pt;}
.ws77_c00001{word-spacing:228.448000pt;}
.ws85_c00001{word-spacing:228.768000pt;}
.ws68_c00001{word-spacing:229.043200pt;}
.ws11c_c00001{word-spacing:229.088000pt;}
.ws4c_c00001{word-spacing:229.363200pt;}
.ws122_c00001{word-spacing:229.408000pt;}
.ws47_c00001{word-spacing:230.323200pt;}
.ws16a_c00001{word-spacing:233.523200pt;}
.wse3_c00001{word-spacing:234.208000pt;}
.wscd_c00001{word-spacing:234.528000pt;}
.wsa9_c00001{word-spacing:234.848000pt;}
.ws4e_c00001{word-spacing:235.168000pt;}
.ws13c_c00001{word-spacing:235.808000pt;}
.ws104_c00001{word-spacing:236.128000pt;}
.ws52_c00001{word-spacing:236.768000pt;}
.ws145_c00001{word-spacing:237.088000pt;}
.ws54_c00001{word-spacing:237.363200pt;}
.ws39_c00001{word-spacing:237.408533pt;}
.ws101_c00001{word-spacing:237.728000pt;}
.ws139_c00001{word-spacing:238.048000pt;}
.ws14b_c00001{word-spacing:238.368000pt;}
.ws3c_c00001{word-spacing:239.008000pt;}
.ws73_c00001{word-spacing:239.328000pt;}
.ws100_c00001{word-spacing:243.168000pt;}
.wsa6_c00001{word-spacing:243.808000pt;}
.wsd7_c00001{word-spacing:244.768000pt;}
.ws14e_c00001{word-spacing:245.408000pt;}
.wse6_c00001{word-spacing:246.368000pt;}
.wse7_c00001{word-spacing:247.648000pt;}
.wsba_c00001{word-spacing:247.968000pt;}
.wsec_c00001{word-spacing:248.928000pt;}
.wsc0_c00001{word-spacing:249.248000pt;}
.ws128_c00001{word-spacing:250.847467pt;}
.ws134_c00001{word-spacing:252.448000pt;}
.wsde_c00001{word-spacing:258.848000pt;}
.wse0_c00001{word-spacing:259.488000pt;}
.ws16b_c00001{word-spacing:260.083200pt;}
.wsbc_c00001{word-spacing:261.363200pt;}
.wse1_c00001{word-spacing:262.048533pt;}
.wseb_c00001{word-spacing:262.688000pt;}
.ws148_c00001{word-spacing:264.288000pt;}
.ws154_c00001{word-spacing:264.608000pt;}
.ws15d_c00001{word-spacing:268.083200pt;}
.ws14d_c00001{word-spacing:276.128000pt;}
.ws40_c00001{word-spacing:276.768000pt;}
.ws42_c00001{word-spacing:277.363200pt;}
.ws156_c00001{word-spacing:277.408000pt;}
.wsb4_c00001{word-spacing:280.288000pt;}
.ws159_c00001{word-spacing:282.208000pt;}
.ws157_c00001{word-spacing:283.808000pt;}
.ws147_c00001{word-spacing:291.168000pt;}
.ws153_c00001{word-spacing:291.488000pt;}
.ws155_c00001{word-spacing:304.288000pt;}
.ws3e_c00001{word-spacing:334.643200pt;}
.ws16e_c00001{word-spacing:334.688000pt;}
.ws16d_c00001{word-spacing:336.928000pt;}
.ws3a_c00001{word-spacing:380.768000pt;}
.ws3b_c00001{word-spacing:381.363200pt;}
._208_c00001{margin-left:-2191.305067pt;}
._218_c00001{margin-left:-1782.025067pt;}
._54_c00001{margin-left:-1744.905600pt;}
._236_c00001{margin-left:-1678.345600pt;}
._21e_c00001{margin-left:-1670.985600pt;}
._113_c00001{margin-left:-1661.385600pt;}
._25d_c00001{margin-left:-1653.065067pt;}
._7f_c00001{margin-left:-1651.785600pt;}
._212_c00001{margin-left:-1640.585067pt;}
._148_c00001{margin-left:-1638.985600pt;}
._22c_c00001{margin-left:-1630.985600pt;}
._242_c00001{margin-left:-1621.065067pt;}
._227_c00001{margin-left:-1618.825600pt;}
._17f_c00001{margin-left:-1605.385067pt;}
._23d_c00001{margin-left:-1597.385600pt;}
._262_c00001{margin-left:-1591.945600pt;}
._23f_c00001{margin-left:-1587.145600pt;}
._222_c00001{margin-left:-1571.785600pt;}
._130_c00001{margin-left:-1548.425067pt;}
._1a1_c00001{margin-left:-1543.305600pt;}
._c1_c00001{margin-left:-1537.545067pt;}
._239_c00001{margin-left:-1533.705067pt;}
._231_c00001{margin-left:-1520.585600pt;}
._124_c00001{margin-left:-1517.705067pt;}
._24f_c00001{margin-left:-1493.705067pt;}
._269_c00001{margin-left:-1481.545600pt;}
._1fb_c00001{margin-left:-1478.345600pt;}
._94_c00001{margin-left:-1474.825067pt;}
._f4_c00001{margin-left:-1470.985600pt;}
._1f4_c00001{margin-left:-1464.265600pt;}
._1cf_c00001{margin-left:-1463.305600pt;}
._ae_c00001{margin-left:-1459.465067pt;}
._259_c00001{margin-left:-1451.465067pt;}
._197_c00001{margin-left:-1438.025600pt;}
._16b_c00001{margin-left:-1428.425600pt;}
._246_c00001{margin-left:-1421.385600pt;}
._192_c00001{margin-left:-1417.225600pt;}
._175_c00001{margin-left:-1412.105600pt;}
._6a_c00001{margin-left:-1410.185600pt;}
._1f7_c00001{margin-left:-1394.185600pt;}
._152_c00001{margin-left:-1391.625600pt;}
._18a_c00001{margin-left:-1363.465600pt;}
._1d6_c00001{margin-left:-1352.585600pt;}
._1e7_c00001{margin-left:-1351.305600pt;}
._20c_c00001{margin-left:-1344.585600pt;}
._76_c00001{margin-left:-1339.785600pt;}
._1c0_c00001{margin-left:-1326.985600pt;}
._207_c00001{margin-left:-1306.825600pt;}
._1c8_c00001{margin-left:-1279.945600pt;}
._24a_c00001{margin-left:-1257.225067pt;}
._9e_c00001{margin-left:-1069.065067pt;}
._26f_c00001{margin-left:-880.905600pt;}
._26b_c00001{margin-left:-845.385600pt;}
._22d_c00001{margin-left:-110.691669pt;}
._209_c00001{margin-left:-96.843200pt;}
._186_c00001{margin-left:-94.397632pt;}
._146_c00001{margin-left:-89.640000pt;}
._1eb_c00001{margin-left:-88.193600pt;}
._1db_c00001{margin-left:-86.052800pt;}
._bd_c00001{margin-left:-84.160000pt;}
._244_c00001{margin-left:-82.227200pt;}
._167_c00001{margin-left:-74.263168pt;}
._27f_c00001{margin-left:-60.500032pt;}
._23_c00001{margin-left:-57.459200pt;}
._22_c00001{margin-left:-56.384000pt;}
._36_c00001{margin-left:-54.259200pt;}
._35_c00001{margin-left:-53.184000pt;}
._2a_c00001{margin-left:-26.243968pt;}
._17_c00001{margin-left:-24.972800pt;}
._16_c00001{margin-left:-23.635200pt;}
._29_c00001{margin-left:-20.928000pt;}
._28_c00001{margin-left:-19.385600pt;}
._1e_c00001{margin-left:-17.356800pt;}
._1f_c00001{margin-left:-16.179200pt;}
._38_c00001{margin-left:-14.792576pt;}
._3b_c00001{margin-left:-13.896000pt;}
._3c_c00001{margin-left:-12.124832pt;}
._39_c00001{margin-left:-11.008000pt;}
._3a_c00001{margin-left:-10.060800pt;}
._26_c00001{margin-left:-8.908800pt;}
._25_c00001{margin-left:-7.705600pt;}
._2c_c00001{margin-left:-6.569472pt;}
._2b_c00001{margin-left:-5.490688pt;}
._1d_c00001{margin-left:-4.454400pt;}
._a_c00001{margin-left:-3.545600pt;}
._5_c00001{margin-left:-2.649600pt;}
._2_c00001{margin-left:-1.216000pt;}
._0_c00001{width:0.919168pt;}
._e_c00001{width:2.572800pt;}
._1b_c00001{width:3.500800pt;}
._f_c00001{width:4.480000pt;}
._10_c00001{width:6.024448pt;}
._1c_c00001{width:7.008000pt;}
._d_c00001{width:7.987200pt;}
._1_c00001{width:9.267200pt;}
._13_c00001{width:10.886560pt;}
._12_c00001{width:11.987040pt;}
._11_c00001{width:12.888352pt;}
._15_c00001{width:14.376896pt;}
._253_c00001{width:15.646464pt;}
._2f_c00001{width:16.947200pt;}
._19_c00001{width:17.894400pt;}
._37_c00001{width:18.868096pt;}
._27_c00001{width:19.801600pt;}
._31_c00001{width:20.787200pt;}
._24_c00001{width:21.958400pt;}
._1a_c00001{width:22.982400pt;}
._b_c00001{width:23.923200pt;}
._c_c00001{width:24.934400pt;}
._3_c00001{width:25.971200pt;}
._14_c00001{width:27.084800pt;}
._18_c00001{width:28.587552pt;}
._30_c00001{width:30.054400pt;}
._9_c00001{width:33.587200pt;}
._6_c00001{width:34.873600pt;}
._3d_c00001{width:36.140800pt;}
._2d_c00001{width:38.988800pt;}
._2e_c00001{width:40.320000pt;}
._254_c00001{width:42.748032pt;}
._193_c00001{width:48.144000pt;}
._20_c00001{width:49.555200pt;}
._7_c00001{width:50.534400pt;}
._1be_c00001{width:52.009600pt;}
._14a_c00001{width:53.020800pt;}
._34_c00001{width:54.369024pt;}
._33_c00001{width:55.798272pt;}
._32_c00001{width:56.732032pt;}
._21_c00001{width:57.689728pt;}
._15c_c00001{width:59.611733pt;}
._176_c00001{width:60.571200pt;}
._dd_c00001{width:62.171200pt;}
._116_c00001{width:63.808832pt;}
._de_c00001{width:66.379200pt;}
._b0_c00001{width:68.492800pt;}
._165_c00001{width:69.656000pt;}
._96_c00001{width:70.732800pt;}
._19d_c00001{width:72.932800pt;}
._cc_c00001{width:73.926400pt;}
._219_c00001{width:75.016000pt;}
._fe_c00001{width:76.056000pt;}
._155_c00001{width:77.446400pt;}
._126_c00001{width:78.732800pt;}
._3f_c00001{width:79.686400pt;}
._8f_c00001{width:80.646400pt;}
._c3_c00001{width:81.932800pt;}
._12c_c00001{width:83.526400pt;}
._13e_c00001{width:84.619200pt;}
._a4_c00001{width:86.086400pt;}
._b5_c00001{width:87.686400pt;}
._104_c00001{width:88.724800pt;}
._19b_c00001{width:89.990400pt;}
._145_c00001{width:91.183467pt;}
._11c_c00001{width:92.144000pt;}
._180_c00001{width:93.524800pt;}
._af_c00001{width:94.484800pt;}
._1ad_c00001{width:95.806165pt;}
._95_c00001{width:97.044800pt;}
._137_c00001{width:98.224000pt;}
._149_c00001{width:99.526400pt;}
._19c_c00001{width:101.008000pt;}
._115_c00001{width:102.732800pt;}
._125_c00001{width:104.084800pt;}
._1b9_c00001{width:105.932800pt;}
._c2_c00001{width:107.604800pt;}
._131_c00001{width:109.204800pt;}
._10c_c00001{width:111.366400pt;}
._13d_c00001{width:113.044800pt;}
._4_c00001{width:114.867200pt;}
._56_c00001{width:117.132800pt;}
._1d7_c00001{width:118.092800pt;}
._9f_c00001{width:119.692800pt;}
._8_c00001{width:121.894400pt;}
._169_c00001{width:122.999232pt;}
._80_c00001{width:124.251200pt;}
._213_c00001{width:125.204800pt;}
._1f8_c00001{width:126.484032pt;}
._25e_c00001{width:127.764800pt;}
._114_c00001{width:128.724800pt;}
._db_c00001{width:130.274432pt;}
._1b8_c00001{width:131.604800pt;}
._174_c00001{width:133.036800pt;}
._f3_c00001{width:134.732800pt;}
._53_c00001{width:135.833600pt;}
._fd_c00001{width:137.843200pt;}
._26a_c00001{width:138.880832pt;}
._ac_c00001{width:140.172800pt;}
._c0_c00001{width:141.452800pt;}
._55_c00001{width:143.124800pt;}
._17d_c00001{width:144.385600pt;}
._18b_c00001{width:145.684800pt;}
._77_c00001{width:146.651200pt;}
._221_c00001{width:147.680768pt;}
._22b_c00001{width:148.830400pt;}
._1d4_c00001{width:149.772800pt;}
._1af_c00001{width:150.732800pt;}
._123_c00001{width:152.973568pt;}
._235_c00001{width:153.933568pt;}
._144_c00001{width:155.045099pt;}
._217_c00001{width:156.260800pt;}
._47_c00001{width:157.688000pt;}
._12b_c00001{width:159.219200pt;}
._112_c00001{width:160.966400pt;}
._44_c00001{width:162.252800pt;}
._158_c00001{width:163.212032pt;}
._fa_c00001{width:164.403200pt;}
._12e_c00001{width:165.370432pt;}
._a9_c00001{width:167.052800pt;}
._b9_c00001{width:168.332800pt;}
._109_c00001{width:169.960832pt;}
._6b_c00001{width:170.971200pt;}
._1e5_c00001{width:171.862400pt;}
._1bc_c00001{width:172.808000pt;}
._1de_c00001{width:173.936768pt;}
._229_c00001{width:175.302101pt;}
._1d0_c00001{width:176.368000pt;}
._99_c00001{width:177.932800pt;}
._1ea_c00001{width:179.264000pt;}
._11e_c00001{width:180.525568pt;}
._195_c00001{width:181.693632pt;}
._11b_c00001{width:183.493035pt;}
._52_c00001{width:185.516800pt;}
._110_c00001{width:187.358400pt;}
._c7_c00001{width:188.812800pt;}
._b3_c00001{width:189.852800pt;}
._f5_c00001{width:191.528299pt;}
._fb_c00001{width:192.680832pt;}
._10a_c00001{width:194.035200pt;}
._b7_c00001{width:195.415168pt;}
._1ce_c00001{width:197.081600pt;}
._4b_c00001{width:198.656000pt;}
._1ba_c00001{width:199.728832pt;}
._4d_c00001{width:201.392000pt;}
._ef_c00001{width:202.744832pt;}
._121_c00001{width:204.780800pt;}
._48_c00001{width:205.692800pt;}
._1f2_c00001{width:206.614400pt;}
._141_c00001{width:207.596800pt;}
._1e9_c00001{width:208.563200pt;}
._49_c00001{width:209.456000pt;}
._166_c00001{width:210.360000pt;}
._46_c00001{width:211.289600pt;}
._42_c00001{width:212.396800pt;}
._102_c00001{width:213.856000pt;}
._23c_c00001{width:214.944000pt;}
._135_c00001{width:216.032000pt;}
._4f_c00001{width:217.318400pt;}
._ce_c00001{width:218.773632pt;}
._f1_c00001{width:219.672000pt;}
._ff_c00001{width:221.393600pt;}
._bc_c00001{width:222.295168pt;}
._159_c00001{width:223.264000pt;}
._59_c00001{width:224.332800pt;}
._7d_c00001{width:225.932800pt;}
._156_c00001{width:226.845632pt;}
._1ff_c00001{width:227.764800pt;}
._41_c00001{width:228.716800pt;}
._90_c00001{width:229.676800pt;}
._6f_c00001{width:230.956267pt;}
._45_c00001{width:231.916800pt;}
._a7_c00001{width:232.832000pt;}
._100_c00001{width:233.863168pt;}
._c8_c00001{width:234.979200pt;}
._d1_c00001{width:236.105600pt;}
._a6_c00001{width:237.036800pt;}
._4a_c00001{width:238.018432pt;}
._ba_c00001{width:238.956800pt;}
._bb_c00001{width:239.916800pt;}
._1c2_c00001{width:240.832000pt;}
._43_c00001{width:241.792000pt;}
._40_c00001{width:243.152000pt;}
._92_c00001{width:244.051200pt;}
._b6_c00001{width:245.184000pt;}
._4c_c00001{width:246.579200pt;}
._10f_c00001{width:247.936768pt;}
._e1_c00001{width:248.876800pt;}
._a8_c00001{width:250.112000pt;}
._ad_c00001{width:251.078400pt;}
._b8_c00001{width:252.492800pt;}
._1ec_c00001{width:253.481600pt;}
._1cb_c00001{width:254.475968pt;}
._be_c00001{width:255.369600pt;}
._11f_c00001{width:256.648000pt;}
._6d_c00001{width:257.836800pt;}
._1cc_c00001{width:258.818432pt;}
._f9_c00001{width:260.076800pt;}
._98_c00001{width:261.356800pt;}
._101_c00001{width:262.331200pt;}
._172_c00001{width:263.376832pt;}
._216_c00001{width:264.363499pt;}
._139_c00001{width:265.852800pt;}
._ee_c00001{width:266.786432pt;}
._153_c00001{width:267.740032pt;}
._d7_c00001{width:268.866432pt;}
._13a_c00001{width:269.996267pt;}
._91_c00001{width:271.110400pt;}
._15f_c00001{width:272.556800pt;}
._179_c00001{width:273.753600pt;}
._d8_c00001{width:274.652800pt;}
._c6_c00001{width:276.396800pt;}
._8b_c00001{width:277.996800pt;}
._10d_c00001{width:279.138368pt;}
._10e_c00001{width:280.754368pt;}
._20a_c00001{width:281.684267pt;}
._50_c00001{width:283.260800pt;}
._15e_c00001{width:284.992000pt;}
._4e_c00001{width:286.208000pt;}
._e0_c00001{width:287.232000pt;}
._9b_c00001{width:288.236800pt;}
._108_c00001{width:289.383168pt;}
._1c4_c00001{width:291.420032pt;}
._184_c00001{width:292.548736pt;}
._138_c00001{width:293.635200pt;}
._1a7_c00001{width:294.912533pt;}
._5f_c00001{width:296.656000pt;}
._127_c00001{width:298.512000pt;}
._129_c00001{width:299.545600pt;}
._97_c00001{width:300.992000pt;}
._14b_c00001{width:302.149568pt;}
._c9_c00001{width:303.276800pt;}
._1a4_c00001{width:304.870400pt;}
._134_c00001{width:306.156800pt;}
._118_c00001{width:307.116267pt;}
._1d2_c00001{width:309.478400pt;}
._162_c00001{width:310.803200pt;}
._18f_c00001{width:312.336832pt;}
._164_c00001{width:313.469099pt;}
._278_c00001{width:314.432000pt;}
._c5_c00001{width:316.032000pt;}
._1a2_c00001{width:317.318400pt;}
._183_c00001{width:319.325568pt;}
._f0_c00001{width:320.390400pt;}
._12d_c00001{width:321.836800pt;}
._142_c00001{width:322.749568pt;}
._13f_c00001{width:323.685632pt;}
._140_c00001{width:324.698368pt;}
._14f_c00001{width:325.704000pt;}
._58_c00001{width:326.956800pt;}
._119_c00001{width:328.128000pt;}
._7c_c00001{width:329.249301pt;}
._1d1_c00001{width:330.178432pt;}
._1a9_c00001{width:331.456000pt;}
._181_c00001{width:332.623232pt;}
._60_c00001{width:333.976000pt;}
._82_c00001{width:335.276800pt;}
._f6_c00001{width:336.824832pt;}
._17c_c00001{width:338.324800pt;}
._1d9_c00001{width:340.032000pt;}
._a2_c00001{width:340.992000pt;}
._257_c00001{width:342.752000pt;}
._168_c00001{width:343.683200pt;}
._25f_c00001{width:344.693632pt;}
._117_c00001{width:345.992299pt;}
._c4_c00001{width:347.904000pt;}
._e5_c00001{width:348.976832pt;}
._15a_c00001{width:349.934400pt;}
._16c_c00001{width:351.704000pt;}
._5d_c00001{width:353.836267pt;}
._15d_c00001{width:355.016000pt;}
._79_c00001{width:356.716267pt;}
._ca_c00001{width:358.089600pt;}
._19e_c00001{width:359.148032pt;}
._14e_c00001{width:360.509632pt;}
._133_c00001{width:362.249600pt;}
._1ef_c00001{width:363.408832pt;}
._a5_c00001{width:366.019200pt;}
._a0_c00001{width:367.519701pt;}
._266_c00001{width:368.672000pt;}
._5b_c00001{width:370.168000pt;}
._aa_c00001{width:371.529600pt;}
._dc_c00001{width:373.759232pt;}
._87_c00001{width:375.552000pt;}
._247_c00001{width:376.470400pt;}
._d3_c00001{width:378.582400pt;}
._14c_c00001{width:380.145600pt;}
._202_c00001{width:381.312000pt;}
._d9_c00001{width:382.993600pt;}
._25a_c00001{width:384.352000pt;}
._106_c00001{width:385.851200pt;}
._1dc_c00001{width:387.355200pt;}
._84_c00001{width:388.380032pt;}
._3e_c00001{width:389.629099pt;}
._e9_c00001{width:391.106432pt;}
._198_c00001{width:392.801600pt;}
._d2_c00001{width:393.865600pt;}
._70_c00001{width:395.484032pt;}
._ea_c00001{width:396.892800pt;}
._23a_c00001{width:398.742400pt;}
._cd_c00001{width:400.019200pt;}
._120_c00001{width:401.244800pt;}
._279_c00001{width:402.176000pt;}
._9a_c00001{width:403.270400pt;}
._187_c00001{width:404.699200pt;}
._16d_c00001{width:405.664000pt;}
._204_c00001{width:407.505600pt;}
._1fd_c00001{width:408.512000pt;}
._28f_c00001{width:410.097600pt;}
._62_c00001{width:411.136000pt;}
._64_c00001{width:413.872000pt;}
._cf_c00001{width:416.118400pt;}
._85_c00001{width:417.216000pt;}
._5c_c00001{width:418.172800pt;}
._1a3_c00001{width:419.248000pt;}
._17a_c00001{width:420.437632pt;}
._5e_c00001{width:421.936000pt;}
._5a_c00001{width:423.769600pt;}
._214_c00001{width:425.225600pt;}
._1ab_c00001{width:426.790400pt;}
._20e_c00001{width:427.709632pt;}
._11d_c00001{width:428.830400pt;}
._66_c00001{width:429.798400pt;}
._f8_c00001{width:430.931200pt;}
._157_c00001{width:432.249600pt;}
._d6_c00001{width:434.056000pt;}
._150_c00001{width:435.744000pt;}
._132_c00001{width:436.716800pt;}
._1c3_c00001{width:437.868032pt;}
._1f0_c00001{width:439.152832pt;}
._67_c00001{width:440.396800pt;}
._188_c00001{width:441.980800pt;}
._1b3_c00001{width:443.420032pt;}
._171_c00001{width:444.704000pt;}
._264_c00001{width:446.654400pt;}
._d0_c00001{width:447.904000pt;}
._1a8_c00001{width:449.068032pt;}
._61_c00001{width:450.498432pt;}
._d4_c00001{width:452.560000pt;}
._f7_c00001{width:454.470400pt;}
._57_c00001{width:455.632000pt;}
._21a_c00001{width:457.094400pt;}
._d5_c00001{width:458.008000pt;}
._63_c00001{width:459.059200pt;}
._13c_c00001{width:460.479232pt;}
._b1_c00001{width:461.699200pt;}
._1e1_c00001{width:463.769600pt;}
._223_c00001{width:465.104000pt;}
._177_c00001{width:466.304000pt;}
._b2_c00001{width:467.209600pt;}
._1e0_c00001{width:468.536064pt;}
._1d8_c00001{width:469.705600pt;}
._1fe_c00001{width:471.235200pt;}
._1b4_c00001{width:472.256000pt;}
._211_c00001{width:473.149632pt;}
._1e4_c00001{width:476.508800pt;}
._1b1_c00001{width:477.795200pt;}
._182_c00001{width:480.084800pt;}
._290_c00001{width:482.448000pt;}
._128_c00001{width:484.444800pt;}
._73_c00001{width:486.592000pt;}
._293_c00001{width:488.652800pt;}
._22f_c00001{width:489.622400pt;}
._267_c00001{width:491.134400pt;}
._18c_c00001{width:492.719232pt;}
._16e_c00001{width:494.723200pt;}
._68_c00001{width:495.740800pt;}
._194_c00001{width:496.817600pt;}
._65_c00001{width:498.688000pt;}
._8d_c00001{width:500.985600pt;}
._1fc_c00001{width:503.029568pt;}
._eb_c00001{width:505.233600pt;}
._240_c00001{width:506.620800pt;}
._1ed_c00001{width:508.699264pt;}
._275_c00001{width:511.270400pt;}
._88_c00001{width:512.550400pt;}
._19f_c00001{width:514.128000pt;}
._161_c00001{width:515.141632pt;}
._e4_c00001{width:516.105600pt;}
._215_c00001{width:517.629632pt;}
._224_c00001{width:519.164800pt;}
._1c1_c00001{width:520.497600pt;}
._df_c00001{width:522.259200pt;}
._105_c00001{width:523.256000pt;}
._296_c00001{width:525.216000pt;}
._107_c00001{width:526.716800pt;}
._71_c00001{width:528.256000pt;}
._203_c00001{width:529.524800pt;}
._1a6_c00001{width:531.697600pt;}
._273_c00001{width:533.548032pt;}
._83_c00001{width:534.828032pt;}
._160_c00001{width:536.249600pt;}
._28a_c00001{width:537.168000pt;}
._e2_c00001{width:538.358400pt;}
._e3_c00001{width:540.105600pt;}
._24b_c00001{width:543.392832pt;}
._ec_c00001{width:544.886400pt;}
._8a_c00001{width:548.884800pt;}
._178_c00001{width:551.264000pt;}
._16f_c00001{width:552.572800pt;}
._1c9_c00001{width:553.684800pt;}
._e8_c00001{width:556.296000pt;}
._27c_c00001{width:558.804800pt;}
._25b_c00001{width:561.980800pt;}
._25c_c00001{width:564.952000pt;}
._1b6_c00001{width:567.590400pt;}
._8c_c00001{width:569.932800pt;}
._201_c00001{width:572.182400pt;}
._18e_c00001{width:573.339200pt;}
._e6_c00001{width:574.800000pt;}
._292_c00001{width:575.939499pt;}
._256_c00001{width:576.828800pt;}
._e7_c00001{width:580.248000pt;}
._1e3_c00001{width:583.414400pt;}
._1df_c00001{width:586.934400pt;}
._1b2_c00001{width:589.868032pt;}
._1c5_c00001{width:592.848000pt;}
._255_c00001{width:595.371200pt;}
._18d_c00001{width:597.680000pt;}
._295_c00001{width:598.758400pt;}
._147_c00001{width:600.374400pt;}
._1aa_c00001{width:604.048000pt;}
._7b_c00001{width:606.265600pt;}
._232_c00001{width:608.982400pt;}
._190_c00001{width:610.620800pt;}
._13b_c00001{width:613.494400pt;}
._272_c00001{width:616.177600pt;}
._81_c00001{width:617.457600pt;}
._250_c00001{width:619.372032pt;}
._24c_c00001{width:620.569600pt;}
._19a_c00001{width:622.273664pt;}
._74_c00001{width:623.590400pt;}
._1e6_c00001{width:627.574400pt;}
._1f3_c00001{width:629.174400pt;}
._226_c00001{width:630.134400pt;}
._277_c00001{width:633.932800pt;}
._21c_c00001{width:636.854400pt;}
._28e_c00001{width:638.776832pt;}
._24e_c00001{width:640.054400pt;}
._28c_c00001{width:641.336832pt;}
._206_c00001{width:642.614400pt;}
._22a_c00001{width:644.214400pt;}
._6e_c00001{width:645.868032pt;}
._27a_c00001{width:647.888000pt;}
._78_c00001{width:654.164800pt;}
._26c_c00001{width:656.724800pt;}
._241_c00001{width:661.174400pt;}
._234_c00001{width:668.854400pt;}
._1b0_c00001{width:672.497600pt;}
._111_c00001{width:674.294400pt;}
._7a_c00001{width:675.212800pt;}
._26d_c00001{width:677.772800pt;}
._29a_c00001{width:678.864000pt;}
._1f9_c00001{width:682.777600pt;}
._1d5_c00001{width:683.894400pt;}
._274_c00001{width:688.528000pt;}
._86_c00001{width:689.808000pt;}
._20b_c00001{width:690.934400pt;}
._252_c00001{width:695.734400pt;}
._bf_c00001{width:697.974400pt;}
._1dd_c00001{width:699.574400pt;}
._245_c00001{width:703.734400pt;}
._299_c00001{width:704.976000pt;}
._a1_c00001{width:710.819200pt;}
._283_c00001{width:717.204800pt;}
._21b_c00001{width:718.454400pt;}
._238_c00001{width:721.014400pt;}
._20f_c00001{width:723.574400pt;}
._6c_c00001{width:728.497600pt;}
._263_c00001{width:737.334400pt;}
._270_c00001{width:738.324800pt;}
._51_c00001{width:739.254400pt;}
._1b5_c00001{width:744.848000pt;}
._12f_c00001{width:745.974400pt;}
._200_c00001{width:746.934400pt;}
._1f6_c00001{width:750.134400pt;}
._220_c00001{width:754.294400pt;}
._122_c00001{width:760.054400pt;}
._287_c00001{width:763.224832pt;}
._1bd_c00001{width:767.292267pt;}
._285_c00001{width:768.984299pt;}
._17e_c00001{width:770.614400pt;}
._281_c00001{width:778.904832pt;}
._1cd_c00001{width:779.894400pt;}
._14d_c00001{width:782.454400pt;}
._228_c00001{width:785.014400pt;}
._230_c00001{width:787.254400pt;}
._2a2_c00001{width:789.798400pt;}
._2a3_c00001{width:791.136000pt;}
._21d_c00001{width:798.134400pt;}
._72_c00001{width:800.848000pt;}
._f2_c00001{width:808.694400pt;}
._29c_c00001{width:812.380800pt;}
._2a0_c00001{width:814.438400pt;}
._298_c00001{width:816.144000pt;}
._21f_c00001{width:821.494400pt;}
._29b_c00001{width:822.816000pt;}
._16a_c00001{width:830.134400pt;}
._103_c00001{width:838.774400pt;}
._243_c00001{width:841.974400pt;}
._265_c00001{width:846.134400pt;}
._11a_c00001{width:850.294400pt;}
._22e_c00001{width:854.134400pt;}
._ab_c00001{width:855.094400pt;}
._23b_c00001{width:857.654400pt;}
._1e2_c00001{width:867.574400pt;}
._143_c00001{width:869.494400pt;}
._da_c00001{width:871.414400pt;}
._151_c00001{width:874.294400pt;}
._20d_c00001{width:876.854400pt;}
._23e_c00001{width:882.614400pt;}
._12a_c00001{width:887.734400pt;}
._173_c00001{width:889.334400pt;}
._15b_c00001{width:891.254400pt;}
._cb_c00001{width:892.534400pt;}
._237_c00001{width:894.134400pt;}
._1bb_c00001{width:897.654400pt;}
._9d_c00001{width:905.334400pt;}
._93_c00001{width:907.894400pt;}
._189_c00001{width:909.174400pt;}
._28d_c00001{width:912.694400pt;}
._1bf_c00001{width:917.814400pt;}
._1ae_c00001{width:922.934400pt;}
._1c7_c00001{width:924.534400pt;}
._1d3_c00001{width:926.454400pt;}
._1e8_c00001{width:929.014400pt;}
._260_c00001{width:938.934400pt;}
._297_c00001{width:948.534400pt;}
._1da_c00001{width:953.654400pt;}
._225_c00001{width:956.214400pt;}
._294_c00001{width:957.494400pt;}
._29e_c00001{width:958.758400pt;}
._1ee_c00001{width:960.054400pt;}
._233_c00001{width:961.014400pt;}
._291_c00001{width:966.134400pt;}
._210_c00001{width:969.334400pt;}
._136_c00001{width:979.254400pt;}
._249_c00001{width:993.334400pt;}
._199_c00001{width:1002.614400pt;}
._27d_c00001{width:1011.574400pt;}
._261_c00001{width:1014.454400pt;}
._280_c00001{width:1016.054400pt;}
._185_c00001{width:1020.214400pt;}
._fc_c00001{width:1021.494400pt;}
._1f5_c00001{width:1027.254400pt;}
._b4_c00001{width:1028.214400pt;}
._1f1_c00001{width:1036.214400pt;}
._1a0_c00001{width:1041.654400pt;}
._251_c00001{width:1044.854400pt;}
._10b_c00001{width:1046.134400pt;}
._288_c00001{width:1050.614400pt;}
._286_c00001{width:1054.774400pt;}
._154_c00001{width:1056.694400pt;}
._1a5_c00001{width:1058.934400pt;}
._8e_c00001{width:1073.014400pt;}
._163_c00001{width:1074.294400pt;}
._17b_c00001{width:1075.894400pt;}
._268_c00001{width:1076.854400pt;}
._289_c00001{width:1078.454400pt;}
._26e_c00001{width:1081.334400pt;}
._ed_c00001{width:1084.534400pt;}
._28b_c00001{width:1088.054400pt;}
._170_c00001{width:1092.214400pt;}
._248_c00001{width:1097.334400pt;}
._258_c00001{width:1103.734400pt;}
._2a4_c00001{width:1124.534400pt;}
._9c_c00001{width:1137.974400pt;}
._205_c00001{width:1139.894400pt;}
._196_c00001{width:1142.134400pt;}
._1ac_c00001{width:1147.574400pt;}
._2a1_c00001{width:1148.854400pt;}
._1ca_c00001{width:1153.334400pt;}
._69_c00001{width:1161.654400pt;}
._284_c00001{width:1165.814400pt;}
._27b_c00001{width:1180.854400pt;}
._1fa_c00001{width:1192.054400pt;}
._271_c00001{width:1201.334400pt;}
._191_c00001{width:1204.854400pt;}
._29d_c00001{width:1206.134400pt;}
._1c6_c00001{width:1208.374400pt;}
._282_c00001{width:1274.934400pt;}
._24d_c00001{width:1280.694400pt;}
._89_c00001{width:1299.574400pt;}
._7e_c00001{width:1310.774400pt;}
._276_c00001{width:1317.814400pt;}
._29f_c00001{width:1381.174400pt;}
._1b7_c00001{width:1386.294400pt;}
._a3_c00001{width:1408.694400pt;}
._75_c00001{width:1488.374400pt;}
._27e_c00001{width:1635.544832pt;}
.fs5_c00001{font-size:34.560000pt;}
.fs4_c00001{font-size:42.560000pt;}
.fs6_c00001{font-size:48.000000pt;}
.fs0_c00001{font-size:53.440000pt;}
.fs1_c00001{font-size:64.000000pt;}
.fs2_c00001{font-size:74.560000pt;}
.fs7_c00001{font-size:85.440000pt;}
.fs3_c00001{font-size:96.000000pt;}
.fs8_c00001{font-size:149.440000pt;}
.y0_c00001{bottom:0.000000pt;}
.y5_c00001{bottom:50.987067pt;}
.y4_c00001{bottom:69.387067pt;}
.y1aa_c00001{bottom:97.707235pt;}
.y137_c00001{bottom:98.667067pt;}
.yd3f_c00001{bottom:99.467067pt;}
.y2a6_c00001{bottom:99.787067pt;}
.y294_c00001{bottom:100.027067pt;}
.y1e3_c00001{bottom:100.187067pt;}
.y2ce_c00001{bottom:100.187200pt;}
.y750_c00001{bottom:100.907067pt;}
.y347_c00001{bottom:101.067067pt;}
.y704_c00001{bottom:101.147200pt;}
.y8f8_c00001{bottom:101.307067pt;}
.y156_c00001{bottom:101.867067pt;}
.y6ea_c00001{bottom:101.947067pt;}
.y702_c00001{bottom:102.107200pt;}
.y320_c00001{bottom:102.187200pt;}
.y1cb_c00001{bottom:102.347067pt;}
.y453_c00001{bottom:102.427067pt;}
.y967_c00001{bottom:102.587067pt;}
.y6e8_c00001{bottom:102.907067pt;}
.y83a_c00001{bottom:102.909451pt;}
.y884_c00001{bottom:103.467200pt;}
.y9fd_c00001{bottom:103.787067pt;}
.yd42_c00001{bottom:103.947067pt;}
.y946_c00001{bottom:104.028939pt;}
.y540_c00001{bottom:104.187067pt;}
.y6bf_c00001{bottom:104.267067pt;}
.yb29_c00001{bottom:104.587067pt;}
.y762_c00001{bottom:104.587200pt;}
.y2b5_c00001{bottom:104.667067pt;}
.y221_c00001{bottom:104.827067pt;}
.y91a_c00001{bottom:105.221699pt;}
.y4d6_c00001{bottom:105.307067pt;}
.y5c7_c00001{bottom:105.627067pt;}
.y4ec_c00001{bottom:105.787067pt;}
.y4a9_c00001{bottom:106.667067pt;}
.y63b_c00001{bottom:106.907067pt;}
.yd77_c00001{bottom:107.547067pt;}
.ye04_c00001{bottom:108.267067pt;}
.y67f_c00001{bottom:108.827067pt;}
.y5ac_c00001{bottom:109.147067pt;}
.y6d7_c00001{bottom:109.227067pt;}
.yc26_c00001{bottom:109.467067pt;}
.ydf2_c00001{bottom:109.947067pt;}
.ya3e_c00001{bottom:110.027067pt;}
.y6d5_c00001{bottom:110.267067pt;}
.y824_c00001{bottom:110.507067pt;}
.y854_c00001{bottom:110.667067pt;}
.y484_c00001{bottom:111.227067pt;}
.ybae_c00001{bottom:111.467067pt;}
.y2c1_c00001{bottom:111.707067pt;}
.ydbe_c00001{bottom:111.787067pt;}
.y32d_c00001{bottom:112.112320pt;}
.y955_c00001{bottom:112.427067pt;}
.y739_c00001{bottom:112.587067pt;}
.y7ad_c00001{bottom:112.667067pt;}
.y930_c00001{bottom:112.747067pt;}
.y608_c00001{bottom:112.827067pt;}
.y64_c00001{bottom:112.907067pt;}
.y1ca_c00001{bottom:112.987075pt;}
.y244_c00001{bottom:112.987251pt;}
.y773_c00001{bottom:113.147067pt;}
.y590_c00001{bottom:113.947067pt;}
.y40f_c00001{bottom:114.347067pt;}
.y621_c00001{bottom:114.827067pt;}
.yd90_c00001{bottom:114.907067pt;}
.y86b_c00001{bottom:115.869331pt;}
.y222_c00001{bottom:116.267067pt;}
.y285_c00001{bottom:116.427067pt;}
.y6a8_c00001{bottom:116.507067pt;}
.y1a9_c00001{bottom:117.627067pt;}
.y366_c00001{bottom:117.707067pt;}
.yb67_c00001{bottom:117.867067pt;}
.y9a2_c00001{bottom:118.107200pt;}
.y637_c00001{bottom:118.667067pt;}
.y4c2_c00001{bottom:118.907067pt;}
.y74f_c00001{bottom:119.307067pt;}
.y346_c00001{bottom:119.467067pt;}
.y8ad_c00001{bottom:119.707067pt;}
.yda7_c00001{bottom:119.867067pt;}
.yde1_c00001{bottom:120.187200pt;}
.yd3e_c00001{bottom:120.667067pt;}
.y410_c00001{bottom:120.827067pt;}
.y966_c00001{bottom:120.987067pt;}
.y896_c00001{bottom:121.065763pt;}
.yce_c00001{bottom:121.067067pt;}
.y7e_c00001{bottom:121.387067pt;}
.y25_c00001{bottom:121.867067pt;}
.y883_c00001{bottom:121.867200pt;}
.y43e_c00001{bottom:121.947067pt;}
.y703_c00001{bottom:122.427067pt;}
.y8f7_c00001{bottom:122.667067pt;}
.y761_c00001{bottom:122.987200pt;}
.y696_c00001{bottom:123.067067pt;}
.y6eb_c00001{bottom:123.307067pt;}
.y5c6_c00001{bottom:124.027067pt;}
.y839_c00001{bottom:124.349179pt;}
.yb4_c00001{bottom:124.667067pt;}
.y174_c00001{bottom:124.907067pt;}
.y802_c00001{bottom:124.987067pt;}
.y9fc_c00001{bottom:125.147200pt;}
.y31f_c00001{bottom:125.387067pt;}
.y945_c00001{bottom:125.468667pt;}
.y4d5_c00001{bottom:126.667067pt;}
.y6bd_c00001{bottom:126.987067pt;}
.yb28_c00001{bottom:127.227067pt;}
.y738_c00001{bottom:127.307067pt;}
.y2a5_c00001{bottom:127.387067pt;}
.y5ab_c00001{bottom:127.547067pt;}
.y1e2_c00001{bottom:127.787067pt;}
.y20a_c00001{bottom:127.787200pt;}
.y6bb_c00001{bottom:127.947067pt;}
.y4a8_c00001{bottom:128.027067pt;}
.y1c9_c00001{bottom:128.347067pt;}
.y1a8_c00001{bottom:128.347075pt;}
.y243_c00001{bottom:128.347243pt;}
.y4eb_c00001{bottom:128.427067pt;}
.yaa4_c00001{bottom:128.747067pt;}
.yd76_c00001{bottom:128.827067pt;}
.y823_c00001{bottom:128.907067pt;}
.y853_c00001{bottom:129.067067pt;}
.y136_c00001{bottom:129.147067pt;}
.yd2b_c00001{bottom:129.147200pt;}
.y155_c00001{bottom:129.467067pt;}
.y263_c00001{bottom:129.707067pt;}
.yaed_c00001{bottom:130.027067pt;}
.y48_c00001{bottom:130.507067pt;}
.y6d8_c00001{bottom:130.587067pt;}
.ye03_c00001{bottom:130.907067pt;}
.y7ac_c00001{bottom:131.067067pt;}
.y92f_c00001{bottom:131.147067pt;}
.y477_c00001{bottom:131.307067pt;}
.y816_c00001{bottom:131.387067pt;}
.ydb2_c00001{bottom:131.547067pt;}
.y67e_c00001{bottom:131.627067pt;}
.y919_c00001{bottom:131.861987pt;}
.y724_c00001{bottom:131.867067pt;}
.yc25_c00001{bottom:132.107200pt;}
.y2b4_c00001{bottom:132.267067pt;}
.y58f_c00001{bottom:132.347067pt;}
.y220_c00001{bottom:132.427067pt;}
.ya3d_c00001{bottom:132.667067pt;}
.ybad_c00001{bottom:132.747067pt;}
.ydbf_c00001{bottom:133.067200pt;}
.yb89_c00001{bottom:134.347067pt;}
.ya86_c00001{bottom:135.067200pt;}
.y2ea_c00001{bottom:135.147067pt;}
.y718_c00001{bottom:135.307067pt;}
.yd64_c00001{bottom:135.467067pt;}
.y97_c00001{bottom:135.547067pt;}
.yd0f_c00001{bottom:136.107200pt;}
.yd8f_c00001{bottom:136.187200pt;}
.y607_c00001{bottom:136.587067pt;}
.y9dd_c00001{bottom:137.227067pt;}
.y86a_c00001{bottom:137.309059pt;}
.y40e_c00001{bottom:137.627067pt;}
.y74e_c00001{bottom:137.707067pt;}
.y345_c00001{bottom:137.867067pt;}
.y2e1_c00001{bottom:137.947067pt;}
.ybcc_c00001{bottom:138.267067pt;}
.y11c_c00001{bottom:138.747067pt;}
.y620_c00001{bottom:138.827067pt;}
.y40d_c00001{bottom:138.987067pt;}
.y1f8_c00001{bottom:139.147067pt;}
.y452_c00001{bottom:139.227067pt;}
.y2c0_c00001{bottom:139.307067pt;}
.y965_c00001{bottom:139.387067pt;}
.y563_c00001{bottom:139.787067pt;}
.y636_c00001{bottom:139.947067pt;}
.y882_c00001{bottom:140.267200pt;}
.y365_c00001{bottom:140.427067pt;}
.ye8_c00001{bottom:140.507067pt;}
.y9a1_c00001{bottom:140.747067pt;}
.y63_c00001{bottom:140.827067pt;}
.yc36_c00001{bottom:140.987067pt;}
.yda6_c00001{bottom:141.147200pt;}
.y760_c00001{bottom:141.387200pt;}
.y279_c00001{bottom:141.547067pt;}
.y7cf_c00001{bottom:142.027067pt;}
.y908_c00001{bottom:142.107200pt;}
.y5c5_c00001{bottom:142.427067pt;}
.yb66_c00001{bottom:142.507067pt;}
.y8ac_c00001{bottom:142.747067pt;}
.ybdd_c00001{bottom:142.907067pt;}
.y242_c00001{bottom:143.707235pt;}
.y211_c00001{bottom:143.867067pt;}
.y284_c00001{bottom:144.027067pt;}
.y1c8_c00001{bottom:144.267067pt;}
.y695_c00001{bottom:144.427067pt;}
.y6e9_c00001{bottom:144.587067pt;}
.y43d_c00001{bottom:144.667067pt;}
.y701_c00001{bottom:144.747067pt;}
.y838_c00001{bottom:145.869059pt;}
.y5aa_c00001{bottom:145.947067pt;}
.y801_c00001{bottom:146.347067pt;}
.y944_c00001{bottom:146.988547pt;}
.y667_c00001{bottom:147.067200pt;}
.y822_c00001{bottom:147.307067pt;}
.y852_c00001{bottom:147.467067pt;}
.y895_c00001{bottom:147.706051pt;}
.y4d4_c00001{bottom:148.187200pt;}
.y6be_c00001{bottom:148.267067pt;}
.y1a7_c00001{bottom:148.347067pt;}
.y31e_c00001{bottom:148.587067pt;}
.y4c1_c00001{bottom:148.827067pt;}
.y9fb_c00001{bottom:148.987067pt;}
.ycd_c00001{bottom:149.067200pt;}
.y7d_c00001{bottom:149.307067pt;}
.y7ab_c00001{bottom:149.467067pt;}
.y92e_c00001{bottom:149.547067pt;}
.y24_c00001{bottom:149.867067pt;}
.yd75_c00001{bottom:150.027067pt;}
.yc60_c00001{bottom:150.507067pt;}
.y58e_c00001{bottom:150.747067pt;}
.y32c_c00001{bottom:150.991632pt;}
.y4ea_c00001{bottom:151.067200pt;}
.y4a7_c00001{bottom:151.307067pt;}
.y772_c00001{bottom:151.387067pt;}
.y6d6_c00001{bottom:151.947067pt;}
.y173_c00001{bottom:152.507067pt;}
.yb3_c00001{bottom:152.587067pt;}
.y476_c00001{bottom:152.667067pt;}
.yaec_c00001{bottom:152.747067pt;}
.y190_c00001{bottom:153.067067pt;}
.ye02_c00001{bottom:153.627067pt;}
.yd63_c00001{bottom:153.867067pt;}
.ydf1_c00001{bottom:153.947067pt;}
.ya3c_c00001{bottom:154.027067pt;}
.ydae_c00001{bottom:154.267067pt;}
.ydbd_c00001{bottom:154.427067pt;}
.y102_c00001{bottom:154.507067pt;}
.ya51_c00001{bottom:154.587067pt;}
.yc24_c00001{bottom:154.747067pt;}
.y2a4_c00001{bottom:154.987067pt;}
.ydad_c00001{bottom:155.227067pt;}
.y209_c00001{bottom:155.227200pt;}
.y67d_c00001{bottom:155.307067pt;}
.y1e1_c00001{bottom:155.387067pt;}
.y2cd_c00001{bottom:155.387200pt;}
.ybac_c00001{bottom:155.467067pt;}
.yb88_c00001{bottom:155.707067pt;}
.y74d_c00001{bottom:156.107067pt;}
.y3ce_c00001{bottom:156.187200pt;}
.y344_c00001{bottom:156.267067pt;}
.yd80_c00001{bottom:156.427067pt;}
.y717_c00001{bottom:156.667067pt;}
.y154_c00001{bottom:157.067067pt;}
.y262_c00001{bottom:157.307067pt;}
.yd8e_c00001{bottom:157.387067pt;}
.y451_c00001{bottom:157.627067pt;}
.y815_c00001{bottom:157.707200pt;}
.y964_c00001{bottom:157.787067pt;}
.yca2_c00001{bottom:157.867067pt;}
.y8b9_c00001{bottom:157.947067pt;}
.ya0d_c00001{bottom:158.107200pt;}
.y562_c00001{bottom:158.187067pt;}
.y47_c00001{bottom:158.427067pt;}
.y918_c00001{bottom:158.502275pt;}
.ya85_c00001{bottom:158.507067pt;}
.ye24_c00001{bottom:158.667067pt;}
.y881_c00001{bottom:158.667200pt;}
.y869_c00001{bottom:158.748787pt;}
.yd0e_c00001{bottom:158.827067pt;}
.y67b_c00001{bottom:159.067200pt;}
.y606_c00001{bottom:159.307067pt;}
.y723_c00001{bottom:159.467067pt;}
.y1a6_c00001{bottom:159.627067pt;}
.y135_c00001{bottom:159.707067pt;}
.y75f_c00001{bottom:159.787200pt;}
.y2b3_c00001{bottom:159.867067pt;}
.y9dc_c00001{bottom:159.947067pt;}
.y21f_c00001{bottom:160.027067pt;}
.y40c_c00001{bottom:160.267067pt;}
.y3b9_c00001{bottom:160.747067pt;}
.y5c4_c00001{bottom:160.827067pt;}
.yc8b_c00001{bottom:160.907067pt;}
.ybcb_c00001{bottom:160.987067pt;}
.ya21_c00001{bottom:161.707067pt;}
.y6a6_c00001{bottom:161.867067pt;}
.y3b8_c00001{bottom:162.107200pt;}
.y307_c00001{bottom:162.267067pt;}
.yda5_c00001{bottom:162.347067pt;}
.y61f_c00001{bottom:162.827067pt;}
.y364_c00001{bottom:163.067200pt;}
.yd2a_c00001{bottom:163.147200pt;}
.yd3d_c00001{bottom:163.387067pt;}
.y96_c00001{bottom:163.547067pt;}
.y241_c00001{bottom:163.627067pt;}
.yddf_c00001{bottom:164.187200pt;}
.yb78_c00001{bottom:164.267067pt;}
.y5a9_c00001{bottom:164.347067pt;}
.y483_c00001{bottom:164.587067pt;}
.y907_c00001{bottom:164.747067pt;}
.yc35_c00001{bottom:164.907067pt;}
.yb65_c00001{bottom:165.147200pt;}
.yddd_c00001{bottom:165.227067pt;}
.y821_c00001{bottom:165.707067pt;}
.y905_c00001{bottom:165.787067pt;}
.y851_c00001{bottom:165.867067pt;}
.y700_c00001{bottom:165.947067pt;}
.y8f6_c00001{bottom:166.267067pt;}
.ybdc_c00001{bottom:166.427067pt;}
.ybf1_c00001{bottom:166.507067pt;}
.y1f7_c00001{bottom:166.747067pt;}
.y2bf_c00001{bottom:166.907067pt;}
.y837_c00001{bottom:167.308787pt;}
.y800_c00001{bottom:167.467067pt;}
.y43c_c00001{bottom:167.547067pt;}
.y694_c00001{bottom:167.707067pt;}
.y7aa_c00001{bottom:167.867067pt;}
.y92d_c00001{bottom:167.947067pt;}
.ye7_c00001{bottom:168.267067pt;}
.y943_c00001{bottom:168.428275pt;}
.y2e0_c00001{bottom:168.507067pt;}
.ycd2_c00001{bottom:168.587067pt;}
.y62_c00001{bottom:168.747067pt;}
.y693_c00001{bottom:168.987067pt;}
.y278_c00001{bottom:169.147067pt;}
.y6bc_c00001{bottom:169.627067pt;}
.y4d3_c00001{bottom:169.707067pt;}
.y666_c00001{bottom:169.787067pt;}
.y31d_c00001{bottom:171.227067pt;}
.yd74_c00001{bottom:171.307067pt;}
.y210_c00001{bottom:171.467067pt;}
.y283_c00001{bottom:171.627067pt;}
.yd62_c00001{bottom:172.267067pt;}
.y11b_c00001{bottom:172.347067pt;}
.yaa3_c00001{bottom:172.747067pt;}
.yc5f_c00001{bottom:173.147200pt;}
.y4e9_c00001{bottom:173.787067pt;}
.y4a6_c00001{bottom:173.947067pt;}
.yaeb_c00001{bottom:174.027200pt;}
.y6d4_c00001{bottom:174.187200pt;}
.y894_c00001{bottom:174.346339pt;}
.y74c_c00001{bottom:174.507067pt;}
.y343_c00001{bottom:174.667067pt;}
.y240_c00001{bottom:174.907067pt;}
.y475_c00001{bottom:175.307067pt;}
.ydaf_c00001{bottom:175.547067pt;}
.y450_c00001{bottom:176.027067pt;}
.y814_c00001{bottom:176.107200pt;}
.y963_c00001{bottom:176.187067pt;}
.y561_c00001{bottom:176.587067pt;}
.ydf0_c00001{bottom:176.667067pt;}
.ybab_c00001{bottom:176.747067pt;}
.ycc_c00001{bottom:176.987067pt;}
.y880_c00001{bottom:177.067200pt;}
.y7c_c00001{bottom:177.227067pt;}
.ya3b_c00001{bottom:177.467067pt;}
.yd7f_c00001{bottom:177.547067pt;}
.y23_c00001{bottom:177.787067pt;}
.ydbc_c00001{bottom:177.867067pt;}
.ya50_c00001{bottom:178.027200pt;}
.y716_c00001{bottom:178.187200pt;}
.yd8d_c00001{bottom:178.667067pt;}
.y3cd_c00001{bottom:178.827067pt;}
.y67c_c00001{bottom:179.067200pt;}
.y5c3_c00001{bottom:179.227067pt;}
.yac7_c00001{bottom:179.867067pt;}
.y172_c00001{bottom:180.107067pt;}
.y868_c00001{bottom:180.268667pt;}
.y67a_c00001{bottom:180.427067pt;}
.yb2_c00001{bottom:180.507067pt;}
.yca1_c00001{bottom:180.587067pt;}
.y18f_c00001{bottom:180.747067pt;}
.ya0c_c00001{bottom:181.067200pt;}
.y7eb_c00001{bottom:181.227067pt;}
.yca0_c00001{bottom:181.867067pt;}
.ya84_c00001{bottom:181.947067pt;}
.ycc3_c00001{bottom:182.027200pt;}
.ybca_c00001{bottom:182.267067pt;}
.y2a3_c00001{bottom:182.587067pt;}
.y5a8_c00001{bottom:182.747067pt;}
.y208_c00001{bottom:182.827200pt;}
.y1e0_c00001{bottom:182.987067pt;}
.y2cc_c00001{bottom:182.987200pt;}
.y605_c00001{bottom:183.067200pt;}
.y6a7_c00001{bottom:183.227067pt;}
.y3b7_c00001{bottom:183.387067pt;}
.y4ac_c00001{bottom:183.547067pt;}
.yda4_c00001{bottom:183.867067pt;}
.y408_c00001{bottom:183.947067pt;}
.y820_c00001{bottom:184.107067pt;}
.y850_c00001{bottom:184.267067pt;}
.y4c0_c00001{bottom:184.347067pt;}
.y153_c00001{bottom:184.667067pt;}
.y261_c00001{bottom:184.907067pt;}
.y917_c00001{bottom:185.222715pt;}
.y9a0_c00001{bottom:185.467067pt;}
.yde0_c00001{bottom:185.547067pt;}
.y363_c00001{bottom:185.707067pt;}
.y61e_c00001{bottom:185.787067pt;}
.y906_c00001{bottom:186.107200pt;}
.y7a9_c00001{bottom:186.267067pt;}
.y46_c00001{bottom:186.347067pt;}
.yb64_c00001{bottom:186.507067pt;}
.y635_c00001{bottom:186.667067pt;}
.y99f_c00001{bottom:186.747067pt;}
.y6ff_c00001{bottom:187.227067pt;}
.y224_c00001{bottom:187.467067pt;}
.y58d_c00001{bottom:187.547067pt;}
.y21e_c00001{bottom:187.627067pt;}
.yb77_c00001{bottom:187.707067pt;}
.yb63_c00001{bottom:187.867067pt;}
.yc34_c00001{bottom:187.947067pt;}
.y4d2_c00001{bottom:188.107067pt;}
.y101_c00001{bottom:188.107200pt;}
.y836_c00001{bottom:188.748515pt;}
.y7ff_c00001{bottom:188.987067pt;}
.ybdb_c00001{bottom:189.067200pt;}
.ybf0_c00001{bottom:189.147200pt;}
.yb0e_c00001{bottom:189.227067pt;}
.yb49_c00001{bottom:189.467067pt;}
.y771_c00001{bottom:189.707067pt;}
.y32b_c00001{bottom:189.790792pt;}
.y942_c00001{bottom:189.868003pt;}
.y134_c00001{bottom:190.187067pt;}
.y692_c00001{bottom:190.347067pt;}
.y43b_c00001{bottom:190.507067pt;}
.yc0c_c00001{bottom:190.667067pt;}
.yced_c00001{bottom:190.907067pt;}
.ycd1_c00001{bottom:191.307067pt;}
.y95_c00001{bottom:191.467067pt;}
.y6ba_c00001{bottom:191.947067pt;}
.y665_c00001{bottom:192.427067pt;}
.yd73_c00001{bottom:192.827067pt;}
.y74b_c00001{bottom:192.907067pt;}
.y9fa_c00001{bottom:192.987067pt;}
.y342_c00001{bottom:193.067067pt;}
.ya63_c00001{bottom:193.467067pt;}
.y2c5_c00001{bottom:194.347067pt;}
.y31c_c00001{bottom:194.427067pt;}
.y1f6_c00001{bottom:194.507067pt;}
.y813_c00001{bottom:194.507200pt;}
.y962_c00001{bottom:194.587067pt;}
.yb27_c00001{bottom:194.667067pt;}
.y560_c00001{bottom:194.987067pt;}
.y4a5_c00001{bottom:195.307067pt;}
.yaa2_c00001{bottom:195.387067pt;}
.y6d3_c00001{bottom:195.467067pt;}
.ye6_c00001{bottom:196.187200pt;}
.y4e8_c00001{bottom:196.427067pt;}
.y7ce_c00001{bottom:196.507067pt;}
.yc74_c00001{bottom:196.587067pt;}
.y75e_c00001{bottom:196.587200pt;}
.y61_c00001{bottom:196.667067pt;}
.y277_c00001{bottom:196.747067pt;}
.ydb1_c00001{bottom:196.907067pt;}
.y7cb_c00001{bottom:197.467067pt;}
.y5c2_c00001{bottom:197.627067pt;}
.y796_c00001{bottom:198.187200pt;}
.yd29_c00001{bottom:198.587067pt;}
.y722_c00001{bottom:198.827067pt;}
.y2df_c00001{bottom:198.987067pt;}
.y1c7_c00001{bottom:199.067067pt;}
.y282_c00001{bottom:199.227067pt;}
.ydef_c00001{bottom:199.307067pt;}
.ybaa_c00001{bottom:199.467067pt;}
.y715_c00001{bottom:199.547067pt;}
.yc23_c00001{bottom:200.107200pt;}
.y3cc_c00001{bottom:200.187200pt;}
.ydee_c00001{bottom:200.667067pt;}
.y893_c00001{bottom:201.066779pt;}
.y5a7_c00001{bottom:201.067067pt;}
.ya4f_c00001{bottom:201.467067pt;}
.y679_c00001{bottom:201.707067pt;}
.y867_c00001{bottom:201.708395pt;}
.ydbb_c00001{bottom:201.787067pt;}
.yd41_c00001{bottom:201.867067pt;}
.yda3_c00001{bottom:202.187067pt;}
.y81f_c00001{bottom:202.507067pt;}
.yac6_c00001{bottom:202.587067pt;}
.y84f_c00001{bottom:202.667067pt;}
.y7ea_c00001{bottom:202.747067pt;}
.y3ca_c00001{bottom:202.827067pt;}
.y4d1_c00001{bottom:202.907067pt;}
.y8b8_c00001{bottom:203.067067pt;}
.yb87_c00001{bottom:203.147200pt;}
.yc9f_c00001{bottom:203.227067pt;}
.y989_c00001{bottom:203.947067pt;}
.ya0b_c00001{bottom:204.107200pt;}
.y40a_c00001{bottom:204.267067pt;}
.y6a5_c00001{bottom:204.507067pt;}
.y7a8_c00001{bottom:204.667067pt;}
.y3b6_c00001{bottom:204.747067pt;}
.ycb_c00001{bottom:204.907067pt;}
.ybc9_c00001{bottom:204.987067pt;}
.yd0d_c00001{bottom:205.067200pt;}
.y7b_c00001{bottom:205.227067pt;}
.y22_c00001{bottom:205.707067pt;}
.y11a_c00001{bottom:205.947067pt;}
.yab4_c00001{bottom:206.507067pt;}
.y604_c00001{bottom:206.747067pt;}
.ydde_c00001{bottom:206.907067pt;}
.y7fe_c00001{bottom:207.387067pt;}
.ye1c_c00001{bottom:207.467067pt;}
.y306_c00001{bottom:207.547067pt;}
.y171_c00001{bottom:207.707067pt;}
.y99e_c00001{bottom:208.107200pt;}
.y18e_c00001{bottom:208.347067pt;}
.yb1_c00001{bottom:208.427067pt;}
.y6fe_c00001{bottom:208.747067pt;}
.y8f5_c00001{bottom:208.827067pt;}
.yd61_c00001{bottom:209.067067pt;}
.yb62_c00001{bottom:209.147200pt;}
.y1a5_c00001{bottom:209.547200pt;}
.y6e7_c00001{bottom:209.627200pt;}
.y61d_c00001{bottom:209.787067pt;}
.y2a2_c00001{bottom:210.187067pt;}
.y835_c00001{bottom:210.268395pt;}
.yb76_c00001{bottom:210.347067pt;}
.y634_c00001{bottom:210.427067pt;}
.ybef_c00001{bottom:210.507067pt;}
.y1df_c00001{bottom:210.587067pt;}
.y207_c00001{bottom:210.587200pt;}
.yb48_c00001{bottom:210.747067pt;}
.yd72_c00001{bottom:211.227067pt;}
.y74a_c00001{bottom:211.307067pt;}
.y941_c00001{bottom:211.387883pt;}
.y341_c00001{bottom:211.467067pt;}
.y633_c00001{bottom:211.787067pt;}
.y916_c00001{bottom:211.863003pt;}
.yb0d_c00001{bottom:211.867067pt;}
.y152_c00001{bottom:212.267067pt;}
.y260_c00001{bottom:212.507067pt;}
.y44f_c00001{bottom:212.827067pt;}
.yd5a_c00001{bottom:212.907067pt;}
.y812_c00001{bottom:212.907200pt;}
.y690_c00001{bottom:212.987067pt;}
.y43a_c00001{bottom:213.147200pt;}
.yc0b_c00001{bottom:213.307067pt;}
.y55f_c00001{bottom:213.387067pt;}
.ycec_c00001{bottom:213.627067pt;}
.ycd0_c00001{bottom:213.947067pt;}
.y68e_c00001{bottom:214.027200pt;}
.y75d_c00001{bottom:214.987200pt;}
.y2b2_c00001{bottom:215.067067pt;}
.y664_c00001{bottom:215.067200pt;}
.y21d_c00001{bottom:215.227067pt;}
.ya92_c00001{bottom:215.467067pt;}
.y9f9_c00001{bottom:215.627067pt;}
.y5c1_c00001{bottom:216.027067pt;}
.y45_c00001{bottom:216.107200pt;}
.ya62_c00001{bottom:216.187200pt;}
.y9f6_c00001{bottom:216.667067pt;}
.y6d2_c00001{bottom:216.747067pt;}
.y9eb_c00001{bottom:216.907067pt;}
.yc5e_c00001{bottom:217.147200pt;}
.yd7e_c00001{bottom:217.467067pt;}
.y31b_c00001{bottom:217.627067pt;}
.y7cd_c00001{bottom:217.787067pt;}
.y8b7_c00001{bottom:217.867067pt;}
.y4a4_c00001{bottom:217.947067pt;}
.yb26_c00001{bottom:218.187200pt;}
.ydb0_c00001{bottom:218.267067pt;}
.yaea_c00001{bottom:218.827067pt;}
.y4e7_c00001{bottom:219.067200pt;}
.y954_c00001{bottom:219.147067pt;}
.y474_c00001{bottom:219.307067pt;}
.y94_c00001{bottom:219.387067pt;}
.y92c_c00001{bottom:219.467067pt;}
.yc73_c00001{bottom:219.947067pt;}
.yd8c_c00001{bottom:220.027067pt;}
.ye01_c00001{bottom:220.267067pt;}
.y133_c00001{bottom:220.747067pt;}
.y795_c00001{bottom:220.907067pt;}
.y84e_c00001{bottom:221.067067pt;}
.y714_c00001{bottom:221.067200pt;}
.y7e9_c00001{bottom:221.461987pt;}
.yc22_c00001{bottom:221.467067pt;}
.y100_c00001{bottom:221.707067pt;}
.ye23_c00001{bottom:221.787067pt;}
.y2c4_c00001{bottom:221.947067pt;}
.y5ec_c00001{bottom:222.027067pt;}
.y1f5_c00001{bottom:222.107067pt;}
.y3cb_c00001{bottom:222.827067pt;}
.y7a7_c00001{bottom:223.067067pt;}
.y866_c00001{bottom:223.148123pt;}
.y38e_c00001{bottom:223.547067pt;}
.ya3a_c00001{bottom:223.627067pt;}
.yac5_c00001{bottom:223.867067pt;}
.ye5_c00001{bottom:224.107067pt;}
.y3c9_c00001{bottom:224.187067pt;}
.y276_c00001{bottom:224.347067pt;}
.y678_c00001{bottom:224.427067pt;}
.yb86_c00001{bottom:224.507067pt;}
.y60_c00001{bottom:224.667067pt;}
.y4bf_c00001{bottom:224.907067pt;}
.y676_c00001{bottom:225.387067pt;}
.y40b_c00001{bottom:225.627067pt;}
.y7fd_c00001{bottom:225.787067pt;}
.yc9d_c00001{bottom:225.867067pt;}
.ycc2_c00001{bottom:226.027067pt;}
.y4ab_c00001{bottom:226.267067pt;}
.y988_c00001{bottom:226.587067pt;}
.y1c6_c00001{bottom:226.667067pt;}
.ya0a_c00001{bottom:226.747067pt;}
.y281_c00001{bottom:226.827067pt;}
.yc9c_c00001{bottom:226.907067pt;}
.y6fd_c00001{bottom:227.147067pt;}
.y3b4_c00001{bottom:227.387067pt;}
.y44e_c00001{bottom:227.547067pt;}
.y892_c00001{bottom:227.707067pt;}
.y5a6_c00001{bottom:227.787067pt;}
.y770_c00001{bottom:227.947067pt;}
.y6e6_c00001{bottom:228.027200pt;}
.ya83_c00001{bottom:228.107067pt;}
.ya20_c00001{bottom:228.347067pt;}
.y3b1_c00001{bottom:228.427067pt;}
.y32a_c00001{bottom:228.670104pt;}
.ycc1_c00001{bottom:228.747067pt;}
.yda2_c00001{bottom:228.907067pt;}
.yddc_c00001{bottom:229.147067pt;}
.y2de_c00001{bottom:229.547067pt;}
.yd71_c00001{bottom:229.627067pt;}
.y749_c00001{bottom:229.707067pt;}
.y340_c00001{bottom:229.867067pt;}
.ye1b_c00001{bottom:230.107067pt;}
.y305_c00001{bottom:230.267067pt;}
.yb35_c00001{bottom:230.427067pt;}
.y8f4_c00001{bottom:230.662275pt;}
.y5c0_c00001{bottom:230.747067pt;}
.yd30_c00001{bottom:230.827067pt;}
.y362_c00001{bottom:231.067067pt;}
.y811_c00001{bottom:231.307200pt;}
.y961_c00001{bottom:231.387067pt;}
.y834_c00001{bottom:231.708123pt;}
.y55e_c00001{bottom:231.787067pt;}
.yb60_c00001{bottom:231.867067pt;}
.yc92_c00001{bottom:232.107067pt;}
.yc55_c00001{bottom:232.587067pt;}
.yb5e_c00001{bottom:232.827067pt;}
.y940_c00001{bottom:232.827611pt;}
.y9b0_c00001{bottom:232.987067pt;}
.y632_c00001{bottom:233.067067pt;}
.yb0c_c00001{bottom:233.227067pt;}
.y75c_c00001{bottom:233.387200pt;}
.ybee_c00001{bottom:233.467067pt;}
.y21_c00001{bottom:233.627067pt;}
.y360_c00001{bottom:233.707067pt;}
.y61c_c00001{bottom:233.787067pt;}
.ybda_c00001{bottom:233.867067pt;}
.yd28_c00001{bottom:234.107067pt;}
.yb47_c00001{bottom:234.187067pt;}
.y691_c00001{bottom:234.347067pt;}
.yd1d_c00001{bottom:234.587067pt;}
.yca_c00001{bottom:234.667067pt;}
.y6b9_c00001{bottom:234.667200pt;}
.ybed_c00001{bottom:234.827067pt;}
.y7a_c00001{bottom:234.987067pt;}
.ycaf_c00001{bottom:235.227067pt;}
.y170_c00001{bottom:235.307067pt;}
.yb46_c00001{bottom:235.467067pt;}
.yc33_c00001{bottom:235.787067pt;}
.y18d_c00001{bottom:235.947067pt;}
.y439_c00001{bottom:236.107067pt;}
.yceb_c00001{bottom:236.267067pt;}
.yccf_c00001{bottom:236.587067pt;}
.y9f8_c00001{bottom:236.987067pt;}
.y721_c00001{bottom:237.067067pt;}
.y1a4_c00001{bottom:237.147200pt;}
.ya61_c00001{bottom:237.467067pt;}
.y2a1_c00001{bottom:237.787067pt;}
.yb0_c00001{bottom:238.187067pt;}
.y206_c00001{bottom:238.187200pt;}
.y6d1_c00001{bottom:238.267067pt;}
.y915_c00001{bottom:238.503291pt;}
.yc5d_c00001{bottom:238.507067pt;}
.yad8_c00001{bottom:238.587067pt;}
.ya91_c00001{bottom:238.907067pt;}
.y4a3_c00001{bottom:239.307067pt;}
.y84d_c00001{bottom:239.467067pt;}
.y713_c00001{bottom:239.467200pt;}
.y119_c00001{bottom:239.547067pt;}
.yd59_c00001{bottom:239.627067pt;}
.y151_c00001{bottom:239.867067pt;}
.y25f_c00001{bottom:239.947067pt;}
.y8e5_c00001{bottom:240.107067pt;}
.y31a_c00001{bottom:240.267067pt;}
.y473_c00001{bottom:240.667067pt;}
.yb25_c00001{bottom:240.827067pt;}
.y7a6_c00001{bottom:241.467067pt;}
.y4e5_c00001{bottom:241.787067pt;}
.ya72_c00001{bottom:242.107067pt;}
.y953_c00001{bottom:242.187067pt;}
.y3a4_c00001{bottom:242.267067pt;}
.y293_c00001{bottom:242.587067pt;}
.yc72_c00001{bottom:242.667067pt;}
.y21c_c00001{bottom:242.747067pt;}
.ye00_c00001{bottom:242.907067pt;}
.yae9_c00001{bottom:243.307067pt;}
.yb9a_c00001{bottom:243.387067pt;}
.yba9_c00001{bottom:243.467067pt;}
.y794_c00001{bottom:243.547067pt;}
.ydba_c00001{bottom:243.707067pt;}
.yc68_c00001{bottom:243.787067pt;}
.yaa1_c00001{bottom:244.027067pt;}
.yc21_c00001{bottom:244.107067pt;}
.y7fc_c00001{bottom:244.187067pt;}
.y4aa_c00001{bottom:244.587067pt;}
.ydec_c00001{bottom:244.667067pt;}
.y865_c00001{bottom:244.668003pt;}
.y3c8_c00001{bottom:245.467067pt;}
.y6fc_c00001{bottom:245.547067pt;}
.ydea_c00001{bottom:245.627067pt;}
.y5eb_c00001{bottom:245.707067pt;}
.yd60_c00001{bottom:245.787067pt;}
.y9bb_c00001{bottom:246.027067pt;}
.y38d_c00001{bottom:246.187067pt;}
.y6e5_c00001{bottom:246.427200pt;}
.y44_c00001{bottom:246.507067pt;}
.yac4_c00001{bottom:246.667067pt;}
.y409_c00001{bottom:246.987067pt;}
.ya39_c00001{bottom:247.067067pt;}
.yb85_c00001{bottom:247.147067pt;}
.yc9e_c00001{bottom:247.227067pt;}
.y93_c00001{bottom:247.307067pt;}
.ya4e_c00001{bottom:247.627067pt;}
.y519_c00001{bottom:247.867067pt;}
.y6a4_c00001{bottom:248.027067pt;}
.y748_c00001{bottom:248.107067pt;}
.y7e8_c00001{bottom:248.182427pt;}
.y33f_c00001{bottom:248.267067pt;}
.ya38_c00001{bottom:248.427067pt;}
.y3b3_c00001{bottom:248.747067pt;}
.ybc8_c00001{bottom:248.987067pt;}
.y9da_c00001{bottom:249.227067pt;}
.y987_c00001{bottom:249.307067pt;}
.ya08_c00001{bottom:249.387067pt;}
.y1f4_c00001{bottom:249.547067pt;}
.y2be_c00001{bottom:249.707067pt;}
.y810_c00001{bottom:249.707200pt;}
.y960_c00001{bottom:249.787067pt;}
.ycc0_c00001{bottom:250.027067pt;}
.y55d_c00001{bottom:250.187067pt;}
.y9d8_c00001{bottom:250.267067pt;}
.yddb_c00001{bottom:250.347067pt;}
.y891_c00001{bottom:250.427067pt;}
.yd0c_c00001{bottom:250.907067pt;}
.yaf8_c00001{bottom:250.987067pt;}
.y904_c00001{bottom:251.067067pt;}
.y132_c00001{bottom:251.227067pt;}
.ya82_c00001{bottom:251.547067pt;}
.y75b_c00001{bottom:251.787200pt;}
.y275_c00001{bottom:251.947067pt;}
.ye4_c00001{bottom:252.027067pt;}
.y99c_c00001{bottom:252.107067pt;}
.yab3_c00001{bottom:252.507067pt;}
.y5f_c00001{bottom:252.587067pt;}
.ye1a_c00001{bottom:252.827067pt;}
.y304_c00001{bottom:252.907067pt;}
.ybc5_c00001{bottom:252.987067pt;}
.y6b8_c00001{bottom:253.067200pt;}
.yb61_c00001{bottom:253.147067pt;}
.y833_c00001{bottom:253.147851pt;}
.y603_c00001{bottom:253.227067pt;}
.y361_c00001{bottom:253.707067pt;}
.yb34_c00001{bottom:253.867067pt;}
.y1c5_c00001{bottom:254.267067pt;}
.y93f_c00001{bottom:254.267339pt;}
.y7cc_c00001{bottom:254.827067pt;}
.y35f_c00001{bottom:255.067067pt;}
.yc54_c00001{bottom:255.227067pt;}
.yff_c00001{bottom:255.307067pt;}
.yda1_c00001{bottom:255.547067pt;}
.y68f_c00001{bottom:255.707067pt;}
.y631_c00001{bottom:255.787067pt;}
.ybec_c00001{bottom:256.187067pt;}
.y23f_c00001{bottom:256.347067pt;}
.yb0b_c00001{bottom:256.507067pt;}
.y6d0_c00001{bottom:256.667067pt;}
.y62e_c00001{bottom:256.747067pt;}
.y61b_c00001{bottom:256.827067pt;}
.yb75_c00001{bottom:257.147067pt;}
.yd1c_c00001{bottom:257.227067pt;}
.y8f3_c00001{bottom:257.302563pt;}
.y58c_c00001{bottom:257.467067pt;}
.yc0a_c00001{bottom:257.627067pt;}
.y81e_c00001{bottom:257.707067pt;}
.y84c_c00001{bottom:257.867067pt;}
.y712_c00001{bottom:257.867200pt;}
.yd8b_c00001{bottom:258.267067pt;}
.y9f7_c00001{bottom:258.347067pt;}
.yc32_c00001{bottom:258.507067pt;}
.ycea_c00001{bottom:258.907067pt;}
.yc09_c00001{bottom:258.987067pt;}
.y438_c00001{bottom:259.067067pt;}
.ycdf_c00001{bottom:259.227067pt;}
.ycce_c00001{bottom:259.307067pt;}
.y7a5_c00001{bottom:259.867067pt;}
.y2dd_c00001{bottom:260.027067pt;}
.ya60_c00001{bottom:260.187067pt;}
.y437_c00001{bottom:260.347067pt;}
.y663_c00001{bottom:260.427067pt;}
.y5a5_c00001{bottom:260.907067pt;}
.yad7_c00001{bottom:261.227067pt;}
.y20_c00001{bottom:261.547067pt;}
.ydac_c00001{bottom:261.867067pt;}
.y4a2_c00001{bottom:261.947067pt;}
.yc9_c00001{bottom:262.107067pt;}
.y9ea_c00001{bottom:262.187067pt;}
.ya90_c00001{bottom:262.427067pt;}
.y7fb_c00001{bottom:262.587067pt;}
.ye10_c00001{bottom:262.747067pt;}
.y747_c00001{bottom:262.827067pt;}
.y16f_c00001{bottom:262.907067pt;}
.y4e6_c00001{bottom:263.067067pt;}
.y472_c00001{bottom:263.307067pt;}
.y319_c00001{bottom:263.467067pt;}
.y6fb_c00001{bottom:263.947067pt;}
.yd5f_c00001{bottom:264.187067pt;}
.yb22_c00001{bottom:264.507067pt;}
.y1a3_c00001{bottom:264.747200pt;}
.ya71_c00001{bottom:264.827067pt;}
.y6e4_c00001{bottom:264.827200pt;}
.y3a3_c00001{bottom:264.987067pt;}
.yc67_c00001{bottom:265.067067pt;}
.y914_c00001{bottom:265.223731pt;}
.y2a0_c00001{bottom:265.387067pt;}
.yaf_c00001{bottom:265.627067pt;}
.y1de_c00001{bottom:265.787067pt;}
.y205_c00001{bottom:265.787200pt;}
.yded_c00001{bottom:265.947067pt;}
.yba6_c00001{bottom:266.107067pt;}
.y864_c00001{bottom:266.107731pt;}
.y76f_c00001{bottom:266.187067pt;}
.y793_c00001{bottom:266.187200pt;}
.yc43_c00001{bottom:266.267067pt;}
.ya2a_c00001{bottom:266.347067pt;}
.yd70_c00001{bottom:266.427067pt;}
.yb99_c00001{bottom:266.667067pt;}
.yc20_c00001{bottom:266.747067pt;}
.ydff_c00001{bottom:266.907067pt;}
.y677_c00001{bottom:267.067067pt;}
.y8e4_c00001{bottom:267.147067pt;}
.y150_c00001{bottom:267.467067pt;}
.y38c_c00001{bottom:267.547067pt;}
.y329_c00001{bottom:267.549416pt;}
.y25e_c00001{bottom:267.707067pt;}
.yae8_c00001{bottom:267.787067pt;}
.yd27_c00001{bottom:268.107067pt;}
.y80f_c00001{bottom:268.107200pt;}
.y95f_c00001{bottom:268.187067pt;}
.y3c7_c00001{bottom:268.187200pt;}
.y5ea_c00001{bottom:268.427067pt;}
.yb84_c00001{bottom:268.507067pt;}
.y55c_c00001{bottom:268.587067pt;}
.y9ba_c00001{bottom:268.747067pt;}
.y3c5_c00001{bottom:269.147067pt;}
.y407_c00001{bottom:269.227067pt;}
.y6a3_c00001{bottom:269.307067pt;}
.yac3_c00001{bottom:269.467067pt;}
.ya37_c00001{bottom:269.787067pt;}
.y3b5_c00001{bottom:270.107067pt;}
.y292_c00001{bottom:270.187067pt;}
.y75a_c00001{bottom:270.187200pt;}
.y21b_c00001{bottom:270.347067pt;}
.y518_c00001{bottom:270.507067pt;}
.y9db_c00001{bottom:270.587067pt;}
.ya09_c00001{bottom:270.747067pt;}
.yac2_c00001{bottom:270.827067pt;}
.ya4d_c00001{bottom:271.067067pt;}
.ycbf_c00001{bottom:271.387067pt;}
.y6b7_c00001{bottom:271.467200pt;}
.ybc7_c00001{bottom:271.627067pt;}
.ydda_c00001{bottom:271.867067pt;}
.y986_c00001{bottom:271.947067pt;}
.ya1f_c00001{bottom:272.347067pt;}
.y81d_c00001{bottom:272.507067pt;}
.y79_c00001{bottom:273.147067pt;}
.y99d_c00001{bottom:273.467067pt;}
.yaf7_c00001{bottom:273.707067pt;}
.yd0b_c00001{bottom:274.027067pt;}
.ye19_c00001{bottom:274.107067pt;}
.y18c_c00001{bottom:274.187067pt;}
.ya81_c00001{bottom:274.267067pt;}
.yc8a_c00001{bottom:274.507067pt;}
.y832_c00001{bottom:274.667731pt;}
.y7e7_c00001{bottom:274.822715pt;}
.yd40_c00001{bottom:274.827067pt;}
.yc15_c00001{bottom:274.907067pt;}
.y33e_c00001{bottom:274.987067pt;}
.y6cf_c00001{bottom:275.067067pt;}
.y92_c00001{bottom:275.227067pt;}
.y720_c00001{bottom:275.387067pt;}
.yb5f_c00001{bottom:275.467067pt;}
.y303_c00001{bottom:275.547067pt;}
.y93e_c00001{bottom:275.707067pt;}
.yab2_c00001{bottom:275.947067pt;}
.y43_c00001{bottom:276.107067pt;}
.y84b_c00001{bottom:276.267067pt;}
.y711_c00001{bottom:276.267200pt;}
.y35e_c00001{bottom:276.427067pt;}
.yd09_c00001{bottom:276.667067pt;}
.yd8a_c00001{bottom:276.747067pt;}
.y602_c00001{bottom:276.987067pt;}
.y630_c00001{bottom:277.067067pt;}
.y2c3_c00001{bottom:277.147067pt;}
.y1f3_c00001{bottom:277.307067pt;}
.y903_c00001{bottom:277.707067pt;}
.y68d_c00001{bottom:277.947067pt;}
.y7a4_c00001{bottom:278.267067pt;}
.y9af_c00001{bottom:278.347067pt;}
.yc53_c00001{bottom:278.507067pt;}
.yd1b_c00001{bottom:278.587067pt;}
.ybe9_c00001{bottom:278.827067pt;}
.ycae_c00001{bottom:279.227067pt;}
.yb45_c00001{bottom:279.467067pt;}
.y274_c00001{bottom:279.547067pt;}
.yb0a_c00001{bottom:279.787067pt;}
.ye3_c00001{bottom:279.947067pt;}
.ybd9_c00001{bottom:280.027067pt;}
.yc08_c00001{bottom:280.347067pt;}
.y5e_c00001{bottom:280.507067pt;}
.y9f5_c00001{bottom:280.587067pt;}
.y61a_c00001{bottom:280.827067pt;}
.y7fa_c00001{bottom:280.987067pt;}
.yb09_c00001{bottom:281.067067pt;}
.y9c9_c00001{bottom:281.307067pt;}
.ya5f_c00001{bottom:281.467067pt;}
.yce9_c00001{bottom:281.627067pt;}
.y28d_c00001{bottom:281.707067pt;}
.y131_c00001{bottom:281.787067pt;}
.y1c4_c00001{bottom:281.867067pt;}
.yccd_c00001{bottom:281.947067pt;}
.y280_c00001{bottom:282.027067pt;}
.yda0_c00001{bottom:282.267067pt;}
.y6fa_c00001{bottom:282.347067pt;}
.yd5e_c00001{bottom:282.587067pt;}
.y661_c00001{bottom:283.067067pt;}
.ycde_c00001{bottom:283.227067pt;}
.y6e3_c00001{bottom:283.227200pt;}
.y4a1_c00001{bottom:283.307067pt;}
.y23e_c00001{bottom:283.947067pt;}
.y8f2_c00001{bottom:284.023003pt;}
.y65f_c00001{bottom:284.107067pt;}
.y4e4_c00001{bottom:284.427067pt;}
.yad6_c00001{bottom:284.507067pt;}
.y471_c00001{bottom:284.667067pt;}
.yb24_c00001{bottom:284.827067pt;}
.y53f_c00001{bottom:284.907067pt;}
.ya8f_c00001{bottom:285.067067pt;}
.yc5c_c00001{bottom:285.307067pt;}
.ye0f_c00001{bottom:285.467067pt;}
.y3a2_c00001{bottom:286.267067pt;}
.yc7e_c00001{bottom:286.507067pt;}
.y80e_c00001{bottom:286.507200pt;}
.y95e_c00001{bottom:286.587067pt;}
.y318_c00001{bottom:286.667200pt;}
.y55b_c00001{bottom:286.907067pt;}
.ydeb_c00001{bottom:287.307067pt;}
.yc71_c00001{bottom:287.387067pt;}
.yba7_c00001{bottom:287.467067pt;}
.yc42_c00001{bottom:287.547067pt;}
.y863_c00001{bottom:287.547459pt;}
.yc66_c00001{bottom:287.787067pt;}
.yaa0_c00001{bottom:288.027067pt;}
.ya70_c00001{bottom:288.107067pt;}
.ydfe_c00001{bottom:288.267067pt;}
.yd88_c00001{bottom:288.347200pt;}
.y759_c00001{bottom:288.587200pt;}
.y38b_c00001{bottom:288.907067pt;}
.ya9f_c00001{bottom:289.067067pt;}
.yb52_c00001{bottom:289.307067pt;}
.y675_c00001{bottom:289.387067pt;}
.y1f_c00001{bottom:289.467067pt;}
.y33d_c00001{bottom:289.707067pt;}
.y8e3_c00001{bottom:289.867067pt;}
.y6b6_c00001{bottom:289.867200pt;}
.yb98_c00001{bottom:289.947067pt;}
.ydd9_c00001{bottom:290.267067pt;}
.y406_c00001{bottom:290.427067pt;}
.y16e_c00001{bottom:290.507067pt;}
.y2dc_c00001{bottom:290.587067pt;}
.yfe_c00001{bottom:290.667200pt;}
.y6a2_c00001{bottom:290.827067pt;}
.y84a_c00001{bottom:290.987067pt;}
.yb83_c00001{bottom:291.147067pt;}
.y3b2_c00001{bottom:291.387067pt;}
.yd89_c00001{bottom:291.467067pt;}
.y913_c00001{bottom:291.864019pt;}
.y517_c00001{bottom:291.867067pt;}
.y9d9_c00001{bottom:291.947067pt;}
.ya07_c00001{bottom:292.107067pt;}
.yac1_c00001{bottom:292.187200pt;}
.y1a2_c00001{bottom:292.347200pt;}
.ya35_c00001{bottom:292.427067pt;}
.yd58_c00001{bottom:292.907067pt;}
.y29f_c00001{bottom:292.987067pt;}
.y1dd_c00001{bottom:293.387067pt;}
.y204_c00001{bottom:293.387200pt;}
.y6ce_c00001{bottom:293.467067pt;}
.ya4c_c00001{bottom:293.787067pt;}
.yd7d_c00001{bottom:293.867067pt;}
.ycbc_c00001{bottom:294.027067pt;}
.ybc6_c00001{bottom:294.267067pt;}
.y985_c00001{bottom:294.587067pt;}
.y710_c00001{bottom:294.667200pt;}
.y99b_c00001{bottom:294.747067pt;}
.y14f_c00001{bottom:295.067067pt;}
.y25d_c00001{bottom:295.307067pt;}
.ya80_c00001{bottom:295.547067pt;}
.ybc4_c00001{bottom:295.627067pt;}
.y831_c00001{bottom:296.107459pt;}
.yaf6_c00001{bottom:296.347067pt;}
.y7a3_c00001{bottom:296.667067pt;}
.yd0a_c00001{bottom:296.667200pt;}
.y93d_c00001{bottom:296.827067pt;}
.yd9f_c00001{bottom:296.987067pt;}
.y291_c00001{bottom:297.787067pt;}
.y21a_c00001{bottom:297.947067pt;}
.yd08_c00001{bottom:298.027067pt;}
.y302_c00001{bottom:298.267067pt;}
.y62f_c00001{bottom:298.427067pt;}
.yc91_c00001{bottom:298.827067pt;}
.y35c_c00001{bottom:299.067067pt;}
.y68c_c00001{bottom:299.147067pt;}
.yab1_c00001{bottom:299.307067pt;}
.y7f9_c00001{bottom:299.387067pt;}
.yc14_c00001{bottom:299.547067pt;}
.yd6f_c00001{bottom:299.627067pt;}
.y601_c00001{bottom:299.707067pt;}
.y35a_c00001{bottom:300.027067pt;}
.ybea_c00001{bottom:300.187200pt;}
.yc8_c00001{bottom:300.427067pt;}
.ycad_c00001{bottom:300.507067pt;}
.y6f9_c00001{bottom:300.747067pt;}
.yb44_c00001{bottom:300.827067pt;}
.y78_c00001{bottom:300.987067pt;}
.yd1a_c00001{bottom:301.227067pt;}
.y95d_c00001{bottom:301.307067pt;}
.y7e6_c00001{bottom:301.463003pt;}
.y6e2_c00001{bottom:301.627200pt;}
.yc52_c00001{bottom:301.787067pt;}
.y18b_c00001{bottom:301.867067pt;}
.y9f4_c00001{bottom:302.027067pt;}
.yd26_c00001{bottom:302.107067pt;}
.yb08_c00001{bottom:302.427067pt;}
.y5ff_c00001{bottom:302.507067pt;}
.ybd8_c00001{bottom:302.667200pt;}
.y91_c00001{bottom:302.827067pt;}
.yc07_c00001{bottom:302.987067pt;}
.yb73_c00001{bottom:303.467067pt;}
.yc31_c00001{bottom:303.707067pt;}
.yae_c00001{bottom:303.867067pt;}
.y130_c00001{bottom:303.947067pt;}
.y9c8_c00001{bottom:304.027067pt;}
.yce8_c00001{bottom:304.267067pt;}
.y435_c00001{bottom:304.347067pt;}
.y662_c00001{bottom:304.427067pt;}
.y76e_c00001{bottom:304.507067pt;}
.yccc_c00001{bottom:304.587067pt;}
.y619_c00001{bottom:304.827067pt;}
.y1f2_c00001{bottom:304.907067pt;}
.y80d_c00001{bottom:304.907200pt;}
.y433_c00001{bottom:305.387067pt;}
.y4a0_c00001{bottom:305.947067pt;}
.y618_c00001{bottom:306.107067pt;}
.yb23_c00001{bottom:306.187200pt;}
.ya5e_c00001{bottom:306.267067pt;}
.y328_c00001{bottom:306.428728pt;}
.y4e3_c00001{bottom:306.747067pt;}
.yd87_c00001{bottom:306.747200pt;}
.y758_c00001{bottom:306.987200pt;}
.y273_c00001{bottom:307.147067pt;}
.ybb9_c00001{bottom:307.227067pt;}
.y470_c00001{bottom:307.307067pt;}
.y9e9_c00001{bottom:307.547067pt;}
.yad5_c00001{bottom:307.787067pt;}
.ye2_c00001{bottom:307.947067pt;}
.y6b5_c00001{bottom:308.267200pt;}
.ye22_c00001{bottom:308.347067pt;}
.y5d_c00001{bottom:308.427067pt;}
.y118_c00001{bottom:308.507067pt;}
.ydd8_c00001{bottom:308.667067pt;}
.yba8_c00001{bottom:308.747067pt;}
.y3a1_c00001{bottom:308.987067pt;}
.y862_c00001{bottom:309.067339pt;}
.y6a1_c00001{bottom:309.227067pt;}
.y28c_c00001{bottom:309.307067pt;}
.y317_c00001{bottom:309.387067pt;}
.y1c3_c00001{bottom:309.467067pt;}
.y27f_c00001{bottom:309.627067pt;}
.yc7d_c00001{bottom:309.867067pt;}
.y674_c00001{bottom:310.587067pt;}
.y8f1_c00001{bottom:310.663291pt;}
.yc1f_c00001{bottom:310.747067pt;}
.y3c6_c00001{bottom:310.827067pt;}
.ydfb_c00001{bottom:310.907067pt;}
.yc65_c00001{bottom:311.147200pt;}
.ya6f_c00001{bottom:311.307067pt;}
.y23d_c00001{bottom:311.547067pt;}
.y405_c00001{bottom:311.787067pt;}
.y6cd_c00001{bottom:311.867067pt;}
.ydf9_c00001{bottom:311.947067pt;}
.yc9b_c00001{bottom:312.027067pt;}
.yc70_c00001{bottom:312.107067pt;}
.yb51_c00001{bottom:312.347067pt;}
.y8e2_c00001{bottom:312.507067pt;}
.yb97_c00001{bottom:312.587067pt;}
.y70f_c00001{bottom:313.067200pt;}
.yae7_c00001{bottom:313.147200pt;}
.y5e9_c00001{bottom:313.467067pt;}
.y55a_c00001{bottom:313.627067pt;}
.ya36_c00001{bottom:313.787067pt;}
.y9b9_c00001{bottom:314.027067pt;}
.yae4_c00001{bottom:314.107067pt;}
.y9d7_c00001{bottom:314.187200pt;}
.ya06_c00001{bottom:314.347067pt;}
.yd25_c00001{bottom:314.747067pt;}
.yabf_c00001{bottom:314.827067pt;}
.y516_c00001{bottom:314.907067pt;}
.y7a2_c00001{bottom:315.067067pt;}
.ydb9_c00001{bottom:315.147067pt;}
.ycbd_c00001{bottom:315.387067pt;}
.yabe_c00001{bottom:315.787067pt;}
.yd57_c00001{bottom:315.947067pt;}
.yb16_c00001{bottom:316.107067pt;}
.y53e_c00001{bottom:316.267067pt;}
.ya4a_c00001{bottom:316.427067pt;}
.y42_c00001{bottom:316.987067pt;}
.y99a_c00001{bottom:317.067067pt;}
.y984_c00001{bottom:317.307067pt;}
.y1e_c00001{bottom:317.387067pt;}
.y830_c00001{bottom:317.547187pt;}
.ya1e_c00001{bottom:317.707067pt;}
.y7f8_c00001{bottom:317.787067pt;}
.y514_c00001{bottom:317.867067pt;}
.y16d_c00001{bottom:318.107067pt;}
.ya7f_c00001{bottom:318.267067pt;}
.y912_c00001{bottom:318.504307pt;}
.yaf5_c00001{bottom:318.987067pt;}
.y6f8_c00001{bottom:319.147067pt;}
.y7ca_c00001{bottom:319.147200pt;}
.ya7c_c00001{bottom:319.227067pt;}
.yd07_c00001{bottom:319.307067pt;}
.yd5d_c00001{bottom:319.387067pt;}
.ye18_c00001{bottom:319.467067pt;}
.y3b0_c00001{bottom:319.947067pt;}
.yaf4_c00001{bottom:320.027067pt;}
.y6e1_c00001{bottom:320.027200pt;}
.y35d_c00001{bottom:320.427067pt;}
.y29e_c00001{bottom:320.587067pt;}
.y68b_c00001{bottom:320.667067pt;}
.yc89_c00001{bottom:320.667200pt;}
.y62d_c00001{bottom:320.747067pt;}
.y301_c00001{bottom:320.907067pt;}
.y1dc_c00001{bottom:320.987067pt;}
.y203_c00001{bottom:320.987200pt;}
.y2db_c00001{bottom:321.067067pt;}
.ybeb_c00001{bottom:321.467067pt;}
.yc90_c00001{bottom:321.867067pt;}
.yab0_c00001{bottom:322.027067pt;}
.yb43_c00001{bottom:322.187200pt;}
.y600_c00001{bottom:322.427067pt;}
.y14e_c00001{bottom:322.667067pt;}
.y25c_c00001{bottom:322.907067pt;}
.ybfc_c00001{bottom:322.987067pt;}
.ycaa_c00001{bottom:323.227067pt;}
.y80c_c00001{bottom:323.307200pt;}
.yb33_c00001{bottom:323.467067pt;}
.y9ae_c00001{bottom:323.707067pt;}
.yb74_c00001{bottom:323.787067pt;}
.y5fe_c00001{bottom:323.867067pt;}
.yfd_c00001{bottom:323.947067pt;}
.yca8_c00001{bottom:324.187200pt;}
.yc06_c00001{bottom:324.347067pt;}
.yc51_c00001{bottom:324.427067pt;}
.y9ac_c00001{bottom:324.667200pt;}
.yb07_c00001{bottom:325.067067pt;}
.yd86_c00001{bottom:325.147200pt;}
.yc13_c00001{bottom:325.227067pt;}
.ybd6_c00001{bottom:325.307067pt;}
.y290_c00001{bottom:325.387067pt;}
.y757_c00001{bottom:325.387200pt;}
.y219_c00001{bottom:325.547067pt;}
.y1a1_c00001{bottom:325.547200pt;}
.y436_c00001{bottom:325.707067pt;}
.y660_c00001{bottom:325.787067pt;}
.yb04_c00001{bottom:326.107067pt;}
.ybd4_c00001{bottom:326.347067pt;}
.yc30_c00001{bottom:326.427067pt;}
.y6b4_c00001{bottom:326.667200pt;}
.yce7_c00001{bottom:326.907067pt;}
.ydd7_c00001{bottom:327.067067pt;}
.ycdd_c00001{bottom:327.227067pt;}
.y49f_c00001{bottom:327.307067pt;}
.y617_c00001{bottom:327.467067pt;}
.ya5d_c00001{bottom:327.547067pt;}
.y6a0_c00001{bottom:327.627067pt;}
.y4e2_c00001{bottom:327.867067pt;}
.y7e5_c00001{bottom:328.183443pt;}
.yc7_c00001{bottom:328.267067pt;}
.yb21_c00001{bottom:328.427067pt;}
.y46f_c00001{bottom:328.667200pt;}
.y77_c00001{bottom:328.907067pt;}
.y18a_c00001{bottom:329.467067pt;}
.yce6_c00001{bottom:329.627200pt;}
.yba5_c00001{bottom:330.107067pt;}
.y3a0_c00001{bottom:330.267067pt;}
.yad4_c00001{bottom:330.427067pt;}
.y861_c00001{bottom:330.507067pt;}
.yc5a_c00001{bottom:330.667200pt;}
.y90_c00001{bottom:330.747067pt;}
.y506_c00001{bottom:330.827067pt;}
.y902_c00001{bottom:331.067067pt;}
.y70e_c00001{bottom:331.467200pt;}
.yc59_c00001{bottom:331.627200pt;}
.yad_c00001{bottom:331.867067pt;}
.y673_c00001{bottom:331.947067pt;}
.ya8e_c00001{bottom:332.027067pt;}
.ydfc_c00001{bottom:332.267067pt;}
.y2bd_c00001{bottom:332.507067pt;}
.y1f1_c00001{bottom:332.507200pt;}
.y316_c00001{bottom:332.587067pt;}
.ybb8_c00001{bottom:332.667200pt;}
.ydb4_c00001{bottom:332.827067pt;}
.y38a_c00001{bottom:332.907067pt;}
.y3c4_c00001{bottom:333.147200pt;}
.yc9a_c00001{bottom:333.387067pt;}
.y7a1_c00001{bottom:333.467067pt;}
.ya6e_c00001{bottom:334.027067pt;}
.yc41_c00001{bottom:334.107067pt;}
.y792_c00001{bottom:334.187200pt;}
.yae6_c00001{bottom:334.427067pt;}
.y7d9_c00001{bottom:334.587067pt;}
.y272_c00001{bottom:334.747067pt;}
.yb50_c00001{bottom:334.987067pt;}
.ya34_c00001{bottom:335.067067pt;}
.y8e1_c00001{bottom:335.147200pt;}
.yb95_c00001{bottom:335.307067pt;}
.y9b8_c00001{bottom:335.387067pt;}
.yc40_c00001{bottom:335.467067pt;}
.ya05_c00001{bottom:335.547067pt;}
.ye1_c00001{bottom:335.867067pt;}
.yd24_c00001{bottom:336.107067pt;}
.y7f7_c00001{bottom:336.187067pt;}
.yac0_c00001{bottom:336.187200pt;}
.yb93_c00001{bottom:336.267067pt;}
.y5c_c00001{bottom:336.347067pt;}
.ydab_c00001{bottom:336.427200pt;}
.ycbe_c00001{bottom:336.747067pt;}
.y28b_c00001{bottom:336.907067pt;}
.y1c2_c00001{bottom:337.067067pt;}
.y27e_c00001{bottom:337.227067pt;}
.y8f0_c00001{bottom:337.303579pt;}
.y6f7_c00001{bottom:337.547067pt;}
.ya4b_c00001{bottom:337.787067pt;}
.y515_c00001{bottom:337.867067pt;}
.y999_c00001{bottom:338.267067pt;}
.ya29_c00001{bottom:338.347067pt;}
.y6e0_c00001{bottom:338.427200pt;}
.ye21_c00001{bottom:338.907067pt;}
.y68a_c00001{bottom:339.067067pt;}
.y23c_c00001{bottom:339.147067pt;}
.y513_c00001{bottom:339.227067pt;}
.yb15_c00001{bottom:339.387067pt;}
.ya7e_c00001{bottom:339.547067pt;}
.ybc2_c00001{bottom:339.627200pt;}
.y983_c00001{bottom:339.947067pt;}
.y756_c00001{bottom:340.187200pt;}
.ya1d_c00001{bottom:340.347067pt;}
.ybc0_c00001{bottom:340.587067pt;}
.y64f_c00001{bottom:341.067067pt;}
.ya1a_c00001{bottom:341.387067pt;}
.y35b_c00001{bottom:341.707067pt;}
.y80b_c00001{bottom:341.707200pt;}
.y117_c00001{bottom:341.787200pt;}
.yb5d_c00001{bottom:341.867067pt;}
.yc88_c00001{bottom:341.947067pt;}
.yd04_c00001{bottom:342.027067pt;}
.y62c_c00001{bottom:342.107067pt;}
.y3de_c00001{bottom:342.507067pt;}
.y76d_c00001{bottom:342.747067pt;}
.ybe8_c00001{bottom:342.827200pt;}
.yd02_c00001{bottom:342.987200pt;}
.y300_c00001{bottom:343.547067pt;}
.yd85_c00001{bottom:343.547200pt;}
.y8d3_c00001{bottom:343.707067pt;}
.yb42_c00001{bottom:344.427067pt;}
.ycab_c00001{bottom:344.507067pt;}
.yaae_c00001{bottom:344.667200pt;}
.y41_c00001{bottom:344.827200pt;}
.yc8f_c00001{bottom:344.907200pt;}
.y9ad_c00001{bottom:344.987200pt;}
.y6b3_c00001{bottom:345.067200pt;}
.y5fd_c00001{bottom:345.147200pt;}
.y911_c00001{bottom:345.224747pt;}
.y327_c00001{bottom:345.308040pt;}
.y1d_c00001{bottom:345.387067pt;}
.ydd6_c00001{bottom:345.467067pt;}
.yaac_c00001{bottom:345.627067pt;}
.y16c_c00001{bottom:345.707067pt;}
.y69f_c00001{bottom:346.027067pt;}
.y53d_c00001{bottom:346.267067pt;}
.yb06_c00001{bottom:346.427067pt;}
.yd19_c00001{bottom:346.587067pt;}
.ybd7_c00001{bottom:346.667200pt;}
.yb32_c00001{bottom:346.907200pt;}
.y434_c00001{bottom:347.067200pt;}
.yc2f_c00001{bottom:347.707067pt;}
.y860_c00001{bottom:347.947067pt;}
.y65e_c00001{bottom:348.027067pt;}
.yc4e_c00001{bottom:348.107200pt;}
.y29d_c00001{bottom:348.187067pt;}
.y1db_c00001{bottom:348.587067pt;}
.y202_c00001{bottom:348.587200pt;}
.y6cc_c00001{bottom:348.667067pt;}
.y3af_c00001{bottom:348.667200pt;}
.ycfb_c00001{bottom:349.067200pt;}
.y9f3_c00001{bottom:349.150635pt;}
.y9c7_c00001{bottom:349.307067pt;}
.y4e1_c00001{bottom:349.387200pt;}
.yb20_c00001{bottom:349.627067pt;}
.yc12_c00001{bottom:349.787067pt;}
.y70d_c00001{bottom:349.867200pt;}
.y615_c00001{bottom:350.107200pt;}
.y14d_c00001{bottom:350.267067pt;}
.ycfa_c00001{bottom:350.347067pt;}
.y25b_c00001{bottom:350.507067pt;}
.y49e_c00001{bottom:350.587067pt;}
.yce5_c00001{bottom:350.907200pt;}
.y613_c00001{bottom:351.147200pt;}
.ya5a_c00001{bottom:351.227067pt;}
.y2da_c00001{bottom:351.627067pt;}
.y46e_c00001{bottom:351.707067pt;}
.y71f_c00001{bottom:351.867067pt;}
.yc5b_c00001{bottom:351.947067pt;}
.ye0e_c00001{bottom:352.107200pt;}
.yba4_c00001{bottom:352.427067pt;}
.y28f_c00001{bottom:352.987067pt;}
.y39f_c00001{bottom:352.987200pt;}
.yad2_c00001{bottom:353.067200pt;}
.y218_c00001{bottom:353.147067pt;}
.y1a0_c00001{bottom:353.147200pt;}
.y672_c00001{bottom:353.467067pt;}
.ydfd_c00001{bottom:353.627067pt;}
.yad0_c00001{bottom:354.107200pt;}
.y3c3_c00001{bottom:354.267067pt;}
.y7f6_c00001{bottom:354.587067pt;}
.ya8d_c00001{bottom:354.667200pt;}
.ye0c_c00001{bottom:354.747200pt;}
.y7e4_c00001{bottom:354.823731pt;}
.y12f_c00001{bottom:355.227067pt;}
.y389_c00001{bottom:355.547067pt;}
.y315_c00001{bottom:355.787067pt;}
.y6f6_c00001{bottom:355.947067pt;}
.yc1e_c00001{bottom:356.107200pt;}
.yc6_c00001{bottom:356.187200pt;}
.yae5_c00001{bottom:356.347067pt;}
.y82f_c00001{bottom:356.507067pt;}
.yb96_c00001{bottom:356.587067pt;}
.ya6d_c00001{bottom:356.667200pt;}
.yc3f_c00001{bottom:356.747200pt;}
.y76_c00001{bottom:356.827200pt;}
.y791_c00001{bottom:356.907200pt;}
.ya04_c00001{bottom:356.987067pt;}
.y189_c00001{bottom:357.067067pt;}
.ybb7_c00001{bottom:357.067200pt;}
.y9d6_c00001{bottom:357.226627pt;}
.yfc_c00001{bottom:357.227067pt;}
.y7d8_c00001{bottom:357.307067pt;}
.ya33_c00001{bottom:357.387067pt;}
.y689_c00001{bottom:357.467067pt;}
.y76c_c00001{bottom:357.547067pt;}
.ya6b_c00001{bottom:357.627067pt;}
.y901_c00001{bottom:357.707067pt;}
.y8e0_c00001{bottom:357.867067pt;}
.y9b6_c00001{bottom:358.027067pt;}
.y386_c00001{bottom:358.187200pt;}
.y8f_c00001{bottom:358.667200pt;}
.yd21_c00001{bottom:358.747200pt;}
.y8de_c00001{bottom:358.827200pt;}
.y9b5_c00001{bottom:359.067200pt;}
.y998_c00001{bottom:359.547067pt;}
.yd20_c00001{bottom:359.707067pt;}
.yac_c00001{bottom:359.787067pt;}
.y5e8_c00001{bottom:359.867067pt;}
.y2bc_c00001{bottom:360.107067pt;}
.y1f0_c00001{bottom:360.107200pt;}
.y512_c00001{bottom:360.507067pt;}
.ya7d_c00001{bottom:360.907200pt;}
.ybc3_c00001{bottom:360.987200pt;}
.ya1c_c00001{bottom:361.707067pt;}
.yd84_c00001{bottom:361.947200pt;}
.y271_c00001{bottom:362.267067pt;}
.y982_c00001{bottom:362.587067pt;}
.ya28_c00001{bottom:362.667200pt;}
.ydaa_c00001{bottom:363.067200pt;}
.yd05_c00001{bottom:363.307067pt;}
.y6b2_c00001{bottom:363.467200pt;}
.ye0_c00001{bottom:363.787067pt;}
.ydd5_c00001{bottom:363.867067pt;}
.y8ef_c00001{bottom:364.024019pt;}
.y359_c00001{bottom:364.027067pt;}
.y4e0_c00001{bottom:364.107200pt;}
.y64e_c00001{bottom:364.427067pt;}
.y28a_c00001{bottom:364.507067pt;}
.y1c1_c00001{bottom:364.667067pt;}
.yc86_c00001{bottom:364.667200pt;}
.y27d_c00001{bottom:364.827067pt;}
.ye17_c00001{bottom:364.827200pt;}
.ybe7_c00001{bottom:365.147200pt;}
.yb41_c00001{bottom:365.627067pt;}
.ycac_c00001{bottom:365.867067pt;}
.ydb3_c00001{bottom:365.947067pt;}
.yaaf_c00001{bottom:366.027067pt;}
.y5b_c00001{bottom:366.107200pt;}
.y2ff_c00001{bottom:366.267067pt;}
.y8d2_c00001{bottom:366.347067pt;}
.y23b_c00001{bottom:366.747067pt;}
.yc05_c00001{bottom:366.987200pt;}
.y6cb_c00001{bottom:367.067067pt;}
.y9ab_c00001{bottom:367.307067pt;}
.yb72_c00001{bottom:367.467067pt;}
.yb05_c00001{bottom:367.787067pt;}
.y5fa_c00001{bottom:367.867067pt;}
.ybd5_c00001{bottom:368.027067pt;}
.yb5c_c00001{bottom:368.107067pt;}
.y70c_c00001{bottom:368.267200pt;}
.ybfb_c00001{bottom:368.347067pt;}
.yc50_c00001{bottom:368.427067pt;}
.y5f9_c00001{bottom:368.827200pt;}
.y65d_c00001{bottom:369.227067pt;}
.y432_c00001{bottom:369.307067pt;}
.yb31_c00001{bottom:369.627067pt;}
.yccb_c00001{bottom:369.947067pt;}
.y3ae_c00001{bottom:370.027067pt;}
.yd16_c00001{bottom:370.187200pt;}
.y7a0_c00001{bottom:370.267067pt;}
.yc2e_c00001{bottom:370.747200pt;}
.y377_c00001{bottom:371.067200pt;}
.y616_c00001{bottom:371.467067pt;}
.ya5c_c00001{bottom:371.547067pt;}
.ycf9_c00001{bottom:371.707067pt;}
.y910_c00001{bottom:371.865035pt;}
.y671_c00001{bottom:371.867067pt;}
.y9c6_c00001{bottom:372.027067pt;}
.yce4_c00001{bottom:372.267067pt;}
.y9e8_c00001{bottom:372.347067pt;}
.yc11_c00001{bottom:372.507067pt;}
.y40_c00001{bottom:372.747200pt;}
.y7f5_c00001{bottom:372.987067pt;}
.y9c4_c00001{bottom:372.987200pt;}
.y49d_c00001{bottom:373.227067pt;}
.y1c_c00001{bottom:373.307067pt;}
.yc0f_c00001{bottom:373.467067pt;}
.yba3_c00001{bottom:373.547067pt;}
.ya9e_c00001{bottom:374.187200pt;}
.y39e_c00001{bottom:374.267067pt;}
.y46d_c00001{bottom:374.347067pt;}
.yad3_c00001{bottom:374.427067pt;}
.yc99_c00001{bottom:374.667067pt;}
.ye0d_c00001{bottom:374.747200pt;}
.ydfa_c00001{bottom:374.907200pt;}
.y116_c00001{bottom:375.067200pt;}
.y3c2_c00001{bottom:375.627067pt;}
.y29c_c00001{bottom:375.787067pt;}
.y688_c00001{bottom:375.867067pt;}
.ye0b_c00001{bottom:376.107200pt;}
.y1da_c00001{bottom:376.187067pt;}
.y201_c00001{bottom:376.187200pt;}
.yd83_c00001{bottom:376.667200pt;}
.y388_c00001{bottom:376.907200pt;}
.y39c_c00001{bottom:376.987200pt;}
.ye20_c00001{bottom:377.147067pt;}
.ya8b_c00001{bottom:377.307067pt;}
.yc6f_c00001{bottom:377.467067pt;}
.y53c_c00001{bottom:377.547067pt;}
.y14c_c00001{bottom:377.867067pt;}
.yb94_c00001{bottom:377.947067pt;}
.y25a_c00001{bottom:378.027067pt;}
.y259_c00001{bottom:378.027680pt;}
.yde9_c00001{bottom:378.107200pt;}
.ya89_c00001{bottom:378.347067pt;}
.y314_c00001{bottom:378.427067pt;}
.y80a_c00001{bottom:378.507200pt;}
.ya32_c00001{bottom:378.587200pt;}
.yae3_c00001{bottom:378.667200pt;}
.yc1d_c00001{bottom:378.747200pt;}
.yb4f_c00001{bottom:378.987200pt;}
.y8df_c00001{bottom:379.147200pt;}
.yc7c_c00001{bottom:379.307067pt;}
.y9b7_c00001{bottom:379.387067pt;}
.y62b_c00001{bottom:379.387200pt;}
.yc3e_c00001{bottom:379.467067pt;}
.y385_c00001{bottom:379.547067pt;}
.yabd_c00001{bottom:379.787067pt;}
.yc64_c00001{bottom:379.867067pt;}
.y7d7_c00001{bottom:379.947067pt;}
.yd22_c00001{bottom:380.107200pt;}
.ycbb_c00001{bottom:380.187200pt;}
.y790_c00001{bottom:380.427067pt;}
.y223_c00001{bottom:380.587067pt;}
.yc7b_c00001{bottom:380.667200pt;}
.y217_c00001{bottom:380.747067pt;}
.y19f_c00001{bottom:380.747200pt;}
.yc63_c00001{bottom:380.827200pt;}
.y3f6_c00001{bottom:380.907200pt;}
.y5e7_c00001{bottom:381.227067pt;}
.ya49_c00001{bottom:381.387067pt;}
.y7e3_c00001{bottom:381.464019pt;}
.y997_c00001{bottom:381.466912pt;}
.y6b1_c00001{bottom:381.867200pt;}
.y2d9_c00001{bottom:382.107067pt;}
.ybc1_c00001{bottom:382.267067pt;}
.ybb6_c00001{bottom:382.507067pt;}
.y69e_c00001{bottom:382.827067pt;}
.y70b_c00001{bottom:382.987200pt;}
.ya1b_c00001{bottom:383.067200pt;}
.y50f_c00001{bottom:383.227067pt;}
.ya03_c00001{bottom:383.707067pt;}
.y9d5_c00001{bottom:383.947067pt;}
.yc5_c00001{bottom:384.107200pt;}
.y50d_c00001{bottom:384.187200pt;}
.y900_c00001{bottom:384.347067pt;}
.yd06_c00001{bottom:384.667200pt;}
.y75_c00001{bottom:384.747200pt;}
.y358_c00001{bottom:385.227067pt;}
.y981_c00001{bottom:385.307067pt;}
.y6ca_c00001{bottom:385.467067pt;}
.y520_c00001{bottom:385.867067pt;}
.yc87_c00001{bottom:385.947067pt;}
.y97f_c00001{bottom:386.267067pt;}
.y8e_c00001{bottom:386.587200pt;}
.y64d_c00001{bottom:387.147200pt;}
.yca9_c00001{bottom:387.227067pt;}
.yaad_c00001{bottom:387.307067pt;}
.yab_c00001{bottom:387.387067pt;}
.yb40_c00001{bottom:387.464019pt;}
.ye16_c00001{bottom:387.467067pt;}
.y1ef_c00001{bottom:387.707067pt;}
.y7f4_c00001{bottom:387.787067pt;}
.y9aa_c00001{bottom:388.507067pt;}
.yb71_c00001{bottom:388.587200pt;}
.y79f_c00001{bottom:388.667067pt;}
.y12e_c00001{bottom:388.667200pt;}
.y3dd_c00001{bottom:388.747200pt;}
.y2fe_c00001{bottom:388.907200pt;}
.y5fb_c00001{bottom:389.147200pt;}
.yc04_c00001{bottom:389.307067pt;}
.yc4f_c00001{bottom:389.787067pt;}
.yda9_c00001{bottom:389.787200pt;}
.yb03_c00001{bottom:390.027067pt;}
.y71e_c00001{bottom:390.107067pt;}
.y670_c00001{bottom:390.267067pt;}
.y431_c00001{bottom:390.507067pt;}
.yd17_c00001{bottom:390.587200pt;}
.y8ee_c00001{bottom:390.664307pt;}
.yfb_c00001{bottom:390.667200pt;}
.y65c_c00001{bottom:390.747067pt;}
.ybfa_c00001{bottom:390.987200pt;}
.y9f2_c00001{bottom:391.949939pt;}
.ycdc_c00001{bottom:392.187200pt;}
.y1c0_c00001{bottom:392.267067pt;}
.y270_c00001{bottom:392.427067pt;}
.y6f5_c00001{bottom:392.747067pt;}
.y614_c00001{bottom:392.827200pt;}
.ya5b_c00001{bottom:392.907200pt;}
.yb2e_c00001{bottom:393.227067pt;}
.y9c5_c00001{bottom:393.307067pt;}
.ydf_c00001{bottom:393.547067pt;}
.y977_c00001{bottom:393.627067pt;}
.y9e7_c00001{bottom:393.787067pt;}
.y687_c00001{bottom:394.267067pt;}
.y23a_c00001{bottom:394.347067pt;}
.yc10_c00001{bottom:394.667067pt;}
.yb5b_c00001{bottom:394.747067pt;}
.yba2_c00001{bottom:394.907200pt;}
.y188_c00001{bottom:395.227067pt;}
.y376_c00001{bottom:395.387067pt;}
.yc58_c00001{bottom:395.627067pt;}
.yad1_c00001{bottom:395.787067pt;}
.y530_c00001{bottom:395.867067pt;}
.yce2_c00001{bottom:395.947200pt;}
.ya9d_c00001{bottom:396.029331pt;}
.y49c_c00001{bottom:396.507067pt;}
.y809_c00001{bottom:396.907200pt;}
.y39d_c00001{bottom:396.987200pt;}
.y3c1_c00001{bottom:397.067067pt;}
.ydf8_c00001{bottom:397.227067pt;}
.y46c_c00001{bottom:397.307067pt;}
.ye0a_c00001{bottom:397.467067pt;}
.y404_c00001{bottom:397.627067pt;}
.yb1f_c00001{bottom:398.184459pt;}
.y39b_c00001{bottom:398.267067pt;}
.y90f_c00001{bottom:398.505323pt;}
.ya8c_c00001{bottom:398.667067pt;}
.yc6e_c00001{bottom:398.747200pt;}
.ya6c_c00001{bottom:399.307067pt;}
.y387_c00001{bottom:399.547067pt;}
.y4f9_c00001{bottom:399.947200pt;}
.yb92_c00001{bottom:400.267067pt;}
.y6b0_c00001{bottom:400.267200pt;}
.yb4e_c00001{bottom:400.347067pt;}
.ya31_c00001{bottom:400.426912pt;}
.yae2_c00001{bottom:400.667067pt;}
.y3f_c00001{bottom:400.747200pt;}
.y16b_c00001{bottom:400.907067pt;}
.y384_c00001{bottom:400.907200pt;}
.yabc_c00001{bottom:400.987200pt;}
.y1b_c00001{bottom:401.227067pt;}
.yd23_c00001{bottom:401.387067pt;}
.y8dd_c00001{bottom:401.467067pt;}
.ycba_c00001{bottom:401.547067pt;}
.y313_c00001{bottom:401.627067pt;}
.yb82_c00001{bottom:401.866779pt;}
.yc7a_c00001{bottom:402.027200pt;}
.yc1a_c00001{bottom:402.427067pt;}
.y7d6_c00001{bottom:402.587067pt;}
.y29b_c00001{bottom:403.387067pt;}
.y3f5_c00001{bottom:403.627067pt;}
.y1d9_c00001{bottom:403.787067pt;}
.y200_c00001{bottom:403.787200pt;}
.y6c9_c00001{bottom:403.867067pt;}
.y78f_c00001{bottom:403.947200pt;}
.y5a_c00001{bottom:404.267067pt;}
.ya7b_c00001{bottom:404.347067pt;}
.y510_c00001{bottom:404.507067pt;}
.ybbf_c00001{bottom:404.587067pt;}
.y5e6_c00001{bottom:404.907200pt;}
.yaf3_c00001{bottom:405.147200pt;}
.ya19_c00001{bottom:405.307067pt;}
.y14b_c00001{bottom:405.467067pt;}
.yde8_c00001{bottom:405.787200pt;}
.yd03_c00001{bottom:406.027200pt;}
.y311_c00001{bottom:406.187200pt;}
.y980_c00001{bottom:406.587067pt;}
.y357_c00001{bottom:406.747200pt;}
.ybb5_c00001{bottom:406.907200pt;}
.y79e_c00001{bottom:407.067067pt;}
.y62a_c00001{bottom:407.067200pt;}
.y7c9_c00001{bottom:407.227067pt;}
.y3ad_c00001{bottom:407.307067pt;}
.ybe6_c00001{bottom:407.627067pt;}
.ya26_c00001{bottom:408.027200pt;}
.y996_c00001{bottom:408.107200pt;}
.y7e2_c00001{bottom:408.184459pt;}
.y258_c00001{bottom:408.187067pt;}
.y216_c00001{bottom:408.347067pt;}
.y64c_c00001{bottom:408.427067pt;}
.y115_c00001{bottom:408.507067pt;}
.y51f_c00001{bottom:408.587067pt;}
.y5e5_c00001{bottom:408.667067pt;}
.y53b_c00001{bottom:408.907200pt;}
.ya24_c00001{bottom:408.987200pt;}
.y65b_c00001{bottom:409.147067pt;}
.y3e8_c00001{bottom:409.467067pt;}
.yaab_c00001{bottom:409.627067pt;}
.y9a9_c00001{bottom:409.947067pt;}
.yb70_c00001{bottom:410.107067pt;}
.y3dc_c00001{bottom:410.107200pt;}
.y2fd_c00001{bottom:410.267067pt;}
.ya02_c00001{bottom:410.347067pt;}
.yc03_c00001{bottom:410.427067pt;}
.y5fc_c00001{bottom:410.507067pt;}
.y8d1_c00001{bottom:410.667067pt;}
.y8ff_c00001{bottom:411.067067pt;}
.y6f4_c00001{bottom:411.147067pt;}
.ye13_c00001{bottom:411.147200pt;}
.yb02_c00001{bottom:411.227067pt;}
.y3db_c00001{bottom:411.387067pt;}
.ybd3_c00001{bottom:411.467067pt;}
.yd18_c00001{bottom:411.867067pt;}
.y430_c00001{bottom:412.027067pt;}
.y8d0_c00001{bottom:412.027200pt;}
.yc4_c00001{bottom:412.107200pt;}
.y2d8_c00001{bottom:412.667067pt;}
.y74_c00001{bottom:412.747200pt;}
.yda8_c00001{bottom:412.827200pt;}
.yc98_c00001{bottom:412.907067pt;}
.ycca_c00001{bottom:413.387067pt;}
.yb30_c00001{bottom:413.627067pt;}
.ybf9_c00001{bottom:413.707067pt;}
.yb3f_c00001{bottom:414.184459pt;}
.y8d_c00001{bottom:414.587067pt;}
.ybf7_c00001{bottom:414.667200pt;}
.y6af_c00001{bottom:414.987200pt;}
.y612_c00001{bottom:415.067200pt;}
.ya59_c00001{bottom:415.227067pt;}
.yaa_c00001{bottom:415.307067pt;}
.y808_c00001{bottom:415.307200pt;}
.ye1f_c00001{bottom:415.387067pt;}
.y9c3_c00001{bottom:415.627067pt;}
.ycf8_c00001{bottom:415.707067pt;}
.yce3_c00001{bottom:416.267067pt;}
.y976_c00001{bottom:416.347067pt;}
.yc57_c00001{bottom:416.747200pt;}
.yba1_c00001{bottom:416.747611pt;}
.y52f_c00001{bottom:417.227067pt;}
.y8ed_c00001{bottom:417.304595pt;}
.yca7_c00001{bottom:417.307067pt;}
.ya9c_c00001{bottom:417.549211pt;}
.yc0e_c00001{bottom:417.867067pt;}
.y375_c00001{bottom:418.027200pt;}
.ydf7_c00001{bottom:418.427067pt;}
.yc2d_c00001{bottom:418.587067pt;}
.y39a_c00001{bottom:419.627067pt;}
.y49b_c00001{bottom:419.787067pt;}
.y1bf_c00001{bottom:419.867067pt;}
.yc2c_c00001{bottom:419.947200pt;}
.y26f_c00001{bottom:420.027067pt;}
.ya8a_c00001{bottom:420.027200pt;}
.ye09_c00001{bottom:420.107200pt;}
.y403_c00001{bottom:420.267067pt;}
.y46b_c00001{bottom:420.347067pt;}
.y9e6_c00001{bottom:420.507067pt;}
.y19e_c00001{bottom:420.907200pt;}
.y326_c00001{bottom:421.067067pt;}
.y49a_c00001{bottom:421.067200pt;}
.yb91_c00001{bottom:421.387067pt;}
.yb5a_c00001{bottom:421.467067pt;}
.y505_c00001{bottom:421.627067pt;}
.y46a_c00001{bottom:421.707067pt;}
.y239_c00001{bottom:421.947067pt;}
.y27c_c00001{bottom:421.947200pt;}
.yc3d_c00001{bottom:422.107200pt;}
.y383_c00001{bottom:422.187200pt;}
.y12d_c00001{bottom:422.267067pt;}
.yae1_c00001{bottom:422.509059pt;}
.y4f8_c00001{bottom:422.587067pt;}
.y8dc_c00001{bottom:422.667200pt;}
.yc1b_c00001{bottom:422.747200pt;}
.yabb_c00001{bottom:422.826779pt;}
.y187_c00001{bottom:422.907067pt;}
.y9b4_c00001{bottom:422.987200pt;}
.ycb9_c00001{bottom:423.067067pt;}
.y3c0_c00001{bottom:423.787067pt;}
.ya48_c00001{bottom:424.027067pt;}
.yfa_c00001{bottom:424.267067pt;}
.yc78_c00001{bottom:424.667200pt;}
.yb1e_c00001{bottom:424.824747pt;}
.y312_c00001{bottom:424.827200pt;}
.y90e_c00001{bottom:425.225763pt;}
.y7d5_c00001{bottom:425.307067pt;}
.y356_c00001{bottom:425.467067pt;}
.yc76_c00001{bottom:425.627067pt;}
.ybbe_c00001{bottom:425.787067pt;}
.y511_c00001{bottom:425.867067pt;}
.y3f4_c00001{bottom:426.267067pt;}
.ya18_c00001{bottom:426.507067pt;}
.y78e_c00001{bottom:426.587067pt;}
.yde_c00001{bottom:426.827200pt;}
.y66f_c00001{bottom:427.067067pt;}
.ya30_c00001{bottom:427.067200pt;}
.y310_c00001{bottom:427.467067pt;}
.y65a_c00001{bottom:427.547067pt;}
.yd01_c00001{bottom:428.267067pt;}
.y71d_c00001{bottom:428.427067pt;}
.y16a_c00001{bottom:428.507067pt;}
.y9d4_c00001{bottom:428.667067pt;}
.y3e_c00001{bottom:428.667200pt;}
.y97e_c00001{bottom:428.907200pt;}
.ybe5_c00001{bottom:428.987200pt;}
.y1a_c00001{bottom:429.147200pt;}
.ya27_c00001{bottom:429.307067pt;}
.y6f3_c00001{bottom:429.547067pt;}
.ybb4_c00001{bottom:429.627067pt;}
.y5e4_c00001{bottom:430.027200pt;}
.y42f_c00001{bottom:430.427067pt;}
.ybb2_c00001{bottom:430.587067pt;}
.yaaa_c00001{bottom:430.827200pt;}
.y686_c00001{bottom:431.067067pt;}
.y1d8_c00001{bottom:431.227067pt;}
.y2c9_c00001{bottom:431.387067pt;}
.y1ff_c00001{bottom:431.387200pt;}
.ye15_c00001{bottom:431.467067pt;}
.yc02_c00001{bottom:431.787067pt;}
.y51e_c00001{bottom:431.867067pt;}
.y59_c00001{bottom:432.187200pt;}
.y3e7_c00001{bottom:432.427067pt;}
.y3da_c00001{bottom:432.747200pt;}
.ybd2_c00001{bottom:432.827200pt;}
.y2fc_c00001{bottom:432.907200pt;}
.yb01_c00001{bottom:433.065035pt;}
.y14a_c00001{bottom:433.067067pt;}
.yc4d_c00001{bottom:433.227067pt;}
.y8cf_c00001{bottom:433.307067pt;}
.y54f_c00001{bottom:433.387067pt;}
.yde7_c00001{bottom:433.387200pt;}
.y807_c00001{bottom:433.707200pt;}
.y995_c00001{bottom:434.427067pt;}
.y629_c00001{bottom:434.667200pt;}
.ycc9_c00001{bottom:434.747200pt;}
.y7e1_c00001{bottom:434.824747pt;}
.y9f1_c00001{bottom:434.829395pt;}
.y7c8_c00001{bottom:434.907067pt;}
.yb2f_c00001{bottom:434.907200pt;}
.ybf8_c00001{bottom:434.987200pt;}
.yc8e_c00001{bottom:435.627067pt;}
.ya7a_c00001{bottom:435.707067pt;}
.y257_c00001{bottom:435.787067pt;}
.y215_c00001{bottom:435.947067pt;}
.ya58_c00001{bottom:436.347067pt;}
.y611_c00001{bottom:436.587067pt;}
.y29a_c00001{bottom:436.827067pt;}
.y9c2_c00001{bottom:436.827200pt;}
.ya01_c00001{bottom:436.987067pt;}
.y53a_c00001{bottom:437.547067pt;}
.y975_c00001{bottom:437.627067pt;}
.y8fe_c00001{bottom:437.707067pt;}
.y69d_c00001{bottom:438.027067pt;}
.ycf7_c00001{bottom:438.027200pt;}
.yc56_c00001{bottom:438.107200pt;}
.ya9b_c00001{bottom:438.988939pt;}
.yacf_c00001{bottom:439.227067pt;}
.y374_c00001{bottom:439.387067pt;}
.y52e_c00001{bottom:439.867067pt;}
.ydf6_c00001{bottom:439.947067pt;}
.yc3_c00001{bottom:440.027200pt;}
.y6c8_c00001{bottom:440.667067pt;}
.y73_c00001{bottom:440.667200pt;}
.yb3e_c00001{bottom:440.824747pt;}
.y399_c00001{bottom:440.987200pt;}
.yc2b_c00001{bottom:441.307067pt;}
.yc0d_c00001{bottom:441.387067pt;}
.ycb8_c00001{bottom:441.467067pt;}
.y3ac_c00001{bottom:441.627067pt;}
.y114_c00001{bottom:442.107200pt;}
.y54d_c00001{bottom:442.187200pt;}
.ya88_c00001{bottom:442.267067pt;}
.y499_c00001{bottom:442.427067pt;}
.y8c_c00001{bottom:442.507067pt;}
.y1ee_c00001{bottom:442.827067pt;}
.ya6a_c00001{bottom:442.827200pt;}
.yb90_c00001{bottom:442.907067pt;}
.y469_c00001{bottom:442.987200pt;}
.y2d7_c00001{bottom:443.147067pt;}
.ya9_c00001{bottom:443.227067pt;}
.y382_c00001{bottom:443.547067pt;}
.y425_c00001{bottom:443.787067pt;}
.y79d_c00001{bottom:443.867067pt;}
.y4f7_c00001{bottom:443.947200pt;}
.yae0_c00001{bottom:443.948787pt;}
.y8ec_c00001{bottom:444.025035pt;}
.y8db_c00001{bottom:444.107067pt;}
.yc1c_c00001{bottom:444.107200pt;}
.y9b3_c00001{bottom:444.187200pt;}
.yc3c_c00001{bottom:444.427067pt;}
.yc62_c00001{bottom:444.827200pt;}
.y504_c00001{bottom:445.067200pt;}
.y66e_c00001{bottom:445.467067pt;}
.y659_c00001{bottom:445.947067pt;}
.yc79_c00001{bottom:446.027200pt;}
.yb6f_c00001{bottom:446.907067pt;}
.y9d3_c00001{bottom:447.067067pt;}
.ybbd_c00001{bottom:447.067200pt;}
.y9e5_c00001{bottom:447.147067pt;}
.y50e_c00001{bottom:447.227067pt;}
.y289_c00001{bottom:447.307067pt;}
.y1be_c00001{bottom:447.467067pt;}
.yca6_c00001{bottom:447.547067pt;}
.y26e_c00001{bottom:447.627067pt;}
.y6f2_c00001{bottom:447.947067pt;}
.y78d_c00001{bottom:447.947200pt;}
.yb59_c00001{bottom:448.107067pt;}
.yde6_c00001{bottom:448.107200pt;}
.ya17_c00001{bottom:448.348787pt;}
.y42e_c00001{bottom:448.827067pt;}
.y30f_c00001{bottom:448.827200pt;}
.y7d3_c00001{bottom:448.907200pt;}
.y685_c00001{bottom:449.467067pt;}
.y238_c00001{bottom:449.547067pt;}
.y97d_c00001{bottom:450.107200pt;}
.ybe4_c00001{bottom:450.267067pt;}
.y3bf_c00001{bottom:450.427067pt;}
.y186_c00001{bottom:450.507067pt;}
.yb14_c00001{bottom:450.667200pt;}
.ya47_c00001{bottom:450.747067pt;}
.yc85_c00001{bottom:450.747200pt;}
.ya25_c00001{bottom:450.987200pt;}
.y5e3_c00001{bottom:451.307067pt;}
.yb1d_c00001{bottom:451.465035pt;}
.ybb3_c00001{bottom:451.627067pt;}
.y355_c00001{bottom:451.787067pt;}
.y90d_c00001{bottom:451.866051pt;}
.yf9_c00001{bottom:451.867067pt;}
.y806_c00001{bottom:452.107200pt;}
.yaa9_c00001{bottom:452.267067pt;}
.y994_c00001{bottom:452.827067pt;}
.ye14_c00001{bottom:452.827200pt;}
.yc01_c00001{bottom:453.227067pt;}
.yaf2_c00001{bottom:453.307067pt;}
.ya2f_c00001{bottom:453.387067pt;}
.ye1e_c00001{bottom:453.707067pt;}
.y5f8_c00001{bottom:454.107200pt;}
.y2fb_c00001{bottom:454.267067pt;}
.ydd_c00001{bottom:454.587067pt;}
.yc4c_c00001{bottom:454.747067pt;}
.yd1f_c00001{bottom:454.747200pt;}
.yb81_c00001{bottom:454.827067pt;}
.y3e6_c00001{bottom:455.067200pt;}
.y64b_c00001{bottom:455.227067pt;}
.y325_c00001{bottom:455.307067pt;}
.y3d7_c00001{bottom:455.387067pt;}
.y6c7_c00001{bottom:455.467067pt;}
.y12c_c00001{bottom:455.867067pt;}
.y8cc_c00001{bottom:456.027200pt;}
.y169_c00001{bottom:456.107067pt;}
.y628_c00001{bottom:456.107200pt;}
.ycdb_c00001{bottom:456.267067pt;}
.y3d5_c00001{bottom:456.427067pt;}
.y3d_c00001{bottom:456.587067pt;}
.ya79_c00001{bottom:456.827067pt;}
.y19d_c00001{bottom:456.907067pt;}
.y8ca_c00001{bottom:456.987200pt;}
.y19_c00001{bottom:457.067200pt;}
.yb2d_c00001{bottom:457.227067pt;}
.ybf6_c00001{bottom:457.307067pt;}
.y27b_c00001{bottom:457.707067pt;}
.y610_c00001{bottom:457.947200pt;}
.y9c1_c00001{bottom:458.267067pt;}
.y1d7_c00001{bottom:458.987067pt;}
.ycf6_c00001{bottom:459.147200pt;}
.yba0_c00001{bottom:459.627611pt;}
.yb00_c00001{bottom:459.785475pt;}
.ycb7_c00001{bottom:459.867067pt;}
.y58_c00001{bottom:460.107200pt;}
.y538_c00001{bottom:460.267067pt;}
.y974_c00001{bottom:460.347067pt;}
.ya9a_c00001{bottom:460.428667pt;}
.y149_c00001{bottom:460.667067pt;}
.yace_c00001{bottom:460.747067pt;}
.y1fe_c00001{bottom:460.827067pt;}
.y2f6_c00001{bottom:460.907200pt;}
.y52d_c00001{bottom:461.227067pt;}
.y7e0_c00001{bottom:461.465035pt;}
.y79c_c00001{bottom:462.267067pt;}
.y7c7_c00001{bottom:462.507067pt;}
.ye08_c00001{bottom:462.747200pt;}
.y9a8_c00001{bottom:463.307067pt;}
.y256_c00001{bottom:463.387067pt;}
.ya87_c00001{bottom:463.467067pt;}
.y214_c00001{bottom:463.547067pt;}
.y398_c00001{bottom:463.627067pt;}
.y373_c00001{bottom:463.707067pt;}
.y66d_c00001{bottom:463.867067pt;}
.yc29_c00001{bottom:463.947200pt;}
.ya69_c00001{bottom:464.267067pt;}
.y658_c00001{bottom:464.347067pt;}
.y299_c00001{bottom:464.427067pt;}
.y396_c00001{bottom:464.587067pt;}
.y54c_c00001{bottom:464.907200pt;}
.y497_c00001{bottom:465.067200pt;}
.y737_c00001{bottom:465.307067pt;}
.y9d2_c00001{bottom:465.467067pt;}
.yadf_c00001{bottom:465.468667pt;}
.yc3b_c00001{bottom:465.547067pt;}
.y466_c00001{bottom:465.707067pt;}
.y9b2_c00001{bottom:466.026627pt;}
.yc61_c00001{bottom:466.027200pt;}
.y495_c00001{bottom:466.107200pt;}
.y37f_c00001{bottom:466.187200pt;}
.y6f1_c00001{bottom:466.347067pt;}
.y354_c00001{bottom:466.507067pt;}
.y54e_c00001{bottom:466.587067pt;}
.y71c_c00001{bottom:466.667067pt;}
.y464_c00001{bottom:466.667200pt;}
.y402_c00001{bottom:466.827200pt;}
.y37d_c00001{bottom:467.227067pt;}
.yc77_c00001{bottom:467.307067pt;}
.yb3d_c00001{bottom:467.465035pt;}
.y503_c00001{bottom:467.707067pt;}
.y684_c00001{bottom:467.867067pt;}
.yc2_c00001{bottom:467.947067pt;}
.y4f6_c00001{bottom:468.107067pt;}
.y401_c00001{bottom:468.187067pt;}
.y72_c00001{bottom:468.587067pt;}
.yca5_c00001{bottom:468.907067pt;}
.ya46_c00001{bottom:469.147067pt;}
.y7c1_c00001{bottom:469.307067pt;}
.y50c_c00001{bottom:469.467067pt;}
.yb8f_c00001{bottom:469.547067pt;}
.ya16_c00001{bottom:469.868667pt;}
.y30e_c00001{bottom:470.187067pt;}
.y2bb_c00001{bottom:470.267067pt;}
.y8b_c00001{bottom:470.427067pt;}
.y78c_c00001{bottom:470.587067pt;}
.y8eb_c00001{bottom:470.665323pt;}
.y8da_c00001{bottom:470.747067pt;}
.yd00_c00001{bottom:470.827067pt;}
.ya8_c00001{bottom:471.147067pt;}
.y993_c00001{bottom:471.227067pt;}
.y97c_c00001{bottom:471.547067pt;}
.ybe3_c00001{bottom:471.787067pt;}
.yc84_c00001{bottom:472.107067pt;}
.yb13_c00001{bottom:472.987067pt;}
.yc4b_c00001{bottom:473.147067pt;}
.yb80_c00001{bottom:473.227067pt;}
.ya23_c00001{bottom:473.307067pt;}
.y2d6_c00001{bottom:473.707067pt;}
.y9e4_c00001{bottom:473.787067pt;}
.y5e1_c00001{bottom:474.027067pt;}
.y63a_c00001{bottom:474.507067pt;}
.ybb1_c00001{bottom:474.587067pt;}
.ycda_c00001{bottom:474.667067pt;}
.yb58_c00001{bottom:474.747067pt;}
.y69c_c00001{bottom:474.827067pt;}
.yc97_c00001{bottom:474.907067pt;}
.y5df_c00001{bottom:474.987067pt;}
.y1bd_c00001{bottom:475.067067pt;}
.ya78_c00001{bottom:475.227067pt;}
.y5f7_c00001{bottom:475.387067pt;}
.y113_c00001{bottom:475.707067pt;}
.yaba_c00001{bottom:475.787067pt;}
.y3ab_c00001{bottom:475.867067pt;}
.ycc8_c00001{bottom:476.027067pt;}
.y3e5_c00001{bottom:476.427067pt;}
.y3d8_c00001{bottom:476.747067pt;}
.yd15_c00001{bottom:476.827067pt;}
.y2fa_c00001{bottom:476.907067pt;}
.y3be_c00001{bottom:477.067067pt;}
.y237_c00001{bottom:477.147067pt;}
.y8cd_c00001{bottom:477.307067pt;}
.y9f0_c00001{bottom:477.708851pt;}
.y3e4_c00001{bottom:477.787067pt;}
.y64a_c00001{bottom:477.947067pt;}
.yb1c_c00001{bottom:478.185475pt;}
.ycb6_c00001{bottom:478.267067pt;}
.yb2c_c00001{bottom:478.427067pt;}
.y90c_c00001{bottom:478.506339pt;}
.ybf5_c00001{bottom:478.507067pt;}
.yaa8_c00001{bottom:478.907067pt;}
.ya57_c00001{bottom:479.147067pt;}
.y60f_c00001{bottom:479.467067pt;}
.yaf1_c00001{bottom:479.947067pt;}
.ya2e_c00001{bottom:480.027067pt;}
.yc00_c00001{bottom:480.347067pt;}
.ycf5_c00001{bottom:480.507067pt;}
.y79b_c00001{bottom:480.667067pt;}
.ybd1_c00001{bottom:480.907067pt;}
.yce1_c00001{bottom:481.067067pt;}
.y539_c00001{bottom:481.547067pt;}
.ya99_c00001{bottom:481.948547pt;}
.y2f5_c00001{bottom:482.267067pt;}
.ydc_c00001{bottom:482.507067pt;}
.y657_c00001{bottom:482.747067pt;}
.y973_c00001{bottom:482.987067pt;}
.y168_c00001{bottom:483.627067pt;}
.yb6e_c00001{bottom:483.707067pt;}
.y52c_c00001{bottom:483.867067pt;}
.y3c_c00001{bottom:484.507067pt;}
.y6f0_c00001{bottom:484.667067pt;}
.y9c0_c00001{bottom:484.907067pt;}
.y18_c00001{bottom:484.987067pt;}
.yc6d_c00001{bottom:485.067067pt;}
.yc2a_c00001{bottom:485.307067pt;}
.yf8_c00001{bottom:485.467067pt;}
.y42d_c00001{bottom:485.627067pt;}
.y54b_c00001{bottom:486.187067pt;}
.y683_c00001{bottom:486.267067pt;}
.yaff_c00001{bottom:486.425763pt;}
.y498_c00001{bottom:486.427067pt;}
.y1d6_c00001{bottom:486.587067pt;}
.yade_c00001{bottom:486.908395pt;}
.y467_c00001{bottom:486.987067pt;}
.yc3a_c00001{bottom:487.466779pt;}
.y8fd_c00001{bottom:487.467067pt;}
.y380_c00001{bottom:487.547067pt;}
.yc19_c00001{bottom:487.707067pt;}
.y424_c00001{bottom:487.787067pt;}
.y57_c00001{bottom:488.027067pt;}
.y7df_c00001{bottom:488.185475pt;}
.y148_c00001{bottom:488.267067pt;}
.y2cb_c00001{bottom:488.427067pt;}
.y639_c00001{bottom:489.307067pt;}
.y372_c00001{bottom:489.387067pt;}
.y12b_c00001{bottom:489.467067pt;}
.y992_c00001{bottom:489.627067pt;}
.y9a7_c00001{bottom:489.947067pt;}
.y7c6_c00001{bottom:490.027067pt;}
.y501_c00001{bottom:490.347067pt;}
.y7d4_c00001{bottom:490.587067pt;}
.y185_c00001{bottom:490.667067pt;}
.ya68_c00001{bottom:490.907067pt;}
.y255_c00001{bottom:490.987067pt;}
.y1fd_c00001{bottom:491.147067pt;}
.ya15_c00001{bottom:491.308395pt;}
.y4ff_c00001{bottom:491.387067pt;}
.yc4a_c00001{bottom:491.547067pt;}
.y3f3_c00001{bottom:491.627067pt;}
.y78b_c00001{bottom:491.947067pt;}
.y298_c00001{bottom:492.027067pt;}
.y4f5_c00001{bottom:492.187067pt;}
.y9b1_c00001{bottom:492.747067pt;}
.y30d_c00001{bottom:492.827067pt;}
.y3f2_c00001{bottom:492.907067pt;}
.ycd9_c00001{bottom:493.067067pt;}
.y69b_c00001{bottom:493.227067pt;}
.y324_c00001{bottom:493.547067pt;}
.ya77_c00001{bottom:493.627067pt;}
.y30b_c00001{bottom:493.787067pt;}
.yb12_c00001{bottom:494.107067pt;}
.yb3c_c00001{bottom:494.185475pt;}
.y60e_c00001{bottom:494.187067pt;}
.ycc7_c00001{bottom:494.507067pt;}
.ya22_c00001{bottom:495.147067pt;}
.y5e2_c00001{bottom:495.307067pt;}
.ybbc_c00001{bottom:495.787067pt;}
.yc1_c00001{bottom:495.867067pt;}
.yb8e_c00001{bottom:496.187067pt;}
.yd1e_c00001{bottom:496.267067pt;}
.y71_c00001{bottom:496.507067pt;}
.yd2f_c00001{bottom:496.587067pt;}
.ycb5_c00001{bottom:496.667067pt;}
.y5f6_c00001{bottom:496.747067pt;}
.y8ea_c00001{bottom:497.305611pt;}
.y8d9_c00001{bottom:497.467067pt;}
.yacd_c00001{bottom:497.547067pt;}
.ybb0_c00001{bottom:497.787067pt;}
.y2ba_c00001{bottom:497.867067pt;}
.y1ed_c00001{bottom:498.027067pt;}
.y3d9_c00001{bottom:498.107067pt;}
.y97b_c00001{bottom:498.187067pt;}
.y8a_c00001{bottom:498.347067pt;}
.ybe2_c00001{bottom:498.427067pt;}
.y8ce_c00001{bottom:498.667067pt;}
.ya7_c00001{bottom:499.067067pt;}
.y2f9_c00001{bottom:499.547067pt;}
.yc8d_c00001{bottom:499.627067pt;}
.yb2b_c00001{bottom:499.867067pt;}
.ybf4_c00001{bottom:499.947067pt;}
.y786_c00001{bottom:500.347067pt;}
.y51d_c00001{bottom:500.427067pt;}
.y9e3_c00001{bottom:500.507067pt;}
.y648_c00001{bottom:500.587067pt;}
.y66c_c00001{bottom:500.667067pt;}
.y656_c00001{bottom:501.147067pt;}
.y51c_c00001{bottom:501.387067pt;}
.yb57_c00001{bottom:501.467067pt;}
.y646_c00001{bottom:501.547067pt;}
.ycf4_c00001{bottom:502.027067pt;}
.yb6d_c00001{bottom:502.107067pt;}
.y9d1_c00001{bottom:502.267067pt;}
.yab9_c00001{bottom:502.427067pt;}
.yb9f_c00001{bottom:502.507067pt;}
.y1bc_c00001{bottom:502.667067pt;}
.y26d_c00001{bottom:502.827067pt;}
.ydf5_c00001{bottom:503.387067pt;}
.ya98_c00001{bottom:503.388275pt;}
.yc6c_c00001{bottom:503.467067pt;}
.y2f4_c00001{bottom:503.547067pt;}
.y3bd_c00001{bottom:503.787067pt;}
.y42c_c00001{bottom:504.027067pt;}
.y2d5_c00001{bottom:504.187067pt;}
.y972_c00001{bottom:504.347067pt;}
.y682_c00001{bottom:504.667067pt;}
.y236_c00001{bottom:504.747067pt;}
.yb1b_c00001{bottom:504.825763pt;}
.y71b_c00001{bottom:504.907067pt;}
.y5d9_c00001{bottom:505.067067pt;}
.y90b_c00001{bottom:505.226779pt;}
.ya56_c00001{bottom:505.467067pt;}
.yaa7_c00001{bottom:505.627067pt;}
.ya45_c00001{bottom:505.947067pt;}
.y397_c00001{bottom:506.267067pt;}
.y52b_c00001{bottom:506.507067pt;}
.yaf0_c00001{bottom:506.587067pt;}
.ya2d_c00001{bottom:506.667067pt;}
.ybd0_c00001{bottom:507.627067pt;}
.y6ef_c00001{bottom:507.707067pt;}
.y496_c00001{bottom:507.787067pt;}
.y52a_c00001{bottom:507.867067pt;}
.y991_c00001{bottom:508.027067pt;}
.y468_c00001{bottom:508.347067pt;}
.yadd_c00001{bottom:508.348123pt;}
.y381_c00001{bottom:508.907067pt;}
.y112_c00001{bottom:509.307067pt;}
.y54a_c00001{bottom:509.467067pt;}
.yc49_c00001{bottom:509.947067pt;}
.yb7f_c00001{bottom:510.027067pt;}
.y3aa_c00001{bottom:510.107067pt;}
.ydb_c00001{bottom:510.427067pt;}
.y423_c00001{bottom:510.507067pt;}
.y371_c00001{bottom:510.667067pt;}
.yc75_c00001{bottom:510.827067pt;}
.y736_c00001{bottom:511.067067pt;}
.ycd8_c00001{bottom:511.387067pt;}
.y69a_c00001{bottom:511.627067pt;}
.y502_c00001{bottom:511.707067pt;}
.y50b_c00001{bottom:512.027067pt;}
.y3ff_c00001{bottom:512.187067pt;}
.y3b_c00001{bottom:512.427067pt;}
.ya14_c00001{bottom:512.748123pt;}
.y17_c00001{bottom:512.907067pt;}
.yafe_c00001{bottom:513.066051pt;}
.yf7_c00001{bottom:513.067067pt;}
.y3fd_c00001{bottom:513.147067pt;}
.y167_c00001{bottom:513.787067pt;}
.yc39_c00001{bottom:514.107067pt;}
.y1d5_c00001{bottom:514.187067pt;}
.y3f1_c00001{bottom:514.267067pt;}
.y78a_c00001{bottom:514.587067pt;}
.y7c0_c00001{bottom:514.667067pt;}
.y7de_c00001{bottom:514.825763pt;}
.y4f4_c00001{bottom:514.907067pt;}
.ycb4_c00001{bottom:515.067067pt;}
.yb11_c00001{bottom:515.627067pt;}
.y147_c00001{bottom:515.867067pt;}
.y56_c00001{bottom:515.947067pt;}
.y537_c00001{bottom:516.267067pt;}
.y9a6_c00001{bottom:516.587067pt;}
.y5e0_c00001{bottom:516.667067pt;}
.ya00_c00001{bottom:516.987067pt;}
.y79a_c00001{bottom:517.387067pt;}
.y7c5_c00001{bottom:517.627067pt;}
.y19c_c00001{bottom:517.787067pt;}
.y5f5_c00001{bottom:518.267067pt;}
.y254_c00001{bottom:518.507067pt;}
.y253_c00001{bottom:518.507547pt;}
.y2b1_c00001{bottom:518.587067pt;}
.y1fc_c00001{bottom:518.747067pt;}
.y66b_c00001{bottom:519.067067pt;}
.y3d6_c00001{bottom:519.387067pt;}
.y655_c00001{bottom:519.547067pt;}
.y297_c00001{bottom:519.627067pt;}
.y71a_c00001{bottom:519.707067pt;}
.y8cb_c00001{bottom:520.027067pt;}
.ycf3_c00001{bottom:520.427067pt;}
.yb6c_c00001{bottom:520.507067pt;}
.y9ef_c00001{bottom:520.588307pt;}
.y9d0_c00001{bottom:520.667067pt;}
.yb3b_c00001{bottom:520.825763pt;}
.yc8c_c00001{bottom:520.827067pt;}
.y323_c00001{bottom:521.227067pt;}
.y785_c00001{bottom:521.707067pt;}
.y3e2_c00001{bottom:521.787067pt;}
.y649_c00001{bottom:521.947067pt;}
.y2f8_c00001{bottom:522.267067pt;}
.y42b_c00001{bottom:522.427067pt;}
.y3e0_c00001{bottom:522.747067pt;}
.yb8d_c00001{bottom:522.907067pt;}
.y12a_c00001{bottom:523.067067pt;}
.yce0_c00001{bottom:523.947067pt;}
.y8e9_c00001{bottom:524.026051pt;}
.y8d8_c00001{bottom:524.107067pt;}
.ya44_c00001{bottom:524.347067pt;}
.y70_c00001{bottom:524.427067pt;}
.ya97_c00001{bottom:524.828003pt;}
.y2f3_c00001{bottom:524.907067pt;}
.ybe1_c00001{bottom:525.067067pt;}
.yc0_c00001{bottom:525.627067pt;}
.y89_c00001{bottom:526.267067pt;}
.y990_c00001{bottom:526.427067pt;}
.yb2a_c00001{bottom:526.507067pt;}
.y184_c00001{bottom:526.587067pt;}
.y971_c00001{bottom:526.987067pt;}
.ya6_c00001{bottom:527.067067pt;}
.y9e2_c00001{bottom:527.147067pt;}
.y5d8_c00001{bottom:527.787067pt;}
.yb56_c00001{bottom:528.107067pt;}
.yc48_c00001{bottom:528.347067pt;}
.yb7e_c00001{bottom:528.427067pt;}
.y395_c00001{bottom:528.587067pt;}
.yc28_c00001{bottom:528.907067pt;}
.yab8_c00001{bottom:529.067067pt;}
.y529_c00001{bottom:529.227067pt;}
.y465_c00001{bottom:529.707067pt;}
.ycd7_c00001{bottom:529.787067pt;}
.yadc_c00001{bottom:529.868003pt;}
.y494_c00001{bottom:530.027067pt;}
.yc6b_c00001{bottom:530.107067pt;}
.y37e_c00001{bottom:530.187067pt;}
.y1bb_c00001{bottom:530.267067pt;}
.y26c_c00001{bottom:530.427067pt;}
.ycff_c00001{bottom:530.587067pt;}
.yc18_c00001{bottom:530.747067pt;}
.ycc6_c00001{bottom:531.307067pt;}
.yb1a_c00001{bottom:531.466051pt;}
.y90a_c00001{bottom:531.867067pt;}
.ya55_c00001{bottom:532.107067pt;}
.yaa6_c00001{bottom:532.267067pt;}
.y235_c00001{bottom:532.347067pt;}
.y735_c00001{bottom:532.427067pt;}
.y549_c00001{bottom:532.747067pt;}
.y500_c00001{bottom:533.067067pt;}
.yaef_c00001{bottom:533.307067pt;}
.y36f_c00001{bottom:533.387067pt;}
.y400_c00001{bottom:533.467067pt;}
.y422_c00001{bottom:533.707067pt;}
.y548_c00001{bottom:534.107067pt;}
.ybcf_c00001{bottom:534.267067pt;}
.ya13_c00001{bottom:534.268003pt;}
.y36d_c00001{bottom:534.347067pt;}
.y2d4_c00001{bottom:534.747067pt;}
.y8ab_c00001{bottom:534.827067pt;}
.y30c_c00001{bottom:535.467067pt;}
.y799_c00001{bottom:535.787067pt;}
.ye12_c00001{bottom:536.107067pt;}
.y5f4_c00001{bottom:536.667067pt;}
.y3ee_c00001{bottom:536.907067pt;}
.y7bf_c00001{bottom:537.307067pt;}
.y66a_c00001{bottom:537.387067pt;}
.y4f3_c00001{bottom:537.547067pt;}
.y3ec_c00001{bottom:537.947067pt;}
.y789_c00001{bottom:538.107067pt;}
.y9bf_c00001{bottom:538.267067pt;}
.yda_c00001{bottom:538.347067pt;}
.y4f0_c00001{bottom:538.507067pt;}
.ycf2_c00001{bottom:538.827067pt;}
.yb6b_c00001{bottom:538.907067pt;}
.y5de_c00001{bottom:538.987067pt;}
.yafd_c00001{bottom:539.786491pt;}
.ydf4_c00001{bottom:540.187067pt;}
.y3a_c00001{bottom:540.347067pt;}
.yd14_c00001{bottom:540.667067pt;}
.y42a_c00001{bottom:540.827067pt;}
.y16_c00001{bottom:540.907067pt;}
.y166_c00001{bottom:541.387067pt;}
.y7dd_c00001{bottom:541.466051pt;}
.y3d4_c00001{bottom:541.707067pt;}
.y2c8_c00001{bottom:541.787067pt;}
.y8c9_c00001{bottom:542.267067pt;}
.ya43_c00001{bottom:542.747067pt;}
.y784_c00001{bottom:542.987067pt;}
.y3e3_c00001{bottom:543.067067pt;}
.y647_c00001{bottom:543.227067pt;}
.y9a5_c00001{bottom:543.307067pt;}
.y146_c00001{bottom:543.386123pt;}
.yb9e_c00001{bottom:543.387067pt;}
.y1d4_c00001{bottom:543.627067pt;}
.y9ff_c00001{bottom:543.707067pt;}
.y55_c00001{bottom:543.867067pt;}
.ya67_c00001{bottom:544.267067pt;}
.y3a9_c00001{bottom:544.347067pt;}
.y536_c00001{bottom:544.587067pt;}
.y111_c00001{bottom:544.747067pt;}
.y98f_c00001{bottom:544.827067pt;}
.y2f7_c00001{bottom:544.907067pt;}
.yb4d_c00001{bottom:545.307067pt;}
.y19b_c00001{bottom:545.387067pt;}
.y2b0_c00001{bottom:546.187067pt;}
.y2f2_c00001{bottom:546.267067pt;}
.ya96_c00001{bottom:546.267731pt;}
.y1fb_c00001{bottom:546.347067pt;}
.y7c4_c00001{bottom:546.427067pt;}
.yf6_c00001{bottom:546.667067pt;}
.yc47_c00001{bottom:546.747067pt;}
.yb7d_c00001{bottom:546.827067pt;}
.y296_c00001{bottom:547.227067pt;}
.yb3a_c00001{bottom:547.466051pt;}
.ycd6_c00001{bottom:548.187067pt;}
.y699_c00001{bottom:548.427067pt;}
.y252_c00001{bottom:548.667067pt;}
.y322_c00001{bottom:548.827067pt;}
.y5d7_c00001{bottom:549.067067pt;}
.y50a_c00001{bottom:549.307067pt;}
.yb8c_c00001{bottom:549.547067pt;}
.y970_c00001{bottom:549.627067pt;}
.ycc5_c00001{bottom:549.707067pt;}
.y394_c00001{bottom:549.787067pt;}
.yc27_c00001{bottom:550.427067pt;}
.y8e8_c00001{bottom:550.666339pt;}
.y8d7_c00001{bottom:550.747067pt;}
.y493_c00001{bottom:551.227067pt;}
.yadb_c00001{bottom:551.307731pt;}
.y97a_c00001{bottom:551.547067pt;}
.ybe0_c00001{bottom:551.787067pt;}
.y528_c00001{bottom:551.867067pt;}
.y463_c00001{bottom:551.947067pt;}
.y6f_c00001{bottom:552.347067pt;}
.y37c_c00001{bottom:552.507067pt;}
.yacc_c00001{bottom:552.747067pt;}
.y525_c00001{bottom:552.827067pt;}
.y1ec_c00001{bottom:553.227067pt;}
.ybf3_c00001{bottom:553.307067pt;}
.y3bc_c00001{bottom:553.467067pt;}
.y9e1_c00001{bottom:553.787067pt;}
.y88_c00001{bottom:554.187067pt;}
.y370_c00001{bottom:554.667067pt;}
.yb55_c00001{bottom:554.747067pt;}
.y3fe_c00001{bottom:554.827067pt;}
.ya5_c00001{bottom:554.987067pt;}
.y5f3_c00001{bottom:555.067067pt;}
.y4fe_c00001{bottom:555.307067pt;}
.y547_c00001{bottom:555.387067pt;}
.y734_c00001{bottom:555.467067pt;}
.y7d2_c00001{bottom:555.627067pt;}
.ya12_c00001{bottom:555.707731pt;}
.y669_c00001{bottom:555.787067pt;}
.yc96_c00001{bottom:556.267067pt;}
.y654_c00001{bottom:556.347067pt;}
.y421_c00001{bottom:556.427067pt;}
.y129_c00001{bottom:556.667067pt;}
.yc6a_c00001{bottom:556.747067pt;}
.yc83_c00001{bottom:557.067067pt;}
.ycf1_c00001{bottom:557.227067pt;}
.yb6a_c00001{bottom:557.307067pt;}
.y9cf_c00001{bottom:557.387067pt;}
.y8aa_c00001{bottom:557.467067pt;}
.y30a_c00001{bottom:557.787067pt;}
.y1ba_c00001{bottom:557.867067pt;}
.yb19_c00001{bottom:558.186491pt;}
.y3ef_c00001{bottom:558.267067pt;}
.ydf3_c00001{bottom:558.587067pt;}
.ya54_c00001{bottom:558.747067pt;}
.y4f2_c00001{bottom:558.907067pt;}
.y429_c00001{bottom:559.227067pt;}
.y234_c00001{bottom:559.947067pt;}
.y7be_c00001{bottom:560.027067pt;}
.y5dd_c00001{bottom:560.187067pt;}
.ybce_c00001{bottom:560.907067pt;}
.ya42_c00001{bottom:561.147067pt;}
.y788_c00001{bottom:561.707067pt;}
.ybff_c00001{bottom:561.787067pt;}
.yd13_c00001{bottom:562.187067pt;}
.ye11_c00001{bottom:562.827067pt;}
.y3d3_c00001{bottom:562.907067pt;}
.y698_c00001{bottom:563.147067pt;}
.y98e_c00001{bottom:563.227067pt;}
.y8c8_c00001{bottom:563.467067pt;}
.y9ee_c00001{bottom:563.467763pt;}
.ybf_c00001{bottom:563.787067pt;}
.y783_c00001{bottom:564.347067pt;}
.y3e1_c00001{bottom:564.427067pt;}
.y9be_c00001{bottom:564.907067pt;}
.yc46_c00001{bottom:565.147067pt;}
.yb7c_c00001{bottom:565.227067pt;}
.y2d3_c00001{bottom:565.307067pt;}
.y51b_c00001{bottom:565.387067pt;}
.y645_c00001{bottom:565.547067pt;}
.yafc_c00001{bottom:566.426779pt;}
.ycd5_c00001{bottom:566.587067pt;}
.yc38_c00001{bottom:567.067067pt;}
.ya76_c00001{bottom:567.227067pt;}
.y2f1_c00001{bottom:567.547067pt;}
.ya95_c00001{bottom:567.787611pt;}
.yd9_c00001{bottom:568.107067pt;}
.y7dc_c00001{bottom:568.186491pt;}
.y39_c00001{bottom:568.267067pt;}
.ye1d_c00001{bottom:568.507067pt;}
.y15_c00001{bottom:568.827067pt;}
.yb10_c00001{bottom:568.907067pt;}
.y165_c00001{bottom:568.987067pt;}
.y2c7_c00001{bottom:569.387067pt;}
.y9a4_c00001{bottom:569.947067pt;}
.ycb3_c00001{bottom:570.187067pt;}
.y7d1_c00001{bottom:570.347067pt;}
.ya66_c00001{bottom:570.907067pt;}
.y393_c00001{bottom:571.067067pt;}
.yacb_c00001{bottom:571.147067pt;}
.y54_c00001{bottom:571.787067pt;}
.yb4c_c00001{bottom:571.947067pt;}
.yb69_c00001{bottom:572.107067pt;}
.y110_c00001{bottom:572.347067pt;}
.y798_c00001{bottom:572.587067pt;}
.y492_c00001{bottom:572.747067pt;}
.yada_c00001{bottom:572.747459pt;}
.yca4_c00001{bottom:572.907067pt;}
.y462_c00001{bottom:573.147067pt;}
.y527_c00001{bottom:573.227067pt;}
.y5f2_c00001{bottom:573.387067pt;}
.y37b_c00001{bottom:573.707067pt;}
.y2af_c00001{bottom:573.787067pt;}
.y1d3_c00001{bottom:573.947067pt;}
.yb39_c00001{bottom:574.186491pt;}
.y668_c00001{bottom:574.187067pt;}
.y653_c00001{bottom:574.747067pt;}
.y19a_c00001{bottom:574.827067pt;}
.ycf0_c00001{bottom:575.627067pt;}
.yc17_c00001{bottom:575.786507pt;}
.y9ce_c00001{bottom:575.787067pt;}
.y535_c00001{bottom:576.107067pt;}
.yb8b_c00001{bottom:576.187067pt;}
.y251_c00001{bottom:576.267067pt;}
.y36e_c00001{bottom:576.347067pt;}
.y4fd_c00001{bottom:576.507067pt;}
.y3fc_c00001{bottom:577.147067pt;}
.ya11_c00001{bottom:577.147459pt;}
.y8e7_c00001{bottom:577.306627pt;}
.y8d6_c00001{bottom:577.467067pt;}
.y428_c00001{bottom:577.627067pt;}
.y546_c00001{bottom:578.107067pt;}
.y979_c00001{bottom:578.187067pt;}
.ybdf_c00001{bottom:578.427067pt;}
.y733_c00001{bottom:578.507067pt;}
.y3a8_c00001{bottom:578.667067pt;}
.y8a9_c00001{bottom:578.827067pt;}
.y309_c00001{bottom:578.987067pt;}
.y543_c00001{bottom:579.067067pt;}
.ya41_c00001{bottom:579.547067pt;}
.y3f0_c00001{bottom:579.627067pt;}
.y420_c00001{bottom:579.707067pt;}
.y6e_c00001{bottom:579.947067pt;}
.y4f1_c00001{bottom:580.187067pt;}
.yf5_c00001{bottom:580.267067pt;}
.y9e0_c00001{bottom:580.507067pt;}
.yd12_c00001{bottom:580.587067pt;}
.y1eb_c00001{bottom:580.827067pt;}
.yb54_c00001{bottom:581.467067pt;}
.y5dc_c00001{bottom:581.547067pt;}
.y98d_c00001{bottom:581.627067pt;}
.y183_c00001{bottom:581.787067pt;}
.y87_c00001{bottom:582.107067pt;}
.yab7_c00001{bottom:582.427067pt;}
.y7bd_c00001{bottom:582.667067pt;}
.ya4_c00001{bottom:582.907067pt;}
.yc69_c00001{bottom:583.467067pt;}
.y509_c00001{bottom:583.547067pt;}
.yb7b_c00001{bottom:583.627067pt;}
.yc82_c00001{bottom:583.787067pt;}
.ycfe_c00001{bottom:583.947067pt;}
.y145_c00001{bottom:584.107067pt;}
.y321_c00001{bottom:584.187067pt;}
.y787_c00001{bottom:584.347067pt;}
.y3d2_c00001{bottom:584.427067pt;}
.yb18_c00001{bottom:584.826779pt;}
.y8c7_c00001{bottom:584.827067pt;}
.ycd4_c00001{bottom:584.987067pt;}
.y295_c00001{bottom:585.387067pt;}
.y1b9_c00001{bottom:585.467067pt;}
.ya75_c00001{bottom:585.627067pt;}
.y782_c00001{bottom:585.707067pt;}
.y5d6_c00001{bottom:586.267067pt;}
.ycc4_c00001{bottom:586.507067pt;}
.y51a_c00001{bottom:586.587067pt;}
.ya2c_c00001{bottom:586.667067pt;}
.y3df_c00001{bottom:586.747067pt;}
.y233_c00001{bottom:587.547067pt;}
.ybcd_c00001{bottom:587.627067pt;}
.ycb2_c00001{bottom:588.587067pt;}
.ya94_c00001{bottom:589.227339pt;}
.yb9d_c00001{bottom:589.467067pt;}
.yaca_c00001{bottom:589.547067pt;}
.y128_c00001{bottom:590.267067pt;}
.y797_c00001{bottom:590.987067pt;}
.y491_c00001{bottom:591.067067pt;}
.y2ee_c00001{bottom:591.227067pt;}
.y9bd_c00001{bottom:591.627067pt;}
.y5f1_c00001{bottom:591.787067pt;}
.y392_c00001{bottom:592.587067pt;}
.y87f_c00001{bottom:592.827067pt;}
.ye07_c00001{bottom:592.907067pt;}
.yafb_c00001{bottom:593.067067pt;}
.y652_c00001{bottom:593.147067pt;}
.y9fe_c00001{bottom:593.387067pt;}
.yc37_c00001{bottom:593.707067pt;}
.ycef_c00001{bottom:594.027067pt;}
.y9cd_c00001{bottom:594.187067pt;}
.yad9_c00001{bottom:594.267339pt;}
.y526_c00001{bottom:594.507067pt;}
.y461_c00001{bottom:594.667067pt;}
.y7db_c00001{bottom:594.826779pt;}
.y37a_c00001{bottom:594.987067pt;}
.yb0f_c00001{bottom:595.627067pt;}
.y2d2_c00001{bottom:595.787067pt;}
.y427_c00001{bottom:596.027067pt;}
.y38_c00001{bottom:596.187067pt;}
.y164_c00001{bottom:596.507067pt;}
.y9a3_c00001{bottom:596.587067pt;}
.y14_c00001{bottom:596.747067pt;}
.ya65_c00001{bottom:597.627067pt;}
.ya40_c00001{bottom:597.947067pt;}
.y4fc_c00001{bottom:598.027067pt;}
.y3fb_c00001{bottom:598.267067pt;}
.yb4b_c00001{bottom:598.587067pt;}
.y36c_c00001{bottom:598.667067pt;}
.ya10_c00001{bottom:598.667339pt;}
.y2c6_c00001{bottom:598.827067pt;}
.yd11_c00001{bottom:598.987067pt;}
.y545_c00001{bottom:599.387067pt;}
.yca3_c00001{bottom:599.627067pt;}
.y53_c00001{bottom:599.707067pt;}
.y4d0_c00001{bottom:599.947067pt;}
.y98c_c00001{bottom:600.027067pt;}
.y308_c00001{bottom:600.267067pt;}
.y534_c00001{bottom:600.587067pt;}
.yb38_c00001{bottom:600.826779pt;}
.y3ed_c00001{bottom:600.907067pt;}
.y5a4_c00001{bottom:600.987067pt;}
.y732_c00001{bottom:601.227067pt;}
.yd8_c00001{bottom:601.387067pt;}
.y8a8_c00001{bottom:601.467067pt;}
.y1d2_c00001{bottom:601.547067pt;}
.yc45_c00001{bottom:601.947067pt;}
.yb7a_c00001{bottom:602.027067pt;}
.ybe_c00001{bottom:602.107067pt;}
.ybbb_c00001{bottom:602.427067pt;}
.y4ef_c00001{bottom:602.507067pt;}
.y41f_c00001{bottom:602.907067pt;}
.y5db_c00001{bottom:603.067067pt;}
.ycd3_c00001{bottom:603.387067pt;}
.y92b_c00001{bottom:603.467067pt;}
.y482_c00001{bottom:603.627067pt;}
.y250_c00001{bottom:603.867067pt;}
.y8e6_c00001{bottom:604.027067pt;}
.y8d5_c00001{bottom:604.107067pt;}
.y5bf_c00001{bottom:604.907067pt;}
.ybde_c00001{bottom:605.067067pt;}
.y7bc_c00001{bottom:605.307067pt;}
.y10f_c00001{bottom:605.547067pt;}
.y9ed_c00001{bottom:606.267067pt;}
.ybf2_c00001{bottom:606.587067pt;}
.y8c6_c00001{bottom:606.666779pt;}
.y781_c00001{bottom:606.987067pt;}
.y9df_c00001{bottom:607.147067pt;}
.y199_c00001{bottom:607.787067pt;}
.y6d_c00001{bottom:607.867067pt;}
.yac9_c00001{bottom:607.947067pt;}
.yb53_c00001{bottom:608.107067pt;}
.y1ea_c00001{bottom:608.427067pt;}
.yaa5_c00001{bottom:608.667067pt;}
.y8b6_c00001{bottom:608.827067pt;}
.yab6_c00001{bottom:609.067067pt;}
.y182_c00001{bottom:609.387067pt;}
.yc95_c00001{bottom:609.547067pt;}
.yaee_c00001{bottom:609.707067pt;}
.y86_c00001{bottom:610.107067pt;}
.y5f0_c00001{bottom:610.187067pt;}
.y2b9_c00001{bottom:610.347067pt;}
.yc81_c00001{bottom:610.427067pt;}
.ycfd_c00001{bottom:610.587067pt;}
.ya93_c00001{bottom:610.667067pt;}
.ya3_c00001{bottom:610.827067pt;}
.y391_c00001{bottom:610.987067pt;}
.y508_c00001{bottom:611.227067pt;}
.ye06_c00001{bottom:611.387067pt;}
.yb17_c00001{bottom:611.467067pt;}
.y2ef_c00001{bottom:611.547067pt;}
.ya53_c00001{bottom:612.107067pt;}
.ycee_c00001{bottom:612.427067pt;}
.y9cc_c00001{bottom:612.587067pt;}
.ya3f_c00001{bottom:612.667067pt;}
.y3a7_c00001{bottom:612.907067pt;}
.y1b8_c00001{bottom:613.067067pt;}
.y7c3_c00001{bottom:613.307067pt;}
.ya2b_c00001{bottom:613.387067pt;}
.y144_c00001{bottom:613.627067pt;}
.y426_c00001{bottom:614.427067pt;}
.y9bc_c00001{bottom:614.667067pt;}
.y232_c00001{bottom:615.147067pt;}
.yf4_c00001{bottom:615.707067pt;}
.yb9c_c00001{bottom:616.107067pt;}
.y87e_c00001{bottom:616.187067pt;}
.y4fb_c00001{bottom:616.427067pt;}
.yc44_c00001{bottom:616.667067pt;}
.y524_c00001{bottom:616.827067pt;}
.ybfe_c00001{bottom:616.987067pt;}
.yd10_c00001{bottom:617.387067pt;}
.y96e_c00001{bottom:617.627067pt;}
.yb8a_c00001{bottom:617.707067pt;}
.y490_c00001{bottom:617.787067pt;}
.y5da_c00001{bottom:617.867067pt;}
.y98b_c00001{bottom:618.427067pt;}
.y3d1_c00001{bottom:618.587067pt;}
.y96c_c00001{bottom:618.667067pt;}
.y4be_c00001{bottom:618.907067pt;}
.y533_c00001{bottom:618.987067pt;}
.yafa_c00001{bottom:619.387067pt;}
.y3fa_c00001{bottom:619.627067pt;}
.y978_c00001{bottom:619.707067pt;}
.ya0f_c00001{bottom:620.107067pt;}
.yb79_c00001{bottom:620.427067pt;}
.y36b_c00001{bottom:620.507067pt;}
.ya64_c00001{bottom:620.667067pt;}
.y544_c00001{bottom:620.747067pt;}
.y7da_c00001{bottom:621.467067pt;}
.yb4a_c00001{bottom:621.707067pt;}
.y5d5_c00001{bottom:621.947067pt;}
.ya74_c00001{bottom:622.427067pt;}
.y731_c00001{bottom:622.507067pt;}
.y4cf_c00001{bottom:622.587067pt;}
.yac8_c00001{bottom:622.667067pt;}
.y3eb_c00001{bottom:623.227067pt;}
.y5a3_c00001{bottom:623.627067pt;}
.y127_c00001{bottom:623.867067pt;}
.y4ee_c00001{bottom:624.107067pt;}
.y37_c00001{bottom:624.187067pt;}
.y44d_c00001{bottom:624.507067pt;}
.y13_c00001{bottom:624.667067pt;}
.y8a7_c00001{bottom:624.907067pt;}
.ycb1_c00001{bottom:625.387067pt;}
.y41e_c00001{bottom:625.627067pt;}
.ye05_c00001{bottom:626.107067pt;}
.y92a_c00001{bottom:626.187067pt;}
.y2d1_c00001{bottom:626.347067pt;}
.y163_c00001{bottom:626.667067pt;}
.y8d4_c00001{bottom:627.147067pt;}
.y9ec_c00001{bottom:627.387067pt;}
.yb37_c00001{bottom:627.467067pt;}
.y52_c00001{bottom:627.707067pt;}
.y7c2_c00001{bottom:628.107067pt;}
.y7bb_c00001{bottom:628.267067pt;}
.y5ef_c00001{bottom:628.587067pt;}
.y5be_c00001{bottom:628.667067pt;}
.y27a_c00001{bottom:628.987067pt;}
.ybba_c00001{bottom:629.067067pt;}
.yd7_c00001{bottom:629.147067pt;}
.y390_c00001{bottom:629.387067pt;}
.y77e_c00001{bottom:629.707067pt;}
.y651_c00001{bottom:629.947067pt;}
.y9de_c00001{bottom:630.267067pt;}
.y481_c00001{bottom:630.667067pt;}
.y9cb_c00001{bottom:630.987067pt;}
.y4fa_c00001{bottom:631.147067pt;}
.y24f_c00001{bottom:631.467067pt;}
.yab5_c00001{bottom:632.107067pt;}
.y507_c00001{bottom:632.667067pt;}
.y2f0_c00001{bottom:632.907067pt;}
.y98a_c00001{bottom:633.147067pt;}
.y8c5_c00001{bottom:633.307067pt;}
.ycfc_c00001{bottom:633.707067pt;}
.yaf9_c00001{bottom:634.107067pt;}
.ya52_c00001{bottom:635.147067pt;}
.ybfd_c00001{bottom:635.387067pt;}
.y6c_c00001{bottom:635.787067pt;}
.y1e9_c00001{bottom:636.027067pt;}
.yc94_c00001{bottom:636.267067pt;}
.y181_c00001{bottom:636.987067pt;}
.yc80_c00001{bottom:637.067067pt;}
.ya73_c00001{bottom:637.147067pt;}
.y532_c00001{bottom:637.387067pt;}
.ya0e_c00001{bottom:637.547067pt;}
.y85_c00001{bottom:638.027067pt;}
.y10e_c00001{bottom:638.827067pt;}
.y87d_c00001{bottom:638.907067pt;}
.y96f_c00001{bottom:638.987067pt;}
.yb9b_c00001{bottom:639.147067pt;}
.y379_c00001{bottom:639.947067pt;}
.ycb0_c00001{bottom:640.107067pt;}
.ybd_c00001{bottom:640.347067pt;}
.ya2_c00001{bottom:640.587067pt;}
.y1b7_c00001{bottom:640.667067pt;}
.y26b_c00001{bottom:640.827067pt;}
.y3f9_c00001{bottom:640.987067pt;}
.y4bd_c00001{bottom:641.547067pt;}
.y4ed_c00001{bottom:641.947067pt;}
.y36a_c00001{bottom:642.027067pt;}
.y542_c00001{bottom:642.107067pt;}
.y231_c00001{bottom:642.747067pt;}
.yc16_c00001{bottom:643.147067pt;}
.y143_c00001{bottom:643.947067pt;}
.y38f_c00001{bottom:644.107067pt;}
.y3ea_c00001{bottom:644.427067pt;}
.y650_c00001{bottom:644.667067pt;}
.y890_c00001{bottom:645.387067pt;}
.y730_c00001{bottom:645.627067pt;}
.y9ca_c00001{bottom:645.707067pt;}
.y198_c00001{bottom:646.027067pt;}
.y3d0_c00001{bottom:646.187067pt;}
.y5a2_c00001{bottom:646.267067pt;}
.y952_c00001{bottom:646.827067pt;}
.y41d_c00001{bottom:646.907067pt;}
.y5ee_c00001{bottom:646.987067pt;}
.y3a6_c00001{bottom:647.227067pt;}
.y58b_c00001{bottom:647.547067pt;}
.y72e_c00001{bottom:648.267067pt;}
.y929_c00001{bottom:648.827067pt;}
.yf3_c00001{bottom:648.907067pt;}
.y8a6_c00001{bottom:649.627067pt;}
.y460_c00001{bottom:649.867067pt;}
.yb36_c00001{bottom:650.107067pt;}
.y77f_c00001{bottom:650.987067pt;}
.y7ba_c00001{bottom:651.227067pt;}
.y531_c00001{bottom:652.107067pt;}
.y5bd_c00001{bottom:652.507067pt;}
.y12_c00001{bottom:652.587067pt;}
.y480_c00001{bottom:653.307067pt;}
.y36_c00001{bottom:653.947067pt;}
.y8b5_c00001{bottom:654.187067pt;}
.y162_c00001{bottom:654.267067pt;}
.y51_c00001{bottom:655.627067pt;}
.y2ae_c00001{bottom:656.587067pt;}
.y1d1_c00001{bottom:656.747067pt;}
.y2d0_c00001{bottom:656.827067pt;}
.yd6_c00001{bottom:657.067067pt;}
.y126_c00001{bottom:657.467067pt;}
.yc93_c00001{bottom:659.307067pt;}
.y523_c00001{bottom:659.547067pt;}
.y8c4_c00001{bottom:659.627067pt;}
.yc7f_c00001{bottom:660.107067pt;}
.y96d_c00001{bottom:660.347067pt;}
.y369_c00001{bottom:660.427067pt;}
.y746_c00001{bottom:660.907067pt;}
.y24e_c00001{bottom:661.147067pt;}
.y87c_c00001{bottom:661.547067pt;}
.y3f8_c00001{bottom:662.267067pt;}
.y4bc_c00001{bottom:662.907067pt;}
.y1e8_c00001{bottom:663.627067pt;}
.y6b_c00001{bottom:663.787067pt;}
.y541_c00001{bottom:664.187067pt;}
.y180_c00001{bottom:664.587067pt;}
.yd4f_c00001{bottom:664.827067pt;}
.y5ed_c00001{bottom:665.387067pt;}
.y33c_c00001{bottom:665.627067pt;}
.y84_c00001{bottom:665.947067pt;}
.y81c_c00001{bottom:667.067067pt;}
.y3cf_c00001{bottom:667.707067pt;}
.y88f_c00001{bottom:668.027067pt;}
.y288_c00001{bottom:668.107067pt;}
.ybc_c00001{bottom:668.187067pt;}
.y1b6_c00001{bottom:668.267067pt;}
.y3a5_c00001{bottom:668.667067pt;}
.y5a1_c00001{bottom:668.987067pt;}
.y72d_c00001{bottom:669.627067pt;}
.y44c_c00001{bottom:669.867067pt;}
.y928_c00001{bottom:670.187067pt;}
.y230_c00001{bottom:670.347067pt;}
.y5d4_c00001{bottom:670.667067pt;}
.y8a5_c00001{bottom:670.907067pt;}
.y48f_c00001{bottom:671.067067pt;}
.y58a_c00001{bottom:671.307067pt;}
.y142_c00001{bottom:671.547067pt;}
.y10d_c00001{bottom:672.267067pt;}
.y780_c00001{bottom:672.347067pt;}
.y95c_c00001{bottom:673.307067pt;}
.y197_c00001{bottom:673.707067pt;}
.y7b9_c00001{bottom:673.867067pt;}
.ya1_c00001{bottom:673.867200pt;}
.y378_c00001{bottom:674.187067pt;}
.y47f_c00001{bottom:674.667067pt;}
.y368_c00001{bottom:675.147067pt;}
.y5bc_c00001{bottom:675.307067pt;}
.y2ed_c00001{bottom:676.507067pt;}
.y4ce_c00001{bottom:676.667067pt;}
.y8b4_c00001{bottom:676.827067pt;}
.y849_c00001{bottom:677.227067pt;}
.y522_c00001{bottom:677.947067pt;}
.y3f7_c00001{bottom:680.107067pt;}
.y11_c00001{bottom:680.507067pt;}
.y3e9_c00001{bottom:680.667067pt;}
.y161_c00001{bottom:681.867067pt;}
.yf2_c00001{bottom:682.347067pt;}
.y96b_c00001{bottom:682.587067pt;}
.y87b_c00001{bottom:682.907067pt;}
.yd9e_c00001{bottom:682.987200pt;}
.y50_c00001{bottom:683.547067pt;}
.y2ad_c00001{bottom:684.187067pt;}
.y1d0_c00001{bottom:684.347067pt;}
.y745_c00001{bottom:684.667067pt;}
.yd7c_c00001{bottom:684.827067pt;}
.yd5_c00001{bottom:684.987200pt;}
.y4bb_c00001{bottom:685.547067pt;}
.y8c3_c00001{bottom:686.267067pt;}
.y45f_c00001{bottom:686.667067pt;}
.yd4e_c00001{bottom:687.467067pt;}
.y93c_c00001{bottom:687.627067pt;}
.y72f_c00001{bottom:689.627067pt;}
.y2cf_c00001{bottom:690.027067pt;}
.y88e_c00001{bottom:690.747067pt;}
.y41c_c00001{bottom:690.907067pt;}
.yd3c_c00001{bottom:690.987200pt;}
.y125_c00001{bottom:691.067067pt;}
.y1e7_c00001{bottom:691.227067pt;}
.y33b_c00001{bottom:691.307067pt;}
.y927_c00001{bottom:691.467067pt;}
.y5a0_c00001{bottom:691.627067pt;}
.y6a_c00001{bottom:691.707067pt;}
.y5d3_c00001{bottom:691.947067pt;}
.y35_c00001{bottom:692.107067pt;}
.y17f_c00001{bottom:692.187067pt;}
.y44b_c00001{bottom:692.507067pt;}
.y521_c00001{bottom:692.667067pt;}
.yd6e_c00001{bottom:693.147200pt;}
.y8a3_c00001{bottom:693.627067pt;}
.y77d_c00001{bottom:693.707067pt;}
.y83_c00001{bottom:693.867067pt;}
.y589_c00001{bottom:694.027067pt;}
.y81b_c00001{bottom:694.187067pt;}
.y8a1_c00001{bottom:694.587067pt;}
.y287_c00001{bottom:695.707067pt;}
.y1b5_c00001{bottom:695.867067pt;}
.y95b_c00001{bottom:696.027067pt;}
.ybb_c00001{bottom:696.107067pt;}
.y7b8_c00001{bottom:696.827067pt;}
.y47e_c00001{bottom:697.307067pt;}
.y2ec_c00001{bottom:697.707067pt;}
.y48e_c00001{bottom:697.787067pt;}
.y22f_c00001{bottom:697.947067pt;}
.y141_c00001{bottom:699.067067pt;}
.y4cd_c00001{bottom:699.307067pt;}
.y8b3_c00001{bottom:699.467067pt;}
.y848_c00001{bottom:699.867067pt;}
.yd56_c00001{bottom:700.027067pt;}
.y196_c00001{bottom:701.307067pt;}
.y96a_c00001{bottom:703.787067pt;}
.y45e_c00001{bottom:705.067067pt;}
.y10c_c00001{bottom:705.867067pt;}
.yd5c_c00001{bottom:706.187067pt;}
.y87a_c00001{bottom:706.267067pt;}
.y4ba_c00001{bottom:706.907067pt;}
.ya0_c00001{bottom:707.147200pt;}
.y744_c00001{bottom:707.387067pt;}
.yd7b_c00001{bottom:707.467067pt;}
.y879_c00001{bottom:707.627067pt;}
.y10_c00001{bottom:708.427067pt;}
.y160_c00001{bottom:709.467067pt;}
.ydb8_c00001{bottom:709.787067pt;}
.yd4d_c00001{bottom:710.187067pt;}
.yd9d_c00001{bottom:710.427067pt;}
.y93b_c00001{bottom:710.987200pt;}
.y4f_c00001{bottom:711.147200pt;}
.y2ac_c00001{bottom:711.787067pt;}
.y1cf_c00001{bottom:711.947067pt;}
.y72c_c00001{bottom:712.267067pt;}
.y8c2_c00001{bottom:712.907067pt;}
.yd4_c00001{bottom:712.987200pt;}
.y88d_c00001{bottom:713.387067pt;}
.y41b_c00001{bottom:713.627067pt;}
.y926_c00001{bottom:714.187067pt;}
.y951_c00001{bottom:714.747067pt;}
.y8a4_c00001{bottom:714.907067pt;}
.y44a_c00001{bottom:715.227067pt;}
.yf1_c00001{bottom:715.947067pt;}
.y950_c00001{bottom:716.027067pt;}
.y588_c00001{bottom:716.667067pt;}
.y81a_c00001{bottom:716.907067pt;}
.y33a_c00001{bottom:716.987200pt;}
.y47d_c00001{bottom:718.667067pt;}
.y1e6_c00001{bottom:718.827067pt;}
.y85f_c00001{bottom:718.987200pt;}
.y2eb_c00001{bottom:719.067067pt;}
.yd6d_c00001{bottom:719.147200pt;}
.y5bb_c00001{bottom:719.307067pt;}
.y7b7_c00001{bottom:719.467067pt;}
.y69_c00001{bottom:719.627067pt;}
.y17e_c00001{bottom:719.787067pt;}
.y34_c00001{bottom:719.947067pt;}
.y4cc_c00001{bottom:720.667067pt;}
.y847_c00001{bottom:721.227067pt;}
.y8b2_c00001{bottom:722.187067pt;}
.yd55_c00001{bottom:722.667067pt;}
.y1b4_c00001{bottom:723.467067pt;}
.y82_c00001{bottom:723.627067pt;}
.yba_c00001{bottom:724.027067pt;}
.y48d_c00001{bottom:724.427067pt;}
.y124_c00001{bottom:724.667067pt;}
.yd3b_c00001{bottom:724.987200pt;}
.y969_c00001{bottom:725.227067pt;}
.y22e_c00001{bottom:725.547067pt;}
.y5d2_c00001{bottom:727.627067pt;}
.ydce_c00001{bottom:728.587067pt;}
.yd5b_c00001{bottom:728.827200pt;}
.y195_c00001{bottom:728.907067pt;}
.y878_c00001{bottom:728.987200pt;}
.y140_c00001{bottom:729.227067pt;}
.y578_c00001{bottom:729.387067pt;}
.y4b9_c00001{bottom:729.547067pt;}
.yd7a_c00001{bottom:730.187067pt;}
.y743_c00001{bottom:731.067200pt;}
.yd4c_c00001{bottom:731.467067pt;}
.y93a_c00001{bottom:733.707067pt;}
.y9f_c00001{bottom:734.907067pt;}
.y5d0_c00001{bottom:734.987200pt;}
.y59f_c00001{bottom:735.627067pt;}
.y72a_c00001{bottom:735.947067pt;}
.y88c_c00001{bottom:736.027067pt;}
.y8a2_c00001{bottom:736.267067pt;}
.yf_c00001{bottom:736.347067pt;}
.yd9c_c00001{bottom:736.587067pt;}
.y925_c00001{bottom:736.827200pt;}
.y15f_c00001{bottom:737.067067pt;}
.y77c_c00001{bottom:737.147200pt;}
.y94f_c00001{bottom:737.387067pt;}
.y587_c00001{bottom:738.027067pt;}
.y449_c00001{bottom:738.107067pt;}
.y819_c00001{bottom:738.187067pt;}
.y4e_c00001{bottom:739.067067pt;}
.y755_c00001{bottom:739.147200pt;}
.y2ab_c00001{bottom:739.387067pt;}
.y1ce_c00001{bottom:739.547067pt;}
.y8c1_c00001{bottom:739.627067pt;}
.y7b6_c00001{bottom:740.827200pt;}
.yd3_c00001{bottom:740.907067pt;}
.y10b_c00001{bottom:741.307067pt;}
.y85e_c00001{bottom:741.627067pt;}
.y45d_c00001{bottom:741.867067pt;}
.y339_c00001{bottom:742.667067pt;}
.y5ba_c00001{bottom:743.067067pt;}
.y846_c00001{bottom:744.107067pt;}
.y4df_c00001{bottom:744.587067pt;}
.y8b1_c00001{bottom:744.827200pt;}
.yd6c_c00001{bottom:745.147200pt;}
.yd54_c00001{bottom:745.307067pt;}
.y8af_c00001{bottom:745.787067pt;}
.y24d_c00001{bottom:746.427067pt;}
.y17d_c00001{bottom:747.387067pt;}
.y68_c00001{bottom:747.547067pt;}
.y33_c00001{bottom:747.867067pt;}
.y2ca_c00001{bottom:748.347067pt;}
.y1e5_c00001{bottom:748.587067pt;}
.yf0_c00001{bottom:749.547067pt;}
.y2c2_c00001{bottom:750.907067pt;}
.y1b3_c00001{bottom:751.067067pt;}
.y26a_c00001{bottom:751.227067pt;}
.y82e_c00001{bottom:751.467067pt;}
.y876_c00001{bottom:751.627067pt;}
.yb9_c00001{bottom:751.947067pt;}
.y577_c00001{bottom:752.027067pt;}
.y968_c00001{bottom:752.347067pt;}
.y874_c00001{bottom:752.587067pt;}
.y22d_c00001{bottom:753.067067pt;}
.y76b_c00001{bottom:753.547067pt;}
.y81_c00001{bottom:754.027067pt;}
.yd4b_c00001{bottom:754.187067pt;}
.y4cb_c00001{bottom:754.827200pt;}
.y939_c00001{bottom:754.987200pt;}
.y41a_c00001{bottom:756.267067pt;}
.y194_c00001{bottom:756.507067pt;}
.y2e9_c00001{bottom:757.787067pt;}
.y123_c00001{bottom:758.267067pt;}
.y77b_c00001{bottom:758.507067pt;}
.y8a0_c00001{bottom:758.587067pt;}
.y88b_c00001{bottom:758.747067pt;}
.y13f_c00001{bottom:759.307067pt;}
.y924_c00001{bottom:759.467067pt;}
.y94e_c00001{bottom:760.027067pt;}
.y45c_c00001{bottom:760.267067pt;}
.yd3a_c00001{bottom:760.347067pt;}
.y448_c00001{bottom:760.827200pt;}
.y94d_c00001{bottom:761.067067pt;}
.y586_c00001{bottom:761.707067pt;}
.y818_c00001{bottom:761.867067pt;}
.y59c_c00001{bottom:762.427067pt;}
.y754_c00001{bottom:762.507067pt;}
.y47c_c00001{bottom:762.667200pt;}
.y9e_c00001{bottom:762.827200pt;}
.y5d1_c00001{bottom:763.307067pt;}
.y7b5_c00001{bottom:763.467067pt;}
.ye_c00001{bottom:763.947067pt;}
.y95a_c00001{bottom:764.027067pt;}
.y85d_c00001{bottom:764.267067pt;}
.y15e_c00001{bottom:764.667067pt;}
.y5b9_c00001{bottom:765.867067pt;}
.y8b0_c00001{bottom:766.187067pt;}
.y8c0_c00001{bottom:766.267067pt;}
.y2aa_c00001{bottom:766.987067pt;}
.y4d_c00001{bottom:766.987200pt;}
.y1cd_c00001{bottom:767.147067pt;}
.y338_c00001{bottom:767.227067pt;}
.y845_c00001{bottom:768.027067pt;}
.yd2_c00001{bottom:768.827200pt;}
.y10a_c00001{bottom:768.907067pt;}
.y7b1_c00001{bottom:769.307067pt;}
.yd6b_c00001{bottom:771.147200pt;}
.y4b8_c00001{bottom:772.267067pt;}
.y877_c00001{bottom:772.987200pt;}
.y576_c00001{bottom:773.387067pt;}
.ydcd_c00001{bottom:773.867067pt;}
.y24c_c00001{bottom:774.027067pt;}
.y82d_c00001{bottom:774.187067pt;}
.y6df_c00001{bottom:774.587067pt;}
.y17c_c00001{bottom:774.987067pt;}
.y67_c00001{bottom:775.467067pt;}
.y32_c00001{bottom:775.787067pt;}
.yd4a_c00001{bottom:776.827200pt;}
.y76a_c00001{bottom:776.987200pt;}
.y742_c00001{bottom:777.547067pt;}
.y5cf_c00001{bottom:777.627067pt;}
.y938_c00001{bottom:777.707067pt;}
.y48c_c00001{bottom:777.787067pt;}
.y2b8_c00001{bottom:778.507067pt;}
.y1e4_c00001{bottom:778.667067pt;}
.y1b2_c00001{bottom:778.667200pt;}
.y269_c00001{bottom:778.827067pt;}
.y419_c00001{bottom:779.547067pt;}
.y89f_c00001{bottom:779.707067pt;}
.yb8_c00001{bottom:779.947067pt;}
.y70a_c00001{bottom:780.027067pt;}
.yd9b_c00001{bottom:780.587067pt;}
.y22c_c00001{bottom:780.667067pt;}
.y59e_c00001{bottom:781.067067pt;}
.y888_c00001{bottom:781.387067pt;}
.y80_c00001{bottom:781.547067pt;}
.ydd4_c00001{bottom:781.787067pt;}
.y921_c00001{bottom:782.187067pt;}
.y886_c00001{bottom:782.347067pt;}
.ydb7_c00001{bottom:782.667200pt;}
.yef_c00001{bottom:783.147200pt;}
.y447_c00001{bottom:783.467067pt;}
.y59b_c00001{bottom:783.787067pt;}
.y193_c00001{bottom:784.107067pt;}
.y585_c00001{bottom:784.507067pt;}
.y817_c00001{bottom:784.587067pt;}
.y7f3_c00001{bottom:784.747067pt;}
.y753_c00001{bottom:785.227067pt;}
.y353_c00001{bottom:785.307067pt;}
.y122_c00001{bottom:785.867067pt;}
.y7b4_c00001{bottom:786.427067pt;}
.y959_c00001{bottom:786.667200pt;}
.y85c_c00001{bottom:786.987200pt;}
.y4ca_c00001{bottom:787.547067pt;}
.y958_c00001{bottom:787.627067pt;}
.y8ae_c00001{bottom:788.427067pt;}
.y4de_c00001{bottom:788.587067pt;}
.yd53_c00001{bottom:789.307067pt;}
.y13e_c00001{bottom:789.467067pt;}
.y5b8_c00001{bottom:789.707067pt;}
.y582_c00001{bottom:790.587067pt;}
.y7b0_c00001{bottom:790.667200pt;}
.y9d_c00001{bottom:790.747067pt;}
.yd_c00001{bottom:791.947067pt;}
.y2e8_c00001{bottom:792.027067pt;}
.y15d_c00001{bottom:792.187067pt;}
.y337_c00001{bottom:792.907067pt;}
.y844_c00001{bottom:793.307067pt;}
.y5b6_c00001{bottom:793.467067pt;}
.y875_c00001{bottom:794.267067pt;}
.y213_c00001{bottom:794.587067pt;}
.y1cc_c00001{bottom:794.747067pt;}
.y4b7_c00001{bottom:795.067067pt;}
.ydcc_c00001{bottom:795.227067pt;}
.y575_c00001{bottom:796.027067pt;}
.y4c_c00001{bottom:796.747067pt;}
.y82c_c00001{bottom:796.827067pt;}
.y45b_c00001{bottom:797.067067pt;}
.y6de_c00001{bottom:798.347067pt;}
.y72b_c00001{bottom:798.907067pt;}
.y5ce_c00001{bottom:798.987067pt;}
.y336_c00001{bottom:799.467067pt;}
.y769_c00001{bottom:799.627067pt;}
.y77a_c00001{bottom:799.787067pt;}
.y937_c00001{bottom:801.067067pt;}
.y89e_c00001{bottom:801.227067pt;}
.y741_c00001{bottom:801.307067pt;}
.y24b_c00001{bottom:801.627067pt;}
.y109_c00001{bottom:802.187067pt;}
.y17b_c00001{bottom:802.587067pt;}
.y709_c00001{bottom:802.667067pt;}
.y889_c00001{bottom:802.747067pt;}
.yd9a_c00001{bottom:803.307067pt;}
.y66_c00001{bottom:803.387067pt;}
.y922_c00001{bottom:803.467067pt;}
.y31_c00001{bottom:803.707067pt;}
.y59d_c00001{bottom:803.787067pt;}
.y6ae_c00001{bottom:804.027067pt;}
.yd6a_c00001{bottom:804.107067pt;}
.y48b_c00001{bottom:804.427067pt;}
.y446_c00001{bottom:804.827067pt;}
.y59a_c00001{bottom:805.067067pt;}
.ydb6_c00001{bottom:805.307067pt;}
.y286_c00001{bottom:806.107067pt;}
.y1b1_c00001{bottom:806.267067pt;}
.y268_c00001{bottom:806.427067pt;}
.y752_c00001{bottom:806.507067pt;}
.y47b_c00001{bottom:806.667067pt;}
.y7f2_c00001{bottom:807.387067pt;}
.yb7_c00001{bottom:807.867067pt;}
.y352_c00001{bottom:808.027067pt;}
.y584_c00001{bottom:808.187067pt;}
.y22b_c00001{bottom:808.267067pt;}
.y7b3_c00001{bottom:809.307067pt;}
.y85b_c00001{bottom:809.627067pt;}
.y88a_c00001{bottom:810.267067pt;}
.y192_c00001{bottom:811.707067pt;}
.y581_c00001{bottom:811.947067pt;}
.y7af_c00001{bottom:812.027067pt;}
.y4dd_c00001{bottom:812.667067pt;}
.y5b7_c00001{bottom:813.467067pt;}
.y843_c00001{bottom:814.587067pt;}
.y5b5_c00001{bottom:814.827067pt;}
.y45a_c00001{bottom:815.467067pt;}
.y873_c00001{bottom:816.587067pt;}
.yd37_c00001{bottom:816.987067pt;}
.y13d_c00001{bottom:817.067067pt;}
.y4b6_c00001{bottom:817.787067pt;}
.ydcb_c00001{bottom:817.867067pt;}
.yd36_c00001{bottom:817.947067pt;}
.yee_c00001{bottom:818.587067pt;}
.y9c_c00001{bottom:818.667067pt;}
.y121_c00001{bottom:819.467067pt;}
.y559_c00001{bottom:819.547067pt;}
.y8bf_c00001{bottom:819.627067pt;}
.yc_c00001{bottom:819.867067pt;}
.y7f_c00001{bottom:819.947067pt;}
.y89d_c00001{bottom:820.025035pt;}
.y335_c00001{bottom:820.747067pt;}
.yd49_c00001{bottom:820.827067pt;}
.y6dd_c00001{bottom:820.987067pt;}
.y729_c00001{bottom:821.227067pt;}
.y5cc_c00001{bottom:821.627067pt;}
.y4c9_c00001{bottom:821.707067pt;}
.y212_c00001{bottom:822.187067pt;}
.y15c_c00001{bottom:822.347067pt;}
.y5c9_c00001{bottom:822.587067pt;}
.y768_c00001{bottom:823.067067pt;}
.yd47_c00001{bottom:823.467067pt;}
.y418_c00001{bottom:823.547067pt;}
.y936_c00001{bottom:823.707067pt;}
.y887_c00001{bottom:824.027067pt;}
.yd99_c00001{bottom:824.587067pt;}
.y923_c00001{bottom:824.827067pt;}
.y94c_c00001{bottom:824.987067pt;}
.y740_c00001{bottom:825.067067pt;}
.y708_c00001{bottom:825.307067pt;}
.yd69_c00001{bottom:825.467067pt;}
.y2e7_c00001{bottom:826.267067pt;}
.y73f_c00001{bottom:826.347067pt;}
.y599_c00001{bottom:826.427067pt;}
.yd1_c00001{bottom:826.507067pt;}
.y6ad_c00001{bottom:826.667067pt;}
.y779_c00001{bottom:827.467067pt;}
.y445_c00001{bottom:827.707067pt;}
.y7f1_c00001{bottom:828.747067pt;}
.y24a_c00001{bottom:829.227067pt;}
.y47a_c00001{bottom:829.307067pt;}
.y751_c00001{bottom:829.947067pt;}
.y17a_c00001{bottom:830.187067pt;}
.y957_c00001{bottom:830.267067pt;}
.y351_c00001{bottom:830.667067pt;}
.y48a_c00001{bottom:831.067067pt;}
.y65_c00001{bottom:831.307067pt;}
.y30_c00001{bottom:831.707067pt;}
.y583_c00001{bottom:831.947067pt;}
.y7b2_c00001{bottom:832.027067pt;}
.y85a_c00001{bottom:832.267067pt;}
.y6c6_c00001{bottom:832.507067pt;}
.y580_c00001{bottom:833.307067pt;}
.y2b7_c00001{bottom:833.707067pt;}
.ydd3_c00001{bottom:833.787067pt;}
.y1b0_c00001{bottom:833.867067pt;}
.y267_c00001{bottom:834.027067pt;}
.y4b_c00001{bottom:834.907067pt;}
.y108_c00001{bottom:835.627067pt;}
.y22a_c00001{bottom:835.867067pt;}
.y5b4_c00001{bottom:836.107067pt;}
.y4dc_c00001{bottom:836.667067pt;}
.y841_c00001{bottom:837.307067pt;}
.yb6_c00001{bottom:837.627067pt;}
.y872_c00001{bottom:837.787067pt;}
.yde5_c00001{bottom:838.187067pt;}
.y83f_c00001{bottom:838.267067pt;}
.y4b5_c00001{bottom:839.067067pt;}
.y574_c00001{bottom:840.027067pt;}
.ydca_c00001{bottom:840.587067pt;}
.yd79_c00001{bottom:840.827067pt;}
.ydc9_c00001{bottom:841.867067pt;}
.y334_c00001{bottom:842.107067pt;}
.y558_c00001{bottom:842.187067pt;}
.y6dc_c00001{bottom:842.347067pt;}
.y728_c00001{bottom:842.427067pt;}
.y5cb_c00001{bottom:842.987067pt;}
.yd48_c00001{bottom:843.467067pt;}
.y13c_c00001{bottom:844.587067pt;}
.yd46_c00001{bottom:844.827067pt;}
.y417_c00001{bottom:846.187067pt;}
.y8be_c00001{bottom:846.267067pt;}
.y885_c00001{bottom:846.347067pt;}
.y767_c00001{bottom:846.427067pt;}
.y9b_c00001{bottom:846.587067pt;}
.y89c_c00001{bottom:846.665323pt;}
.yd95_c00001{bottom:847.307067pt;}
.y934_c00001{bottom:847.387067pt;}
.y73e_c00001{bottom:847.707067pt;}
.yb_c00001{bottom:847.787067pt;}
.y707_c00001{bottom:848.027067pt;}
.yd67_c00001{bottom:848.107067pt;}
.yd93_c00001{bottom:848.267067pt;}
.y596_c00001{bottom:849.067067pt;}
.yd65_c00001{bottom:849.147200pt;}
.y6ac_c00001{bottom:849.307067pt;}
.y28e_c00001{bottom:849.787067pt;}
.y191_c00001{bottom:849.867067pt;}
.y15b_c00001{bottom:849.947067pt;}
.y594_c00001{bottom:850.107067pt;}
.y444_c00001{bottom:850.427067pt;}
.y479_c00001{bottom:850.667067pt;}
.y7f0_c00001{bottom:851.387067pt;}
.y956_c00001{bottom:851.467067pt;}
.yed_c00001{bottom:851.867067pt;}
.yd82_c00001{bottom:852.027067pt;}
.y459_c00001{bottom:852.267067pt;}
.y120_c00001{bottom:853.067067pt;}
.y350_c00001{bottom:853.307067pt;}
.yd0_c00001{bottom:854.107067pt;}
.y627_c00001{bottom:854.427067pt;}
.y57f_c00001{bottom:854.587067pt;}
.y34f_c00001{bottom:854.667067pt;}
.y858_c00001{bottom:854.987067pt;}
.y778_c00001{bottom:855.067067pt;}
.y6c5_c00001{bottom:855.147200pt;}
.y4c8_c00001{bottom:855.787067pt;}
.y856_c00001{bottom:855.947067pt;}
.yd52_c00001{bottom:856.027067pt;}
.y638_c00001{bottom:856.507067pt;}
.y249_c00001{bottom:856.827067pt;}
.yd51_c00001{bottom:856.987067pt;}
.y179_c00001{bottom:857.707067pt;}
.y489_c00001{bottom:857.787067pt;}
.y842_c00001{bottom:858.587067pt;}
.y5b2_c00001{bottom:858.827067pt;}
.y871_c00001{bottom:859.067067pt;}
.y2f_c00001{bottom:859.307067pt;}
.y4db_c00001{bottom:859.387067pt;}
.yd39_c00001{bottom:859.627067pt;}
.y5b0_c00001{bottom:859.787067pt;}
.y2e6_c00001{bottom:860.507067pt;}
.y805_c00001{bottom:860.827067pt;}
.y2b6_c00001{bottom:861.307067pt;}
.y1af_c00001{bottom:861.467067pt;}
.y266_c00001{bottom:861.627067pt;}
.y4b4_c00001{bottom:861.787067pt;}
.y573_c00001{bottom:862.667067pt;}
.ydc8_c00001{bottom:863.227067pt;}
.yd78_c00001{bottom:863.467067pt;}
.y5cd_c00001{bottom:864.267067pt;}
.y332_c00001{bottom:864.747067pt;}
.y82b_c00001{bottom:864.827067pt;}
.y557_c00001{bottom:865.467067pt;}
.y330_c00001{bottom:865.787067pt;}
.y6db_c00001{bottom:866.107067pt;}
.yd45_c00001{bottom:866.187067pt;}
.y416_c00001{bottom:867.547067pt;}
.y935_c00001{bottom:867.707067pt;}
.y60d_c00001{bottom:868.267067pt;}
.y920_c00001{bottom:868.427067pt;}
.yd96_c00001{bottom:868.587067pt;}
.y766_c00001{bottom:869.067067pt;}
.y229_c00001{bottom:869.147067pt;}
.y107_c00001{bottom:869.227067pt;}
.yd68_c00001{bottom:869.467067pt;}
.y73c_c00001{bottom:870.347067pt;}
.y597_c00001{bottom:870.427067pt;}
.y458_c00001{bottom:870.667067pt;}
.y73b_c00001{bottom:871.387067pt;}
.y443_c00001{bottom:871.707067pt;}
.ydb5_c00001{bottom:872.027067pt;}
.y7ef_c00001{bottom:872.747067pt;}
.y8bd_c00001{bottom:872.907067pt;}
.y4a_c00001{bottom:873.227067pt;}
.y89b_c00001{bottom:873.305611pt;}
.y478_c00001{bottom:873.307067pt;}
.y9a_c00001{bottom:874.507067pt;}
.yd81_c00001{bottom:874.667067pt;}
.y13b_c00001{bottom:874.747067pt;}
.ya_c00001{bottom:875.707067pt;}
.yb5_c00001{bottom:875.787067pt;}
.y34e_c00001{bottom:876.027067pt;}
.y859_c00001{bottom:876.267067pt;}
.y6c4_c00001{bottom:876.507067pt;}
.y57d_c00001{bottom:877.307067pt;}
.y2a9_c00001{bottom:877.387067pt;}
.y15a_c00001{bottom:877.547067pt;}
.y57b_c00001{bottom:878.267067pt;}
.y7ae_c00001{bottom:878.347067pt;}
.y626_c00001{bottom:878.427067pt;}
.y840_c00001{bottom:879.947067pt;}
.y5b3_c00001{bottom:880.107067pt;}
.y8fc_c00001{bottom:880.427067pt;}
.y644_c00001{bottom:880.507067pt;}
.y870_c00001{bottom:880.587067pt;}
.y4da_c00001{bottom:880.667067pt;}
.yd38_c00001{bottom:880.987067pt;}
.ydd2_c00001{bottom:881.067067pt;}
.y6ee_c00001{bottom:881.787067pt;}
.yde4_c00001{bottom:882.187067pt;}
.y777_c00001{bottom:882.667067pt;}
.y804_c00001{bottom:883.467067pt;}
.y727_c00001{bottom:883.707067pt;}
.y248_c00001{bottom:884.427067pt;}
.y4b3_c00001{bottom:884.667067pt;}
.yec_c00001{bottom:885.307067pt;}
.y572_c00001{bottom:885.387067pt;}
.ydc4_c00001{bottom:885.867067pt;}
.y333_c00001{bottom:886.107067pt;}
.y719_c00001{bottom:886.187067pt;}
.y178_c00001{bottom:886.507067pt;}
.y11f_c00001{bottom:886.667067pt;}
.ydc2_c00001{bottom:886.907067pt;}
.y2e_c00001{bottom:887.227067pt;}
.ycf_c00001{bottom:887.387067pt;}
.y82a_c00001{bottom:887.467067pt;}
.y2e5_c00001{bottom:888.187067pt;}
.y4c7_c00001{bottom:888.507067pt;}
.y5ca_c00001{bottom:888.667067pt;}
.y556_c00001{bottom:888.747067pt;}
.yd44_c00001{bottom:888.827067pt;}
.y20f_c00001{bottom:888.907067pt;}
.y1ae_c00001{bottom:889.067067pt;}
.y56f_c00001{bottom:889.387067pt;}
.y94b_c00001{bottom:889.388275pt;}
.y91f_c00001{bottom:889.627067pt;}
.y6da_c00001{bottom:889.787067pt;}
.yd98_c00001{bottom:889.947067pt;}
.y933_c00001{bottom:890.027067pt;}
.y415_c00001{bottom:890.827067pt;}
.y265_c00001{bottom:891.067067pt;}
.y73d_c00001{bottom:891.707067pt;}
.y598_c00001{bottom:891.787067pt;}
.y60c_c00001{bottom:892.027067pt;}
.y764_c00001{bottom:892.747067pt;}
.y6ab_c00001{bottom:893.307067pt;}
.y442_c00001{bottom:894.667067pt;}
.y7ee_c00001{bottom:896.027067pt;}
.y228_c00001{bottom:896.747067pt;}
.y7ed_c00001{bottom:897.307067pt;}
.y857_c00001{bottom:897.627067pt;}
.y57e_c00001{bottom:898.587067pt;}
.y34c_c00001{bottom:898.667067pt;}
.y86f_c00001{bottom:899.307851pt;}
.y34a_c00001{bottom:899.627067pt;}
.y4c6_c00001{bottom:899.947067pt;}
.y89a_c00001{bottom:900.026051pt;}
.y6c3_c00001{bottom:900.267067pt;}
.y5b1_c00001{bottom:901.467067pt;}
.y625_c00001{bottom:901.867067pt;}
.y83e_c00001{bottom:902.267067pt;}
.y106_c00001{bottom:902.827067pt;}
.y8fb_c00001{bottom:903.067067pt;}
.y9_c00001{bottom:903.627067pt;}
.y49_c00001{bottom:903.707067pt;}
.y643_c00001{bottom:903.867067pt;}
.y13a_c00001{bottom:904.427067pt;}
.y4d9_c00001{bottom:904.747067pt;}
.yde3_c00001{bottom:904.827067pt;}
.y2a8_c00001{bottom:904.987067pt;}
.y159_c00001{bottom:905.147067pt;}
.y7d0_c00001{bottom:905.467067pt;}
.y803_c00001{bottom:906.187067pt;}
.ydd1_c00001{bottom:906.987067pt;}
.ydc5_c00001{bottom:907.227067pt;}
.y457_c00001{bottom:907.387067pt;}
.y4b2_c00001{bottom:907.467067pt;}
.y571_c00001{bottom:908.027067pt;}
.y4b1_c00001{bottom:908.827067pt;}
.y99_c00001{bottom:909.947067pt;}
.y828_c00001{bottom:910.187067pt;}
.y331_c00001{bottom:910.267067pt;}
.y56e_c00001{bottom:910.667067pt;}
.yd2e_c00001{bottom:910.747067pt;}
.y94a_c00001{bottom:910.828003pt;}
.y488_c00001{bottom:911.067067pt;}
.y827_c00001{bottom:911.147067pt;}
.y932_c00001{bottom:911.227067pt;}
.yd97_c00001{bottom:911.307067pt;}
.y555_c00001{bottom:911.387067pt;}
.y91e_c00001{bottom:911.466051pt;}
.ybaf_c00001{bottom:911.627067pt;}
.y247_c00001{bottom:912.027067pt;}
.yd66_c00001{bottom:912.107067pt;}
.y681_c00001{bottom:912.507067pt;}
.y595_c00001{bottom:913.067067pt;}
.y414_c00001{bottom:913.467067pt;}
.y177_c00001{bottom:914.107067pt;}
.y60b_c00001{bottom:914.907067pt;}
.y2d_c00001{bottom:915.147067pt;}
.y6aa_c00001{bottom:916.027067pt;}
.y20e_c00001{bottom:916.427067pt;}
.y1ad_c00001{bottom:916.587067pt;}
.y441_c00001{bottom:917.307067pt;}
.y706_c00001{bottom:918.667067pt;}
.yeb_c00001{bottom:918.907067pt;}
.y57c_c00001{bottom:919.947067pt;}
.y34d_c00001{bottom:920.027067pt;}
.y11e_c00001{bottom:920.267067pt;}
.y776_c00001{bottom:920.827067pt;}
.y86e_c00001{bottom:920.827731pt;}
.y4c5_c00001{bottom:921.307067pt;}
.y726_c00001{bottom:921.947067pt;}
.y5c8_c00001{bottom:922.427067pt;}
.y624_c00001{bottom:923.147067pt;}
.y83d_c00001{bottom:923.627067pt;}
.y5af_c00001{bottom:923.787067pt;}
.y6c2_c00001{bottom:923.947067pt;}
.y227_c00001{bottom:924.347067pt;}
.y8fa_c00001{bottom:924.427067pt;}
.y456_c00001{bottom:925.787067pt;}
.y8bc_c00001{bottom:926.267067pt;}
.y642_c00001{bottom:926.587067pt;}
.y899_c00001{bottom:926.666339pt;}
.y264_c00001{bottom:926.907067pt;}
.y6ed_c00001{bottom:927.467067pt;}
.y2e4_c00001{bottom:927.547067pt;}
.ydc7_c00001{bottom:928.587067pt;}
.y4d8_c00001{bottom:928.827067pt;}
.yd2d_c00001{bottom:929.067067pt;}
.y4b0_c00001{bottom:930.187067pt;}
.y570_c00001{bottom:930.667067pt;}
.y829_c00001{bottom:931.467067pt;}
.y8_c00001{bottom:931.547067pt;}
.ydd0_c00001{bottom:931.867067pt;}
.y56d_c00001{bottom:932.027067pt;}
.y949_c00001{bottom:932.267731pt;}
.y2a7_c00001{bottom:932.587067pt;}
.y158_c00001{bottom:932.747067pt;}
.y32f_c00001{bottom:933.467067pt;}
.y553_c00001{bottom:934.107067pt;}
.y765_c00001{bottom:934.427067pt;}
.y3bb_c00001{bottom:935.067067pt;}
.y73a_c00001{bottom:935.307067pt;}
.y593_c00001{bottom:935.387067pt;}
.yd35_c00001{bottom:935.867067pt;}
.y60a_c00001{bottom:936.187067pt;}
.y6d9_c00001{bottom:936.267067pt;}
.y105_c00001{bottom:936.427067pt;}
.y413_c00001{bottom:936.747067pt;}
.y909_c00001{bottom:937.307067pt;}
.y487_c00001{bottom:937.787067pt;}
.y91d_c00001{bottom:938.186491pt;}
.y440_c00001{bottom:938.667067pt;}
.y246_c00001{bottom:939.627067pt;}
.y6a9_c00001{bottom:940.027067pt;}
.y855_c00001{bottom:941.067067pt;}
.y34b_c00001{bottom:941.307067pt;}
.y176_c00001{bottom:941.707067pt;}
.y57a_c00001{bottom:942.267067pt;}
.y86d_c00001{bottom:942.267459pt;}
.y2c_c00001{bottom:943.067067pt;}
.y98_c00001{bottom:943.227067pt;}
.yd94_c00001{bottom:943.627067pt;}
.y4c3_c00001{bottom:943.947067pt;}
.y20d_c00001{bottom:944.027067pt;}
.y1ac_c00001{bottom:944.187067pt;}
.y83c_c00001{bottom:944.907067pt;}
.y5ae_c00001{bottom:945.067067pt;}
.y623_c00001{bottom:946.187067pt;}
.y6c1_c00001{bottom:946.667067pt;}
.y8f9_c00001{bottom:947.947067pt;}
.yde2_c00001{bottom:948.827067pt;}
.ydc6_c00001{bottom:949.867067pt;}
.y641_c00001{bottom:949.947067pt;}
.y697_c00001{bottom:950.187067pt;}
.y931_c00001{bottom:951.147067pt;}
.y4d7_c00001{bottom:951.467067pt;}
.yea_c00001{bottom:952.507067pt;}
.y4ae_c00001{bottom:952.827067pt;}
.y8bb_c00001{bottom:952.907067pt;}
.y898_c00001{bottom:953.306627pt;}
.y56c_c00001{bottom:953.387067pt;}
.y948_c00001{bottom:953.787611pt;}
.y11d_c00001{bottom:953.867067pt;}
.y554_c00001{bottom:955.387067pt;}
.yd2c_c00001{bottom:955.787067pt;}
.y592_c00001{bottom:956.587067pt;}
.y763_c00001{bottom:956.747067pt;}
.y32e_c00001{bottom:956.987067pt;}
.ydcf_c00001{bottom:957.787067pt;}
.y2e3_c00001{bottom:958.027067pt;}
.yb68_c00001{bottom:958.107067pt;}
.y680_c00001{bottom:958.907067pt;}
.y775_c00001{bottom:959.067067pt;}
.y7_c00001{bottom:959.467067pt;}
.y609_c00001{bottom:959.947067pt;}
.y412_c00001{bottom:960.027067pt;}
.y1fa_c00001{bottom:960.187067pt;}
.y725_c00001{bottom:960.267067pt;}
.y157_c00001{bottom:960.347067pt;}
.y43f_c00001{bottom:961.307067pt;}
.y455_c00001{bottom:962.587067pt;}
.y7ec_c00001{bottom:962.667067pt;}
.y579_c00001{bottom:963.467067pt;}
.y349_c00001{bottom:963.627067pt;}
.y86c_c00001{bottom:963.707187pt;}
.y104_c00001{bottom:964.027067pt;}
.y486_c00001{bottom:964.427067pt;}
.y226_c00001{bottom:964.507475pt;}
.y91c_c00001{bottom:964.826779pt;}
.y4c4_c00001{bottom:965.307067pt;}
.y5ad_c00001{bottom:966.427067pt;}
.yd34_c00001{bottom:966.827067pt;}
.y245_c00001{bottom:967.227067pt;}
.yd92_c00001{bottom:968.347067pt;}
.y175_c00001{bottom:969.227067pt;}
.y139_c00001{bottom:969.547067pt;}
.y622_c00001{bottom:970.187067pt;}
.y6c0_c00001{bottom:970.427067pt;}
.y2b_c00001{bottom:970.987067pt;}
.ydc3_c00001{bottom:971.227067pt;}
.y6ec_c00001{bottom:971.467067pt;}
.y20c_c00001{bottom:971.627067pt;}
.y1ab_c00001{bottom:971.787067pt;}
.y3ba_c00001{bottom:972.827067pt;}
.y640_c00001{bottom:973.387067pt;}
.y4ad_c00001{bottom:974.187067pt;}
.y826_c00001{bottom:975.147067pt;}
.y947_c00001{bottom:975.227339pt;}
.y56a_c00001{bottom:976.027067pt;}
.y552_c00001{bottom:976.747067pt;}
.y567_c00001{bottom:976.987067pt;}
.y591_c00001{bottom:977.867067pt;}
.y8ba_c00001{bottom:979.627067pt;}
.y897_c00001{bottom:980.027067pt;}
.y2e2_c00001{bottom:980.267067pt;}
.y454_c00001{bottom:980.987067pt;}
.y411_c00001{bottom:982.667067pt;}
.y705_c00001{bottom:984.027067pt;}
.y348_c00001{bottom:984.827067pt;}
.yd50_c00001{bottom:984.987067pt;}
.y83b_c00001{bottom:985.227067pt;}
.y774_c00001{bottom:986.747067pt;}
.y6_c00001{bottom:987.467067pt;}
.y1f9_c00001{bottom:987.787067pt;}
.ye9_c00001{bottom:987.947067pt;}
.yd33_c00001{bottom:988.187067pt;}
.y485_c00001{bottom:991.067067pt;}
.y91b_c00001{bottom:991.467067pt;}
.y138_c00001{bottom:991.787067pt;}
.ydc1_c00001{bottom:993.547067pt;}
.y367_c00001{bottom:994.187067pt;}
.yd91_c00001{bottom:994.267067pt;}
.y4af_c00001{bottom:995.467067pt;}
.y63f_c00001{bottom:996.027067pt;}
.y825_c00001{bottom:996.267067pt;}
.yd43_c00001{bottom:996.427067pt;}
.y225_c00001{bottom:996.667067pt;}
.y569_c00001{bottom:997.387067pt;}
.y2a_c00001{bottom:998.907067pt;}
.y551_c00001{bottom:999.067067pt;}
.y20b_c00001{bottom:999.227067pt;}
.y103_c00001{bottom:999.387067pt;}
.y3_c00001{bottom:1006.347067pt;}
.yd32_c00001{bottom:1009.467067pt;}
.ye25_c00001{bottom:1013.387067pt;}
.ydc0_c00001{bottom:1014.667067pt;}
.y29_c00001{bottom:1017.227251pt;}
.y56b_c00001{bottom:1018.667067pt;}
.y63d_c00001{bottom:1019.707067pt;}
.y550_c00001{bottom:1020.187067pt;}
.yd31_c00001{bottom:1030.827067pt;}
.y28_c00001{bottom:1032.587243pt;}
.y2_c00001{bottom:1035.947576pt;}
.y568_c00001{bottom:1040.027067pt;}
.y27_c00001{bottom:1047.867075pt;}
.y63e_c00001{bottom:1061.387067pt;}
.y566_c00001{bottom:1062.347067pt;}
.y1_c00001{bottom:1063.147200pt;}
.y26_c00001{bottom:1063.227067pt;}
.y565_c00001{bottom:1083.467067pt;}
.y63c_c00001{bottom:1083.627067pt;}
.y564_c00001{bottom:1104.827067pt;}
.hc_c00001{height:30.324375pt;}
.h13_c00001{height:43.031250pt;}
.h5_c00001{height:43.593750pt;}
.hd_c00001{height:46.890469pt;}
.h1_c00001{height:47.020937pt;}
.h2_c00001{height:56.156250pt;}
.h16_c00001{height:56.312500pt;}
.h3_c00001{height:56.843750pt;}
.h9_c00001{height:57.375000pt;}
.h8_c00001{height:57.781250pt;}
.hb_c00001{height:59.240560pt;}
.h11_c00001{height:59.241094pt;}
.ha_c00001{height:61.343906pt;}
.he_c00001{height:65.422031pt;}
.hf_c00001{height:66.222435pt;}
.h4_c00001{height:66.222969pt;}
.h10_c00001{height:66.223502pt;}
.h12_c00001{height:66.841875pt;}
.h7_c00001{height:67.315156pt;}
.h14_c00001{height:75.671250pt;}
.h15_c00001{height:75.886406pt;}
.h6_c00001{height:85.265625pt;}
.h17_c00001{height:102.156250pt;}
.h0_c00001{height:1122.666667pt;}
.w1_c00001{width:793.333333pt;}
.w0_c00001{width:793.626667pt;}
.x0_c00001{left:0.000000pt;}
.xee_c00001{left:4.000000pt;}
.x14e_c00001{left:6.000000pt;}
.x1f9_c00001{left:9.040000pt;}
.x150_c00001{left:10.000000pt;}
.x38_c00001{left:11.360000pt;}
.x65_c00001{left:12.880000pt;}
.x93_c00001{left:14.320000pt;}
.x3e_c00001{left:15.360000pt;}
.x75_c00001{left:16.880000pt;}
.x64_c00001{left:18.560000pt;}
.x113_c00001{left:20.320000pt;}
.x164_c00001{left:21.360000pt;}
.x41_c00001{left:23.040000pt;}
.xb8_c00001{left:24.480000pt;}
.x46_c00001{left:27.040000pt;}
.xc6_c00001{left:28.480000pt;}
.xd7_c00001{left:29.840000pt;}
.x40_c00001{left:31.360000pt;}
.x81_c00001{left:32.720000pt;}
.x24_c00001{left:34.000000pt;}
.x52_c00001{left:35.840000pt;}
.x34_c00001{left:38.000000pt;}
.x56_c00001{left:39.840000pt;}
.x1ed_c00001{left:41.520000pt;}
.x122_c00001{left:42.480000pt;}
.xa6_c00001{left:43.520000pt;}
.x13b_c00001{left:44.880000pt;}
.x161_c00001{left:47.920000pt;}
.x51_c00001{left:51.600000pt;}
.x1b7_c00001{left:54.080000pt;}
.x1bc_c00001{left:55.680000pt;}
.x1f1_c00001{left:58.560000pt;}
.xe6_c00001{left:60.080000pt;}
.xf8_c00001{left:61.040000pt;}
.x13f_c00001{left:62.320000pt;}
.x19c_c00001{left:63.360000pt;}
.x1aa_c00001{left:64.320000pt;}
.x36_c00001{left:66.160000pt;}
.x1a0_c00001{left:67.360000pt;}
.x1ab_c00001{left:68.320000pt;}
.x15e_c00001{left:69.360000pt;}
.x146_c00001{left:70.320000pt;}
.x19b_c00001{left:71.920000pt;}
.x160_c00001{left:73.360000pt;}
.x149_c00001{left:74.320000pt;}
.x14a_c00001{left:75.360000pt;}
.x1ae_c00001{left:76.320000pt;}
.x1fa_c00001{left:77.520000pt;}
.x157_c00001{left:78.880000pt;}
.xd6_c00001{left:79.840000pt;}
.x7a_c00001{left:80.880000pt;}
.x22_c00001{left:82.080000pt;}
.x8f_c00001{left:84.320000pt;}
.x23_c00001{left:85.680000pt;}
.x114_c00001{left:87.840000pt;}
.x1dd_c00001{left:89.040000pt;}
.x11b_c00001{left:90.320000pt;}
.x1d9_c00001{left:91.440000pt;}
.x1c0_c00001{left:93.600000pt;}
.x1e7_c00001{left:94.640000pt;}
.x1c7_c00001{left:96.480000pt;}
.x1ad_c00001{left:99.360000pt;}
.x11f_c00001{left:100.640000pt;}
.x1db_c00001{left:101.680000pt;}
.x8a_c00001{left:104.640000pt;}
.x78_c00001{left:106.960000pt;}
.x1cf_c00001{left:109.280000pt;}
.x1a4_c00001{left:110.320000pt;}
.x1dc_c00001{left:111.280000pt;}
.x1_c00001{left:113.440000pt;}
.x1cc_c00001{left:115.440000pt;}
.x4e_c00001{left:117.440000pt;}
.xd3_c00001{left:119.600000pt;}
.x132_c00001{left:121.840000pt;}
.x1e9_c00001{left:122.880000pt;}
.x1ee_c00001{left:124.960000pt;}
.x177_c00001{left:126.000000pt;}
.x1e4_c00001{left:127.600000pt;}
.x76_c00001{left:128.800000pt;}
.x88_c00001{left:130.400000pt;}
.x143_c00001{left:132.160000pt;}
.xdf_c00001{left:133.520000pt;}
.x1fd_c00001{left:134.480000pt;}
.xb0_c00001{left:136.000000pt;}
.x1a_c00001{left:137.440000pt;}
.x1cd_c00001{left:138.400000pt;}
.x20_c00001{left:139.440000pt;}
.x1e_c00001{left:141.760000pt;}
.x1c_c00001{left:143.440000pt;}
.x21_c00001{left:145.440000pt;}
.x145_c00001{left:146.480000pt;}
.x1df_c00001{left:148.080000pt;}
.x35_c00001{left:149.360000pt;}
.x1ef_c00001{left:151.280000pt;}
.x15c_c00001{left:153.120000pt;}
.x165_c00001{left:154.240000pt;}
.x168_c00001{left:155.280000pt;}
.xd5_c00001{left:157.200000pt;}
.x180_c00001{left:160.000000pt;}
.x1b_c00001{left:161.440000pt;}
.x1e0_c00001{left:162.720000pt;}
.x1f_c00001{left:165.760000pt;}
.x1bd_c00001{left:167.520000pt;}
.x1a7_c00001{left:168.720000pt;}
.x1b6_c00001{left:170.000000pt;}
.x37_c00001{left:171.120000pt;}
.x1c2_c00001{left:172.480000pt;}
.x1d_c00001{left:173.440000pt;}
.xb2_c00001{left:175.360000pt;}
.x123_c00001{left:177.680000pt;}
.x3f_c00001{left:179.200000pt;}
.x59_c00001{left:180.560000pt;}
.x1fc_c00001{left:181.520000pt;}
.xe7_c00001{left:182.720000pt;}
.x110_c00001{left:184.000000pt;}
.x16b_c00001{left:185.440000pt;}
.x17e_c00001{left:186.560000pt;}
.xf9_c00001{left:187.840000pt;}
.x1be_c00001{left:189.360000pt;}
.x7_c00001{left:192.320000pt;}
.x1b9_c00001{left:193.520000pt;}
.x57_c00001{left:195.840000pt;}
.x49_c00001{left:197.360000pt;}
.x9_c00001{left:198.800000pt;}
.x17_c00001{left:199.840000pt;}
.x47_c00001{left:202.480000pt;}
.x115_c00001{left:203.760000pt;}
.xfa_c00001{left:205.200000pt;}
.x103_c00001{left:206.240000pt;}
.x12d_c00001{left:207.680000pt;}
.xa8_c00001{left:208.640000pt;}
.xf_c00001{left:210.320000pt;}
.xf0_c00001{left:211.440000pt;}
.x18_c00001{left:213.360000pt;}
.x1c3_c00001{left:214.400000pt;}
.xf6_c00001{left:215.360000pt;}
.x14c_c00001{left:216.400000pt;}
.x158_c00001{left:218.320000pt;}
.xa9_c00001{left:220.000000pt;}
.x190_c00001{left:221.040000pt;}
.x25_c00001{left:222.080000pt;}
.x101_c00001{left:224.080000pt;}
.x1d3_c00001{left:225.280000pt;}
.xe8_c00001{left:226.560000pt;}
.x112_c00001{left:227.680000pt;}
.x1d1_c00001{left:228.640000pt;}
.x95_c00001{left:230.560000pt;}
.x111_c00001{left:232.400000pt;}
.x26_c00001{left:233.440000pt;}
.x82_c00001{left:235.040000pt;}
.xb_c00001{left:236.800000pt;}
.xe3_c00001{left:238.080000pt;}
.x198_c00001{left:239.440000pt;}
.xb1_c00001{left:240.400000pt;}
.x96_c00001{left:241.920000pt;}
.x68_c00001{left:242.960000pt;}
.x83_c00001{left:244.400000pt;}
.xbb_c00001{left:246.160000pt;}
.x12c_c00001{left:247.280000pt;}
.x90_c00001{left:248.720000pt;}
.x16_c00001{left:249.760000pt;}
.x19_c00001{left:251.280000pt;}
.x3_c00001{left:252.800000pt;}
.x69_c00001{left:254.320000pt;}
.x84_c00001{left:255.760000pt;}
.xbc_c00001{left:257.520000pt;}
.x15_c00001{left:259.280000pt;}
.xaa_c00001{left:260.800000pt;}
.x9d_c00001{left:262.160000pt;}
.xd4_c00001{left:263.600000pt;}
.x19e_c00001{left:264.960000pt;}
.x8b_c00001{left:266.080000pt;}
.xe_c00001{left:267.040000pt;}
.x172_c00001{left:268.400000pt;}
.x16e_c00001{left:269.520000pt;}
.x105_c00001{left:270.720000pt;}
.x28_c00001{left:272.000000pt;}
.x77_c00001{left:273.920000pt;}
.x89_c00001{left:275.280000pt;}
.x27_c00001{left:276.720000pt;}
.x178_c00001{left:277.920000pt;}
.x18e_c00001{left:280.320000pt;}
.x15d_c00001{left:281.360000pt;}
.x4f_c00001{left:282.560000pt;}
.xa_c00001{left:284.720000pt;}
.x193_c00001{left:285.840000pt;}
.x97_c00001{left:287.120000pt;}
.x1af_c00001{left:288.240000pt;}
.x13_c00001{left:289.680000pt;}
.x6_c00001{left:290.720000pt;}
.xd9_c00001{left:291.920000pt;}
.x6b_c00001{left:293.200000pt;}
.x8_c00001{left:294.720000pt;}
.xd8_c00001{left:296.640000pt;}
.x6a_c00001{left:297.920000pt;}
.x179_c00001{left:298.960000pt;}
.x12_c00001{left:300.080000pt;}
.x118_c00001{left:301.840000pt;}
.x79_c00001{left:303.520000pt;}
.x10_c00001{left:304.800000pt;}
.xc_c00001{left:306.160000pt;}
.x13c_c00001{left:308.080000pt;}
.x16c_c00001{left:309.680000pt;}
.x133_c00001{left:310.720000pt;}
.x1d7_c00001{left:312.080000pt;}
.x1a8_c00001{left:313.040000pt;}
.x1ca_c00001{left:314.160000pt;}
.xcd_c00001{left:315.200000pt;}
.xfb_c00001{left:316.160000pt;}
.x1d2_c00001{left:317.520000pt;}
.x14_c00001{left:318.960000pt;}
.x94_c00001{left:319.920000pt;}
.x182_c00001{left:321.440000pt;}
.xb9_c00001{left:323.200000pt;}
.x11d_c00001{left:324.720000pt;}
.x66_c00001{left:326.320000pt;}
.x11_c00001{left:328.160000pt;}
.x173_c00001{left:330.160000pt;}
.x184_c00001{left:331.360000pt;}
.x13d_c00001{left:333.200000pt;}
.x1cb_c00001{left:335.120000pt;}
.x29_c00001{left:336.480000pt;}
.x18f_c00001{left:338.080000pt;}
.x1b4_c00001{left:339.200000pt;}
.x194_c00001{left:341.280000pt;}
.x189_c00001{left:342.240000pt;}
.xd_c00001{left:343.600000pt;}
.x1a5_c00001{left:345.200000pt;}
.x17a_c00001{left:346.240000pt;}
.x98_c00001{left:347.440000pt;}
.x1c5_c00001{left:348.560000pt;}
.x14d_c00001{left:349.600000pt;}
.xb7_c00001{left:350.560000pt;}
.x136_c00001{left:351.520000pt;}
.x154_c00001{left:353.680000pt;}
.x2a_c00001{left:354.800000pt;}
.x162_c00001{left:356.880000pt;}
.x6c_c00001{left:357.840000pt;}
.x85_c00001{left:358.960000pt;}
.xbd_c00001{left:360.480000pt;}
.x1a9_c00001{left:362.240000pt;}
.xcf_c00001{left:365.360000pt;}
.x141_c00001{left:367.600000pt;}
.x5d_c00001{left:368.560000pt;}
.xda_c00001{left:369.920000pt;}
.xa4_c00001{left:371.440000pt;}
.xbe_c00001{left:372.880000pt;}
.x19f_c00001{left:374.480000pt;}
.x6d_c00001{left:376.160000pt;}
.x86_c00001{left:377.360000pt;}
.x170_c00001{left:379.120000pt;}
.xe9_c00001{left:380.320000pt;}
.x11e_c00001{left:382.640000pt;}
.x1b2_c00001{left:383.760000pt;}
.xfd_c00001{left:384.800000pt;}
.x5c_c00001{left:386.000000pt;}
.x117_c00001{left:387.920000pt;}
.x181_c00001{left:388.880000pt;}
.x17c_c00001{left:390.400000pt;}
.x138_c00001{left:392.080000pt;}
.xac_c00001{left:393.840000pt;}
.xfc_c00001{left:395.120000pt;}
.x10a_c00001{left:396.960000pt;}
.x1c8_c00001{left:397.920000pt;}
.x120_c00001{left:398.960000pt;}
.x2c_c00001{left:400.160000pt;}
.xab_c00001{left:401.200000pt;}
.x159_c00001{left:402.560000pt;}
.x140_c00001{left:404.480000pt;}
.x14f_c00001{left:405.680000pt;}
.x2b_c00001{left:407.520000pt;}
.xe4_c00001{left:409.040000pt;}
.xd0_c00001{left:410.720000pt;}
.x9e_c00001{left:412.480000pt;}
.x99_c00001{left:414.480000pt;}
.xdc_c00001{left:416.560000pt;}
.xad_c00001{left:418.480000pt;}
.xc0_c00001{left:419.680000pt;}
.x1e8_c00001{left:420.720000pt;}
.x62_c00001{left:422.480000pt;}
.xdb_c00001{left:423.920000pt;}
.x2d_c00001{left:424.880000pt;}
.x106_c00001{left:426.080000pt;}
.xbf_c00001{left:427.040000pt;}
.x166_c00001{left:428.240000pt;}
.x6e_c00001{left:429.200000pt;}
.x87_c00001{left:430.160000pt;}
.x1f4_c00001{left:431.120000pt;}
.x54_c00001{left:432.640000pt;}
.x155_c00001{left:434.240000pt;}
.xd1_c00001{left:435.360000pt;}
.x1d4_c00001{left:437.280000pt;}
.x153_c00001{left:438.640000pt;}
.x55_c00001{left:439.920000pt;}
.x7b_c00001{left:441.760000pt;}
.x1e5_c00001{left:443.360000pt;}
.xc1_c00001{left:444.320000pt;}
.x5e_c00001{left:446.400000pt;}
.x42_c00001{left:448.080000pt;}
.x142_c00001{left:451.040000pt;}
.xea_c00001{left:452.240000pt;}
.x185_c00001{left:453.200000pt;}
.x53_c00001{left:454.480000pt;}
.xc8_c00001{left:456.560000pt;}
.xeb_c00001{left:458.240000pt;}
.x186_c00001{left:459.200000pt;}
.x5a_c00001{left:460.880000pt;}
.x195_c00001{left:462.000000pt;}
.x12e_c00001{left:463.120000pt;}
.xfe_c00001{left:464.320000pt;}
.x1e2_c00001{left:465.600000pt;}
.x91_c00001{left:466.560000pt;}
.x196_c00001{left:467.920000pt;}
.x2e_c00001{left:470.080000pt;}
.x199_c00001{left:471.680000pt;}
.x44_c00001{left:472.880000pt;}
.x1d0_c00001{left:474.160000pt;}
.x2f_c00001{left:476.080000pt;}
.x1c6_c00001{left:477.440000pt;}
.x107_c00001{left:478.640000pt;}
.x45_c00001{left:480.160000pt;}
.x13e_c00001{left:481.200000pt;}
.x16f_c00001{left:482.560000pt;}
.xdd_c00001{left:484.560000pt;}
.x9a_c00001{left:486.400000pt;}
.xc2_c00001{left:487.840000pt;}
.x1c9_c00001{left:488.800000pt;}
.x4a_c00001{left:490.800000pt;}
.x6f_c00001{left:491.920000pt;}
.xc3_c00001{left:493.760000pt;}
.x3a_c00001{left:495.440000pt;}
.x137_c00001{left:496.880000pt;}
.x70_c00001{left:497.840000pt;}
.x119_c00001{left:498.880000pt;}
.x125_c00001{left:500.160000pt;}
.x151_c00001{left:501.360000pt;}
.xa1_c00001{left:503.600000pt;}
.x1b8_c00001{left:504.720000pt;}
.xb4_c00001{left:506.240000pt;}
.x102_c00001{left:508.400000pt;}
.xf2_c00001{left:510.000000pt;}
.x15b_c00001{left:511.680000pt;}
.xa0_c00001{left:512.640000pt;}
.x4c_c00001{left:515.760000pt;}
.x3b_c00001{left:517.440000pt;}
.x5f_c00001{left:519.280000pt;}
.x15a_c00001{left:520.720000pt;}
.x4d_c00001{left:523.040000pt;}
.x156_c00001{left:524.720000pt;}
.x1c4_c00001{left:525.840000pt;}
.x1d6_c00001{left:527.120000pt;}
.xb5_c00001{left:528.160000pt;}
.x10c_c00001{left:529.120000pt;}
.x1f8_c00001{left:530.960000pt;}
.xf3_c00001{left:532.000000pt;}
.x7e_c00001{left:533.280000pt;}
.x1e6_c00001{left:535.040000pt;}
.x127_c00001{left:536.000000pt;}
.xe1_c00001{left:537.200000pt;}
.x17b_c00001{left:538.320000pt;}
.x1b0_c00001{left:539.440000pt;}
.x1b1_c00001{left:540.720000pt;}
.x7d_c00001{left:542.320000pt;}
.x1bb_c00001{left:543.920000pt;}
.x126_c00001{left:545.040000pt;}
.x60_c00001{left:546.320000pt;}
.x1ce_c00001{left:547.600000pt;}
.x135_c00001{left:549.040000pt;}
.x10d_c00001{left:551.040000pt;}
.x139_c00001{left:552.080000pt;}
.x18b_c00001{left:553.600000pt;}
.xc9_c00001{left:555.280000pt;}
.x134_c00001{left:558.080000pt;}
.x176_c00001{left:559.760000pt;}
.x169_c00001{left:561.040000pt;}
.x131_c00001{left:562.880000pt;}
.x12f_c00001{left:564.560000pt;}
.x1f0_c00001{left:566.400000pt;}
.x1ea_c00001{left:568.160000pt;}
.x1eb_c00001{left:569.440000pt;}
.x8d_c00001{left:572.000000pt;}
.x187_c00001{left:573.360000pt;}
.x17d_c00001{left:574.320000pt;}
.x8e_c00001{left:575.680000pt;}
.x4_c00001{left:577.440000pt;}
.x11a_c00001{left:578.720000pt;}
.xec_c00001{left:580.240000pt;}
.x148_c00001{left:581.200000pt;}
.x30_c00001{left:582.320000pt;}
.x31_c00001{left:583.600000pt;}
.x130_c00001{left:585.520000pt;}
.x163_c00001{left:586.480000pt;}
.xff_c00001{left:587.760000pt;}
.x100_c00001{left:589.040000pt;}
.x1e1_c00001{left:590.400000pt;}
.x15f_c00001{left:591.600000pt;}
.xa2_c00001{left:592.880000pt;}
.xde_c00001{left:594.880000pt;}
.xa3_c00001{left:596.560000pt;}
.xc4_c00001{left:598.560000pt;}
.x121_c00001{left:599.920000pt;}
.x9b_c00001{left:602.000000pt;}
.x9c_c00001{left:603.280000pt;}
.x71_c00001{left:604.480000pt;}
.x72_c00001{left:605.760000pt;}
.x3c_c00001{left:607.760000pt;}
.xb6_c00001{left:609.520000pt;}
.x3d_c00001{left:611.440000pt;}
.x1f5_c00001{left:612.880000pt;}
.x174_c00001{left:614.480000pt;}
.x61_c00001{left:616.320000pt;}
.xf4_c00001{left:617.360000pt;}
.xf5_c00001{left:620.960000pt;}
.x7f_c00001{left:623.600000pt;}
.x128_c00001{left:624.800000pt;}
.x80_c00001{left:627.200000pt;}
.xe2_c00001{left:628.160000pt;}
.x10e_c00001{left:629.520000pt;}
.x1f2_c00001{left:630.480000pt;}
.x1f6_c00001{left:631.760000pt;}
.xca_c00001{left:633.360000pt;}
.x1b3_c00001{left:634.320000pt;}
.x63_c00001{left:635.440000pt;}
.xcb_c00001{left:636.960000pt;}
.x1fb_c00001{left:638.000000pt;}
.x10f_c00001{left:640.160000pt;}
.x1f7_c00001{left:642.000000pt;}
.x1ec_c00001{left:643.920000pt;}
.x188_c00001{left:646.480000pt;}
.xf7_c00001{left:647.440000pt;}
.x50_c00001{left:648.400000pt;}
.x58_c00001{left:649.440000pt;}
.x1de_c00001{left:650.640000pt;}
.x32_c00001{left:652.880000pt;}
.x175_c00001{left:654.240000pt;}
.xae_c00001{left:655.360000pt;}
.x2_c00001{left:656.400000pt;}
.x108_c00001{left:658.639867pt;}
.xed_c00001{left:659.919867pt;}
.xa5_c00001{left:661.440000pt;}
.xd2_c00001{left:662.720000pt;}
.x1bf_c00001{left:663.679867pt;}
.x33_c00001{left:665.520000pt;}
.x8c_c00001{left:666.639867pt;}
.xaf_c00001{left:667.919867pt;}
.x18a_c00001{left:669.280000pt;}
.x109_c00001{left:671.280000pt;}
.x9f_c00001{left:672.639867pt;}
.x1e3_c00001{left:673.679867pt;}
.x73_c00001{left:674.880000pt;}
.x147_c00001{left:676.400000pt;}
.xc5_c00001{left:678.320000pt;}
.x11c_c00001{left:679.440000pt;}
.x5_c00001{left:680.400176pt;}
.x43_c00001{left:681.600000pt;}
.x92_c00001{left:683.440000pt;}
.x12a_c00001{left:684.559867pt;}
.x5b_c00001{left:686.239867pt;}
.x74_c00001{left:687.520000pt;}
.xb3_c00001{left:689.679867pt;}
.x19d_c00001{left:694.159867pt;}
.x18c_c00001{left:696.159867pt;}
.x124_c00001{left:697.360000pt;}
.x197_c00001{left:699.600000pt;}
.x39_c00001{left:702.320000pt;}
.x7c_c00001{left:704.159867pt;}
.x12b_c00001{left:706.079867pt;}
.xf1_c00001{left:707.520000pt;}
.x4b_c00001{left:712.880000pt;}
.x10b_c00001{left:713.919867pt;}
.x1d5_c00001{left:716.160000pt;}
.x183_c00001{left:717.999867pt;}
.x144_c00001{left:721.680000pt;}
.x1a2_c00001{left:723.120000pt;}
.x192_c00001{left:724.399867pt;}
.xa7_c00001{left:725.600000pt;}
.x104_c00001{left:727.999867pt;}
.x116_c00001{left:729.440000pt;}
.xce_c00001{left:730.800000pt;}
.xba_c00001{left:732.399867pt;}
.x1da_c00001{left:734.480000pt;}
.x18d_c00001{left:736.239867pt;}
.x16d_c00001{left:738.079867pt;}
.x129_c00001{left:739.440000pt;}
.x48_c00001{left:741.440000pt;}
.x67_c00001{left:743.280000pt;}
.x1a3_c00001{left:745.440000pt;}
.x1b5_c00001{left:746.400000pt;}
.x152_c00001{left:747.440000pt;}
.x1f3_c00001{left:749.440000pt;}
.x1d8_c00001{left:751.440000pt;}
.xef_c00001{left:752.399867pt;}
.x1ba_c00001{left:753.440000pt;}
.x1a6_c00001{left:755.679867pt;}
.x1c1_c00001{left:757.440000pt;}
.x1a1_c00001{left:759.440000pt;}
.x1ac_c00001{left:761.440000pt;}
.xe5_c00001{left:764.160000pt;}
.x19a_c00001{left:765.839867pt;}
.xc7_c00001{left:767.520000pt;}
.x171_c00001{left:769.440000pt;}
.x191_c00001{left:771.440000pt;}
.x14b_c00001{left:774.320000pt;}
.xe0_c00001{left:776.079867pt;}
.x17f_c00001{left:777.760000pt;}
.x16a_c00001{left:779.440000pt;}
.xcc_c00001{left:781.440000pt;}
.x13a_c00001{left:783.440000pt;}
.x167_c00001{left:785.440000pt;}
}




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